1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * BlueZ - Bluetooth protocol stack for Linux 4 * 5 * Copyright (C) 2021 Intel Corporation 6 * Copyright 2023 NXP 7 */ 8 9 #include <linux/property.h> 10 11 #include <net/bluetooth/bluetooth.h> 12 #include <net/bluetooth/hci_core.h> 13 #include <net/bluetooth/mgmt.h> 14 15 #include "hci_codec.h" 16 #include "hci_debugfs.h" 17 #include "smp.h" 18 #include "eir.h" 19 #include "msft.h" 20 #include "aosp.h" 21 #include "leds.h" 22 23 static void hci_cmd_sync_complete(struct hci_dev *hdev, u8 result, u16 opcode, 24 struct sk_buff *skb) 25 { 26 bt_dev_dbg(hdev, "result 0x%2.2x", result); 27 28 if (hdev->req_status != HCI_REQ_PEND) 29 return; 30 31 hdev->req_result = result; 32 hdev->req_status = HCI_REQ_DONE; 33 34 /* Free the request command so it is not used as response */ 35 kfree_skb(hdev->req_skb); 36 hdev->req_skb = NULL; 37 38 if (skb) { 39 struct sock *sk = hci_skb_sk(skb); 40 41 /* Drop sk reference if set */ 42 if (sk) 43 sock_put(sk); 44 45 hdev->req_rsp = skb_get(skb); 46 } 47 48 wake_up_interruptible(&hdev->req_wait_q); 49 } 50 51 struct sk_buff *hci_cmd_sync_alloc(struct hci_dev *hdev, u16 opcode, u32 plen, 52 const void *param, struct sock *sk) 53 { 54 int len = HCI_COMMAND_HDR_SIZE + plen; 55 struct hci_command_hdr *hdr; 56 struct sk_buff *skb; 57 58 skb = bt_skb_alloc(len, GFP_ATOMIC); 59 if (!skb) 60 return NULL; 61 62 hdr = skb_put(skb, HCI_COMMAND_HDR_SIZE); 63 hdr->opcode = cpu_to_le16(opcode); 64 hdr->plen = plen; 65 66 if (plen) 67 skb_put_data(skb, param, plen); 68 69 bt_dev_dbg(hdev, "skb len %d", skb->len); 70 71 hci_skb_pkt_type(skb) = HCI_COMMAND_PKT; 72 hci_skb_opcode(skb) = opcode; 73 74 /* Grab a reference if command needs to be associated with a sock (e.g. 75 * likely mgmt socket that initiated the command). 76 */ 77 if (sk) { 78 hci_skb_sk(skb) = sk; 79 sock_hold(sk); 80 } 81 82 return skb; 83 } 84 85 static void hci_cmd_sync_add(struct hci_request *req, u16 opcode, u32 plen, 86 const void *param, u8 event, struct sock *sk) 87 { 88 struct hci_dev *hdev = req->hdev; 89 struct sk_buff *skb; 90 91 bt_dev_dbg(hdev, "opcode 0x%4.4x plen %d", opcode, plen); 92 93 /* If an error occurred during request building, there is no point in 94 * queueing the HCI command. We can simply return. 95 */ 96 if (req->err) 97 return; 98 99 skb = hci_cmd_sync_alloc(hdev, opcode, plen, param, sk); 100 if (!skb) { 101 bt_dev_err(hdev, "no memory for command (opcode 0x%4.4x)", 102 opcode); 103 req->err = -ENOMEM; 104 return; 105 } 106 107 if (skb_queue_empty(&req->cmd_q)) 108 bt_cb(skb)->hci.req_flags |= HCI_REQ_START; 109 110 hci_skb_event(skb) = event; 111 112 skb_queue_tail(&req->cmd_q, skb); 113 } 114 115 static int hci_req_sync_run(struct hci_request *req) 116 { 117 struct hci_dev *hdev = req->hdev; 118 struct sk_buff *skb; 119 unsigned long flags; 120 121 bt_dev_dbg(hdev, "length %u", skb_queue_len(&req->cmd_q)); 122 123 /* If an error occurred during request building, remove all HCI 124 * commands queued on the HCI request queue. 125 */ 126 if (req->err) { 127 skb_queue_purge(&req->cmd_q); 128 return req->err; 129 } 130 131 /* Do not allow empty requests */ 132 if (skb_queue_empty(&req->cmd_q)) 133 return -ENODATA; 134 135 skb = skb_peek_tail(&req->cmd_q); 136 bt_cb(skb)->hci.req_complete_skb = hci_cmd_sync_complete; 137 bt_cb(skb)->hci.req_flags |= HCI_REQ_SKB; 138 139 spin_lock_irqsave(&hdev->cmd_q.lock, flags); 140 skb_queue_splice_tail(&req->cmd_q, &hdev->cmd_q); 141 spin_unlock_irqrestore(&hdev->cmd_q.lock, flags); 142 143 queue_work(hdev->workqueue, &hdev->cmd_work); 144 145 return 0; 146 } 147 148 static void hci_request_init(struct hci_request *req, struct hci_dev *hdev) 149 { 150 skb_queue_head_init(&req->cmd_q); 151 req->hdev = hdev; 152 req->err = 0; 153 } 154 155 /* This function requires the caller holds hdev->req_lock. */ 156 struct sk_buff *__hci_cmd_sync_sk(struct hci_dev *hdev, u16 opcode, u32 plen, 157 const void *param, u8 event, u32 timeout, 158 struct sock *sk) 159 { 160 struct hci_request req; 161 struct sk_buff *skb; 162 int err = 0; 163 164 bt_dev_dbg(hdev, "Opcode 0x%4.4x", opcode); 165 166 hci_request_init(&req, hdev); 167 168 hci_cmd_sync_add(&req, opcode, plen, param, event, sk); 169 170 hdev->req_status = HCI_REQ_PEND; 171 172 err = hci_req_sync_run(&req); 173 if (err < 0) 174 return ERR_PTR(err); 175 176 err = wait_event_interruptible_timeout(hdev->req_wait_q, 177 hdev->req_status != HCI_REQ_PEND, 178 timeout); 179 180 if (err == -ERESTARTSYS) 181 return ERR_PTR(-EINTR); 182 183 switch (hdev->req_status) { 184 case HCI_REQ_DONE: 185 err = -bt_to_errno(hdev->req_result); 186 break; 187 188 case HCI_REQ_CANCELED: 189 err = -hdev->req_result; 190 break; 191 192 default: 193 err = -ETIMEDOUT; 194 break; 195 } 196 197 hdev->req_status = 0; 198 hdev->req_result = 0; 199 skb = hdev->req_rsp; 200 hdev->req_rsp = NULL; 201 202 bt_dev_dbg(hdev, "end: err %d", err); 203 204 if (err < 0) { 205 kfree_skb(skb); 206 return ERR_PTR(err); 207 } 208 209 /* If command return a status event skb will be set to NULL as there are 210 * no parameters. 211 */ 212 if (!skb) 213 return ERR_PTR(-ENODATA); 214 215 return skb; 216 } 217 EXPORT_SYMBOL(__hci_cmd_sync_sk); 218 219 /* This function requires the caller holds hdev->req_lock. */ 220 struct sk_buff *__hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen, 221 const void *param, u32 timeout) 222 { 223 return __hci_cmd_sync_sk(hdev, opcode, plen, param, 0, timeout, NULL); 224 } 225 EXPORT_SYMBOL(__hci_cmd_sync); 226 227 /* Send HCI command and wait for command complete event */ 228 struct sk_buff *hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen, 229 const void *param, u32 timeout) 230 { 231 struct sk_buff *skb; 232 233 if (!test_bit(HCI_UP, &hdev->flags)) 234 return ERR_PTR(-ENETDOWN); 235 236 bt_dev_dbg(hdev, "opcode 0x%4.4x plen %d", opcode, plen); 237 238 hci_req_sync_lock(hdev); 239 skb = __hci_cmd_sync(hdev, opcode, plen, param, timeout); 240 hci_req_sync_unlock(hdev); 241 242 return skb; 243 } 244 EXPORT_SYMBOL(hci_cmd_sync); 245 246 /* This function requires the caller holds hdev->req_lock. */ 247 struct sk_buff *__hci_cmd_sync_ev(struct hci_dev *hdev, u16 opcode, u32 plen, 248 const void *param, u8 event, u32 timeout) 249 { 250 return __hci_cmd_sync_sk(hdev, opcode, plen, param, event, timeout, 251 NULL); 252 } 253 EXPORT_SYMBOL(__hci_cmd_sync_ev); 254 255 /* This function requires the caller holds hdev->req_lock. */ 256 int __hci_cmd_sync_status_sk(struct hci_dev *hdev, u16 opcode, u32 plen, 257 const void *param, u8 event, u32 timeout, 258 struct sock *sk) 259 { 260 struct sk_buff *skb; 261 u8 status; 262 263 skb = __hci_cmd_sync_sk(hdev, opcode, plen, param, event, timeout, sk); 264 265 /* If command return a status event, skb will be set to -ENODATA */ 266 if (skb == ERR_PTR(-ENODATA)) 267 return 0; 268 269 if (IS_ERR(skb)) { 270 if (!event) 271 bt_dev_err(hdev, "Opcode 0x%4.4x failed: %ld", opcode, 272 PTR_ERR(skb)); 273 return PTR_ERR(skb); 274 } 275 276 status = skb->data[0]; 277 278 kfree_skb(skb); 279 280 return status; 281 } 282 EXPORT_SYMBOL(__hci_cmd_sync_status_sk); 283 284 int __hci_cmd_sync_status(struct hci_dev *hdev, u16 opcode, u32 plen, 285 const void *param, u32 timeout) 286 { 287 return __hci_cmd_sync_status_sk(hdev, opcode, plen, param, 0, timeout, 288 NULL); 289 } 290 EXPORT_SYMBOL(__hci_cmd_sync_status); 291 292 int hci_cmd_sync_status(struct hci_dev *hdev, u16 opcode, u32 plen, 293 const void *param, u32 timeout) 294 { 295 int err; 296 297 hci_req_sync_lock(hdev); 298 err = __hci_cmd_sync_status(hdev, opcode, plen, param, timeout); 299 hci_req_sync_unlock(hdev); 300 301 return err; 302 } 303 EXPORT_SYMBOL(hci_cmd_sync_status); 304 305 static void hci_cmd_sync_work(struct work_struct *work) 306 { 307 struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_sync_work); 308 309 bt_dev_dbg(hdev, ""); 310 311 /* Dequeue all entries and run them */ 312 while (1) { 313 struct hci_cmd_sync_work_entry *entry; 314 315 mutex_lock(&hdev->cmd_sync_work_lock); 316 entry = list_first_entry_or_null(&hdev->cmd_sync_work_list, 317 struct hci_cmd_sync_work_entry, 318 list); 319 if (entry) 320 list_del(&entry->list); 321 mutex_unlock(&hdev->cmd_sync_work_lock); 322 323 if (!entry) 324 break; 325 326 bt_dev_dbg(hdev, "entry %p", entry); 327 328 if (entry->func) { 329 int err; 330 331 hci_req_sync_lock(hdev); 332 err = entry->func(hdev, entry->data); 333 if (entry->destroy) 334 entry->destroy(hdev, entry->data, err); 335 hci_req_sync_unlock(hdev); 336 } 337 338 kfree(entry); 339 } 340 } 341 342 static void hci_cmd_sync_cancel_work(struct work_struct *work) 343 { 344 struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_sync_cancel_work); 345 346 cancel_delayed_work_sync(&hdev->cmd_timer); 347 cancel_delayed_work_sync(&hdev->ncmd_timer); 348 atomic_set(&hdev->cmd_cnt, 1); 349 350 wake_up_interruptible(&hdev->req_wait_q); 351 } 352 353 static int hci_scan_disable_sync(struct hci_dev *hdev); 354 static int scan_disable_sync(struct hci_dev *hdev, void *data) 355 { 356 return hci_scan_disable_sync(hdev); 357 } 358 359 static int interleaved_inquiry_sync(struct hci_dev *hdev, void *data) 360 { 361 return hci_inquiry_sync(hdev, DISCOV_INTERLEAVED_INQUIRY_LEN, 0); 362 } 363 364 static void le_scan_disable(struct work_struct *work) 365 { 366 struct hci_dev *hdev = container_of(work, struct hci_dev, 367 le_scan_disable.work); 368 int status; 369 370 bt_dev_dbg(hdev, ""); 371 hci_dev_lock(hdev); 372 373 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN)) 374 goto _return; 375 376 status = hci_cmd_sync_queue(hdev, scan_disable_sync, NULL, NULL); 377 if (status) { 378 bt_dev_err(hdev, "failed to disable LE scan: %d", status); 379 goto _return; 380 } 381 382 /* If we were running LE only scan, change discovery state. If 383 * we were running both LE and BR/EDR inquiry simultaneously, 384 * and BR/EDR inquiry is already finished, stop discovery, 385 * otherwise BR/EDR inquiry will stop discovery when finished. 386 * If we will resolve remote device name, do not change 387 * discovery state. 388 */ 389 390 if (hdev->discovery.type == DISCOV_TYPE_LE) 391 goto discov_stopped; 392 393 if (hdev->discovery.type != DISCOV_TYPE_INTERLEAVED) 394 goto _return; 395 396 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks)) { 397 if (!test_bit(HCI_INQUIRY, &hdev->flags) && 398 hdev->discovery.state != DISCOVERY_RESOLVING) 399 goto discov_stopped; 400 401 goto _return; 402 } 403 404 status = hci_cmd_sync_queue(hdev, interleaved_inquiry_sync, NULL, NULL); 405 if (status) { 406 bt_dev_err(hdev, "inquiry failed: status %d", status); 407 goto discov_stopped; 408 } 409 410 goto _return; 411 412 discov_stopped: 413 hci_discovery_set_state(hdev, DISCOVERY_STOPPED); 414 415 _return: 416 hci_dev_unlock(hdev); 417 } 418 419 static int hci_le_set_scan_enable_sync(struct hci_dev *hdev, u8 val, 420 u8 filter_dup); 421 422 static int reenable_adv_sync(struct hci_dev *hdev, void *data) 423 { 424 bt_dev_dbg(hdev, ""); 425 426 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) && 427 list_empty(&hdev->adv_instances)) 428 return 0; 429 430 if (hdev->cur_adv_instance) { 431 return hci_schedule_adv_instance_sync(hdev, 432 hdev->cur_adv_instance, 433 true); 434 } else { 435 if (ext_adv_capable(hdev)) { 436 hci_start_ext_adv_sync(hdev, 0x00); 437 } else { 438 hci_update_adv_data_sync(hdev, 0x00); 439 hci_update_scan_rsp_data_sync(hdev, 0x00); 440 hci_enable_advertising_sync(hdev); 441 } 442 } 443 444 return 0; 445 } 446 447 static void reenable_adv(struct work_struct *work) 448 { 449 struct hci_dev *hdev = container_of(work, struct hci_dev, 450 reenable_adv_work); 451 int status; 452 453 bt_dev_dbg(hdev, ""); 454 455 hci_dev_lock(hdev); 456 457 status = hci_cmd_sync_queue(hdev, reenable_adv_sync, NULL, NULL); 458 if (status) 459 bt_dev_err(hdev, "failed to reenable ADV: %d", status); 460 461 hci_dev_unlock(hdev); 462 } 463 464 static void cancel_adv_timeout(struct hci_dev *hdev) 465 { 466 if (hdev->adv_instance_timeout) { 467 hdev->adv_instance_timeout = 0; 468 cancel_delayed_work(&hdev->adv_instance_expire); 469 } 470 } 471 472 /* For a single instance: 473 * - force == true: The instance will be removed even when its remaining 474 * lifetime is not zero. 475 * - force == false: the instance will be deactivated but kept stored unless 476 * the remaining lifetime is zero. 477 * 478 * For instance == 0x00: 479 * - force == true: All instances will be removed regardless of their timeout 480 * setting. 481 * - force == false: Only instances that have a timeout will be removed. 482 */ 483 int hci_clear_adv_instance_sync(struct hci_dev *hdev, struct sock *sk, 484 u8 instance, bool force) 485 { 486 struct adv_info *adv_instance, *n, *next_instance = NULL; 487 int err; 488 u8 rem_inst; 489 490 /* Cancel any timeout concerning the removed instance(s). */ 491 if (!instance || hdev->cur_adv_instance == instance) 492 cancel_adv_timeout(hdev); 493 494 /* Get the next instance to advertise BEFORE we remove 495 * the current one. This can be the same instance again 496 * if there is only one instance. 497 */ 498 if (instance && hdev->cur_adv_instance == instance) 499 next_instance = hci_get_next_instance(hdev, instance); 500 501 if (instance == 0x00) { 502 list_for_each_entry_safe(adv_instance, n, &hdev->adv_instances, 503 list) { 504 if (!(force || adv_instance->timeout)) 505 continue; 506 507 rem_inst = adv_instance->instance; 508 err = hci_remove_adv_instance(hdev, rem_inst); 509 if (!err) 510 mgmt_advertising_removed(sk, hdev, rem_inst); 511 } 512 } else { 513 adv_instance = hci_find_adv_instance(hdev, instance); 514 515 if (force || (adv_instance && adv_instance->timeout && 516 !adv_instance->remaining_time)) { 517 /* Don't advertise a removed instance. */ 518 if (next_instance && 519 next_instance->instance == instance) 520 next_instance = NULL; 521 522 err = hci_remove_adv_instance(hdev, instance); 523 if (!err) 524 mgmt_advertising_removed(sk, hdev, instance); 525 } 526 } 527 528 if (!hdev_is_powered(hdev) || hci_dev_test_flag(hdev, HCI_ADVERTISING)) 529 return 0; 530 531 if (next_instance && !ext_adv_capable(hdev)) 532 return hci_schedule_adv_instance_sync(hdev, 533 next_instance->instance, 534 false); 535 536 return 0; 537 } 538 539 static int adv_timeout_expire_sync(struct hci_dev *hdev, void *data) 540 { 541 u8 instance = *(u8 *)data; 542 543 kfree(data); 544 545 hci_clear_adv_instance_sync(hdev, NULL, instance, false); 546 547 if (list_empty(&hdev->adv_instances)) 548 return hci_disable_advertising_sync(hdev); 549 550 return 0; 551 } 552 553 static void adv_timeout_expire(struct work_struct *work) 554 { 555 u8 *inst_ptr; 556 struct hci_dev *hdev = container_of(work, struct hci_dev, 557 adv_instance_expire.work); 558 559 bt_dev_dbg(hdev, ""); 560 561 hci_dev_lock(hdev); 562 563 hdev->adv_instance_timeout = 0; 564 565 if (hdev->cur_adv_instance == 0x00) 566 goto unlock; 567 568 inst_ptr = kmalloc(1, GFP_KERNEL); 569 if (!inst_ptr) 570 goto unlock; 571 572 *inst_ptr = hdev->cur_adv_instance; 573 hci_cmd_sync_queue(hdev, adv_timeout_expire_sync, inst_ptr, NULL); 574 575 unlock: 576 hci_dev_unlock(hdev); 577 } 578 579 static bool is_interleave_scanning(struct hci_dev *hdev) 580 { 581 return hdev->interleave_scan_state != INTERLEAVE_SCAN_NONE; 582 } 583 584 static int hci_passive_scan_sync(struct hci_dev *hdev); 585 586 static void interleave_scan_work(struct work_struct *work) 587 { 588 struct hci_dev *hdev = container_of(work, struct hci_dev, 589 interleave_scan.work); 590 unsigned long timeout; 591 592 if (hdev->interleave_scan_state == INTERLEAVE_SCAN_ALLOWLIST) { 593 timeout = msecs_to_jiffies(hdev->advmon_allowlist_duration); 594 } else if (hdev->interleave_scan_state == INTERLEAVE_SCAN_NO_FILTER) { 595 timeout = msecs_to_jiffies(hdev->advmon_no_filter_duration); 596 } else { 597 bt_dev_err(hdev, "unexpected error"); 598 return; 599 } 600 601 hci_passive_scan_sync(hdev); 602 603 hci_dev_lock(hdev); 604 605 switch (hdev->interleave_scan_state) { 606 case INTERLEAVE_SCAN_ALLOWLIST: 607 bt_dev_dbg(hdev, "next state: allowlist"); 608 hdev->interleave_scan_state = INTERLEAVE_SCAN_NO_FILTER; 609 break; 610 case INTERLEAVE_SCAN_NO_FILTER: 611 bt_dev_dbg(hdev, "next state: no filter"); 612 hdev->interleave_scan_state = INTERLEAVE_SCAN_ALLOWLIST; 613 break; 614 case INTERLEAVE_SCAN_NONE: 615 bt_dev_err(hdev, "unexpected error"); 616 } 617 618 hci_dev_unlock(hdev); 619 620 /* Don't continue interleaving if it was canceled */ 621 if (is_interleave_scanning(hdev)) 622 queue_delayed_work(hdev->req_workqueue, 623 &hdev->interleave_scan, timeout); 624 } 625 626 void hci_cmd_sync_init(struct hci_dev *hdev) 627 { 628 INIT_WORK(&hdev->cmd_sync_work, hci_cmd_sync_work); 629 INIT_LIST_HEAD(&hdev->cmd_sync_work_list); 630 mutex_init(&hdev->cmd_sync_work_lock); 631 mutex_init(&hdev->unregister_lock); 632 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->adv_instance_expire, adv_timeout_expire); 637 INIT_DELAYED_WORK(&hdev->interleave_scan, interleave_scan_work); 638 } 639 640 static void _hci_cmd_sync_cancel_entry(struct hci_dev *hdev, 641 struct hci_cmd_sync_work_entry *entry, 642 int err) 643 { 644 if (entry->destroy) 645 entry->destroy(hdev, entry->data, err); 646 647 list_del(&entry->list); 648 kfree(entry); 649 } 650 651 void hci_cmd_sync_clear(struct hci_dev *hdev) 652 { 653 struct hci_cmd_sync_work_entry *entry, *tmp; 654 655 cancel_work_sync(&hdev->cmd_sync_work); 656 cancel_work_sync(&hdev->reenable_adv_work); 657 658 mutex_lock(&hdev->cmd_sync_work_lock); 659 list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list) 660 _hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED); 661 mutex_unlock(&hdev->cmd_sync_work_lock); 662 } 663 664 void hci_cmd_sync_cancel(struct hci_dev *hdev, int err) 665 { 666 bt_dev_dbg(hdev, "err 0x%2.2x", err); 667 668 if (hdev->req_status == HCI_REQ_PEND) { 669 hdev->req_result = err; 670 hdev->req_status = HCI_REQ_CANCELED; 671 672 queue_work(hdev->workqueue, &hdev->cmd_sync_cancel_work); 673 } 674 } 675 EXPORT_SYMBOL(hci_cmd_sync_cancel); 676 677 /* Cancel ongoing command request synchronously: 678 * 679 * - Set result and mark status to HCI_REQ_CANCELED 680 * - Wakeup command sync thread 681 */ 682 void hci_cmd_sync_cancel_sync(struct hci_dev *hdev, int err) 683 { 684 bt_dev_dbg(hdev, "err 0x%2.2x", err); 685 686 if (hdev->req_status == HCI_REQ_PEND) { 687 /* req_result is __u32 so error must be positive to be properly 688 * propagated. 689 */ 690 hdev->req_result = err < 0 ? -err : err; 691 hdev->req_status = HCI_REQ_CANCELED; 692 693 wake_up_interruptible(&hdev->req_wait_q); 694 } 695 } 696 EXPORT_SYMBOL(hci_cmd_sync_cancel_sync); 697 698 /* Submit HCI command to be run in as cmd_sync_work: 699 * 700 * - hdev must _not_ be unregistered 701 */ 702 int hci_cmd_sync_submit(struct hci_dev *hdev, hci_cmd_sync_work_func_t func, 703 void *data, hci_cmd_sync_work_destroy_t destroy) 704 { 705 struct hci_cmd_sync_work_entry *entry; 706 int err = 0; 707 708 mutex_lock(&hdev->unregister_lock); 709 if (hci_dev_test_flag(hdev, HCI_UNREGISTER)) { 710 err = -ENODEV; 711 goto unlock; 712 } 713 714 entry = kmalloc(sizeof(*entry), GFP_KERNEL); 715 if (!entry) { 716 err = -ENOMEM; 717 goto unlock; 718 } 719 entry->func = func; 720 entry->data = data; 721 entry->destroy = destroy; 722 723 mutex_lock(&hdev->cmd_sync_work_lock); 724 list_add_tail(&entry->list, &hdev->cmd_sync_work_list); 725 mutex_unlock(&hdev->cmd_sync_work_lock); 726 727 queue_work(hdev->req_workqueue, &hdev->cmd_sync_work); 728 729 unlock: 730 mutex_unlock(&hdev->unregister_lock); 731 return err; 732 } 733 EXPORT_SYMBOL(hci_cmd_sync_submit); 734 735 /* Queue HCI command: 736 * 737 * - hdev must be running 738 */ 739 int hci_cmd_sync_queue(struct hci_dev *hdev, hci_cmd_sync_work_func_t func, 740 void *data, hci_cmd_sync_work_destroy_t destroy) 741 { 742 /* Only queue command if hdev is running which means it had been opened 743 * and is either on init phase or is already up. 744 */ 745 if (!test_bit(HCI_RUNNING, &hdev->flags)) 746 return -ENETDOWN; 747 748 return hci_cmd_sync_submit(hdev, func, data, destroy); 749 } 750 EXPORT_SYMBOL(hci_cmd_sync_queue); 751 752 static struct hci_cmd_sync_work_entry * 753 _hci_cmd_sync_lookup_entry(struct hci_dev *hdev, hci_cmd_sync_work_func_t func, 754 void *data, hci_cmd_sync_work_destroy_t destroy) 755 { 756 struct hci_cmd_sync_work_entry *entry, *tmp; 757 758 list_for_each_entry_safe(entry, tmp, &hdev->cmd_sync_work_list, list) { 759 if (func && entry->func != func) 760 continue; 761 762 if (data && entry->data != data) 763 continue; 764 765 if (destroy && entry->destroy != destroy) 766 continue; 767 768 return entry; 769 } 770 771 return NULL; 772 } 773 774 /* Queue HCI command entry once: 775 * 776 * - Lookup if an entry already exist and only if it doesn't creates a new entry 777 * and queue it. 778 */ 779 int hci_cmd_sync_queue_once(struct hci_dev *hdev, hci_cmd_sync_work_func_t func, 780 void *data, hci_cmd_sync_work_destroy_t destroy) 781 { 782 if (hci_cmd_sync_lookup_entry(hdev, func, data, destroy)) 783 return 0; 784 785 return hci_cmd_sync_queue(hdev, func, data, destroy); 786 } 787 EXPORT_SYMBOL(hci_cmd_sync_queue_once); 788 789 /* Run HCI command: 790 * 791 * - hdev must be running 792 * - if on cmd_sync_work then run immediately otherwise queue 793 */ 794 int hci_cmd_sync_run(struct hci_dev *hdev, hci_cmd_sync_work_func_t func, 795 void *data, hci_cmd_sync_work_destroy_t destroy) 796 { 797 /* Only queue command if hdev is running which means it had been opened 798 * and is either on init phase or is already up. 799 */ 800 if (!test_bit(HCI_RUNNING, &hdev->flags)) 801 return -ENETDOWN; 802 803 /* If on cmd_sync_work then run immediately otherwise queue */ 804 if (current_work() == &hdev->cmd_sync_work) 805 return func(hdev, data); 806 807 return hci_cmd_sync_submit(hdev, func, data, destroy); 808 } 809 EXPORT_SYMBOL(hci_cmd_sync_run); 810 811 /* Run HCI command entry once: 812 * 813 * - Lookup if an entry already exist and only if it doesn't creates a new entry 814 * and run it. 815 * - if on cmd_sync_work then run immediately otherwise queue 816 */ 817 int hci_cmd_sync_run_once(struct hci_dev *hdev, hci_cmd_sync_work_func_t func, 818 void *data, hci_cmd_sync_work_destroy_t destroy) 819 { 820 if (hci_cmd_sync_lookup_entry(hdev, func, data, destroy)) 821 return 0; 822 823 return hci_cmd_sync_run(hdev, func, data, destroy); 824 } 825 EXPORT_SYMBOL(hci_cmd_sync_run_once); 826 827 /* Lookup HCI command entry: 828 * 829 * - Return first entry that matches by function callback or data or 830 * destroy callback. 831 */ 832 struct hci_cmd_sync_work_entry * 833 hci_cmd_sync_lookup_entry(struct hci_dev *hdev, hci_cmd_sync_work_func_t func, 834 void *data, hci_cmd_sync_work_destroy_t destroy) 835 { 836 struct hci_cmd_sync_work_entry *entry; 837 838 mutex_lock(&hdev->cmd_sync_work_lock); 839 entry = _hci_cmd_sync_lookup_entry(hdev, func, data, destroy); 840 mutex_unlock(&hdev->cmd_sync_work_lock); 841 842 return entry; 843 } 844 EXPORT_SYMBOL(hci_cmd_sync_lookup_entry); 845 846 /* Cancel HCI command entry */ 847 void hci_cmd_sync_cancel_entry(struct hci_dev *hdev, 848 struct hci_cmd_sync_work_entry *entry) 849 { 850 mutex_lock(&hdev->cmd_sync_work_lock); 851 _hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED); 852 mutex_unlock(&hdev->cmd_sync_work_lock); 853 } 854 EXPORT_SYMBOL(hci_cmd_sync_cancel_entry); 855 856 /* Dequeue one HCI command entry: 857 * 858 * - Lookup and cancel first entry that matches. 859 */ 860 bool hci_cmd_sync_dequeue_once(struct hci_dev *hdev, 861 hci_cmd_sync_work_func_t func, 862 void *data, hci_cmd_sync_work_destroy_t destroy) 863 { 864 struct hci_cmd_sync_work_entry *entry; 865 866 entry = hci_cmd_sync_lookup_entry(hdev, func, data, destroy); 867 if (!entry) 868 return false; 869 870 hci_cmd_sync_cancel_entry(hdev, entry); 871 872 return true; 873 } 874 EXPORT_SYMBOL(hci_cmd_sync_dequeue_once); 875 876 /* Dequeue HCI command entry: 877 * 878 * - Lookup and cancel any entry that matches by function callback or data or 879 * destroy callback. 880 */ 881 bool hci_cmd_sync_dequeue(struct hci_dev *hdev, hci_cmd_sync_work_func_t func, 882 void *data, hci_cmd_sync_work_destroy_t destroy) 883 { 884 struct hci_cmd_sync_work_entry *entry; 885 bool ret = false; 886 887 mutex_lock(&hdev->cmd_sync_work_lock); 888 while ((entry = _hci_cmd_sync_lookup_entry(hdev, func, data, 889 destroy))) { 890 _hci_cmd_sync_cancel_entry(hdev, entry, -ECANCELED); 891 ret = true; 892 } 893 mutex_unlock(&hdev->cmd_sync_work_lock); 894 895 return ret; 896 } 897 EXPORT_SYMBOL(hci_cmd_sync_dequeue); 898 899 int hci_update_eir_sync(struct hci_dev *hdev) 900 { 901 struct hci_cp_write_eir cp; 902 903 bt_dev_dbg(hdev, ""); 904 905 if (!hdev_is_powered(hdev)) 906 return 0; 907 908 if (!lmp_ext_inq_capable(hdev)) 909 return 0; 910 911 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) 912 return 0; 913 914 if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE)) 915 return 0; 916 917 memset(&cp, 0, sizeof(cp)); 918 919 eir_create(hdev, cp.data); 920 921 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0) 922 return 0; 923 924 memcpy(hdev->eir, cp.data, sizeof(cp.data)); 925 926 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp, 927 HCI_CMD_TIMEOUT); 928 } 929 930 static u8 get_service_classes(struct hci_dev *hdev) 931 { 932 struct bt_uuid *uuid; 933 u8 val = 0; 934 935 list_for_each_entry(uuid, &hdev->uuids, list) 936 val |= uuid->svc_hint; 937 938 return val; 939 } 940 941 int hci_update_class_sync(struct hci_dev *hdev) 942 { 943 u8 cod[3]; 944 945 bt_dev_dbg(hdev, ""); 946 947 if (!hdev_is_powered(hdev)) 948 return 0; 949 950 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) 951 return 0; 952 953 if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE)) 954 return 0; 955 956 cod[0] = hdev->minor_class; 957 cod[1] = hdev->major_class; 958 cod[2] = get_service_classes(hdev); 959 960 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE)) 961 cod[1] |= 0x20; 962 963 if (memcmp(cod, hdev->dev_class, 3) == 0) 964 return 0; 965 966 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_CLASS_OF_DEV, 967 sizeof(cod), cod, HCI_CMD_TIMEOUT); 968 } 969 970 static bool is_advertising_allowed(struct hci_dev *hdev, bool connectable) 971 { 972 /* If there is no connection we are OK to advertise. */ 973 if (hci_conn_num(hdev, LE_LINK) == 0) 974 return true; 975 976 /* Check le_states if there is any connection in peripheral role. */ 977 if (hdev->conn_hash.le_num_peripheral > 0) { 978 /* Peripheral connection state and non connectable mode 979 * bit 20. 980 */ 981 if (!connectable && !(hdev->le_states[2] & 0x10)) 982 return false; 983 984 /* Peripheral connection state and connectable mode bit 38 985 * and scannable bit 21. 986 */ 987 if (connectable && (!(hdev->le_states[4] & 0x40) || 988 !(hdev->le_states[2] & 0x20))) 989 return false; 990 } 991 992 /* Check le_states if there is any connection in central role. */ 993 if (hci_conn_num(hdev, LE_LINK) != hdev->conn_hash.le_num_peripheral) { 994 /* Central connection state and non connectable mode bit 18. */ 995 if (!connectable && !(hdev->le_states[2] & 0x02)) 996 return false; 997 998 /* Central connection state and connectable mode bit 35 and 999 * scannable 19. 1000 */ 1001 if (connectable && (!(hdev->le_states[4] & 0x08) || 1002 !(hdev->le_states[2] & 0x08))) 1003 return false; 1004 } 1005 1006 return true; 1007 } 1008 1009 static bool adv_use_rpa(struct hci_dev *hdev, uint32_t flags) 1010 { 1011 /* If privacy is not enabled don't use RPA */ 1012 if (!hci_dev_test_flag(hdev, HCI_PRIVACY)) 1013 return false; 1014 1015 /* If basic privacy mode is enabled use RPA */ 1016 if (!hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY)) 1017 return true; 1018 1019 /* If limited privacy mode is enabled don't use RPA if we're 1020 * both discoverable and bondable. 1021 */ 1022 if ((flags & MGMT_ADV_FLAG_DISCOV) && 1023 hci_dev_test_flag(hdev, HCI_BONDABLE)) 1024 return false; 1025 1026 /* We're neither bondable nor discoverable in the limited 1027 * privacy mode, therefore use RPA. 1028 */ 1029 return true; 1030 } 1031 1032 static int hci_set_random_addr_sync(struct hci_dev *hdev, bdaddr_t *rpa) 1033 { 1034 /* If we're advertising or initiating an LE connection we can't 1035 * go ahead and change the random address at this time. This is 1036 * because the eventual initiator address used for the 1037 * subsequently created connection will be undefined (some 1038 * controllers use the new address and others the one we had 1039 * when the operation started). 1040 * 1041 * In this kind of scenario skip the update and let the random 1042 * address be updated at the next cycle. 1043 */ 1044 if (hci_dev_test_flag(hdev, HCI_LE_ADV) || 1045 hci_lookup_le_connect(hdev)) { 1046 bt_dev_dbg(hdev, "Deferring random address update"); 1047 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED); 1048 return 0; 1049 } 1050 1051 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_RANDOM_ADDR, 1052 6, rpa, HCI_CMD_TIMEOUT); 1053 } 1054 1055 int hci_update_random_address_sync(struct hci_dev *hdev, bool require_privacy, 1056 bool rpa, u8 *own_addr_type) 1057 { 1058 int err; 1059 1060 /* If privacy is enabled use a resolvable private address. If 1061 * current RPA has expired or there is something else than 1062 * the current RPA in use, then generate a new one. 1063 */ 1064 if (rpa) { 1065 /* If Controller supports LL Privacy use own address type is 1066 * 0x03 1067 */ 1068 if (use_ll_privacy(hdev)) 1069 *own_addr_type = ADDR_LE_DEV_RANDOM_RESOLVED; 1070 else 1071 *own_addr_type = ADDR_LE_DEV_RANDOM; 1072 1073 /* Check if RPA is valid */ 1074 if (rpa_valid(hdev)) 1075 return 0; 1076 1077 err = smp_generate_rpa(hdev, hdev->irk, &hdev->rpa); 1078 if (err < 0) { 1079 bt_dev_err(hdev, "failed to generate new RPA"); 1080 return err; 1081 } 1082 1083 err = hci_set_random_addr_sync(hdev, &hdev->rpa); 1084 if (err) 1085 return err; 1086 1087 return 0; 1088 } 1089 1090 /* In case of required privacy without resolvable private address, 1091 * use an non-resolvable private address. This is useful for active 1092 * scanning and non-connectable advertising. 1093 */ 1094 if (require_privacy) { 1095 bdaddr_t nrpa; 1096 1097 while (true) { 1098 /* The non-resolvable private address is generated 1099 * from random six bytes with the two most significant 1100 * bits cleared. 1101 */ 1102 get_random_bytes(&nrpa, 6); 1103 nrpa.b[5] &= 0x3f; 1104 1105 /* The non-resolvable private address shall not be 1106 * equal to the public address. 1107 */ 1108 if (bacmp(&hdev->bdaddr, &nrpa)) 1109 break; 1110 } 1111 1112 *own_addr_type = ADDR_LE_DEV_RANDOM; 1113 1114 return hci_set_random_addr_sync(hdev, &nrpa); 1115 } 1116 1117 /* If forcing static address is in use or there is no public 1118 * address use the static address as random address (but skip 1119 * the HCI command if the current random address is already the 1120 * static one. 1121 * 1122 * In case BR/EDR has been disabled on a dual-mode controller 1123 * and a static address has been configured, then use that 1124 * address instead of the public BR/EDR address. 1125 */ 1126 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) || 1127 !bacmp(&hdev->bdaddr, BDADDR_ANY) || 1128 (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) && 1129 bacmp(&hdev->static_addr, BDADDR_ANY))) { 1130 *own_addr_type = ADDR_LE_DEV_RANDOM; 1131 if (bacmp(&hdev->static_addr, &hdev->random_addr)) 1132 return hci_set_random_addr_sync(hdev, 1133 &hdev->static_addr); 1134 return 0; 1135 } 1136 1137 /* Neither privacy nor static address is being used so use a 1138 * public address. 1139 */ 1140 *own_addr_type = ADDR_LE_DEV_PUBLIC; 1141 1142 return 0; 1143 } 1144 1145 static int hci_disable_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance) 1146 { 1147 struct hci_cp_le_set_ext_adv_enable *cp; 1148 struct hci_cp_ext_adv_set *set; 1149 u8 data[sizeof(*cp) + sizeof(*set) * 1]; 1150 u8 size; 1151 struct adv_info *adv = NULL; 1152 1153 /* If request specifies an instance that doesn't exist, fail */ 1154 if (instance > 0) { 1155 adv = hci_find_adv_instance(hdev, instance); 1156 if (!adv) 1157 return -EINVAL; 1158 1159 /* If not enabled there is nothing to do */ 1160 if (!adv->enabled) 1161 return 0; 1162 } 1163 1164 memset(data, 0, sizeof(data)); 1165 1166 cp = (void *)data; 1167 set = (void *)cp->data; 1168 1169 /* Instance 0x00 indicates all advertising instances will be disabled */ 1170 cp->num_of_sets = !!instance; 1171 cp->enable = 0x00; 1172 1173 set->handle = adv ? adv->handle : instance; 1174 1175 size = sizeof(*cp) + sizeof(*set) * cp->num_of_sets; 1176 1177 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_ENABLE, 1178 size, data, HCI_CMD_TIMEOUT); 1179 } 1180 1181 static int hci_set_adv_set_random_addr_sync(struct hci_dev *hdev, u8 instance, 1182 bdaddr_t *random_addr) 1183 { 1184 struct hci_cp_le_set_adv_set_rand_addr cp; 1185 int err; 1186 1187 if (!instance) { 1188 /* Instance 0x00 doesn't have an adv_info, instead it uses 1189 * hdev->random_addr to track its address so whenever it needs 1190 * to be updated this also set the random address since 1191 * hdev->random_addr is shared with scan state machine. 1192 */ 1193 err = hci_set_random_addr_sync(hdev, random_addr); 1194 if (err) 1195 return err; 1196 } 1197 1198 memset(&cp, 0, sizeof(cp)); 1199 1200 cp.handle = instance; 1201 bacpy(&cp.bdaddr, random_addr); 1202 1203 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_SET_RAND_ADDR, 1204 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 1205 } 1206 1207 int hci_setup_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance) 1208 { 1209 struct hci_cp_le_set_ext_adv_params cp; 1210 bool connectable; 1211 u32 flags; 1212 bdaddr_t random_addr; 1213 u8 own_addr_type; 1214 int err; 1215 struct adv_info *adv; 1216 bool secondary_adv; 1217 1218 if (instance > 0) { 1219 adv = hci_find_adv_instance(hdev, instance); 1220 if (!adv) 1221 return -EINVAL; 1222 } else { 1223 adv = NULL; 1224 } 1225 1226 /* Updating parameters of an active instance will return a 1227 * Command Disallowed error, so we must first disable the 1228 * instance if it is active. 1229 */ 1230 if (adv && !adv->pending) { 1231 err = hci_disable_ext_adv_instance_sync(hdev, instance); 1232 if (err) 1233 return err; 1234 } 1235 1236 flags = hci_adv_instance_flags(hdev, instance); 1237 1238 /* If the "connectable" instance flag was not set, then choose between 1239 * ADV_IND and ADV_NONCONN_IND based on the global connectable setting. 1240 */ 1241 connectable = (flags & MGMT_ADV_FLAG_CONNECTABLE) || 1242 mgmt_get_connectable(hdev); 1243 1244 if (!is_advertising_allowed(hdev, connectable)) 1245 return -EPERM; 1246 1247 /* Set require_privacy to true only when non-connectable 1248 * advertising is used. In that case it is fine to use a 1249 * non-resolvable private address. 1250 */ 1251 err = hci_get_random_address(hdev, !connectable, 1252 adv_use_rpa(hdev, flags), adv, 1253 &own_addr_type, &random_addr); 1254 if (err < 0) 1255 return err; 1256 1257 memset(&cp, 0, sizeof(cp)); 1258 1259 if (adv) { 1260 hci_cpu_to_le24(adv->min_interval, cp.min_interval); 1261 hci_cpu_to_le24(adv->max_interval, cp.max_interval); 1262 cp.tx_power = adv->tx_power; 1263 } else { 1264 hci_cpu_to_le24(hdev->le_adv_min_interval, cp.min_interval); 1265 hci_cpu_to_le24(hdev->le_adv_max_interval, cp.max_interval); 1266 cp.tx_power = HCI_ADV_TX_POWER_NO_PREFERENCE; 1267 } 1268 1269 secondary_adv = (flags & MGMT_ADV_FLAG_SEC_MASK); 1270 1271 if (connectable) { 1272 if (secondary_adv) 1273 cp.evt_properties = cpu_to_le16(LE_EXT_ADV_CONN_IND); 1274 else 1275 cp.evt_properties = cpu_to_le16(LE_LEGACY_ADV_IND); 1276 } else if (hci_adv_instance_is_scannable(hdev, instance) || 1277 (flags & MGMT_ADV_PARAM_SCAN_RSP)) { 1278 if (secondary_adv) 1279 cp.evt_properties = cpu_to_le16(LE_EXT_ADV_SCAN_IND); 1280 else 1281 cp.evt_properties = cpu_to_le16(LE_LEGACY_ADV_SCAN_IND); 1282 } else { 1283 if (secondary_adv) 1284 cp.evt_properties = cpu_to_le16(LE_EXT_ADV_NON_CONN_IND); 1285 else 1286 cp.evt_properties = cpu_to_le16(LE_LEGACY_NONCONN_IND); 1287 } 1288 1289 /* If Own_Address_Type equals 0x02 or 0x03, the Peer_Address parameter 1290 * contains the peer’s Identity Address and the Peer_Address_Type 1291 * parameter contains the peer’s Identity Type (i.e., 0x00 or 0x01). 1292 * These parameters are used to locate the corresponding local IRK in 1293 * the resolving list; this IRK is used to generate their own address 1294 * used in the advertisement. 1295 */ 1296 if (own_addr_type == ADDR_LE_DEV_RANDOM_RESOLVED) 1297 hci_copy_identity_address(hdev, &cp.peer_addr, 1298 &cp.peer_addr_type); 1299 1300 cp.own_addr_type = own_addr_type; 1301 cp.channel_map = hdev->le_adv_channel_map; 1302 cp.handle = adv ? adv->handle : instance; 1303 1304 if (flags & MGMT_ADV_FLAG_SEC_2M) { 1305 cp.primary_phy = HCI_ADV_PHY_1M; 1306 cp.secondary_phy = HCI_ADV_PHY_2M; 1307 } else if (flags & MGMT_ADV_FLAG_SEC_CODED) { 1308 cp.primary_phy = HCI_ADV_PHY_CODED; 1309 cp.secondary_phy = HCI_ADV_PHY_CODED; 1310 } else { 1311 /* In all other cases use 1M */ 1312 cp.primary_phy = HCI_ADV_PHY_1M; 1313 cp.secondary_phy = HCI_ADV_PHY_1M; 1314 } 1315 1316 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_PARAMS, 1317 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 1318 if (err) 1319 return err; 1320 1321 if ((own_addr_type == ADDR_LE_DEV_RANDOM || 1322 own_addr_type == ADDR_LE_DEV_RANDOM_RESOLVED) && 1323 bacmp(&random_addr, BDADDR_ANY)) { 1324 /* Check if random address need to be updated */ 1325 if (adv) { 1326 if (!bacmp(&random_addr, &adv->random_addr)) 1327 return 0; 1328 } else { 1329 if (!bacmp(&random_addr, &hdev->random_addr)) 1330 return 0; 1331 } 1332 1333 return hci_set_adv_set_random_addr_sync(hdev, instance, 1334 &random_addr); 1335 } 1336 1337 return 0; 1338 } 1339 1340 static int hci_set_ext_scan_rsp_data_sync(struct hci_dev *hdev, u8 instance) 1341 { 1342 DEFINE_FLEX(struct hci_cp_le_set_ext_scan_rsp_data, pdu, data, length, 1343 HCI_MAX_EXT_AD_LENGTH); 1344 u8 len; 1345 struct adv_info *adv = NULL; 1346 int err; 1347 1348 if (instance) { 1349 adv = hci_find_adv_instance(hdev, instance); 1350 if (!adv || !adv->scan_rsp_changed) 1351 return 0; 1352 } 1353 1354 len = eir_create_scan_rsp(hdev, instance, pdu->data); 1355 1356 pdu->handle = adv ? adv->handle : instance; 1357 pdu->length = len; 1358 pdu->operation = LE_SET_ADV_DATA_OP_COMPLETE; 1359 pdu->frag_pref = LE_SET_ADV_DATA_NO_FRAG; 1360 1361 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_SCAN_RSP_DATA, 1362 struct_size(pdu, data, len), pdu, 1363 HCI_CMD_TIMEOUT); 1364 if (err) 1365 return err; 1366 1367 if (adv) { 1368 adv->scan_rsp_changed = false; 1369 } else { 1370 memcpy(hdev->scan_rsp_data, pdu->data, len); 1371 hdev->scan_rsp_data_len = len; 1372 } 1373 1374 return 0; 1375 } 1376 1377 static int __hci_set_scan_rsp_data_sync(struct hci_dev *hdev, u8 instance) 1378 { 1379 struct hci_cp_le_set_scan_rsp_data cp; 1380 u8 len; 1381 1382 memset(&cp, 0, sizeof(cp)); 1383 1384 len = eir_create_scan_rsp(hdev, instance, cp.data); 1385 1386 if (hdev->scan_rsp_data_len == len && 1387 !memcmp(cp.data, hdev->scan_rsp_data, len)) 1388 return 0; 1389 1390 memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data)); 1391 hdev->scan_rsp_data_len = len; 1392 1393 cp.length = len; 1394 1395 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_SCAN_RSP_DATA, 1396 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 1397 } 1398 1399 int hci_update_scan_rsp_data_sync(struct hci_dev *hdev, u8 instance) 1400 { 1401 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED)) 1402 return 0; 1403 1404 if (ext_adv_capable(hdev)) 1405 return hci_set_ext_scan_rsp_data_sync(hdev, instance); 1406 1407 return __hci_set_scan_rsp_data_sync(hdev, instance); 1408 } 1409 1410 int hci_enable_ext_advertising_sync(struct hci_dev *hdev, u8 instance) 1411 { 1412 struct hci_cp_le_set_ext_adv_enable *cp; 1413 struct hci_cp_ext_adv_set *set; 1414 u8 data[sizeof(*cp) + sizeof(*set) * 1]; 1415 struct adv_info *adv; 1416 1417 if (instance > 0) { 1418 adv = hci_find_adv_instance(hdev, instance); 1419 if (!adv) 1420 return -EINVAL; 1421 /* If already enabled there is nothing to do */ 1422 if (adv->enabled) 1423 return 0; 1424 } else { 1425 adv = NULL; 1426 } 1427 1428 cp = (void *)data; 1429 set = (void *)cp->data; 1430 1431 memset(cp, 0, sizeof(*cp)); 1432 1433 cp->enable = 0x01; 1434 cp->num_of_sets = 0x01; 1435 1436 memset(set, 0, sizeof(*set)); 1437 1438 set->handle = adv ? adv->handle : instance; 1439 1440 /* Set duration per instance since controller is responsible for 1441 * scheduling it. 1442 */ 1443 if (adv && adv->timeout) { 1444 u16 duration = adv->timeout * MSEC_PER_SEC; 1445 1446 /* Time = N * 10 ms */ 1447 set->duration = cpu_to_le16(duration / 10); 1448 } 1449 1450 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_ENABLE, 1451 sizeof(*cp) + 1452 sizeof(*set) * cp->num_of_sets, 1453 data, HCI_CMD_TIMEOUT); 1454 } 1455 1456 int hci_start_ext_adv_sync(struct hci_dev *hdev, u8 instance) 1457 { 1458 int err; 1459 1460 err = hci_setup_ext_adv_instance_sync(hdev, instance); 1461 if (err) 1462 return err; 1463 1464 err = hci_set_ext_scan_rsp_data_sync(hdev, instance); 1465 if (err) 1466 return err; 1467 1468 return hci_enable_ext_advertising_sync(hdev, instance); 1469 } 1470 1471 int hci_disable_per_advertising_sync(struct hci_dev *hdev, u8 instance) 1472 { 1473 struct hci_cp_le_set_per_adv_enable cp; 1474 struct adv_info *adv = NULL; 1475 1476 /* If periodic advertising already disabled there is nothing to do. */ 1477 adv = hci_find_adv_instance(hdev, instance); 1478 if (!adv || !adv->periodic || !adv->enabled) 1479 return 0; 1480 1481 memset(&cp, 0, sizeof(cp)); 1482 1483 cp.enable = 0x00; 1484 cp.handle = instance; 1485 1486 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_ENABLE, 1487 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 1488 } 1489 1490 static int hci_set_per_adv_params_sync(struct hci_dev *hdev, u8 instance, 1491 u16 min_interval, u16 max_interval) 1492 { 1493 struct hci_cp_le_set_per_adv_params cp; 1494 1495 memset(&cp, 0, sizeof(cp)); 1496 1497 if (!min_interval) 1498 min_interval = DISCOV_LE_PER_ADV_INT_MIN; 1499 1500 if (!max_interval) 1501 max_interval = DISCOV_LE_PER_ADV_INT_MAX; 1502 1503 cp.handle = instance; 1504 cp.min_interval = cpu_to_le16(min_interval); 1505 cp.max_interval = cpu_to_le16(max_interval); 1506 cp.periodic_properties = 0x0000; 1507 1508 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_PARAMS, 1509 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 1510 } 1511 1512 static int hci_set_per_adv_data_sync(struct hci_dev *hdev, u8 instance) 1513 { 1514 DEFINE_FLEX(struct hci_cp_le_set_per_adv_data, pdu, data, length, 1515 HCI_MAX_PER_AD_LENGTH); 1516 u8 len; 1517 struct adv_info *adv = NULL; 1518 1519 if (instance) { 1520 adv = hci_find_adv_instance(hdev, instance); 1521 if (!adv || !adv->periodic) 1522 return 0; 1523 } 1524 1525 len = eir_create_per_adv_data(hdev, instance, pdu->data); 1526 1527 pdu->length = len; 1528 pdu->handle = adv ? adv->handle : instance; 1529 pdu->operation = LE_SET_ADV_DATA_OP_COMPLETE; 1530 1531 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_DATA, 1532 struct_size(pdu, data, len), pdu, 1533 HCI_CMD_TIMEOUT); 1534 } 1535 1536 static int hci_enable_per_advertising_sync(struct hci_dev *hdev, u8 instance) 1537 { 1538 struct hci_cp_le_set_per_adv_enable cp; 1539 struct adv_info *adv = NULL; 1540 1541 /* If periodic advertising already enabled there is nothing to do. */ 1542 adv = hci_find_adv_instance(hdev, instance); 1543 if (adv && adv->periodic && adv->enabled) 1544 return 0; 1545 1546 memset(&cp, 0, sizeof(cp)); 1547 1548 cp.enable = 0x01; 1549 cp.handle = instance; 1550 1551 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PER_ADV_ENABLE, 1552 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 1553 } 1554 1555 /* Checks if periodic advertising data contains a Basic Announcement and if it 1556 * does generates a Broadcast ID and add Broadcast Announcement. 1557 */ 1558 static int hci_adv_bcast_annoucement(struct hci_dev *hdev, struct adv_info *adv) 1559 { 1560 u8 bid[3]; 1561 u8 ad[4 + 3]; 1562 1563 /* Skip if NULL adv as instance 0x00 is used for general purpose 1564 * advertising so it cannot used for the likes of Broadcast Announcement 1565 * as it can be overwritten at any point. 1566 */ 1567 if (!adv) 1568 return 0; 1569 1570 /* Check if PA data doesn't contains a Basic Audio Announcement then 1571 * there is nothing to do. 1572 */ 1573 if (!eir_get_service_data(adv->per_adv_data, adv->per_adv_data_len, 1574 0x1851, NULL)) 1575 return 0; 1576 1577 /* Check if advertising data already has a Broadcast Announcement since 1578 * the process may want to control the Broadcast ID directly and in that 1579 * case the kernel shall no interfere. 1580 */ 1581 if (eir_get_service_data(adv->adv_data, adv->adv_data_len, 0x1852, 1582 NULL)) 1583 return 0; 1584 1585 /* Generate Broadcast ID */ 1586 get_random_bytes(bid, sizeof(bid)); 1587 eir_append_service_data(ad, 0, 0x1852, bid, sizeof(bid)); 1588 hci_set_adv_instance_data(hdev, adv->instance, sizeof(ad), ad, 0, NULL); 1589 1590 return hci_update_adv_data_sync(hdev, adv->instance); 1591 } 1592 1593 int hci_start_per_adv_sync(struct hci_dev *hdev, u8 instance, u8 data_len, 1594 u8 *data, u32 flags, u16 min_interval, 1595 u16 max_interval, u16 sync_interval) 1596 { 1597 struct adv_info *adv = NULL; 1598 int err; 1599 bool added = false; 1600 1601 hci_disable_per_advertising_sync(hdev, instance); 1602 1603 if (instance) { 1604 adv = hci_find_adv_instance(hdev, instance); 1605 /* Create an instance if that could not be found */ 1606 if (!adv) { 1607 adv = hci_add_per_instance(hdev, instance, flags, 1608 data_len, data, 1609 sync_interval, 1610 sync_interval); 1611 if (IS_ERR(adv)) 1612 return PTR_ERR(adv); 1613 adv->pending = false; 1614 added = true; 1615 } 1616 } 1617 1618 /* Start advertising */ 1619 err = hci_start_ext_adv_sync(hdev, instance); 1620 if (err < 0) 1621 goto fail; 1622 1623 err = hci_adv_bcast_annoucement(hdev, adv); 1624 if (err < 0) 1625 goto fail; 1626 1627 err = hci_set_per_adv_params_sync(hdev, instance, min_interval, 1628 max_interval); 1629 if (err < 0) 1630 goto fail; 1631 1632 err = hci_set_per_adv_data_sync(hdev, instance); 1633 if (err < 0) 1634 goto fail; 1635 1636 err = hci_enable_per_advertising_sync(hdev, instance); 1637 if (err < 0) 1638 goto fail; 1639 1640 return 0; 1641 1642 fail: 1643 if (added) 1644 hci_remove_adv_instance(hdev, instance); 1645 1646 return err; 1647 } 1648 1649 static int hci_start_adv_sync(struct hci_dev *hdev, u8 instance) 1650 { 1651 int err; 1652 1653 if (ext_adv_capable(hdev)) 1654 return hci_start_ext_adv_sync(hdev, instance); 1655 1656 err = hci_update_adv_data_sync(hdev, instance); 1657 if (err) 1658 return err; 1659 1660 err = hci_update_scan_rsp_data_sync(hdev, instance); 1661 if (err) 1662 return err; 1663 1664 return hci_enable_advertising_sync(hdev); 1665 } 1666 1667 int hci_enable_advertising_sync(struct hci_dev *hdev) 1668 { 1669 struct adv_info *adv_instance; 1670 struct hci_cp_le_set_adv_param cp; 1671 u8 own_addr_type, enable = 0x01; 1672 bool connectable; 1673 u16 adv_min_interval, adv_max_interval; 1674 u32 flags; 1675 u8 status; 1676 1677 if (ext_adv_capable(hdev)) 1678 return hci_enable_ext_advertising_sync(hdev, 1679 hdev->cur_adv_instance); 1680 1681 flags = hci_adv_instance_flags(hdev, hdev->cur_adv_instance); 1682 adv_instance = hci_find_adv_instance(hdev, hdev->cur_adv_instance); 1683 1684 /* If the "connectable" instance flag was not set, then choose between 1685 * ADV_IND and ADV_NONCONN_IND based on the global connectable setting. 1686 */ 1687 connectable = (flags & MGMT_ADV_FLAG_CONNECTABLE) || 1688 mgmt_get_connectable(hdev); 1689 1690 if (!is_advertising_allowed(hdev, connectable)) 1691 return -EINVAL; 1692 1693 status = hci_disable_advertising_sync(hdev); 1694 if (status) 1695 return status; 1696 1697 /* Clear the HCI_LE_ADV bit temporarily so that the 1698 * hci_update_random_address knows that it's safe to go ahead 1699 * and write a new random address. The flag will be set back on 1700 * as soon as the SET_ADV_ENABLE HCI command completes. 1701 */ 1702 hci_dev_clear_flag(hdev, HCI_LE_ADV); 1703 1704 /* Set require_privacy to true only when non-connectable 1705 * advertising is used. In that case it is fine to use a 1706 * non-resolvable private address. 1707 */ 1708 status = hci_update_random_address_sync(hdev, !connectable, 1709 adv_use_rpa(hdev, flags), 1710 &own_addr_type); 1711 if (status) 1712 return status; 1713 1714 memset(&cp, 0, sizeof(cp)); 1715 1716 if (adv_instance) { 1717 adv_min_interval = adv_instance->min_interval; 1718 adv_max_interval = adv_instance->max_interval; 1719 } else { 1720 adv_min_interval = hdev->le_adv_min_interval; 1721 adv_max_interval = hdev->le_adv_max_interval; 1722 } 1723 1724 if (connectable) { 1725 cp.type = LE_ADV_IND; 1726 } else { 1727 if (hci_adv_instance_is_scannable(hdev, hdev->cur_adv_instance)) 1728 cp.type = LE_ADV_SCAN_IND; 1729 else 1730 cp.type = LE_ADV_NONCONN_IND; 1731 1732 if (!hci_dev_test_flag(hdev, HCI_DISCOVERABLE) || 1733 hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE)) { 1734 adv_min_interval = DISCOV_LE_FAST_ADV_INT_MIN; 1735 adv_max_interval = DISCOV_LE_FAST_ADV_INT_MAX; 1736 } 1737 } 1738 1739 cp.min_interval = cpu_to_le16(adv_min_interval); 1740 cp.max_interval = cpu_to_le16(adv_max_interval); 1741 cp.own_address_type = own_addr_type; 1742 cp.channel_map = hdev->le_adv_channel_map; 1743 1744 status = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_PARAM, 1745 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 1746 if (status) 1747 return status; 1748 1749 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_ENABLE, 1750 sizeof(enable), &enable, HCI_CMD_TIMEOUT); 1751 } 1752 1753 static int enable_advertising_sync(struct hci_dev *hdev, void *data) 1754 { 1755 return hci_enable_advertising_sync(hdev); 1756 } 1757 1758 int hci_enable_advertising(struct hci_dev *hdev) 1759 { 1760 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) && 1761 list_empty(&hdev->adv_instances)) 1762 return 0; 1763 1764 return hci_cmd_sync_queue(hdev, enable_advertising_sync, NULL, NULL); 1765 } 1766 1767 int hci_remove_ext_adv_instance_sync(struct hci_dev *hdev, u8 instance, 1768 struct sock *sk) 1769 { 1770 int err; 1771 1772 if (!ext_adv_capable(hdev)) 1773 return 0; 1774 1775 err = hci_disable_ext_adv_instance_sync(hdev, instance); 1776 if (err) 1777 return err; 1778 1779 /* If request specifies an instance that doesn't exist, fail */ 1780 if (instance > 0 && !hci_find_adv_instance(hdev, instance)) 1781 return -EINVAL; 1782 1783 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_REMOVE_ADV_SET, 1784 sizeof(instance), &instance, 0, 1785 HCI_CMD_TIMEOUT, sk); 1786 } 1787 1788 static int remove_ext_adv_sync(struct hci_dev *hdev, void *data) 1789 { 1790 struct adv_info *adv = data; 1791 u8 instance = 0; 1792 1793 if (adv) 1794 instance = adv->instance; 1795 1796 return hci_remove_ext_adv_instance_sync(hdev, instance, NULL); 1797 } 1798 1799 int hci_remove_ext_adv_instance(struct hci_dev *hdev, u8 instance) 1800 { 1801 struct adv_info *adv = NULL; 1802 1803 if (instance) { 1804 adv = hci_find_adv_instance(hdev, instance); 1805 if (!adv) 1806 return -EINVAL; 1807 } 1808 1809 return hci_cmd_sync_queue(hdev, remove_ext_adv_sync, adv, NULL); 1810 } 1811 1812 int hci_le_terminate_big_sync(struct hci_dev *hdev, u8 handle, u8 reason) 1813 { 1814 struct hci_cp_le_term_big cp; 1815 1816 memset(&cp, 0, sizeof(cp)); 1817 cp.handle = handle; 1818 cp.reason = reason; 1819 1820 return __hci_cmd_sync_status(hdev, HCI_OP_LE_TERM_BIG, 1821 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 1822 } 1823 1824 static int hci_set_ext_adv_data_sync(struct hci_dev *hdev, u8 instance) 1825 { 1826 DEFINE_FLEX(struct hci_cp_le_set_ext_adv_data, pdu, data, length, 1827 HCI_MAX_EXT_AD_LENGTH); 1828 u8 len; 1829 struct adv_info *adv = NULL; 1830 int err; 1831 1832 if (instance) { 1833 adv = hci_find_adv_instance(hdev, instance); 1834 if (!adv || !adv->adv_data_changed) 1835 return 0; 1836 } 1837 1838 len = eir_create_adv_data(hdev, instance, pdu->data); 1839 1840 pdu->length = len; 1841 pdu->handle = adv ? adv->handle : instance; 1842 pdu->operation = LE_SET_ADV_DATA_OP_COMPLETE; 1843 pdu->frag_pref = LE_SET_ADV_DATA_NO_FRAG; 1844 1845 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_DATA, 1846 struct_size(pdu, data, len), pdu, 1847 HCI_CMD_TIMEOUT); 1848 if (err) 1849 return err; 1850 1851 /* Update data if the command succeed */ 1852 if (adv) { 1853 adv->adv_data_changed = false; 1854 } else { 1855 memcpy(hdev->adv_data, pdu->data, len); 1856 hdev->adv_data_len = len; 1857 } 1858 1859 return 0; 1860 } 1861 1862 static int hci_set_adv_data_sync(struct hci_dev *hdev, u8 instance) 1863 { 1864 struct hci_cp_le_set_adv_data cp; 1865 u8 len; 1866 1867 memset(&cp, 0, sizeof(cp)); 1868 1869 len = eir_create_adv_data(hdev, instance, cp.data); 1870 1871 /* There's nothing to do if the data hasn't changed */ 1872 if (hdev->adv_data_len == len && 1873 memcmp(cp.data, hdev->adv_data, len) == 0) 1874 return 0; 1875 1876 memcpy(hdev->adv_data, cp.data, sizeof(cp.data)); 1877 hdev->adv_data_len = len; 1878 1879 cp.length = len; 1880 1881 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_DATA, 1882 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 1883 } 1884 1885 int hci_update_adv_data_sync(struct hci_dev *hdev, u8 instance) 1886 { 1887 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED)) 1888 return 0; 1889 1890 if (ext_adv_capable(hdev)) 1891 return hci_set_ext_adv_data_sync(hdev, instance); 1892 1893 return hci_set_adv_data_sync(hdev, instance); 1894 } 1895 1896 int hci_schedule_adv_instance_sync(struct hci_dev *hdev, u8 instance, 1897 bool force) 1898 { 1899 struct adv_info *adv = NULL; 1900 u16 timeout; 1901 1902 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) && !ext_adv_capable(hdev)) 1903 return -EPERM; 1904 1905 if (hdev->adv_instance_timeout) 1906 return -EBUSY; 1907 1908 adv = hci_find_adv_instance(hdev, instance); 1909 if (!adv) 1910 return -ENOENT; 1911 1912 /* A zero timeout means unlimited advertising. As long as there is 1913 * only one instance, duration should be ignored. We still set a timeout 1914 * in case further instances are being added later on. 1915 * 1916 * If the remaining lifetime of the instance is more than the duration 1917 * then the timeout corresponds to the duration, otherwise it will be 1918 * reduced to the remaining instance lifetime. 1919 */ 1920 if (adv->timeout == 0 || adv->duration <= adv->remaining_time) 1921 timeout = adv->duration; 1922 else 1923 timeout = adv->remaining_time; 1924 1925 /* The remaining time is being reduced unless the instance is being 1926 * advertised without time limit. 1927 */ 1928 if (adv->timeout) 1929 adv->remaining_time = adv->remaining_time - timeout; 1930 1931 /* Only use work for scheduling instances with legacy advertising */ 1932 if (!ext_adv_capable(hdev)) { 1933 hdev->adv_instance_timeout = timeout; 1934 queue_delayed_work(hdev->req_workqueue, 1935 &hdev->adv_instance_expire, 1936 msecs_to_jiffies(timeout * 1000)); 1937 } 1938 1939 /* If we're just re-scheduling the same instance again then do not 1940 * execute any HCI commands. This happens when a single instance is 1941 * being advertised. 1942 */ 1943 if (!force && hdev->cur_adv_instance == instance && 1944 hci_dev_test_flag(hdev, HCI_LE_ADV)) 1945 return 0; 1946 1947 hdev->cur_adv_instance = instance; 1948 1949 return hci_start_adv_sync(hdev, instance); 1950 } 1951 1952 static int hci_clear_adv_sets_sync(struct hci_dev *hdev, struct sock *sk) 1953 { 1954 int err; 1955 1956 if (!ext_adv_capable(hdev)) 1957 return 0; 1958 1959 /* Disable instance 0x00 to disable all instances */ 1960 err = hci_disable_ext_adv_instance_sync(hdev, 0x00); 1961 if (err) 1962 return err; 1963 1964 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CLEAR_ADV_SETS, 1965 0, NULL, 0, HCI_CMD_TIMEOUT, sk); 1966 } 1967 1968 static int hci_clear_adv_sync(struct hci_dev *hdev, struct sock *sk, bool force) 1969 { 1970 struct adv_info *adv, *n; 1971 int err = 0; 1972 1973 if (ext_adv_capable(hdev)) 1974 /* Remove all existing sets */ 1975 err = hci_clear_adv_sets_sync(hdev, sk); 1976 if (ext_adv_capable(hdev)) 1977 return err; 1978 1979 /* This is safe as long as there is no command send while the lock is 1980 * held. 1981 */ 1982 hci_dev_lock(hdev); 1983 1984 /* Cleanup non-ext instances */ 1985 list_for_each_entry_safe(adv, n, &hdev->adv_instances, list) { 1986 u8 instance = adv->instance; 1987 int err; 1988 1989 if (!(force || adv->timeout)) 1990 continue; 1991 1992 err = hci_remove_adv_instance(hdev, instance); 1993 if (!err) 1994 mgmt_advertising_removed(sk, hdev, instance); 1995 } 1996 1997 hci_dev_unlock(hdev); 1998 1999 return 0; 2000 } 2001 2002 static int hci_remove_adv_sync(struct hci_dev *hdev, u8 instance, 2003 struct sock *sk) 2004 { 2005 int err = 0; 2006 2007 /* If we use extended advertising, instance has to be removed first. */ 2008 if (ext_adv_capable(hdev)) 2009 err = hci_remove_ext_adv_instance_sync(hdev, instance, sk); 2010 if (ext_adv_capable(hdev)) 2011 return err; 2012 2013 /* This is safe as long as there is no command send while the lock is 2014 * held. 2015 */ 2016 hci_dev_lock(hdev); 2017 2018 err = hci_remove_adv_instance(hdev, instance); 2019 if (!err) 2020 mgmt_advertising_removed(sk, hdev, instance); 2021 2022 hci_dev_unlock(hdev); 2023 2024 return err; 2025 } 2026 2027 /* For a single instance: 2028 * - force == true: The instance will be removed even when its remaining 2029 * lifetime is not zero. 2030 * - force == false: the instance will be deactivated but kept stored unless 2031 * the remaining lifetime is zero. 2032 * 2033 * For instance == 0x00: 2034 * - force == true: All instances will be removed regardless of their timeout 2035 * setting. 2036 * - force == false: Only instances that have a timeout will be removed. 2037 */ 2038 int hci_remove_advertising_sync(struct hci_dev *hdev, struct sock *sk, 2039 u8 instance, bool force) 2040 { 2041 struct adv_info *next = NULL; 2042 int err; 2043 2044 /* Cancel any timeout concerning the removed instance(s). */ 2045 if (!instance || hdev->cur_adv_instance == instance) 2046 cancel_adv_timeout(hdev); 2047 2048 /* Get the next instance to advertise BEFORE we remove 2049 * the current one. This can be the same instance again 2050 * if there is only one instance. 2051 */ 2052 if (hdev->cur_adv_instance == instance) 2053 next = hci_get_next_instance(hdev, instance); 2054 2055 if (!instance) { 2056 err = hci_clear_adv_sync(hdev, sk, force); 2057 if (err) 2058 return err; 2059 } else { 2060 struct adv_info *adv = hci_find_adv_instance(hdev, instance); 2061 2062 if (force || (adv && adv->timeout && !adv->remaining_time)) { 2063 /* Don't advertise a removed instance. */ 2064 if (next && next->instance == instance) 2065 next = NULL; 2066 2067 err = hci_remove_adv_sync(hdev, instance, sk); 2068 if (err) 2069 return err; 2070 } 2071 } 2072 2073 if (!hdev_is_powered(hdev) || hci_dev_test_flag(hdev, HCI_ADVERTISING)) 2074 return 0; 2075 2076 if (next && !ext_adv_capable(hdev)) 2077 hci_schedule_adv_instance_sync(hdev, next->instance, false); 2078 2079 return 0; 2080 } 2081 2082 int hci_read_rssi_sync(struct hci_dev *hdev, __le16 handle) 2083 { 2084 struct hci_cp_read_rssi cp; 2085 2086 cp.handle = handle; 2087 return __hci_cmd_sync_status(hdev, HCI_OP_READ_RSSI, 2088 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 2089 } 2090 2091 int hci_read_clock_sync(struct hci_dev *hdev, struct hci_cp_read_clock *cp) 2092 { 2093 return __hci_cmd_sync_status(hdev, HCI_OP_READ_CLOCK, 2094 sizeof(*cp), cp, HCI_CMD_TIMEOUT); 2095 } 2096 2097 int hci_read_tx_power_sync(struct hci_dev *hdev, __le16 handle, u8 type) 2098 { 2099 struct hci_cp_read_tx_power cp; 2100 2101 cp.handle = handle; 2102 cp.type = type; 2103 return __hci_cmd_sync_status(hdev, HCI_OP_READ_TX_POWER, 2104 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 2105 } 2106 2107 int hci_disable_advertising_sync(struct hci_dev *hdev) 2108 { 2109 u8 enable = 0x00; 2110 int err = 0; 2111 2112 /* If controller is not advertising we are done. */ 2113 if (!hci_dev_test_flag(hdev, HCI_LE_ADV)) 2114 return 0; 2115 2116 if (ext_adv_capable(hdev)) 2117 err = hci_disable_ext_adv_instance_sync(hdev, 0x00); 2118 if (ext_adv_capable(hdev)) 2119 return err; 2120 2121 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_ENABLE, 2122 sizeof(enable), &enable, HCI_CMD_TIMEOUT); 2123 } 2124 2125 static int hci_le_set_ext_scan_enable_sync(struct hci_dev *hdev, u8 val, 2126 u8 filter_dup) 2127 { 2128 struct hci_cp_le_set_ext_scan_enable cp; 2129 2130 memset(&cp, 0, sizeof(cp)); 2131 cp.enable = val; 2132 2133 if (hci_dev_test_flag(hdev, HCI_MESH)) 2134 cp.filter_dup = LE_SCAN_FILTER_DUP_DISABLE; 2135 else 2136 cp.filter_dup = filter_dup; 2137 2138 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_SCAN_ENABLE, 2139 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 2140 } 2141 2142 static int hci_le_set_scan_enable_sync(struct hci_dev *hdev, u8 val, 2143 u8 filter_dup) 2144 { 2145 struct hci_cp_le_set_scan_enable cp; 2146 2147 if (use_ext_scan(hdev)) 2148 return hci_le_set_ext_scan_enable_sync(hdev, val, filter_dup); 2149 2150 memset(&cp, 0, sizeof(cp)); 2151 cp.enable = val; 2152 2153 if (val && hci_dev_test_flag(hdev, HCI_MESH)) 2154 cp.filter_dup = LE_SCAN_FILTER_DUP_DISABLE; 2155 else 2156 cp.filter_dup = filter_dup; 2157 2158 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_SCAN_ENABLE, 2159 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 2160 } 2161 2162 static int hci_le_set_addr_resolution_enable_sync(struct hci_dev *hdev, u8 val) 2163 { 2164 if (!use_ll_privacy(hdev)) 2165 return 0; 2166 2167 /* If controller is not/already resolving we are done. */ 2168 if (val == hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION)) 2169 return 0; 2170 2171 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADDR_RESOLV_ENABLE, 2172 sizeof(val), &val, HCI_CMD_TIMEOUT); 2173 } 2174 2175 static int hci_scan_disable_sync(struct hci_dev *hdev) 2176 { 2177 int err; 2178 2179 /* If controller is not scanning we are done. */ 2180 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN)) 2181 return 0; 2182 2183 if (hdev->scanning_paused) { 2184 bt_dev_dbg(hdev, "Scanning is paused for suspend"); 2185 return 0; 2186 } 2187 2188 err = hci_le_set_scan_enable_sync(hdev, LE_SCAN_DISABLE, 0x00); 2189 if (err) { 2190 bt_dev_err(hdev, "Unable to disable scanning: %d", err); 2191 return err; 2192 } 2193 2194 return err; 2195 } 2196 2197 static bool scan_use_rpa(struct hci_dev *hdev) 2198 { 2199 return hci_dev_test_flag(hdev, HCI_PRIVACY); 2200 } 2201 2202 static void hci_start_interleave_scan(struct hci_dev *hdev) 2203 { 2204 hdev->interleave_scan_state = INTERLEAVE_SCAN_NO_FILTER; 2205 queue_delayed_work(hdev->req_workqueue, 2206 &hdev->interleave_scan, 0); 2207 } 2208 2209 static void cancel_interleave_scan(struct hci_dev *hdev) 2210 { 2211 bt_dev_dbg(hdev, "cancelling interleave scan"); 2212 2213 cancel_delayed_work_sync(&hdev->interleave_scan); 2214 2215 hdev->interleave_scan_state = INTERLEAVE_SCAN_NONE; 2216 } 2217 2218 /* Return true if interleave_scan wasn't started until exiting this function, 2219 * otherwise, return false 2220 */ 2221 static bool hci_update_interleaved_scan_sync(struct hci_dev *hdev) 2222 { 2223 /* Do interleaved scan only if all of the following are true: 2224 * - There is at least one ADV monitor 2225 * - At least one pending LE connection or one device to be scanned for 2226 * - Monitor offloading is not supported 2227 * If so, we should alternate between allowlist scan and one without 2228 * any filters to save power. 2229 */ 2230 bool use_interleaving = hci_is_adv_monitoring(hdev) && 2231 !(list_empty(&hdev->pend_le_conns) && 2232 list_empty(&hdev->pend_le_reports)) && 2233 hci_get_adv_monitor_offload_ext(hdev) == 2234 HCI_ADV_MONITOR_EXT_NONE; 2235 bool is_interleaving = is_interleave_scanning(hdev); 2236 2237 if (use_interleaving && !is_interleaving) { 2238 hci_start_interleave_scan(hdev); 2239 bt_dev_dbg(hdev, "starting interleave scan"); 2240 return true; 2241 } 2242 2243 if (!use_interleaving && is_interleaving) 2244 cancel_interleave_scan(hdev); 2245 2246 return false; 2247 } 2248 2249 /* Removes connection to resolve list if needed.*/ 2250 static int hci_le_del_resolve_list_sync(struct hci_dev *hdev, 2251 bdaddr_t *bdaddr, u8 bdaddr_type) 2252 { 2253 struct hci_cp_le_del_from_resolv_list cp; 2254 struct bdaddr_list_with_irk *entry; 2255 2256 if (!use_ll_privacy(hdev)) 2257 return 0; 2258 2259 /* Check if the IRK has been programmed */ 2260 entry = hci_bdaddr_list_lookup_with_irk(&hdev->le_resolv_list, bdaddr, 2261 bdaddr_type); 2262 if (!entry) 2263 return 0; 2264 2265 cp.bdaddr_type = bdaddr_type; 2266 bacpy(&cp.bdaddr, bdaddr); 2267 2268 return __hci_cmd_sync_status(hdev, HCI_OP_LE_DEL_FROM_RESOLV_LIST, 2269 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 2270 } 2271 2272 static int hci_le_del_accept_list_sync(struct hci_dev *hdev, 2273 bdaddr_t *bdaddr, u8 bdaddr_type) 2274 { 2275 struct hci_cp_le_del_from_accept_list cp; 2276 int err; 2277 2278 /* Check if device is on accept list before removing it */ 2279 if (!hci_bdaddr_list_lookup(&hdev->le_accept_list, bdaddr, bdaddr_type)) 2280 return 0; 2281 2282 cp.bdaddr_type = bdaddr_type; 2283 bacpy(&cp.bdaddr, bdaddr); 2284 2285 /* Ignore errors when removing from resolving list as that is likely 2286 * that the device was never added. 2287 */ 2288 hci_le_del_resolve_list_sync(hdev, &cp.bdaddr, cp.bdaddr_type); 2289 2290 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_DEL_FROM_ACCEPT_LIST, 2291 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 2292 if (err) { 2293 bt_dev_err(hdev, "Unable to remove from allow list: %d", err); 2294 return err; 2295 } 2296 2297 bt_dev_dbg(hdev, "Remove %pMR (0x%x) from allow list", &cp.bdaddr, 2298 cp.bdaddr_type); 2299 2300 return 0; 2301 } 2302 2303 struct conn_params { 2304 bdaddr_t addr; 2305 u8 addr_type; 2306 hci_conn_flags_t flags; 2307 u8 privacy_mode; 2308 }; 2309 2310 /* Adds connection to resolve list if needed. 2311 * Setting params to NULL programs local hdev->irk 2312 */ 2313 static int hci_le_add_resolve_list_sync(struct hci_dev *hdev, 2314 struct conn_params *params) 2315 { 2316 struct hci_cp_le_add_to_resolv_list cp; 2317 struct smp_irk *irk; 2318 struct bdaddr_list_with_irk *entry; 2319 struct hci_conn_params *p; 2320 2321 if (!use_ll_privacy(hdev)) 2322 return 0; 2323 2324 /* Attempt to program local identity address, type and irk if params is 2325 * NULL. 2326 */ 2327 if (!params) { 2328 if (!hci_dev_test_flag(hdev, HCI_PRIVACY)) 2329 return 0; 2330 2331 hci_copy_identity_address(hdev, &cp.bdaddr, &cp.bdaddr_type); 2332 memcpy(cp.peer_irk, hdev->irk, 16); 2333 goto done; 2334 } 2335 2336 irk = hci_find_irk_by_addr(hdev, ¶ms->addr, params->addr_type); 2337 if (!irk) 2338 return 0; 2339 2340 /* Check if the IK has _not_ been programmed yet. */ 2341 entry = hci_bdaddr_list_lookup_with_irk(&hdev->le_resolv_list, 2342 ¶ms->addr, 2343 params->addr_type); 2344 if (entry) 2345 return 0; 2346 2347 cp.bdaddr_type = params->addr_type; 2348 bacpy(&cp.bdaddr, ¶ms->addr); 2349 memcpy(cp.peer_irk, irk->val, 16); 2350 2351 /* Default privacy mode is always Network */ 2352 params->privacy_mode = HCI_NETWORK_PRIVACY; 2353 2354 rcu_read_lock(); 2355 p = hci_pend_le_action_lookup(&hdev->pend_le_conns, 2356 ¶ms->addr, params->addr_type); 2357 if (!p) 2358 p = hci_pend_le_action_lookup(&hdev->pend_le_reports, 2359 ¶ms->addr, params->addr_type); 2360 if (p) 2361 WRITE_ONCE(p->privacy_mode, HCI_NETWORK_PRIVACY); 2362 rcu_read_unlock(); 2363 2364 done: 2365 if (hci_dev_test_flag(hdev, HCI_PRIVACY)) 2366 memcpy(cp.local_irk, hdev->irk, 16); 2367 else 2368 memset(cp.local_irk, 0, 16); 2369 2370 return __hci_cmd_sync_status(hdev, HCI_OP_LE_ADD_TO_RESOLV_LIST, 2371 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 2372 } 2373 2374 /* Set Device Privacy Mode. */ 2375 static int hci_le_set_privacy_mode_sync(struct hci_dev *hdev, 2376 struct conn_params *params) 2377 { 2378 struct hci_cp_le_set_privacy_mode cp; 2379 struct smp_irk *irk; 2380 2381 /* If device privacy mode has already been set there is nothing to do */ 2382 if (params->privacy_mode == HCI_DEVICE_PRIVACY) 2383 return 0; 2384 2385 /* Check if HCI_CONN_FLAG_DEVICE_PRIVACY has been set as it also 2386 * indicates that LL Privacy has been enabled and 2387 * HCI_OP_LE_SET_PRIVACY_MODE is supported. 2388 */ 2389 if (!(params->flags & HCI_CONN_FLAG_DEVICE_PRIVACY)) 2390 return 0; 2391 2392 irk = hci_find_irk_by_addr(hdev, ¶ms->addr, params->addr_type); 2393 if (!irk) 2394 return 0; 2395 2396 memset(&cp, 0, sizeof(cp)); 2397 cp.bdaddr_type = irk->addr_type; 2398 bacpy(&cp.bdaddr, &irk->bdaddr); 2399 cp.mode = HCI_DEVICE_PRIVACY; 2400 2401 /* Note: params->privacy_mode is not updated since it is a copy */ 2402 2403 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_PRIVACY_MODE, 2404 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 2405 } 2406 2407 /* Adds connection to allow list if needed, if the device uses RPA (has IRK) 2408 * this attempts to program the device in the resolving list as well and 2409 * properly set the privacy mode. 2410 */ 2411 static int hci_le_add_accept_list_sync(struct hci_dev *hdev, 2412 struct conn_params *params, 2413 u8 *num_entries) 2414 { 2415 struct hci_cp_le_add_to_accept_list cp; 2416 int err; 2417 2418 /* During suspend, only wakeable devices can be in acceptlist */ 2419 if (hdev->suspended && 2420 !(params->flags & HCI_CONN_FLAG_REMOTE_WAKEUP)) { 2421 hci_le_del_accept_list_sync(hdev, ¶ms->addr, 2422 params->addr_type); 2423 return 0; 2424 } 2425 2426 /* Select filter policy to accept all advertising */ 2427 if (*num_entries >= hdev->le_accept_list_size) 2428 return -ENOSPC; 2429 2430 /* Accept list can not be used with RPAs */ 2431 if (!use_ll_privacy(hdev) && 2432 hci_find_irk_by_addr(hdev, ¶ms->addr, params->addr_type)) 2433 return -EINVAL; 2434 2435 /* Attempt to program the device in the resolving list first to avoid 2436 * having to rollback in case it fails since the resolving list is 2437 * dynamic it can probably be smaller than the accept list. 2438 */ 2439 err = hci_le_add_resolve_list_sync(hdev, params); 2440 if (err) { 2441 bt_dev_err(hdev, "Unable to add to resolve list: %d", err); 2442 return err; 2443 } 2444 2445 /* Set Privacy Mode */ 2446 err = hci_le_set_privacy_mode_sync(hdev, params); 2447 if (err) { 2448 bt_dev_err(hdev, "Unable to set privacy mode: %d", err); 2449 return err; 2450 } 2451 2452 /* Check if already in accept list */ 2453 if (hci_bdaddr_list_lookup(&hdev->le_accept_list, ¶ms->addr, 2454 params->addr_type)) 2455 return 0; 2456 2457 *num_entries += 1; 2458 cp.bdaddr_type = params->addr_type; 2459 bacpy(&cp.bdaddr, ¶ms->addr); 2460 2461 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_ADD_TO_ACCEPT_LIST, 2462 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 2463 if (err) { 2464 bt_dev_err(hdev, "Unable to add to allow list: %d", err); 2465 /* Rollback the device from the resolving list */ 2466 hci_le_del_resolve_list_sync(hdev, &cp.bdaddr, cp.bdaddr_type); 2467 return err; 2468 } 2469 2470 bt_dev_dbg(hdev, "Add %pMR (0x%x) to allow list", &cp.bdaddr, 2471 cp.bdaddr_type); 2472 2473 return 0; 2474 } 2475 2476 /* This function disables/pause all advertising instances */ 2477 static int hci_pause_advertising_sync(struct hci_dev *hdev) 2478 { 2479 int err; 2480 int old_state; 2481 2482 /* If already been paused there is nothing to do. */ 2483 if (hdev->advertising_paused) 2484 return 0; 2485 2486 bt_dev_dbg(hdev, "Pausing directed advertising"); 2487 2488 /* Stop directed advertising */ 2489 old_state = hci_dev_test_flag(hdev, HCI_ADVERTISING); 2490 if (old_state) { 2491 /* When discoverable timeout triggers, then just make sure 2492 * the limited discoverable flag is cleared. Even in the case 2493 * of a timeout triggered from general discoverable, it is 2494 * safe to unconditionally clear the flag. 2495 */ 2496 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE); 2497 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE); 2498 hdev->discov_timeout = 0; 2499 } 2500 2501 bt_dev_dbg(hdev, "Pausing advertising instances"); 2502 2503 /* Call to disable any advertisements active on the controller. 2504 * This will succeed even if no advertisements are configured. 2505 */ 2506 err = hci_disable_advertising_sync(hdev); 2507 if (err) 2508 return err; 2509 2510 /* If we are using software rotation, pause the loop */ 2511 if (!ext_adv_capable(hdev)) 2512 cancel_adv_timeout(hdev); 2513 2514 hdev->advertising_paused = true; 2515 hdev->advertising_old_state = old_state; 2516 2517 return 0; 2518 } 2519 2520 /* This function enables all user advertising instances */ 2521 static int hci_resume_advertising_sync(struct hci_dev *hdev) 2522 { 2523 struct adv_info *adv, *tmp; 2524 int err; 2525 2526 /* If advertising has not been paused there is nothing to do. */ 2527 if (!hdev->advertising_paused) 2528 return 0; 2529 2530 /* Resume directed advertising */ 2531 hdev->advertising_paused = false; 2532 if (hdev->advertising_old_state) { 2533 hci_dev_set_flag(hdev, HCI_ADVERTISING); 2534 hdev->advertising_old_state = 0; 2535 } 2536 2537 bt_dev_dbg(hdev, "Resuming advertising instances"); 2538 2539 if (ext_adv_capable(hdev)) { 2540 /* Call for each tracked instance to be re-enabled */ 2541 list_for_each_entry_safe(adv, tmp, &hdev->adv_instances, list) { 2542 err = hci_enable_ext_advertising_sync(hdev, 2543 adv->instance); 2544 if (!err) 2545 continue; 2546 2547 /* If the instance cannot be resumed remove it */ 2548 hci_remove_ext_adv_instance_sync(hdev, adv->instance, 2549 NULL); 2550 } 2551 } else { 2552 /* Schedule for most recent instance to be restarted and begin 2553 * the software rotation loop 2554 */ 2555 err = hci_schedule_adv_instance_sync(hdev, 2556 hdev->cur_adv_instance, 2557 true); 2558 } 2559 2560 hdev->advertising_paused = false; 2561 2562 return err; 2563 } 2564 2565 static int hci_pause_addr_resolution(struct hci_dev *hdev) 2566 { 2567 int err; 2568 2569 if (!use_ll_privacy(hdev)) 2570 return 0; 2571 2572 if (!hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION)) 2573 return 0; 2574 2575 /* Cannot disable addr resolution if scanning is enabled or 2576 * when initiating an LE connection. 2577 */ 2578 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) || 2579 hci_lookup_le_connect(hdev)) { 2580 bt_dev_err(hdev, "Command not allowed when scan/LE connect"); 2581 return -EPERM; 2582 } 2583 2584 /* Cannot disable addr resolution if advertising is enabled. */ 2585 err = hci_pause_advertising_sync(hdev); 2586 if (err) { 2587 bt_dev_err(hdev, "Pause advertising failed: %d", err); 2588 return err; 2589 } 2590 2591 err = hci_le_set_addr_resolution_enable_sync(hdev, 0x00); 2592 if (err) 2593 bt_dev_err(hdev, "Unable to disable Address Resolution: %d", 2594 err); 2595 2596 /* Return if address resolution is disabled and RPA is not used. */ 2597 if (!err && scan_use_rpa(hdev)) 2598 return 0; 2599 2600 hci_resume_advertising_sync(hdev); 2601 return err; 2602 } 2603 2604 struct sk_buff *hci_read_local_oob_data_sync(struct hci_dev *hdev, 2605 bool extended, struct sock *sk) 2606 { 2607 u16 opcode = extended ? HCI_OP_READ_LOCAL_OOB_EXT_DATA : 2608 HCI_OP_READ_LOCAL_OOB_DATA; 2609 2610 return __hci_cmd_sync_sk(hdev, opcode, 0, NULL, 0, HCI_CMD_TIMEOUT, sk); 2611 } 2612 2613 static struct conn_params *conn_params_copy(struct list_head *list, size_t *n) 2614 { 2615 struct hci_conn_params *params; 2616 struct conn_params *p; 2617 size_t i; 2618 2619 rcu_read_lock(); 2620 2621 i = 0; 2622 list_for_each_entry_rcu(params, list, action) 2623 ++i; 2624 *n = i; 2625 2626 rcu_read_unlock(); 2627 2628 p = kvcalloc(*n, sizeof(struct conn_params), GFP_KERNEL); 2629 if (!p) 2630 return NULL; 2631 2632 rcu_read_lock(); 2633 2634 i = 0; 2635 list_for_each_entry_rcu(params, list, action) { 2636 /* Racing adds are handled in next scan update */ 2637 if (i >= *n) 2638 break; 2639 2640 /* No hdev->lock, but: addr, addr_type are immutable. 2641 * privacy_mode is only written by us or in 2642 * hci_cc_le_set_privacy_mode that we wait for. 2643 * We should be idempotent so MGMT updating flags 2644 * while we are processing is OK. 2645 */ 2646 bacpy(&p[i].addr, ¶ms->addr); 2647 p[i].addr_type = params->addr_type; 2648 p[i].flags = READ_ONCE(params->flags); 2649 p[i].privacy_mode = READ_ONCE(params->privacy_mode); 2650 ++i; 2651 } 2652 2653 rcu_read_unlock(); 2654 2655 *n = i; 2656 return p; 2657 } 2658 2659 /* Clear LE Accept List */ 2660 static int hci_le_clear_accept_list_sync(struct hci_dev *hdev) 2661 { 2662 if (!(hdev->commands[26] & 0x80)) 2663 return 0; 2664 2665 return __hci_cmd_sync_status(hdev, HCI_OP_LE_CLEAR_ACCEPT_LIST, 0, NULL, 2666 HCI_CMD_TIMEOUT); 2667 } 2668 2669 /* Device must not be scanning when updating the accept list. 2670 * 2671 * Update is done using the following sequence: 2672 * 2673 * use_ll_privacy((Disable Advertising) -> Disable Resolving List) -> 2674 * Remove Devices From Accept List -> 2675 * (has IRK && use_ll_privacy(Remove Devices From Resolving List))-> 2676 * Add Devices to Accept List -> 2677 * (has IRK && use_ll_privacy(Remove Devices From Resolving List)) -> 2678 * use_ll_privacy(Enable Resolving List -> (Enable Advertising)) -> 2679 * Enable Scanning 2680 * 2681 * In case of failure advertising shall be restored to its original state and 2682 * return would disable accept list since either accept or resolving list could 2683 * not be programmed. 2684 * 2685 */ 2686 static u8 hci_update_accept_list_sync(struct hci_dev *hdev) 2687 { 2688 struct conn_params *params; 2689 struct bdaddr_list *b, *t; 2690 u8 num_entries = 0; 2691 bool pend_conn, pend_report; 2692 u8 filter_policy; 2693 size_t i, n; 2694 int err; 2695 2696 /* Pause advertising if resolving list can be used as controllers 2697 * cannot accept resolving list modifications while advertising. 2698 */ 2699 if (use_ll_privacy(hdev)) { 2700 err = hci_pause_advertising_sync(hdev); 2701 if (err) { 2702 bt_dev_err(hdev, "pause advertising failed: %d", err); 2703 return 0x00; 2704 } 2705 } 2706 2707 /* Disable address resolution while reprogramming accept list since 2708 * devices that do have an IRK will be programmed in the resolving list 2709 * when LL Privacy is enabled. 2710 */ 2711 err = hci_le_set_addr_resolution_enable_sync(hdev, 0x00); 2712 if (err) { 2713 bt_dev_err(hdev, "Unable to disable LL privacy: %d", err); 2714 goto done; 2715 } 2716 2717 /* Force address filtering if PA Sync is in progress */ 2718 if (hci_dev_test_flag(hdev, HCI_PA_SYNC)) { 2719 struct hci_cp_le_pa_create_sync *sent; 2720 2721 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_PA_CREATE_SYNC); 2722 if (sent) { 2723 struct conn_params pa; 2724 2725 memset(&pa, 0, sizeof(pa)); 2726 2727 bacpy(&pa.addr, &sent->addr); 2728 pa.addr_type = sent->addr_type; 2729 2730 /* Clear first since there could be addresses left 2731 * behind. 2732 */ 2733 hci_le_clear_accept_list_sync(hdev); 2734 2735 num_entries = 1; 2736 err = hci_le_add_accept_list_sync(hdev, &pa, 2737 &num_entries); 2738 goto done; 2739 } 2740 } 2741 2742 /* Go through the current accept list programmed into the 2743 * controller one by one and check if that address is connected or is 2744 * still in the list of pending connections or list of devices to 2745 * report. If not present in either list, then remove it from 2746 * the controller. 2747 */ 2748 list_for_each_entry_safe(b, t, &hdev->le_accept_list, list) { 2749 if (hci_conn_hash_lookup_le(hdev, &b->bdaddr, b->bdaddr_type)) 2750 continue; 2751 2752 /* Pointers not dereferenced, no locks needed */ 2753 pend_conn = hci_pend_le_action_lookup(&hdev->pend_le_conns, 2754 &b->bdaddr, 2755 b->bdaddr_type); 2756 pend_report = hci_pend_le_action_lookup(&hdev->pend_le_reports, 2757 &b->bdaddr, 2758 b->bdaddr_type); 2759 2760 /* If the device is not likely to connect or report, 2761 * remove it from the acceptlist. 2762 */ 2763 if (!pend_conn && !pend_report) { 2764 hci_le_del_accept_list_sync(hdev, &b->bdaddr, 2765 b->bdaddr_type); 2766 continue; 2767 } 2768 2769 num_entries++; 2770 } 2771 2772 /* Since all no longer valid accept list entries have been 2773 * removed, walk through the list of pending connections 2774 * and ensure that any new device gets programmed into 2775 * the controller. 2776 * 2777 * If the list of the devices is larger than the list of 2778 * available accept list entries in the controller, then 2779 * just abort and return filer policy value to not use the 2780 * accept list. 2781 * 2782 * The list and params may be mutated while we wait for events, 2783 * so make a copy and iterate it. 2784 */ 2785 2786 params = conn_params_copy(&hdev->pend_le_conns, &n); 2787 if (!params) { 2788 err = -ENOMEM; 2789 goto done; 2790 } 2791 2792 for (i = 0; i < n; ++i) { 2793 err = hci_le_add_accept_list_sync(hdev, ¶ms[i], 2794 &num_entries); 2795 if (err) { 2796 kvfree(params); 2797 goto done; 2798 } 2799 } 2800 2801 kvfree(params); 2802 2803 /* After adding all new pending connections, walk through 2804 * the list of pending reports and also add these to the 2805 * accept list if there is still space. Abort if space runs out. 2806 */ 2807 2808 params = conn_params_copy(&hdev->pend_le_reports, &n); 2809 if (!params) { 2810 err = -ENOMEM; 2811 goto done; 2812 } 2813 2814 for (i = 0; i < n; ++i) { 2815 err = hci_le_add_accept_list_sync(hdev, ¶ms[i], 2816 &num_entries); 2817 if (err) { 2818 kvfree(params); 2819 goto done; 2820 } 2821 } 2822 2823 kvfree(params); 2824 2825 /* Use the allowlist unless the following conditions are all true: 2826 * - We are not currently suspending 2827 * - There are 1 or more ADV monitors registered and it's not offloaded 2828 * - Interleaved scanning is not currently using the allowlist 2829 */ 2830 if (!idr_is_empty(&hdev->adv_monitors_idr) && !hdev->suspended && 2831 hci_get_adv_monitor_offload_ext(hdev) == HCI_ADV_MONITOR_EXT_NONE && 2832 hdev->interleave_scan_state != INTERLEAVE_SCAN_ALLOWLIST) 2833 err = -EINVAL; 2834 2835 done: 2836 filter_policy = err ? 0x00 : 0x01; 2837 2838 /* Enable address resolution when LL Privacy is enabled. */ 2839 err = hci_le_set_addr_resolution_enable_sync(hdev, 0x01); 2840 if (err) 2841 bt_dev_err(hdev, "Unable to enable LL privacy: %d", err); 2842 2843 /* Resume advertising if it was paused */ 2844 if (use_ll_privacy(hdev)) 2845 hci_resume_advertising_sync(hdev); 2846 2847 /* Select filter policy to use accept list */ 2848 return filter_policy; 2849 } 2850 2851 static void hci_le_scan_phy_params(struct hci_cp_le_scan_phy_params *cp, 2852 u8 type, u16 interval, u16 window) 2853 { 2854 cp->type = type; 2855 cp->interval = cpu_to_le16(interval); 2856 cp->window = cpu_to_le16(window); 2857 } 2858 2859 static int hci_le_set_ext_scan_param_sync(struct hci_dev *hdev, u8 type, 2860 u16 interval, u16 window, 2861 u8 own_addr_type, u8 filter_policy) 2862 { 2863 struct hci_cp_le_set_ext_scan_params *cp; 2864 struct hci_cp_le_scan_phy_params *phy; 2865 u8 data[sizeof(*cp) + sizeof(*phy) * 2]; 2866 u8 num_phy = 0x00; 2867 2868 cp = (void *)data; 2869 phy = (void *)cp->data; 2870 2871 memset(data, 0, sizeof(data)); 2872 2873 cp->own_addr_type = own_addr_type; 2874 cp->filter_policy = filter_policy; 2875 2876 /* Check if PA Sync is in progress then select the PHY based on the 2877 * hci_conn.iso_qos. 2878 */ 2879 if (hci_dev_test_flag(hdev, HCI_PA_SYNC)) { 2880 struct hci_cp_le_add_to_accept_list *sent; 2881 2882 sent = hci_sent_cmd_data(hdev, HCI_OP_LE_ADD_TO_ACCEPT_LIST); 2883 if (sent) { 2884 struct hci_conn *conn; 2885 2886 conn = hci_conn_hash_lookup_ba(hdev, ISO_LINK, 2887 &sent->bdaddr); 2888 if (conn) { 2889 struct bt_iso_qos *qos = &conn->iso_qos; 2890 2891 if (qos->bcast.in.phy & BT_ISO_PHY_1M || 2892 qos->bcast.in.phy & BT_ISO_PHY_2M) { 2893 cp->scanning_phys |= LE_SCAN_PHY_1M; 2894 hci_le_scan_phy_params(phy, type, 2895 interval, 2896 window); 2897 num_phy++; 2898 phy++; 2899 } 2900 2901 if (qos->bcast.in.phy & BT_ISO_PHY_CODED) { 2902 cp->scanning_phys |= LE_SCAN_PHY_CODED; 2903 hci_le_scan_phy_params(phy, type, 2904 interval * 3, 2905 window * 3); 2906 num_phy++; 2907 phy++; 2908 } 2909 2910 if (num_phy) 2911 goto done; 2912 } 2913 } 2914 } 2915 2916 if (scan_1m(hdev) || scan_2m(hdev)) { 2917 cp->scanning_phys |= LE_SCAN_PHY_1M; 2918 hci_le_scan_phy_params(phy, type, interval, window); 2919 num_phy++; 2920 phy++; 2921 } 2922 2923 if (scan_coded(hdev)) { 2924 cp->scanning_phys |= LE_SCAN_PHY_CODED; 2925 hci_le_scan_phy_params(phy, type, interval * 3, window * 3); 2926 num_phy++; 2927 phy++; 2928 } 2929 2930 done: 2931 if (!num_phy) 2932 return -EINVAL; 2933 2934 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_SCAN_PARAMS, 2935 sizeof(*cp) + sizeof(*phy) * num_phy, 2936 data, HCI_CMD_TIMEOUT); 2937 } 2938 2939 static int hci_le_set_scan_param_sync(struct hci_dev *hdev, u8 type, 2940 u16 interval, u16 window, 2941 u8 own_addr_type, u8 filter_policy) 2942 { 2943 struct hci_cp_le_set_scan_param cp; 2944 2945 if (use_ext_scan(hdev)) 2946 return hci_le_set_ext_scan_param_sync(hdev, type, interval, 2947 window, own_addr_type, 2948 filter_policy); 2949 2950 memset(&cp, 0, sizeof(cp)); 2951 cp.type = type; 2952 cp.interval = cpu_to_le16(interval); 2953 cp.window = cpu_to_le16(window); 2954 cp.own_address_type = own_addr_type; 2955 cp.filter_policy = filter_policy; 2956 2957 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_SCAN_PARAM, 2958 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 2959 } 2960 2961 static int hci_start_scan_sync(struct hci_dev *hdev, u8 type, u16 interval, 2962 u16 window, u8 own_addr_type, u8 filter_policy, 2963 u8 filter_dup) 2964 { 2965 int err; 2966 2967 if (hdev->scanning_paused) { 2968 bt_dev_dbg(hdev, "Scanning is paused for suspend"); 2969 return 0; 2970 } 2971 2972 err = hci_le_set_scan_param_sync(hdev, type, interval, window, 2973 own_addr_type, filter_policy); 2974 if (err) 2975 return err; 2976 2977 return hci_le_set_scan_enable_sync(hdev, LE_SCAN_ENABLE, filter_dup); 2978 } 2979 2980 static int hci_passive_scan_sync(struct hci_dev *hdev) 2981 { 2982 u8 own_addr_type; 2983 u8 filter_policy; 2984 u16 window, interval; 2985 u8 filter_dups = LE_SCAN_FILTER_DUP_ENABLE; 2986 int err; 2987 2988 if (hdev->scanning_paused) { 2989 bt_dev_dbg(hdev, "Scanning is paused for suspend"); 2990 return 0; 2991 } 2992 2993 err = hci_scan_disable_sync(hdev); 2994 if (err) { 2995 bt_dev_err(hdev, "disable scanning failed: %d", err); 2996 return err; 2997 } 2998 2999 /* Set require_privacy to false since no SCAN_REQ are send 3000 * during passive scanning. Not using an non-resolvable address 3001 * here is important so that peer devices using direct 3002 * advertising with our address will be correctly reported 3003 * by the controller. 3004 */ 3005 if (hci_update_random_address_sync(hdev, false, scan_use_rpa(hdev), 3006 &own_addr_type)) 3007 return 0; 3008 3009 if (hdev->enable_advmon_interleave_scan && 3010 hci_update_interleaved_scan_sync(hdev)) 3011 return 0; 3012 3013 bt_dev_dbg(hdev, "interleave state %d", hdev->interleave_scan_state); 3014 3015 /* Adding or removing entries from the accept list must 3016 * happen before enabling scanning. The controller does 3017 * not allow accept list modification while scanning. 3018 */ 3019 filter_policy = hci_update_accept_list_sync(hdev); 3020 3021 /* If suspended and filter_policy set to 0x00 (no acceptlist) then 3022 * passive scanning cannot be started since that would require the host 3023 * to be woken up to process the reports. 3024 */ 3025 if (hdev->suspended && !filter_policy) { 3026 /* Check if accept list is empty then there is no need to scan 3027 * while suspended. 3028 */ 3029 if (list_empty(&hdev->le_accept_list)) 3030 return 0; 3031 3032 /* If there are devices is the accept_list that means some 3033 * devices could not be programmed which in non-suspended case 3034 * means filter_policy needs to be set to 0x00 so the host needs 3035 * to filter, but since this is treating suspended case we 3036 * can ignore device needing host to filter to allow devices in 3037 * the acceptlist to be able to wakeup the system. 3038 */ 3039 filter_policy = 0x01; 3040 } 3041 3042 /* When the controller is using random resolvable addresses and 3043 * with that having LE privacy enabled, then controllers with 3044 * Extended Scanner Filter Policies support can now enable support 3045 * for handling directed advertising. 3046 * 3047 * So instead of using filter polices 0x00 (no acceptlist) 3048 * and 0x01 (acceptlist enabled) use the new filter policies 3049 * 0x02 (no acceptlist) and 0x03 (acceptlist enabled). 3050 */ 3051 if (hci_dev_test_flag(hdev, HCI_PRIVACY) && 3052 (hdev->le_features[0] & HCI_LE_EXT_SCAN_POLICY)) 3053 filter_policy |= 0x02; 3054 3055 if (hdev->suspended) { 3056 window = hdev->le_scan_window_suspend; 3057 interval = hdev->le_scan_int_suspend; 3058 } else if (hci_is_le_conn_scanning(hdev)) { 3059 window = hdev->le_scan_window_connect; 3060 interval = hdev->le_scan_int_connect; 3061 } else if (hci_is_adv_monitoring(hdev)) { 3062 window = hdev->le_scan_window_adv_monitor; 3063 interval = hdev->le_scan_int_adv_monitor; 3064 3065 /* Disable duplicates filter when scanning for advertisement 3066 * monitor for the following reasons. 3067 * 3068 * For HW pattern filtering (ex. MSFT), Realtek and Qualcomm 3069 * controllers ignore RSSI_Sampling_Period when the duplicates 3070 * filter is enabled. 3071 * 3072 * For SW pattern filtering, when we're not doing interleaved 3073 * scanning, it is necessary to disable duplicates filter, 3074 * otherwise hosts can only receive one advertisement and it's 3075 * impossible to know if a peer is still in range. 3076 */ 3077 filter_dups = LE_SCAN_FILTER_DUP_DISABLE; 3078 } else { 3079 window = hdev->le_scan_window; 3080 interval = hdev->le_scan_interval; 3081 } 3082 3083 /* Disable all filtering for Mesh */ 3084 if (hci_dev_test_flag(hdev, HCI_MESH)) { 3085 filter_policy = 0; 3086 filter_dups = LE_SCAN_FILTER_DUP_DISABLE; 3087 } 3088 3089 bt_dev_dbg(hdev, "LE passive scan with acceptlist = %d", filter_policy); 3090 3091 return hci_start_scan_sync(hdev, LE_SCAN_PASSIVE, interval, window, 3092 own_addr_type, filter_policy, filter_dups); 3093 } 3094 3095 /* This function controls the passive scanning based on hdev->pend_le_conns 3096 * list. If there are pending LE connection we start the background scanning, 3097 * otherwise we stop it in the following sequence: 3098 * 3099 * If there are devices to scan: 3100 * 3101 * Disable Scanning -> Update Accept List -> 3102 * use_ll_privacy((Disable Advertising) -> Disable Resolving List -> 3103 * Update Resolving List -> Enable Resolving List -> (Enable Advertising)) -> 3104 * Enable Scanning 3105 * 3106 * Otherwise: 3107 * 3108 * Disable Scanning 3109 */ 3110 int hci_update_passive_scan_sync(struct hci_dev *hdev) 3111 { 3112 int err; 3113 3114 if (!test_bit(HCI_UP, &hdev->flags) || 3115 test_bit(HCI_INIT, &hdev->flags) || 3116 hci_dev_test_flag(hdev, HCI_SETUP) || 3117 hci_dev_test_flag(hdev, HCI_CONFIG) || 3118 hci_dev_test_flag(hdev, HCI_AUTO_OFF) || 3119 hci_dev_test_flag(hdev, HCI_UNREGISTER)) 3120 return 0; 3121 3122 /* No point in doing scanning if LE support hasn't been enabled */ 3123 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED)) 3124 return 0; 3125 3126 /* If discovery is active don't interfere with it */ 3127 if (hdev->discovery.state != DISCOVERY_STOPPED) 3128 return 0; 3129 3130 /* Reset RSSI and UUID filters when starting background scanning 3131 * since these filters are meant for service discovery only. 3132 * 3133 * The Start Discovery and Start Service Discovery operations 3134 * ensure to set proper values for RSSI threshold and UUID 3135 * filter list. So it is safe to just reset them here. 3136 */ 3137 hci_discovery_filter_clear(hdev); 3138 3139 bt_dev_dbg(hdev, "ADV monitoring is %s", 3140 hci_is_adv_monitoring(hdev) ? "on" : "off"); 3141 3142 if (!hci_dev_test_flag(hdev, HCI_MESH) && 3143 list_empty(&hdev->pend_le_conns) && 3144 list_empty(&hdev->pend_le_reports) && 3145 !hci_is_adv_monitoring(hdev) && 3146 !hci_dev_test_flag(hdev, HCI_PA_SYNC)) { 3147 /* If there is no pending LE connections or devices 3148 * to be scanned for or no ADV monitors, we should stop the 3149 * background scanning. 3150 */ 3151 3152 bt_dev_dbg(hdev, "stopping background scanning"); 3153 3154 err = hci_scan_disable_sync(hdev); 3155 if (err) 3156 bt_dev_err(hdev, "stop background scanning failed: %d", 3157 err); 3158 } else { 3159 /* If there is at least one pending LE connection, we should 3160 * keep the background scan running. 3161 */ 3162 3163 /* If controller is connecting, we should not start scanning 3164 * since some controllers are not able to scan and connect at 3165 * the same time. 3166 */ 3167 if (hci_lookup_le_connect(hdev)) 3168 return 0; 3169 3170 bt_dev_dbg(hdev, "start background scanning"); 3171 3172 err = hci_passive_scan_sync(hdev); 3173 if (err) 3174 bt_dev_err(hdev, "start background scanning failed: %d", 3175 err); 3176 } 3177 3178 return err; 3179 } 3180 3181 static int update_scan_sync(struct hci_dev *hdev, void *data) 3182 { 3183 return hci_update_scan_sync(hdev); 3184 } 3185 3186 int hci_update_scan(struct hci_dev *hdev) 3187 { 3188 return hci_cmd_sync_queue(hdev, update_scan_sync, NULL, NULL); 3189 } 3190 3191 static int update_passive_scan_sync(struct hci_dev *hdev, void *data) 3192 { 3193 return hci_update_passive_scan_sync(hdev); 3194 } 3195 3196 int hci_update_passive_scan(struct hci_dev *hdev) 3197 { 3198 /* Only queue if it would have any effect */ 3199 if (!test_bit(HCI_UP, &hdev->flags) || 3200 test_bit(HCI_INIT, &hdev->flags) || 3201 hci_dev_test_flag(hdev, HCI_SETUP) || 3202 hci_dev_test_flag(hdev, HCI_CONFIG) || 3203 hci_dev_test_flag(hdev, HCI_AUTO_OFF) || 3204 hci_dev_test_flag(hdev, HCI_UNREGISTER)) 3205 return 0; 3206 3207 return hci_cmd_sync_queue_once(hdev, update_passive_scan_sync, NULL, 3208 NULL); 3209 } 3210 3211 int hci_write_sc_support_sync(struct hci_dev *hdev, u8 val) 3212 { 3213 int err; 3214 3215 if (!bredr_sc_enabled(hdev) || lmp_host_sc_capable(hdev)) 3216 return 0; 3217 3218 err = __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SC_SUPPORT, 3219 sizeof(val), &val, HCI_CMD_TIMEOUT); 3220 3221 if (!err) { 3222 if (val) { 3223 hdev->features[1][0] |= LMP_HOST_SC; 3224 hci_dev_set_flag(hdev, HCI_SC_ENABLED); 3225 } else { 3226 hdev->features[1][0] &= ~LMP_HOST_SC; 3227 hci_dev_clear_flag(hdev, HCI_SC_ENABLED); 3228 } 3229 } 3230 3231 return err; 3232 } 3233 3234 int hci_write_ssp_mode_sync(struct hci_dev *hdev, u8 mode) 3235 { 3236 int err; 3237 3238 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED) || 3239 lmp_host_ssp_capable(hdev)) 3240 return 0; 3241 3242 if (!mode && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS)) { 3243 __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE, 3244 sizeof(mode), &mode, HCI_CMD_TIMEOUT); 3245 } 3246 3247 err = __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SSP_MODE, 3248 sizeof(mode), &mode, HCI_CMD_TIMEOUT); 3249 if (err) 3250 return err; 3251 3252 return hci_write_sc_support_sync(hdev, 0x01); 3253 } 3254 3255 int hci_write_le_host_supported_sync(struct hci_dev *hdev, u8 le, u8 simul) 3256 { 3257 struct hci_cp_write_le_host_supported cp; 3258 3259 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) || 3260 !lmp_bredr_capable(hdev)) 3261 return 0; 3262 3263 /* Check first if we already have the right host state 3264 * (host features set) 3265 */ 3266 if (le == lmp_host_le_capable(hdev) && 3267 simul == lmp_host_le_br_capable(hdev)) 3268 return 0; 3269 3270 memset(&cp, 0, sizeof(cp)); 3271 3272 cp.le = le; 3273 cp.simul = simul; 3274 3275 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, 3276 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 3277 } 3278 3279 static int hci_powered_update_adv_sync(struct hci_dev *hdev) 3280 { 3281 struct adv_info *adv, *tmp; 3282 int err; 3283 3284 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED)) 3285 return 0; 3286 3287 /* If RPA Resolution has not been enable yet it means the 3288 * resolving list is empty and we should attempt to program the 3289 * local IRK in order to support using own_addr_type 3290 * ADDR_LE_DEV_RANDOM_RESOLVED (0x03). 3291 */ 3292 if (!hci_dev_test_flag(hdev, HCI_LL_RPA_RESOLUTION)) { 3293 hci_le_add_resolve_list_sync(hdev, NULL); 3294 hci_le_set_addr_resolution_enable_sync(hdev, 0x01); 3295 } 3296 3297 /* Make sure the controller has a good default for 3298 * advertising data. This also applies to the case 3299 * where BR/EDR was toggled during the AUTO_OFF phase. 3300 */ 3301 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) || 3302 list_empty(&hdev->adv_instances)) { 3303 if (ext_adv_capable(hdev)) { 3304 err = hci_setup_ext_adv_instance_sync(hdev, 0x00); 3305 if (!err) 3306 hci_update_scan_rsp_data_sync(hdev, 0x00); 3307 } else { 3308 err = hci_update_adv_data_sync(hdev, 0x00); 3309 if (!err) 3310 hci_update_scan_rsp_data_sync(hdev, 0x00); 3311 } 3312 3313 if (hci_dev_test_flag(hdev, HCI_ADVERTISING)) 3314 hci_enable_advertising_sync(hdev); 3315 } 3316 3317 /* Call for each tracked instance to be scheduled */ 3318 list_for_each_entry_safe(adv, tmp, &hdev->adv_instances, list) 3319 hci_schedule_adv_instance_sync(hdev, adv->instance, true); 3320 3321 return 0; 3322 } 3323 3324 static int hci_write_auth_enable_sync(struct hci_dev *hdev) 3325 { 3326 u8 link_sec; 3327 3328 link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY); 3329 if (link_sec == test_bit(HCI_AUTH, &hdev->flags)) 3330 return 0; 3331 3332 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_AUTH_ENABLE, 3333 sizeof(link_sec), &link_sec, 3334 HCI_CMD_TIMEOUT); 3335 } 3336 3337 int hci_write_fast_connectable_sync(struct hci_dev *hdev, bool enable) 3338 { 3339 struct hci_cp_write_page_scan_activity cp; 3340 u8 type; 3341 int err = 0; 3342 3343 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) 3344 return 0; 3345 3346 if (hdev->hci_ver < BLUETOOTH_VER_1_2) 3347 return 0; 3348 3349 memset(&cp, 0, sizeof(cp)); 3350 3351 if (enable) { 3352 type = PAGE_SCAN_TYPE_INTERLACED; 3353 3354 /* 160 msec page scan interval */ 3355 cp.interval = cpu_to_le16(0x0100); 3356 } else { 3357 type = hdev->def_page_scan_type; 3358 cp.interval = cpu_to_le16(hdev->def_page_scan_int); 3359 } 3360 3361 cp.window = cpu_to_le16(hdev->def_page_scan_window); 3362 3363 if (__cpu_to_le16(hdev->page_scan_interval) != cp.interval || 3364 __cpu_to_le16(hdev->page_scan_window) != cp.window) { 3365 err = __hci_cmd_sync_status(hdev, 3366 HCI_OP_WRITE_PAGE_SCAN_ACTIVITY, 3367 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 3368 if (err) 3369 return err; 3370 } 3371 3372 if (hdev->page_scan_type != type) 3373 err = __hci_cmd_sync_status(hdev, 3374 HCI_OP_WRITE_PAGE_SCAN_TYPE, 3375 sizeof(type), &type, 3376 HCI_CMD_TIMEOUT); 3377 3378 return err; 3379 } 3380 3381 static bool disconnected_accept_list_entries(struct hci_dev *hdev) 3382 { 3383 struct bdaddr_list *b; 3384 3385 list_for_each_entry(b, &hdev->accept_list, list) { 3386 struct hci_conn *conn; 3387 3388 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &b->bdaddr); 3389 if (!conn) 3390 return true; 3391 3392 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG) 3393 return true; 3394 } 3395 3396 return false; 3397 } 3398 3399 static int hci_write_scan_enable_sync(struct hci_dev *hdev, u8 val) 3400 { 3401 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SCAN_ENABLE, 3402 sizeof(val), &val, 3403 HCI_CMD_TIMEOUT); 3404 } 3405 3406 int hci_update_scan_sync(struct hci_dev *hdev) 3407 { 3408 u8 scan; 3409 3410 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) 3411 return 0; 3412 3413 if (!hdev_is_powered(hdev)) 3414 return 0; 3415 3416 if (mgmt_powering_down(hdev)) 3417 return 0; 3418 3419 if (hdev->scanning_paused) 3420 return 0; 3421 3422 if (hci_dev_test_flag(hdev, HCI_CONNECTABLE) || 3423 disconnected_accept_list_entries(hdev)) 3424 scan = SCAN_PAGE; 3425 else 3426 scan = SCAN_DISABLED; 3427 3428 if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) 3429 scan |= SCAN_INQUIRY; 3430 3431 if (test_bit(HCI_PSCAN, &hdev->flags) == !!(scan & SCAN_PAGE) && 3432 test_bit(HCI_ISCAN, &hdev->flags) == !!(scan & SCAN_INQUIRY)) 3433 return 0; 3434 3435 return hci_write_scan_enable_sync(hdev, scan); 3436 } 3437 3438 int hci_update_name_sync(struct hci_dev *hdev) 3439 { 3440 struct hci_cp_write_local_name cp; 3441 3442 memset(&cp, 0, sizeof(cp)); 3443 3444 memcpy(cp.name, hdev->dev_name, sizeof(cp.name)); 3445 3446 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_LOCAL_NAME, 3447 sizeof(cp), &cp, 3448 HCI_CMD_TIMEOUT); 3449 } 3450 3451 /* This function perform powered update HCI command sequence after the HCI init 3452 * sequence which end up resetting all states, the sequence is as follows: 3453 * 3454 * HCI_SSP_ENABLED(Enable SSP) 3455 * HCI_LE_ENABLED(Enable LE) 3456 * HCI_LE_ENABLED(use_ll_privacy(Add local IRK to Resolving List) -> 3457 * Update adv data) 3458 * Enable Authentication 3459 * lmp_bredr_capable(Set Fast Connectable -> Set Scan Type -> Set Class -> 3460 * Set Name -> Set EIR) 3461 * HCI_FORCE_STATIC_ADDR | BDADDR_ANY && !HCI_BREDR_ENABLED (Set Static Address) 3462 */ 3463 int hci_powered_update_sync(struct hci_dev *hdev) 3464 { 3465 int err; 3466 3467 /* Register the available SMP channels (BR/EDR and LE) only when 3468 * successfully powering on the controller. This late 3469 * registration is required so that LE SMP can clearly decide if 3470 * the public address or static address is used. 3471 */ 3472 smp_register(hdev); 3473 3474 err = hci_write_ssp_mode_sync(hdev, 0x01); 3475 if (err) 3476 return err; 3477 3478 err = hci_write_le_host_supported_sync(hdev, 0x01, 0x00); 3479 if (err) 3480 return err; 3481 3482 err = hci_powered_update_adv_sync(hdev); 3483 if (err) 3484 return err; 3485 3486 err = hci_write_auth_enable_sync(hdev); 3487 if (err) 3488 return err; 3489 3490 if (lmp_bredr_capable(hdev)) { 3491 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) 3492 hci_write_fast_connectable_sync(hdev, true); 3493 else 3494 hci_write_fast_connectable_sync(hdev, false); 3495 hci_update_scan_sync(hdev); 3496 hci_update_class_sync(hdev); 3497 hci_update_name_sync(hdev); 3498 hci_update_eir_sync(hdev); 3499 } 3500 3501 /* If forcing static address is in use or there is no public 3502 * address use the static address as random address (but skip 3503 * the HCI command if the current random address is already the 3504 * static one. 3505 * 3506 * In case BR/EDR has been disabled on a dual-mode controller 3507 * and a static address has been configured, then use that 3508 * address instead of the public BR/EDR address. 3509 */ 3510 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) || 3511 (!bacmp(&hdev->bdaddr, BDADDR_ANY) && 3512 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))) { 3513 if (bacmp(&hdev->static_addr, BDADDR_ANY)) 3514 return hci_set_random_addr_sync(hdev, 3515 &hdev->static_addr); 3516 } 3517 3518 return 0; 3519 } 3520 3521 /** 3522 * hci_dev_get_bd_addr_from_property - Get the Bluetooth Device Address 3523 * (BD_ADDR) for a HCI device from 3524 * a firmware node property. 3525 * @hdev: The HCI device 3526 * 3527 * Search the firmware node for 'local-bd-address'. 3528 * 3529 * All-zero BD addresses are rejected, because those could be properties 3530 * that exist in the firmware tables, but were not updated by the firmware. For 3531 * example, the DTS could define 'local-bd-address', with zero BD addresses. 3532 */ 3533 static void hci_dev_get_bd_addr_from_property(struct hci_dev *hdev) 3534 { 3535 struct fwnode_handle *fwnode = dev_fwnode(hdev->dev.parent); 3536 bdaddr_t ba; 3537 int ret; 3538 3539 ret = fwnode_property_read_u8_array(fwnode, "local-bd-address", 3540 (u8 *)&ba, sizeof(ba)); 3541 if (ret < 0 || !bacmp(&ba, BDADDR_ANY)) 3542 return; 3543 3544 if (test_bit(HCI_QUIRK_BDADDR_PROPERTY_BROKEN, &hdev->quirks)) 3545 baswap(&hdev->public_addr, &ba); 3546 else 3547 bacpy(&hdev->public_addr, &ba); 3548 } 3549 3550 struct hci_init_stage { 3551 int (*func)(struct hci_dev *hdev); 3552 }; 3553 3554 /* Run init stage NULL terminated function table */ 3555 static int hci_init_stage_sync(struct hci_dev *hdev, 3556 const struct hci_init_stage *stage) 3557 { 3558 size_t i; 3559 3560 for (i = 0; stage[i].func; i++) { 3561 int err; 3562 3563 err = stage[i].func(hdev); 3564 if (err) 3565 return err; 3566 } 3567 3568 return 0; 3569 } 3570 3571 /* Read Local Version */ 3572 static int hci_read_local_version_sync(struct hci_dev *hdev) 3573 { 3574 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_VERSION, 3575 0, NULL, HCI_CMD_TIMEOUT); 3576 } 3577 3578 /* Read BD Address */ 3579 static int hci_read_bd_addr_sync(struct hci_dev *hdev) 3580 { 3581 return __hci_cmd_sync_status(hdev, HCI_OP_READ_BD_ADDR, 3582 0, NULL, HCI_CMD_TIMEOUT); 3583 } 3584 3585 #define HCI_INIT(_func) \ 3586 { \ 3587 .func = _func, \ 3588 } 3589 3590 static const struct hci_init_stage hci_init0[] = { 3591 /* HCI_OP_READ_LOCAL_VERSION */ 3592 HCI_INIT(hci_read_local_version_sync), 3593 /* HCI_OP_READ_BD_ADDR */ 3594 HCI_INIT(hci_read_bd_addr_sync), 3595 {} 3596 }; 3597 3598 int hci_reset_sync(struct hci_dev *hdev) 3599 { 3600 int err; 3601 3602 set_bit(HCI_RESET, &hdev->flags); 3603 3604 err = __hci_cmd_sync_status(hdev, HCI_OP_RESET, 0, NULL, 3605 HCI_CMD_TIMEOUT); 3606 if (err) 3607 return err; 3608 3609 return 0; 3610 } 3611 3612 static int hci_init0_sync(struct hci_dev *hdev) 3613 { 3614 int err; 3615 3616 bt_dev_dbg(hdev, ""); 3617 3618 /* Reset */ 3619 if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) { 3620 err = hci_reset_sync(hdev); 3621 if (err) 3622 return err; 3623 } 3624 3625 return hci_init_stage_sync(hdev, hci_init0); 3626 } 3627 3628 static int hci_unconf_init_sync(struct hci_dev *hdev) 3629 { 3630 int err; 3631 3632 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks)) 3633 return 0; 3634 3635 err = hci_init0_sync(hdev); 3636 if (err < 0) 3637 return err; 3638 3639 if (hci_dev_test_flag(hdev, HCI_SETUP)) 3640 hci_debugfs_create_basic(hdev); 3641 3642 return 0; 3643 } 3644 3645 /* Read Local Supported Features. */ 3646 static int hci_read_local_features_sync(struct hci_dev *hdev) 3647 { 3648 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_FEATURES, 3649 0, NULL, HCI_CMD_TIMEOUT); 3650 } 3651 3652 /* BR Controller init stage 1 command sequence */ 3653 static const struct hci_init_stage br_init1[] = { 3654 /* HCI_OP_READ_LOCAL_FEATURES */ 3655 HCI_INIT(hci_read_local_features_sync), 3656 /* HCI_OP_READ_LOCAL_VERSION */ 3657 HCI_INIT(hci_read_local_version_sync), 3658 /* HCI_OP_READ_BD_ADDR */ 3659 HCI_INIT(hci_read_bd_addr_sync), 3660 {} 3661 }; 3662 3663 /* Read Local Commands */ 3664 static int hci_read_local_cmds_sync(struct hci_dev *hdev) 3665 { 3666 /* All Bluetooth 1.2 and later controllers should support the 3667 * HCI command for reading the local supported commands. 3668 * 3669 * Unfortunately some controllers indicate Bluetooth 1.2 support, 3670 * but do not have support for this command. If that is the case, 3671 * the driver can quirk the behavior and skip reading the local 3672 * supported commands. 3673 */ 3674 if (hdev->hci_ver > BLUETOOTH_VER_1_1 && 3675 !test_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS, &hdev->quirks)) 3676 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_COMMANDS, 3677 0, NULL, HCI_CMD_TIMEOUT); 3678 3679 return 0; 3680 } 3681 3682 static int hci_init1_sync(struct hci_dev *hdev) 3683 { 3684 int err; 3685 3686 bt_dev_dbg(hdev, ""); 3687 3688 /* Reset */ 3689 if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) { 3690 err = hci_reset_sync(hdev); 3691 if (err) 3692 return err; 3693 } 3694 3695 return hci_init_stage_sync(hdev, br_init1); 3696 } 3697 3698 /* Read Buffer Size (ACL mtu, max pkt, etc.) */ 3699 static int hci_read_buffer_size_sync(struct hci_dev *hdev) 3700 { 3701 return __hci_cmd_sync_status(hdev, HCI_OP_READ_BUFFER_SIZE, 3702 0, NULL, HCI_CMD_TIMEOUT); 3703 } 3704 3705 /* Read Class of Device */ 3706 static int hci_read_dev_class_sync(struct hci_dev *hdev) 3707 { 3708 return __hci_cmd_sync_status(hdev, HCI_OP_READ_CLASS_OF_DEV, 3709 0, NULL, HCI_CMD_TIMEOUT); 3710 } 3711 3712 /* Read Local Name */ 3713 static int hci_read_local_name_sync(struct hci_dev *hdev) 3714 { 3715 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_NAME, 3716 0, NULL, HCI_CMD_TIMEOUT); 3717 } 3718 3719 /* Read Voice Setting */ 3720 static int hci_read_voice_setting_sync(struct hci_dev *hdev) 3721 { 3722 return __hci_cmd_sync_status(hdev, HCI_OP_READ_VOICE_SETTING, 3723 0, NULL, HCI_CMD_TIMEOUT); 3724 } 3725 3726 /* Read Number of Supported IAC */ 3727 static int hci_read_num_supported_iac_sync(struct hci_dev *hdev) 3728 { 3729 return __hci_cmd_sync_status(hdev, HCI_OP_READ_NUM_SUPPORTED_IAC, 3730 0, NULL, HCI_CMD_TIMEOUT); 3731 } 3732 3733 /* Read Current IAC LAP */ 3734 static int hci_read_current_iac_lap_sync(struct hci_dev *hdev) 3735 { 3736 return __hci_cmd_sync_status(hdev, HCI_OP_READ_CURRENT_IAC_LAP, 3737 0, NULL, HCI_CMD_TIMEOUT); 3738 } 3739 3740 static int hci_set_event_filter_sync(struct hci_dev *hdev, u8 flt_type, 3741 u8 cond_type, bdaddr_t *bdaddr, 3742 u8 auto_accept) 3743 { 3744 struct hci_cp_set_event_filter cp; 3745 3746 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) 3747 return 0; 3748 3749 if (test_bit(HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL, &hdev->quirks)) 3750 return 0; 3751 3752 memset(&cp, 0, sizeof(cp)); 3753 cp.flt_type = flt_type; 3754 3755 if (flt_type != HCI_FLT_CLEAR_ALL) { 3756 cp.cond_type = cond_type; 3757 bacpy(&cp.addr_conn_flt.bdaddr, bdaddr); 3758 cp.addr_conn_flt.auto_accept = auto_accept; 3759 } 3760 3761 return __hci_cmd_sync_status(hdev, HCI_OP_SET_EVENT_FLT, 3762 flt_type == HCI_FLT_CLEAR_ALL ? 3763 sizeof(cp.flt_type) : sizeof(cp), &cp, 3764 HCI_CMD_TIMEOUT); 3765 } 3766 3767 static int hci_clear_event_filter_sync(struct hci_dev *hdev) 3768 { 3769 if (!hci_dev_test_flag(hdev, HCI_EVENT_FILTER_CONFIGURED)) 3770 return 0; 3771 3772 /* In theory the state machine should not reach here unless 3773 * a hci_set_event_filter_sync() call succeeds, but we do 3774 * the check both for parity and as a future reminder. 3775 */ 3776 if (test_bit(HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL, &hdev->quirks)) 3777 return 0; 3778 3779 return hci_set_event_filter_sync(hdev, HCI_FLT_CLEAR_ALL, 0x00, 3780 BDADDR_ANY, 0x00); 3781 } 3782 3783 /* Connection accept timeout ~20 secs */ 3784 static int hci_write_ca_timeout_sync(struct hci_dev *hdev) 3785 { 3786 __le16 param = cpu_to_le16(0x7d00); 3787 3788 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_CA_TIMEOUT, 3789 sizeof(param), ¶m, HCI_CMD_TIMEOUT); 3790 } 3791 3792 /* BR Controller init stage 2 command sequence */ 3793 static const struct hci_init_stage br_init2[] = { 3794 /* HCI_OP_READ_BUFFER_SIZE */ 3795 HCI_INIT(hci_read_buffer_size_sync), 3796 /* HCI_OP_READ_CLASS_OF_DEV */ 3797 HCI_INIT(hci_read_dev_class_sync), 3798 /* HCI_OP_READ_LOCAL_NAME */ 3799 HCI_INIT(hci_read_local_name_sync), 3800 /* HCI_OP_READ_VOICE_SETTING */ 3801 HCI_INIT(hci_read_voice_setting_sync), 3802 /* HCI_OP_READ_NUM_SUPPORTED_IAC */ 3803 HCI_INIT(hci_read_num_supported_iac_sync), 3804 /* HCI_OP_READ_CURRENT_IAC_LAP */ 3805 HCI_INIT(hci_read_current_iac_lap_sync), 3806 /* HCI_OP_SET_EVENT_FLT */ 3807 HCI_INIT(hci_clear_event_filter_sync), 3808 /* HCI_OP_WRITE_CA_TIMEOUT */ 3809 HCI_INIT(hci_write_ca_timeout_sync), 3810 {} 3811 }; 3812 3813 static int hci_write_ssp_mode_1_sync(struct hci_dev *hdev) 3814 { 3815 u8 mode = 0x01; 3816 3817 if (!lmp_ssp_capable(hdev) || !hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) 3818 return 0; 3819 3820 /* When SSP is available, then the host features page 3821 * should also be available as well. However some 3822 * controllers list the max_page as 0 as long as SSP 3823 * has not been enabled. To achieve proper debugging 3824 * output, force the minimum max_page to 1 at least. 3825 */ 3826 hdev->max_page = 0x01; 3827 3828 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SSP_MODE, 3829 sizeof(mode), &mode, HCI_CMD_TIMEOUT); 3830 } 3831 3832 static int hci_write_eir_sync(struct hci_dev *hdev) 3833 { 3834 struct hci_cp_write_eir cp; 3835 3836 if (!lmp_ssp_capable(hdev) || hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) 3837 return 0; 3838 3839 memset(hdev->eir, 0, sizeof(hdev->eir)); 3840 memset(&cp, 0, sizeof(cp)); 3841 3842 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp, 3843 HCI_CMD_TIMEOUT); 3844 } 3845 3846 static int hci_write_inquiry_mode_sync(struct hci_dev *hdev) 3847 { 3848 u8 mode; 3849 3850 if (!lmp_inq_rssi_capable(hdev) && 3851 !test_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks)) 3852 return 0; 3853 3854 /* If Extended Inquiry Result events are supported, then 3855 * they are clearly preferred over Inquiry Result with RSSI 3856 * events. 3857 */ 3858 mode = lmp_ext_inq_capable(hdev) ? 0x02 : 0x01; 3859 3860 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_INQUIRY_MODE, 3861 sizeof(mode), &mode, HCI_CMD_TIMEOUT); 3862 } 3863 3864 static int hci_read_inq_rsp_tx_power_sync(struct hci_dev *hdev) 3865 { 3866 if (!lmp_inq_tx_pwr_capable(hdev)) 3867 return 0; 3868 3869 return __hci_cmd_sync_status(hdev, HCI_OP_READ_INQ_RSP_TX_POWER, 3870 0, NULL, HCI_CMD_TIMEOUT); 3871 } 3872 3873 static int hci_read_local_ext_features_sync(struct hci_dev *hdev, u8 page) 3874 { 3875 struct hci_cp_read_local_ext_features cp; 3876 3877 if (!lmp_ext_feat_capable(hdev)) 3878 return 0; 3879 3880 memset(&cp, 0, sizeof(cp)); 3881 cp.page = page; 3882 3883 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_EXT_FEATURES, 3884 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 3885 } 3886 3887 static int hci_read_local_ext_features_1_sync(struct hci_dev *hdev) 3888 { 3889 return hci_read_local_ext_features_sync(hdev, 0x01); 3890 } 3891 3892 /* HCI Controller init stage 2 command sequence */ 3893 static const struct hci_init_stage hci_init2[] = { 3894 /* HCI_OP_READ_LOCAL_COMMANDS */ 3895 HCI_INIT(hci_read_local_cmds_sync), 3896 /* HCI_OP_WRITE_SSP_MODE */ 3897 HCI_INIT(hci_write_ssp_mode_1_sync), 3898 /* HCI_OP_WRITE_EIR */ 3899 HCI_INIT(hci_write_eir_sync), 3900 /* HCI_OP_WRITE_INQUIRY_MODE */ 3901 HCI_INIT(hci_write_inquiry_mode_sync), 3902 /* HCI_OP_READ_INQ_RSP_TX_POWER */ 3903 HCI_INIT(hci_read_inq_rsp_tx_power_sync), 3904 /* HCI_OP_READ_LOCAL_EXT_FEATURES */ 3905 HCI_INIT(hci_read_local_ext_features_1_sync), 3906 /* HCI_OP_WRITE_AUTH_ENABLE */ 3907 HCI_INIT(hci_write_auth_enable_sync), 3908 {} 3909 }; 3910 3911 /* Read LE Buffer Size */ 3912 static int hci_le_read_buffer_size_sync(struct hci_dev *hdev) 3913 { 3914 /* Use Read LE Buffer Size V2 if supported */ 3915 if (iso_capable(hdev) && hdev->commands[41] & 0x20) 3916 return __hci_cmd_sync_status(hdev, 3917 HCI_OP_LE_READ_BUFFER_SIZE_V2, 3918 0, NULL, HCI_CMD_TIMEOUT); 3919 3920 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_BUFFER_SIZE, 3921 0, NULL, HCI_CMD_TIMEOUT); 3922 } 3923 3924 /* Read LE Local Supported Features */ 3925 static int hci_le_read_local_features_sync(struct hci_dev *hdev) 3926 { 3927 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_LOCAL_FEATURES, 3928 0, NULL, HCI_CMD_TIMEOUT); 3929 } 3930 3931 /* Read LE Supported States */ 3932 static int hci_le_read_supported_states_sync(struct hci_dev *hdev) 3933 { 3934 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_SUPPORTED_STATES, 3935 0, NULL, HCI_CMD_TIMEOUT); 3936 } 3937 3938 /* LE Controller init stage 2 command sequence */ 3939 static const struct hci_init_stage le_init2[] = { 3940 /* HCI_OP_LE_READ_LOCAL_FEATURES */ 3941 HCI_INIT(hci_le_read_local_features_sync), 3942 /* HCI_OP_LE_READ_BUFFER_SIZE */ 3943 HCI_INIT(hci_le_read_buffer_size_sync), 3944 /* HCI_OP_LE_READ_SUPPORTED_STATES */ 3945 HCI_INIT(hci_le_read_supported_states_sync), 3946 {} 3947 }; 3948 3949 static int hci_init2_sync(struct hci_dev *hdev) 3950 { 3951 int err; 3952 3953 bt_dev_dbg(hdev, ""); 3954 3955 err = hci_init_stage_sync(hdev, hci_init2); 3956 if (err) 3957 return err; 3958 3959 if (lmp_bredr_capable(hdev)) { 3960 err = hci_init_stage_sync(hdev, br_init2); 3961 if (err) 3962 return err; 3963 } else { 3964 hci_dev_clear_flag(hdev, HCI_BREDR_ENABLED); 3965 } 3966 3967 if (lmp_le_capable(hdev)) { 3968 err = hci_init_stage_sync(hdev, le_init2); 3969 if (err) 3970 return err; 3971 /* LE-only controllers have LE implicitly enabled */ 3972 if (!lmp_bredr_capable(hdev)) 3973 hci_dev_set_flag(hdev, HCI_LE_ENABLED); 3974 } 3975 3976 return 0; 3977 } 3978 3979 static int hci_set_event_mask_sync(struct hci_dev *hdev) 3980 { 3981 /* The second byte is 0xff instead of 0x9f (two reserved bits 3982 * disabled) since a Broadcom 1.2 dongle doesn't respond to the 3983 * command otherwise. 3984 */ 3985 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 }; 3986 3987 /* CSR 1.1 dongles does not accept any bitfield so don't try to set 3988 * any event mask for pre 1.2 devices. 3989 */ 3990 if (hdev->hci_ver < BLUETOOTH_VER_1_2) 3991 return 0; 3992 3993 if (lmp_bredr_capable(hdev)) { 3994 events[4] |= 0x01; /* Flow Specification Complete */ 3995 3996 /* Don't set Disconnect Complete and mode change when 3997 * suspended as that would wakeup the host when disconnecting 3998 * due to suspend. 3999 */ 4000 if (hdev->suspended) { 4001 events[0] &= 0xef; 4002 events[2] &= 0xf7; 4003 } 4004 } else { 4005 /* Use a different default for LE-only devices */ 4006 memset(events, 0, sizeof(events)); 4007 events[1] |= 0x20; /* Command Complete */ 4008 events[1] |= 0x40; /* Command Status */ 4009 events[1] |= 0x80; /* Hardware Error */ 4010 4011 /* If the controller supports the Disconnect command, enable 4012 * the corresponding event. In addition enable packet flow 4013 * control related events. 4014 */ 4015 if (hdev->commands[0] & 0x20) { 4016 /* Don't set Disconnect Complete when suspended as that 4017 * would wakeup the host when disconnecting due to 4018 * suspend. 4019 */ 4020 if (!hdev->suspended) 4021 events[0] |= 0x10; /* Disconnection Complete */ 4022 events[2] |= 0x04; /* Number of Completed Packets */ 4023 events[3] |= 0x02; /* Data Buffer Overflow */ 4024 } 4025 4026 /* If the controller supports the Read Remote Version 4027 * Information command, enable the corresponding event. 4028 */ 4029 if (hdev->commands[2] & 0x80) 4030 events[1] |= 0x08; /* Read Remote Version Information 4031 * Complete 4032 */ 4033 4034 if (hdev->le_features[0] & HCI_LE_ENCRYPTION) { 4035 events[0] |= 0x80; /* Encryption Change */ 4036 events[5] |= 0x80; /* Encryption Key Refresh Complete */ 4037 } 4038 } 4039 4040 if (lmp_inq_rssi_capable(hdev) || 4041 test_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE, &hdev->quirks)) 4042 events[4] |= 0x02; /* Inquiry Result with RSSI */ 4043 4044 if (lmp_ext_feat_capable(hdev)) 4045 events[4] |= 0x04; /* Read Remote Extended Features Complete */ 4046 4047 if (lmp_esco_capable(hdev)) { 4048 events[5] |= 0x08; /* Synchronous Connection Complete */ 4049 events[5] |= 0x10; /* Synchronous Connection Changed */ 4050 } 4051 4052 if (lmp_sniffsubr_capable(hdev)) 4053 events[5] |= 0x20; /* Sniff Subrating */ 4054 4055 if (lmp_pause_enc_capable(hdev)) 4056 events[5] |= 0x80; /* Encryption Key Refresh Complete */ 4057 4058 if (lmp_ext_inq_capable(hdev)) 4059 events[5] |= 0x40; /* Extended Inquiry Result */ 4060 4061 if (lmp_no_flush_capable(hdev)) 4062 events[7] |= 0x01; /* Enhanced Flush Complete */ 4063 4064 if (lmp_lsto_capable(hdev)) 4065 events[6] |= 0x80; /* Link Supervision Timeout Changed */ 4066 4067 if (lmp_ssp_capable(hdev)) { 4068 events[6] |= 0x01; /* IO Capability Request */ 4069 events[6] |= 0x02; /* IO Capability Response */ 4070 events[6] |= 0x04; /* User Confirmation Request */ 4071 events[6] |= 0x08; /* User Passkey Request */ 4072 events[6] |= 0x10; /* Remote OOB Data Request */ 4073 events[6] |= 0x20; /* Simple Pairing Complete */ 4074 events[7] |= 0x04; /* User Passkey Notification */ 4075 events[7] |= 0x08; /* Keypress Notification */ 4076 events[7] |= 0x10; /* Remote Host Supported 4077 * Features Notification 4078 */ 4079 } 4080 4081 if (lmp_le_capable(hdev)) 4082 events[7] |= 0x20; /* LE Meta-Event */ 4083 4084 return __hci_cmd_sync_status(hdev, HCI_OP_SET_EVENT_MASK, 4085 sizeof(events), events, HCI_CMD_TIMEOUT); 4086 } 4087 4088 static int hci_read_stored_link_key_sync(struct hci_dev *hdev) 4089 { 4090 struct hci_cp_read_stored_link_key cp; 4091 4092 if (!(hdev->commands[6] & 0x20) || 4093 test_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks)) 4094 return 0; 4095 4096 memset(&cp, 0, sizeof(cp)); 4097 bacpy(&cp.bdaddr, BDADDR_ANY); 4098 cp.read_all = 0x01; 4099 4100 return __hci_cmd_sync_status(hdev, HCI_OP_READ_STORED_LINK_KEY, 4101 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4102 } 4103 4104 static int hci_setup_link_policy_sync(struct hci_dev *hdev) 4105 { 4106 struct hci_cp_write_def_link_policy cp; 4107 u16 link_policy = 0; 4108 4109 if (!(hdev->commands[5] & 0x10)) 4110 return 0; 4111 4112 memset(&cp, 0, sizeof(cp)); 4113 4114 if (lmp_rswitch_capable(hdev)) 4115 link_policy |= HCI_LP_RSWITCH; 4116 if (lmp_hold_capable(hdev)) 4117 link_policy |= HCI_LP_HOLD; 4118 if (lmp_sniff_capable(hdev)) 4119 link_policy |= HCI_LP_SNIFF; 4120 if (lmp_park_capable(hdev)) 4121 link_policy |= HCI_LP_PARK; 4122 4123 cp.policy = cpu_to_le16(link_policy); 4124 4125 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, 4126 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4127 } 4128 4129 static int hci_read_page_scan_activity_sync(struct hci_dev *hdev) 4130 { 4131 if (!(hdev->commands[8] & 0x01)) 4132 return 0; 4133 4134 return __hci_cmd_sync_status(hdev, HCI_OP_READ_PAGE_SCAN_ACTIVITY, 4135 0, NULL, HCI_CMD_TIMEOUT); 4136 } 4137 4138 static int hci_read_def_err_data_reporting_sync(struct hci_dev *hdev) 4139 { 4140 if (!(hdev->commands[18] & 0x04) || 4141 !(hdev->features[0][6] & LMP_ERR_DATA_REPORTING) || 4142 test_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks)) 4143 return 0; 4144 4145 return __hci_cmd_sync_status(hdev, HCI_OP_READ_DEF_ERR_DATA_REPORTING, 4146 0, NULL, HCI_CMD_TIMEOUT); 4147 } 4148 4149 static int hci_read_page_scan_type_sync(struct hci_dev *hdev) 4150 { 4151 /* Some older Broadcom based Bluetooth 1.2 controllers do not 4152 * support the Read Page Scan Type command. Check support for 4153 * this command in the bit mask of supported commands. 4154 */ 4155 if (!(hdev->commands[13] & 0x01)) 4156 return 0; 4157 4158 return __hci_cmd_sync_status(hdev, HCI_OP_READ_PAGE_SCAN_TYPE, 4159 0, NULL, HCI_CMD_TIMEOUT); 4160 } 4161 4162 /* Read features beyond page 1 if available */ 4163 static int hci_read_local_ext_features_all_sync(struct hci_dev *hdev) 4164 { 4165 u8 page; 4166 int err; 4167 4168 if (!lmp_ext_feat_capable(hdev)) 4169 return 0; 4170 4171 for (page = 2; page < HCI_MAX_PAGES && page <= hdev->max_page; 4172 page++) { 4173 err = hci_read_local_ext_features_sync(hdev, page); 4174 if (err) 4175 return err; 4176 } 4177 4178 return 0; 4179 } 4180 4181 /* HCI Controller init stage 3 command sequence */ 4182 static const struct hci_init_stage hci_init3[] = { 4183 /* HCI_OP_SET_EVENT_MASK */ 4184 HCI_INIT(hci_set_event_mask_sync), 4185 /* HCI_OP_READ_STORED_LINK_KEY */ 4186 HCI_INIT(hci_read_stored_link_key_sync), 4187 /* HCI_OP_WRITE_DEF_LINK_POLICY */ 4188 HCI_INIT(hci_setup_link_policy_sync), 4189 /* HCI_OP_READ_PAGE_SCAN_ACTIVITY */ 4190 HCI_INIT(hci_read_page_scan_activity_sync), 4191 /* HCI_OP_READ_DEF_ERR_DATA_REPORTING */ 4192 HCI_INIT(hci_read_def_err_data_reporting_sync), 4193 /* HCI_OP_READ_PAGE_SCAN_TYPE */ 4194 HCI_INIT(hci_read_page_scan_type_sync), 4195 /* HCI_OP_READ_LOCAL_EXT_FEATURES */ 4196 HCI_INIT(hci_read_local_ext_features_all_sync), 4197 {} 4198 }; 4199 4200 static int hci_le_set_event_mask_sync(struct hci_dev *hdev) 4201 { 4202 u8 events[8]; 4203 4204 if (!lmp_le_capable(hdev)) 4205 return 0; 4206 4207 memset(events, 0, sizeof(events)); 4208 4209 if (hdev->le_features[0] & HCI_LE_ENCRYPTION) 4210 events[0] |= 0x10; /* LE Long Term Key Request */ 4211 4212 /* If controller supports the Connection Parameters Request 4213 * Link Layer Procedure, enable the corresponding event. 4214 */ 4215 if (hdev->le_features[0] & HCI_LE_CONN_PARAM_REQ_PROC) 4216 /* LE Remote Connection Parameter Request */ 4217 events[0] |= 0x20; 4218 4219 /* If the controller supports the Data Length Extension 4220 * feature, enable the corresponding event. 4221 */ 4222 if (hdev->le_features[0] & HCI_LE_DATA_LEN_EXT) 4223 events[0] |= 0x40; /* LE Data Length Change */ 4224 4225 /* If the controller supports LL Privacy feature or LE Extended Adv, 4226 * enable the corresponding event. 4227 */ 4228 if (use_enhanced_conn_complete(hdev)) 4229 events[1] |= 0x02; /* LE Enhanced Connection Complete */ 4230 4231 /* If the controller supports Extended Scanner Filter 4232 * Policies, enable the corresponding event. 4233 */ 4234 if (hdev->le_features[0] & HCI_LE_EXT_SCAN_POLICY) 4235 events[1] |= 0x04; /* LE Direct Advertising Report */ 4236 4237 /* If the controller supports Channel Selection Algorithm #2 4238 * feature, enable the corresponding event. 4239 */ 4240 if (hdev->le_features[1] & HCI_LE_CHAN_SEL_ALG2) 4241 events[2] |= 0x08; /* LE Channel Selection Algorithm */ 4242 4243 /* If the controller supports the LE Set Scan Enable command, 4244 * enable the corresponding advertising report event. 4245 */ 4246 if (hdev->commands[26] & 0x08) 4247 events[0] |= 0x02; /* LE Advertising Report */ 4248 4249 /* If the controller supports the LE Create Connection 4250 * command, enable the corresponding event. 4251 */ 4252 if (hdev->commands[26] & 0x10) 4253 events[0] |= 0x01; /* LE Connection Complete */ 4254 4255 /* If the controller supports the LE Connection Update 4256 * command, enable the corresponding event. 4257 */ 4258 if (hdev->commands[27] & 0x04) 4259 events[0] |= 0x04; /* LE Connection Update Complete */ 4260 4261 /* If the controller supports the LE Read Remote Used Features 4262 * command, enable the corresponding event. 4263 */ 4264 if (hdev->commands[27] & 0x20) 4265 /* LE Read Remote Used Features Complete */ 4266 events[0] |= 0x08; 4267 4268 /* If the controller supports the LE Read Local P-256 4269 * Public Key command, enable the corresponding event. 4270 */ 4271 if (hdev->commands[34] & 0x02) 4272 /* LE Read Local P-256 Public Key Complete */ 4273 events[0] |= 0x80; 4274 4275 /* If the controller supports the LE Generate DHKey 4276 * command, enable the corresponding event. 4277 */ 4278 if (hdev->commands[34] & 0x04) 4279 events[1] |= 0x01; /* LE Generate DHKey Complete */ 4280 4281 /* If the controller supports the LE Set Default PHY or 4282 * LE Set PHY commands, enable the corresponding event. 4283 */ 4284 if (hdev->commands[35] & (0x20 | 0x40)) 4285 events[1] |= 0x08; /* LE PHY Update Complete */ 4286 4287 /* If the controller supports LE Set Extended Scan Parameters 4288 * and LE Set Extended Scan Enable commands, enable the 4289 * corresponding event. 4290 */ 4291 if (use_ext_scan(hdev)) 4292 events[1] |= 0x10; /* LE Extended Advertising Report */ 4293 4294 /* If the controller supports the LE Extended Advertising 4295 * command, enable the corresponding event. 4296 */ 4297 if (ext_adv_capable(hdev)) 4298 events[2] |= 0x02; /* LE Advertising Set Terminated */ 4299 4300 if (cis_capable(hdev)) { 4301 events[3] |= 0x01; /* LE CIS Established */ 4302 if (cis_peripheral_capable(hdev)) 4303 events[3] |= 0x02; /* LE CIS Request */ 4304 } 4305 4306 if (bis_capable(hdev)) { 4307 events[1] |= 0x20; /* LE PA Report */ 4308 events[1] |= 0x40; /* LE PA Sync Established */ 4309 events[3] |= 0x04; /* LE Create BIG Complete */ 4310 events[3] |= 0x08; /* LE Terminate BIG Complete */ 4311 events[3] |= 0x10; /* LE BIG Sync Established */ 4312 events[3] |= 0x20; /* LE BIG Sync Loss */ 4313 events[4] |= 0x02; /* LE BIG Info Advertising Report */ 4314 } 4315 4316 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EVENT_MASK, 4317 sizeof(events), events, HCI_CMD_TIMEOUT); 4318 } 4319 4320 /* Read LE Advertising Channel TX Power */ 4321 static int hci_le_read_adv_tx_power_sync(struct hci_dev *hdev) 4322 { 4323 if ((hdev->commands[25] & 0x40) && !ext_adv_capable(hdev)) { 4324 /* HCI TS spec forbids mixing of legacy and extended 4325 * advertising commands wherein READ_ADV_TX_POWER is 4326 * also included. So do not call it if extended adv 4327 * is supported otherwise controller will return 4328 * COMMAND_DISALLOWED for extended commands. 4329 */ 4330 return __hci_cmd_sync_status(hdev, 4331 HCI_OP_LE_READ_ADV_TX_POWER, 4332 0, NULL, HCI_CMD_TIMEOUT); 4333 } 4334 4335 return 0; 4336 } 4337 4338 /* Read LE Min/Max Tx Power*/ 4339 static int hci_le_read_tx_power_sync(struct hci_dev *hdev) 4340 { 4341 if (!(hdev->commands[38] & 0x80) || 4342 test_bit(HCI_QUIRK_BROKEN_READ_TRANSMIT_POWER, &hdev->quirks)) 4343 return 0; 4344 4345 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_TRANSMIT_POWER, 4346 0, NULL, HCI_CMD_TIMEOUT); 4347 } 4348 4349 /* Read LE Accept List Size */ 4350 static int hci_le_read_accept_list_size_sync(struct hci_dev *hdev) 4351 { 4352 if (!(hdev->commands[26] & 0x40)) 4353 return 0; 4354 4355 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_ACCEPT_LIST_SIZE, 4356 0, NULL, HCI_CMD_TIMEOUT); 4357 } 4358 4359 /* Read LE Resolving List Size */ 4360 static int hci_le_read_resolv_list_size_sync(struct hci_dev *hdev) 4361 { 4362 if (!(hdev->commands[34] & 0x40)) 4363 return 0; 4364 4365 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_RESOLV_LIST_SIZE, 4366 0, NULL, HCI_CMD_TIMEOUT); 4367 } 4368 4369 /* Clear LE Resolving List */ 4370 static int hci_le_clear_resolv_list_sync(struct hci_dev *hdev) 4371 { 4372 if (!(hdev->commands[34] & 0x20)) 4373 return 0; 4374 4375 return __hci_cmd_sync_status(hdev, HCI_OP_LE_CLEAR_RESOLV_LIST, 0, NULL, 4376 HCI_CMD_TIMEOUT); 4377 } 4378 4379 /* Set RPA timeout */ 4380 static int hci_le_set_rpa_timeout_sync(struct hci_dev *hdev) 4381 { 4382 __le16 timeout = cpu_to_le16(hdev->rpa_timeout); 4383 4384 if (!(hdev->commands[35] & 0x04) || 4385 test_bit(HCI_QUIRK_BROKEN_SET_RPA_TIMEOUT, &hdev->quirks)) 4386 return 0; 4387 4388 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_RPA_TIMEOUT, 4389 sizeof(timeout), &timeout, 4390 HCI_CMD_TIMEOUT); 4391 } 4392 4393 /* Read LE Maximum Data Length */ 4394 static int hci_le_read_max_data_len_sync(struct hci_dev *hdev) 4395 { 4396 if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT)) 4397 return 0; 4398 4399 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_MAX_DATA_LEN, 0, NULL, 4400 HCI_CMD_TIMEOUT); 4401 } 4402 4403 /* Read LE Suggested Default Data Length */ 4404 static int hci_le_read_def_data_len_sync(struct hci_dev *hdev) 4405 { 4406 if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT)) 4407 return 0; 4408 4409 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_DEF_DATA_LEN, 0, NULL, 4410 HCI_CMD_TIMEOUT); 4411 } 4412 4413 /* Read LE Number of Supported Advertising Sets */ 4414 static int hci_le_read_num_support_adv_sets_sync(struct hci_dev *hdev) 4415 { 4416 if (!ext_adv_capable(hdev)) 4417 return 0; 4418 4419 return __hci_cmd_sync_status(hdev, 4420 HCI_OP_LE_READ_NUM_SUPPORTED_ADV_SETS, 4421 0, NULL, HCI_CMD_TIMEOUT); 4422 } 4423 4424 /* Write LE Host Supported */ 4425 static int hci_set_le_support_sync(struct hci_dev *hdev) 4426 { 4427 struct hci_cp_write_le_host_supported cp; 4428 4429 /* LE-only devices do not support explicit enablement */ 4430 if (!lmp_bredr_capable(hdev)) 4431 return 0; 4432 4433 memset(&cp, 0, sizeof(cp)); 4434 4435 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) { 4436 cp.le = 0x01; 4437 cp.simul = 0x00; 4438 } 4439 4440 if (cp.le == lmp_host_le_capable(hdev)) 4441 return 0; 4442 4443 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, 4444 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4445 } 4446 4447 /* LE Set Host Feature */ 4448 static int hci_le_set_host_feature_sync(struct hci_dev *hdev) 4449 { 4450 struct hci_cp_le_set_host_feature cp; 4451 4452 if (!cis_capable(hdev)) 4453 return 0; 4454 4455 memset(&cp, 0, sizeof(cp)); 4456 4457 /* Connected Isochronous Channels (Host Support) */ 4458 cp.bit_number = 32; 4459 cp.bit_value = 1; 4460 4461 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_HOST_FEATURE, 4462 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4463 } 4464 4465 /* LE Controller init stage 3 command sequence */ 4466 static const struct hci_init_stage le_init3[] = { 4467 /* HCI_OP_LE_SET_EVENT_MASK */ 4468 HCI_INIT(hci_le_set_event_mask_sync), 4469 /* HCI_OP_LE_READ_ADV_TX_POWER */ 4470 HCI_INIT(hci_le_read_adv_tx_power_sync), 4471 /* HCI_OP_LE_READ_TRANSMIT_POWER */ 4472 HCI_INIT(hci_le_read_tx_power_sync), 4473 /* HCI_OP_LE_READ_ACCEPT_LIST_SIZE */ 4474 HCI_INIT(hci_le_read_accept_list_size_sync), 4475 /* HCI_OP_LE_CLEAR_ACCEPT_LIST */ 4476 HCI_INIT(hci_le_clear_accept_list_sync), 4477 /* HCI_OP_LE_READ_RESOLV_LIST_SIZE */ 4478 HCI_INIT(hci_le_read_resolv_list_size_sync), 4479 /* HCI_OP_LE_CLEAR_RESOLV_LIST */ 4480 HCI_INIT(hci_le_clear_resolv_list_sync), 4481 /* HCI_OP_LE_SET_RPA_TIMEOUT */ 4482 HCI_INIT(hci_le_set_rpa_timeout_sync), 4483 /* HCI_OP_LE_READ_MAX_DATA_LEN */ 4484 HCI_INIT(hci_le_read_max_data_len_sync), 4485 /* HCI_OP_LE_READ_DEF_DATA_LEN */ 4486 HCI_INIT(hci_le_read_def_data_len_sync), 4487 /* HCI_OP_LE_READ_NUM_SUPPORTED_ADV_SETS */ 4488 HCI_INIT(hci_le_read_num_support_adv_sets_sync), 4489 /* HCI_OP_WRITE_LE_HOST_SUPPORTED */ 4490 HCI_INIT(hci_set_le_support_sync), 4491 /* HCI_OP_LE_SET_HOST_FEATURE */ 4492 HCI_INIT(hci_le_set_host_feature_sync), 4493 {} 4494 }; 4495 4496 static int hci_init3_sync(struct hci_dev *hdev) 4497 { 4498 int err; 4499 4500 bt_dev_dbg(hdev, ""); 4501 4502 err = hci_init_stage_sync(hdev, hci_init3); 4503 if (err) 4504 return err; 4505 4506 if (lmp_le_capable(hdev)) 4507 return hci_init_stage_sync(hdev, le_init3); 4508 4509 return 0; 4510 } 4511 4512 static int hci_delete_stored_link_key_sync(struct hci_dev *hdev) 4513 { 4514 struct hci_cp_delete_stored_link_key cp; 4515 4516 /* Some Broadcom based Bluetooth controllers do not support the 4517 * Delete Stored Link Key command. They are clearly indicating its 4518 * absence in the bit mask of supported commands. 4519 * 4520 * Check the supported commands and only if the command is marked 4521 * as supported send it. If not supported assume that the controller 4522 * does not have actual support for stored link keys which makes this 4523 * command redundant anyway. 4524 * 4525 * Some controllers indicate that they support handling deleting 4526 * stored link keys, but they don't. The quirk lets a driver 4527 * just disable this command. 4528 */ 4529 if (!(hdev->commands[6] & 0x80) || 4530 test_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks)) 4531 return 0; 4532 4533 memset(&cp, 0, sizeof(cp)); 4534 bacpy(&cp.bdaddr, BDADDR_ANY); 4535 cp.delete_all = 0x01; 4536 4537 return __hci_cmd_sync_status(hdev, HCI_OP_DELETE_STORED_LINK_KEY, 4538 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4539 } 4540 4541 static int hci_set_event_mask_page_2_sync(struct hci_dev *hdev) 4542 { 4543 u8 events[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 4544 bool changed = false; 4545 4546 /* Set event mask page 2 if the HCI command for it is supported */ 4547 if (!(hdev->commands[22] & 0x04)) 4548 return 0; 4549 4550 /* If Connectionless Peripheral Broadcast central role is supported 4551 * enable all necessary events for it. 4552 */ 4553 if (lmp_cpb_central_capable(hdev)) { 4554 events[1] |= 0x40; /* Triggered Clock Capture */ 4555 events[1] |= 0x80; /* Synchronization Train Complete */ 4556 events[2] |= 0x08; /* Truncated Page Complete */ 4557 events[2] |= 0x20; /* CPB Channel Map Change */ 4558 changed = true; 4559 } 4560 4561 /* If Connectionless Peripheral Broadcast peripheral role is supported 4562 * enable all necessary events for it. 4563 */ 4564 if (lmp_cpb_peripheral_capable(hdev)) { 4565 events[2] |= 0x01; /* Synchronization Train Received */ 4566 events[2] |= 0x02; /* CPB Receive */ 4567 events[2] |= 0x04; /* CPB Timeout */ 4568 events[2] |= 0x10; /* Peripheral Page Response Timeout */ 4569 changed = true; 4570 } 4571 4572 /* Enable Authenticated Payload Timeout Expired event if supported */ 4573 if (lmp_ping_capable(hdev) || hdev->le_features[0] & HCI_LE_PING) { 4574 events[2] |= 0x80; 4575 changed = true; 4576 } 4577 4578 /* Some Broadcom based controllers indicate support for Set Event 4579 * Mask Page 2 command, but then actually do not support it. Since 4580 * the default value is all bits set to zero, the command is only 4581 * required if the event mask has to be changed. In case no change 4582 * to the event mask is needed, skip this command. 4583 */ 4584 if (!changed) 4585 return 0; 4586 4587 return __hci_cmd_sync_status(hdev, HCI_OP_SET_EVENT_MASK_PAGE_2, 4588 sizeof(events), events, HCI_CMD_TIMEOUT); 4589 } 4590 4591 /* Read local codec list if the HCI command is supported */ 4592 static int hci_read_local_codecs_sync(struct hci_dev *hdev) 4593 { 4594 if (hdev->commands[45] & 0x04) 4595 hci_read_supported_codecs_v2(hdev); 4596 else if (hdev->commands[29] & 0x20) 4597 hci_read_supported_codecs(hdev); 4598 4599 return 0; 4600 } 4601 4602 /* Read local pairing options if the HCI command is supported */ 4603 static int hci_read_local_pairing_opts_sync(struct hci_dev *hdev) 4604 { 4605 if (!(hdev->commands[41] & 0x08)) 4606 return 0; 4607 4608 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_PAIRING_OPTS, 4609 0, NULL, HCI_CMD_TIMEOUT); 4610 } 4611 4612 /* Get MWS transport configuration if the HCI command is supported */ 4613 static int hci_get_mws_transport_config_sync(struct hci_dev *hdev) 4614 { 4615 if (!mws_transport_config_capable(hdev)) 4616 return 0; 4617 4618 return __hci_cmd_sync_status(hdev, HCI_OP_GET_MWS_TRANSPORT_CONFIG, 4619 0, NULL, HCI_CMD_TIMEOUT); 4620 } 4621 4622 /* Check for Synchronization Train support */ 4623 static int hci_read_sync_train_params_sync(struct hci_dev *hdev) 4624 { 4625 if (!lmp_sync_train_capable(hdev)) 4626 return 0; 4627 4628 return __hci_cmd_sync_status(hdev, HCI_OP_READ_SYNC_TRAIN_PARAMS, 4629 0, NULL, HCI_CMD_TIMEOUT); 4630 } 4631 4632 /* Enable Secure Connections if supported and configured */ 4633 static int hci_write_sc_support_1_sync(struct hci_dev *hdev) 4634 { 4635 u8 support = 0x01; 4636 4637 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED) || 4638 !bredr_sc_enabled(hdev)) 4639 return 0; 4640 4641 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SC_SUPPORT, 4642 sizeof(support), &support, 4643 HCI_CMD_TIMEOUT); 4644 } 4645 4646 /* Set erroneous data reporting if supported to the wideband speech 4647 * setting value 4648 */ 4649 static int hci_set_err_data_report_sync(struct hci_dev *hdev) 4650 { 4651 struct hci_cp_write_def_err_data_reporting cp; 4652 bool enabled = hci_dev_test_flag(hdev, HCI_WIDEBAND_SPEECH_ENABLED); 4653 4654 if (!(hdev->commands[18] & 0x08) || 4655 !(hdev->features[0][6] & LMP_ERR_DATA_REPORTING) || 4656 test_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING, &hdev->quirks)) 4657 return 0; 4658 4659 if (enabled == hdev->err_data_reporting) 4660 return 0; 4661 4662 memset(&cp, 0, sizeof(cp)); 4663 cp.err_data_reporting = enabled ? ERR_DATA_REPORTING_ENABLED : 4664 ERR_DATA_REPORTING_DISABLED; 4665 4666 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_DEF_ERR_DATA_REPORTING, 4667 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4668 } 4669 4670 static const struct hci_init_stage hci_init4[] = { 4671 /* HCI_OP_DELETE_STORED_LINK_KEY */ 4672 HCI_INIT(hci_delete_stored_link_key_sync), 4673 /* HCI_OP_SET_EVENT_MASK_PAGE_2 */ 4674 HCI_INIT(hci_set_event_mask_page_2_sync), 4675 /* HCI_OP_READ_LOCAL_CODECS */ 4676 HCI_INIT(hci_read_local_codecs_sync), 4677 /* HCI_OP_READ_LOCAL_PAIRING_OPTS */ 4678 HCI_INIT(hci_read_local_pairing_opts_sync), 4679 /* HCI_OP_GET_MWS_TRANSPORT_CONFIG */ 4680 HCI_INIT(hci_get_mws_transport_config_sync), 4681 /* HCI_OP_READ_SYNC_TRAIN_PARAMS */ 4682 HCI_INIT(hci_read_sync_train_params_sync), 4683 /* HCI_OP_WRITE_SC_SUPPORT */ 4684 HCI_INIT(hci_write_sc_support_1_sync), 4685 /* HCI_OP_WRITE_DEF_ERR_DATA_REPORTING */ 4686 HCI_INIT(hci_set_err_data_report_sync), 4687 {} 4688 }; 4689 4690 /* Set Suggested Default Data Length to maximum if supported */ 4691 static int hci_le_set_write_def_data_len_sync(struct hci_dev *hdev) 4692 { 4693 struct hci_cp_le_write_def_data_len cp; 4694 4695 if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT)) 4696 return 0; 4697 4698 memset(&cp, 0, sizeof(cp)); 4699 cp.tx_len = cpu_to_le16(hdev->le_max_tx_len); 4700 cp.tx_time = cpu_to_le16(hdev->le_max_tx_time); 4701 4702 return __hci_cmd_sync_status(hdev, HCI_OP_LE_WRITE_DEF_DATA_LEN, 4703 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4704 } 4705 4706 /* Set Default PHY parameters if command is supported, enables all supported 4707 * PHYs according to the LE Features bits. 4708 */ 4709 static int hci_le_set_default_phy_sync(struct hci_dev *hdev) 4710 { 4711 struct hci_cp_le_set_default_phy cp; 4712 4713 if (!(hdev->commands[35] & 0x20)) { 4714 /* If the command is not supported it means only 1M PHY is 4715 * supported. 4716 */ 4717 hdev->le_tx_def_phys = HCI_LE_SET_PHY_1M; 4718 hdev->le_rx_def_phys = HCI_LE_SET_PHY_1M; 4719 return 0; 4720 } 4721 4722 memset(&cp, 0, sizeof(cp)); 4723 cp.all_phys = 0x00; 4724 cp.tx_phys = HCI_LE_SET_PHY_1M; 4725 cp.rx_phys = HCI_LE_SET_PHY_1M; 4726 4727 /* Enables 2M PHY if supported */ 4728 if (le_2m_capable(hdev)) { 4729 cp.tx_phys |= HCI_LE_SET_PHY_2M; 4730 cp.rx_phys |= HCI_LE_SET_PHY_2M; 4731 } 4732 4733 /* Enables Coded PHY if supported */ 4734 if (le_coded_capable(hdev)) { 4735 cp.tx_phys |= HCI_LE_SET_PHY_CODED; 4736 cp.rx_phys |= HCI_LE_SET_PHY_CODED; 4737 } 4738 4739 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_DEFAULT_PHY, 4740 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4741 } 4742 4743 static const struct hci_init_stage le_init4[] = { 4744 /* HCI_OP_LE_WRITE_DEF_DATA_LEN */ 4745 HCI_INIT(hci_le_set_write_def_data_len_sync), 4746 /* HCI_OP_LE_SET_DEFAULT_PHY */ 4747 HCI_INIT(hci_le_set_default_phy_sync), 4748 {} 4749 }; 4750 4751 static int hci_init4_sync(struct hci_dev *hdev) 4752 { 4753 int err; 4754 4755 bt_dev_dbg(hdev, ""); 4756 4757 err = hci_init_stage_sync(hdev, hci_init4); 4758 if (err) 4759 return err; 4760 4761 if (lmp_le_capable(hdev)) 4762 return hci_init_stage_sync(hdev, le_init4); 4763 4764 return 0; 4765 } 4766 4767 static int hci_init_sync(struct hci_dev *hdev) 4768 { 4769 int err; 4770 4771 err = hci_init1_sync(hdev); 4772 if (err < 0) 4773 return err; 4774 4775 if (hci_dev_test_flag(hdev, HCI_SETUP)) 4776 hci_debugfs_create_basic(hdev); 4777 4778 err = hci_init2_sync(hdev); 4779 if (err < 0) 4780 return err; 4781 4782 err = hci_init3_sync(hdev); 4783 if (err < 0) 4784 return err; 4785 4786 err = hci_init4_sync(hdev); 4787 if (err < 0) 4788 return err; 4789 4790 /* This function is only called when the controller is actually in 4791 * configured state. When the controller is marked as unconfigured, 4792 * this initialization procedure is not run. 4793 * 4794 * It means that it is possible that a controller runs through its 4795 * setup phase and then discovers missing settings. If that is the 4796 * case, then this function will not be called. It then will only 4797 * be called during the config phase. 4798 * 4799 * So only when in setup phase or config phase, create the debugfs 4800 * entries and register the SMP channels. 4801 */ 4802 if (!hci_dev_test_flag(hdev, HCI_SETUP) && 4803 !hci_dev_test_flag(hdev, HCI_CONFIG)) 4804 return 0; 4805 4806 if (hci_dev_test_and_set_flag(hdev, HCI_DEBUGFS_CREATED)) 4807 return 0; 4808 4809 hci_debugfs_create_common(hdev); 4810 4811 if (lmp_bredr_capable(hdev)) 4812 hci_debugfs_create_bredr(hdev); 4813 4814 if (lmp_le_capable(hdev)) 4815 hci_debugfs_create_le(hdev); 4816 4817 return 0; 4818 } 4819 4820 #define HCI_QUIRK_BROKEN(_quirk, _desc) { HCI_QUIRK_BROKEN_##_quirk, _desc } 4821 4822 static const struct { 4823 unsigned long quirk; 4824 const char *desc; 4825 } hci_broken_table[] = { 4826 HCI_QUIRK_BROKEN(LOCAL_COMMANDS, 4827 "HCI Read Local Supported Commands not supported"), 4828 HCI_QUIRK_BROKEN(STORED_LINK_KEY, 4829 "HCI Delete Stored Link Key command is advertised, " 4830 "but not supported."), 4831 HCI_QUIRK_BROKEN(ERR_DATA_REPORTING, 4832 "HCI Read Default Erroneous Data Reporting command is " 4833 "advertised, but not supported."), 4834 HCI_QUIRK_BROKEN(READ_TRANSMIT_POWER, 4835 "HCI Read Transmit Power Level command is advertised, " 4836 "but not supported."), 4837 HCI_QUIRK_BROKEN(FILTER_CLEAR_ALL, 4838 "HCI Set Event Filter command not supported."), 4839 HCI_QUIRK_BROKEN(ENHANCED_SETUP_SYNC_CONN, 4840 "HCI Enhanced Setup Synchronous Connection command is " 4841 "advertised, but not supported."), 4842 HCI_QUIRK_BROKEN(SET_RPA_TIMEOUT, 4843 "HCI LE Set Random Private Address Timeout command is " 4844 "advertised, but not supported."), 4845 HCI_QUIRK_BROKEN(EXT_CREATE_CONN, 4846 "HCI LE Extended Create Connection command is " 4847 "advertised, but not supported."), 4848 HCI_QUIRK_BROKEN(WRITE_AUTH_PAYLOAD_TIMEOUT, 4849 "HCI WRITE AUTH PAYLOAD TIMEOUT command leads " 4850 "to unexpected SMP errors when pairing " 4851 "and will not be used."), 4852 HCI_QUIRK_BROKEN(LE_CODED, 4853 "HCI LE Coded PHY feature bit is set, " 4854 "but its usage is not supported.") 4855 }; 4856 4857 /* This function handles hdev setup stage: 4858 * 4859 * Calls hdev->setup 4860 * Setup address if HCI_QUIRK_USE_BDADDR_PROPERTY is set. 4861 */ 4862 static int hci_dev_setup_sync(struct hci_dev *hdev) 4863 { 4864 int ret = 0; 4865 bool invalid_bdaddr; 4866 size_t i; 4867 4868 if (!hci_dev_test_flag(hdev, HCI_SETUP) && 4869 !test_bit(HCI_QUIRK_NON_PERSISTENT_SETUP, &hdev->quirks)) 4870 return 0; 4871 4872 bt_dev_dbg(hdev, ""); 4873 4874 hci_sock_dev_event(hdev, HCI_DEV_SETUP); 4875 4876 if (hdev->setup) 4877 ret = hdev->setup(hdev); 4878 4879 for (i = 0; i < ARRAY_SIZE(hci_broken_table); i++) { 4880 if (test_bit(hci_broken_table[i].quirk, &hdev->quirks)) 4881 bt_dev_warn(hdev, "%s", hci_broken_table[i].desc); 4882 } 4883 4884 /* The transport driver can set the quirk to mark the 4885 * BD_ADDR invalid before creating the HCI device or in 4886 * its setup callback. 4887 */ 4888 invalid_bdaddr = test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) || 4889 test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks); 4890 if (!ret) { 4891 if (test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks) && 4892 !bacmp(&hdev->public_addr, BDADDR_ANY)) 4893 hci_dev_get_bd_addr_from_property(hdev); 4894 4895 if (invalid_bdaddr && bacmp(&hdev->public_addr, BDADDR_ANY) && 4896 hdev->set_bdaddr) { 4897 ret = hdev->set_bdaddr(hdev, &hdev->public_addr); 4898 if (!ret) 4899 invalid_bdaddr = false; 4900 } 4901 } 4902 4903 /* The transport driver can set these quirks before 4904 * creating the HCI device or in its setup callback. 4905 * 4906 * For the invalid BD_ADDR quirk it is possible that 4907 * it becomes a valid address if the bootloader does 4908 * provide it (see above). 4909 * 4910 * In case any of them is set, the controller has to 4911 * start up as unconfigured. 4912 */ 4913 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) || 4914 invalid_bdaddr) 4915 hci_dev_set_flag(hdev, HCI_UNCONFIGURED); 4916 4917 /* For an unconfigured controller it is required to 4918 * read at least the version information provided by 4919 * the Read Local Version Information command. 4920 * 4921 * If the set_bdaddr driver callback is provided, then 4922 * also the original Bluetooth public device address 4923 * will be read using the Read BD Address command. 4924 */ 4925 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) 4926 return hci_unconf_init_sync(hdev); 4927 4928 return ret; 4929 } 4930 4931 /* This function handles hdev init stage: 4932 * 4933 * Calls hci_dev_setup_sync to perform setup stage 4934 * Calls hci_init_sync to perform HCI command init sequence 4935 */ 4936 static int hci_dev_init_sync(struct hci_dev *hdev) 4937 { 4938 int ret; 4939 4940 bt_dev_dbg(hdev, ""); 4941 4942 atomic_set(&hdev->cmd_cnt, 1); 4943 set_bit(HCI_INIT, &hdev->flags); 4944 4945 ret = hci_dev_setup_sync(hdev); 4946 4947 if (hci_dev_test_flag(hdev, HCI_CONFIG)) { 4948 /* If public address change is configured, ensure that 4949 * the address gets programmed. If the driver does not 4950 * support changing the public address, fail the power 4951 * on procedure. 4952 */ 4953 if (bacmp(&hdev->public_addr, BDADDR_ANY) && 4954 hdev->set_bdaddr) 4955 ret = hdev->set_bdaddr(hdev, &hdev->public_addr); 4956 else 4957 ret = -EADDRNOTAVAIL; 4958 } 4959 4960 if (!ret) { 4961 if (!hci_dev_test_flag(hdev, HCI_UNCONFIGURED) && 4962 !hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) { 4963 ret = hci_init_sync(hdev); 4964 if (!ret && hdev->post_init) 4965 ret = hdev->post_init(hdev); 4966 } 4967 } 4968 4969 /* If the HCI Reset command is clearing all diagnostic settings, 4970 * then they need to be reprogrammed after the init procedure 4971 * completed. 4972 */ 4973 if (test_bit(HCI_QUIRK_NON_PERSISTENT_DIAG, &hdev->quirks) && 4974 !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) && 4975 hci_dev_test_flag(hdev, HCI_VENDOR_DIAG) && hdev->set_diag) 4976 ret = hdev->set_diag(hdev, true); 4977 4978 if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) { 4979 msft_do_open(hdev); 4980 aosp_do_open(hdev); 4981 } 4982 4983 clear_bit(HCI_INIT, &hdev->flags); 4984 4985 return ret; 4986 } 4987 4988 int hci_dev_open_sync(struct hci_dev *hdev) 4989 { 4990 int ret; 4991 4992 bt_dev_dbg(hdev, ""); 4993 4994 if (hci_dev_test_flag(hdev, HCI_UNREGISTER)) { 4995 ret = -ENODEV; 4996 goto done; 4997 } 4998 4999 if (!hci_dev_test_flag(hdev, HCI_SETUP) && 5000 !hci_dev_test_flag(hdev, HCI_CONFIG)) { 5001 /* Check for rfkill but allow the HCI setup stage to 5002 * proceed (which in itself doesn't cause any RF activity). 5003 */ 5004 if (hci_dev_test_flag(hdev, HCI_RFKILLED)) { 5005 ret = -ERFKILL; 5006 goto done; 5007 } 5008 5009 /* Check for valid public address or a configured static 5010 * random address, but let the HCI setup proceed to 5011 * be able to determine if there is a public address 5012 * or not. 5013 * 5014 * In case of user channel usage, it is not important 5015 * if a public address or static random address is 5016 * available. 5017 */ 5018 if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL) && 5019 !bacmp(&hdev->bdaddr, BDADDR_ANY) && 5020 !bacmp(&hdev->static_addr, BDADDR_ANY)) { 5021 ret = -EADDRNOTAVAIL; 5022 goto done; 5023 } 5024 } 5025 5026 if (test_bit(HCI_UP, &hdev->flags)) { 5027 ret = -EALREADY; 5028 goto done; 5029 } 5030 5031 if (hdev->open(hdev)) { 5032 ret = -EIO; 5033 goto done; 5034 } 5035 5036 hci_devcd_reset(hdev); 5037 5038 set_bit(HCI_RUNNING, &hdev->flags); 5039 hci_sock_dev_event(hdev, HCI_DEV_OPEN); 5040 5041 ret = hci_dev_init_sync(hdev); 5042 if (!ret) { 5043 hci_dev_hold(hdev); 5044 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED); 5045 hci_adv_instances_set_rpa_expired(hdev, true); 5046 set_bit(HCI_UP, &hdev->flags); 5047 hci_sock_dev_event(hdev, HCI_DEV_UP); 5048 hci_leds_update_powered(hdev, true); 5049 if (!hci_dev_test_flag(hdev, HCI_SETUP) && 5050 !hci_dev_test_flag(hdev, HCI_CONFIG) && 5051 !hci_dev_test_flag(hdev, HCI_UNCONFIGURED) && 5052 !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) && 5053 hci_dev_test_flag(hdev, HCI_MGMT)) { 5054 ret = hci_powered_update_sync(hdev); 5055 mgmt_power_on(hdev, ret); 5056 } 5057 } else { 5058 /* Init failed, cleanup */ 5059 flush_work(&hdev->tx_work); 5060 5061 /* Since hci_rx_work() is possible to awake new cmd_work 5062 * it should be flushed first to avoid unexpected call of 5063 * hci_cmd_work() 5064 */ 5065 flush_work(&hdev->rx_work); 5066 flush_work(&hdev->cmd_work); 5067 5068 skb_queue_purge(&hdev->cmd_q); 5069 skb_queue_purge(&hdev->rx_q); 5070 5071 if (hdev->flush) 5072 hdev->flush(hdev); 5073 5074 if (hdev->sent_cmd) { 5075 cancel_delayed_work_sync(&hdev->cmd_timer); 5076 kfree_skb(hdev->sent_cmd); 5077 hdev->sent_cmd = NULL; 5078 } 5079 5080 if (hdev->req_skb) { 5081 kfree_skb(hdev->req_skb); 5082 hdev->req_skb = NULL; 5083 } 5084 5085 clear_bit(HCI_RUNNING, &hdev->flags); 5086 hci_sock_dev_event(hdev, HCI_DEV_CLOSE); 5087 5088 hdev->close(hdev); 5089 hdev->flags &= BIT(HCI_RAW); 5090 } 5091 5092 done: 5093 return ret; 5094 } 5095 5096 /* This function requires the caller holds hdev->lock */ 5097 static void hci_pend_le_actions_clear(struct hci_dev *hdev) 5098 { 5099 struct hci_conn_params *p; 5100 5101 list_for_each_entry(p, &hdev->le_conn_params, list) { 5102 hci_pend_le_list_del_init(p); 5103 if (p->conn) { 5104 hci_conn_drop(p->conn); 5105 hci_conn_put(p->conn); 5106 p->conn = NULL; 5107 } 5108 } 5109 5110 BT_DBG("All LE pending actions cleared"); 5111 } 5112 5113 static int hci_dev_shutdown(struct hci_dev *hdev) 5114 { 5115 int err = 0; 5116 /* Similar to how we first do setup and then set the exclusive access 5117 * bit for userspace, we must first unset userchannel and then clean up. 5118 * Otherwise, the kernel can't properly use the hci channel to clean up 5119 * the controller (some shutdown routines require sending additional 5120 * commands to the controller for example). 5121 */ 5122 bool was_userchannel = 5123 hci_dev_test_and_clear_flag(hdev, HCI_USER_CHANNEL); 5124 5125 if (!hci_dev_test_flag(hdev, HCI_UNREGISTER) && 5126 test_bit(HCI_UP, &hdev->flags)) { 5127 /* Execute vendor specific shutdown routine */ 5128 if (hdev->shutdown) 5129 err = hdev->shutdown(hdev); 5130 } 5131 5132 if (was_userchannel) 5133 hci_dev_set_flag(hdev, HCI_USER_CHANNEL); 5134 5135 return err; 5136 } 5137 5138 int hci_dev_close_sync(struct hci_dev *hdev) 5139 { 5140 bool auto_off; 5141 int err = 0; 5142 5143 bt_dev_dbg(hdev, ""); 5144 5145 if (hci_dev_test_flag(hdev, HCI_UNREGISTER)) { 5146 disable_delayed_work(&hdev->power_off); 5147 disable_delayed_work(&hdev->ncmd_timer); 5148 disable_delayed_work(&hdev->le_scan_disable); 5149 } else { 5150 cancel_delayed_work(&hdev->power_off); 5151 cancel_delayed_work(&hdev->ncmd_timer); 5152 cancel_delayed_work(&hdev->le_scan_disable); 5153 } 5154 5155 hci_cmd_sync_cancel_sync(hdev, ENODEV); 5156 5157 cancel_interleave_scan(hdev); 5158 5159 if (hdev->adv_instance_timeout) { 5160 cancel_delayed_work_sync(&hdev->adv_instance_expire); 5161 hdev->adv_instance_timeout = 0; 5162 } 5163 5164 err = hci_dev_shutdown(hdev); 5165 5166 if (!test_and_clear_bit(HCI_UP, &hdev->flags)) { 5167 cancel_delayed_work_sync(&hdev->cmd_timer); 5168 return err; 5169 } 5170 5171 hci_leds_update_powered(hdev, false); 5172 5173 /* Flush RX and TX works */ 5174 flush_work(&hdev->tx_work); 5175 flush_work(&hdev->rx_work); 5176 5177 if (hdev->discov_timeout > 0) { 5178 hdev->discov_timeout = 0; 5179 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE); 5180 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE); 5181 } 5182 5183 if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) 5184 cancel_delayed_work(&hdev->service_cache); 5185 5186 if (hci_dev_test_flag(hdev, HCI_MGMT)) { 5187 struct adv_info *adv_instance; 5188 5189 cancel_delayed_work_sync(&hdev->rpa_expired); 5190 5191 list_for_each_entry(adv_instance, &hdev->adv_instances, list) 5192 cancel_delayed_work_sync(&adv_instance->rpa_expired_cb); 5193 } 5194 5195 /* Avoid potential lockdep warnings from the *_flush() calls by 5196 * ensuring the workqueue is empty up front. 5197 */ 5198 drain_workqueue(hdev->workqueue); 5199 5200 hci_dev_lock(hdev); 5201 5202 hci_discovery_set_state(hdev, DISCOVERY_STOPPED); 5203 5204 auto_off = hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF); 5205 5206 if (!auto_off && !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) && 5207 hci_dev_test_flag(hdev, HCI_MGMT)) 5208 __mgmt_power_off(hdev); 5209 5210 hci_inquiry_cache_flush(hdev); 5211 hci_pend_le_actions_clear(hdev); 5212 hci_conn_hash_flush(hdev); 5213 /* Prevent data races on hdev->smp_data or hdev->smp_bredr_data */ 5214 smp_unregister(hdev); 5215 hci_dev_unlock(hdev); 5216 5217 hci_sock_dev_event(hdev, HCI_DEV_DOWN); 5218 5219 if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) { 5220 aosp_do_close(hdev); 5221 msft_do_close(hdev); 5222 } 5223 5224 if (hdev->flush) 5225 hdev->flush(hdev); 5226 5227 /* Reset device */ 5228 skb_queue_purge(&hdev->cmd_q); 5229 atomic_set(&hdev->cmd_cnt, 1); 5230 if (test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks) && 5231 !auto_off && !hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) { 5232 set_bit(HCI_INIT, &hdev->flags); 5233 hci_reset_sync(hdev); 5234 clear_bit(HCI_INIT, &hdev->flags); 5235 } 5236 5237 /* flush cmd work */ 5238 flush_work(&hdev->cmd_work); 5239 5240 /* Drop queues */ 5241 skb_queue_purge(&hdev->rx_q); 5242 skb_queue_purge(&hdev->cmd_q); 5243 skb_queue_purge(&hdev->raw_q); 5244 5245 /* Drop last sent command */ 5246 if (hdev->sent_cmd) { 5247 cancel_delayed_work_sync(&hdev->cmd_timer); 5248 kfree_skb(hdev->sent_cmd); 5249 hdev->sent_cmd = NULL; 5250 } 5251 5252 /* Drop last request */ 5253 if (hdev->req_skb) { 5254 kfree_skb(hdev->req_skb); 5255 hdev->req_skb = NULL; 5256 } 5257 5258 clear_bit(HCI_RUNNING, &hdev->flags); 5259 hci_sock_dev_event(hdev, HCI_DEV_CLOSE); 5260 5261 /* After this point our queues are empty and no tasks are scheduled. */ 5262 hdev->close(hdev); 5263 5264 /* Clear flags */ 5265 hdev->flags &= BIT(HCI_RAW); 5266 hci_dev_clear_volatile_flags(hdev); 5267 5268 memset(hdev->eir, 0, sizeof(hdev->eir)); 5269 memset(hdev->dev_class, 0, sizeof(hdev->dev_class)); 5270 bacpy(&hdev->random_addr, BDADDR_ANY); 5271 hci_codec_list_clear(&hdev->local_codecs); 5272 5273 hci_dev_put(hdev); 5274 return err; 5275 } 5276 5277 /* This function perform power on HCI command sequence as follows: 5278 * 5279 * If controller is already up (HCI_UP) performs hci_powered_update_sync 5280 * sequence otherwise run hci_dev_open_sync which will follow with 5281 * hci_powered_update_sync after the init sequence is completed. 5282 */ 5283 static int hci_power_on_sync(struct hci_dev *hdev) 5284 { 5285 int err; 5286 5287 if (test_bit(HCI_UP, &hdev->flags) && 5288 hci_dev_test_flag(hdev, HCI_MGMT) && 5289 hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) { 5290 cancel_delayed_work(&hdev->power_off); 5291 return hci_powered_update_sync(hdev); 5292 } 5293 5294 err = hci_dev_open_sync(hdev); 5295 if (err < 0) 5296 return err; 5297 5298 /* During the HCI setup phase, a few error conditions are 5299 * ignored and they need to be checked now. If they are still 5300 * valid, it is important to return the device back off. 5301 */ 5302 if (hci_dev_test_flag(hdev, HCI_RFKILLED) || 5303 hci_dev_test_flag(hdev, HCI_UNCONFIGURED) || 5304 (!bacmp(&hdev->bdaddr, BDADDR_ANY) && 5305 !bacmp(&hdev->static_addr, BDADDR_ANY))) { 5306 hci_dev_clear_flag(hdev, HCI_AUTO_OFF); 5307 hci_dev_close_sync(hdev); 5308 } else if (hci_dev_test_flag(hdev, HCI_AUTO_OFF)) { 5309 queue_delayed_work(hdev->req_workqueue, &hdev->power_off, 5310 HCI_AUTO_OFF_TIMEOUT); 5311 } 5312 5313 if (hci_dev_test_and_clear_flag(hdev, HCI_SETUP)) { 5314 /* For unconfigured devices, set the HCI_RAW flag 5315 * so that userspace can easily identify them. 5316 */ 5317 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) 5318 set_bit(HCI_RAW, &hdev->flags); 5319 5320 /* For fully configured devices, this will send 5321 * the Index Added event. For unconfigured devices, 5322 * it will send Unconfigued Index Added event. 5323 * 5324 * Devices with HCI_QUIRK_RAW_DEVICE are ignored 5325 * and no event will be send. 5326 */ 5327 mgmt_index_added(hdev); 5328 } else if (hci_dev_test_and_clear_flag(hdev, HCI_CONFIG)) { 5329 /* When the controller is now configured, then it 5330 * is important to clear the HCI_RAW flag. 5331 */ 5332 if (!hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) 5333 clear_bit(HCI_RAW, &hdev->flags); 5334 5335 /* Powering on the controller with HCI_CONFIG set only 5336 * happens with the transition from unconfigured to 5337 * configured. This will send the Index Added event. 5338 */ 5339 mgmt_index_added(hdev); 5340 } 5341 5342 return 0; 5343 } 5344 5345 static int hci_remote_name_cancel_sync(struct hci_dev *hdev, bdaddr_t *addr) 5346 { 5347 struct hci_cp_remote_name_req_cancel cp; 5348 5349 memset(&cp, 0, sizeof(cp)); 5350 bacpy(&cp.bdaddr, addr); 5351 5352 return __hci_cmd_sync_status(hdev, HCI_OP_REMOTE_NAME_REQ_CANCEL, 5353 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 5354 } 5355 5356 int hci_stop_discovery_sync(struct hci_dev *hdev) 5357 { 5358 struct discovery_state *d = &hdev->discovery; 5359 struct inquiry_entry *e; 5360 int err; 5361 5362 bt_dev_dbg(hdev, "state %u", hdev->discovery.state); 5363 5364 if (d->state == DISCOVERY_FINDING || d->state == DISCOVERY_STOPPING) { 5365 if (test_bit(HCI_INQUIRY, &hdev->flags)) { 5366 err = __hci_cmd_sync_status(hdev, HCI_OP_INQUIRY_CANCEL, 5367 0, NULL, HCI_CMD_TIMEOUT); 5368 if (err) 5369 return err; 5370 } 5371 5372 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) { 5373 cancel_delayed_work(&hdev->le_scan_disable); 5374 5375 err = hci_scan_disable_sync(hdev); 5376 if (err) 5377 return err; 5378 } 5379 5380 } else { 5381 err = hci_scan_disable_sync(hdev); 5382 if (err) 5383 return err; 5384 } 5385 5386 /* Resume advertising if it was paused */ 5387 if (use_ll_privacy(hdev)) 5388 hci_resume_advertising_sync(hdev); 5389 5390 /* No further actions needed for LE-only discovery */ 5391 if (d->type == DISCOV_TYPE_LE) 5392 return 0; 5393 5394 if (d->state == DISCOVERY_RESOLVING || d->state == DISCOVERY_STOPPING) { 5395 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, 5396 NAME_PENDING); 5397 if (!e) 5398 return 0; 5399 5400 /* Ignore cancel errors since it should interfere with stopping 5401 * of the discovery. 5402 */ 5403 hci_remote_name_cancel_sync(hdev, &e->data.bdaddr); 5404 } 5405 5406 return 0; 5407 } 5408 5409 static int hci_disconnect_sync(struct hci_dev *hdev, struct hci_conn *conn, 5410 u8 reason) 5411 { 5412 struct hci_cp_disconnect cp; 5413 5414 if (test_bit(HCI_CONN_BIG_CREATED, &conn->flags)) { 5415 /* This is a BIS connection, hci_conn_del will 5416 * do the necessary cleanup. 5417 */ 5418 hci_dev_lock(hdev); 5419 hci_conn_failed(conn, reason); 5420 hci_dev_unlock(hdev); 5421 5422 return 0; 5423 } 5424 5425 memset(&cp, 0, sizeof(cp)); 5426 cp.handle = cpu_to_le16(conn->handle); 5427 cp.reason = reason; 5428 5429 /* Wait for HCI_EV_DISCONN_COMPLETE, not HCI_EV_CMD_STATUS, when the 5430 * reason is anything but HCI_ERROR_REMOTE_POWER_OFF. This reason is 5431 * used when suspending or powering off, where we don't want to wait 5432 * for the peer's response. 5433 */ 5434 if (reason != HCI_ERROR_REMOTE_POWER_OFF) 5435 return __hci_cmd_sync_status_sk(hdev, HCI_OP_DISCONNECT, 5436 sizeof(cp), &cp, 5437 HCI_EV_DISCONN_COMPLETE, 5438 HCI_CMD_TIMEOUT, NULL); 5439 5440 return __hci_cmd_sync_status(hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp, 5441 HCI_CMD_TIMEOUT); 5442 } 5443 5444 static int hci_le_connect_cancel_sync(struct hci_dev *hdev, 5445 struct hci_conn *conn, u8 reason) 5446 { 5447 /* Return reason if scanning since the connection shall probably be 5448 * cleanup directly. 5449 */ 5450 if (test_bit(HCI_CONN_SCANNING, &conn->flags)) 5451 return reason; 5452 5453 if (conn->role == HCI_ROLE_SLAVE || 5454 test_and_set_bit(HCI_CONN_CANCEL, &conn->flags)) 5455 return 0; 5456 5457 return __hci_cmd_sync_status(hdev, HCI_OP_LE_CREATE_CONN_CANCEL, 5458 0, NULL, HCI_CMD_TIMEOUT); 5459 } 5460 5461 static int hci_connect_cancel_sync(struct hci_dev *hdev, struct hci_conn *conn, 5462 u8 reason) 5463 { 5464 if (conn->type == LE_LINK) 5465 return hci_le_connect_cancel_sync(hdev, conn, reason); 5466 5467 if (conn->type == ISO_LINK) { 5468 /* BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E 5469 * page 1857: 5470 * 5471 * If this command is issued for a CIS on the Central and the 5472 * CIS is successfully terminated before being established, 5473 * then an HCI_LE_CIS_Established event shall also be sent for 5474 * this CIS with the Status Operation Cancelled by Host (0x44). 5475 */ 5476 if (test_bit(HCI_CONN_CREATE_CIS, &conn->flags)) 5477 return hci_disconnect_sync(hdev, conn, reason); 5478 5479 /* CIS with no Create CIS sent have nothing to cancel */ 5480 if (bacmp(&conn->dst, BDADDR_ANY)) 5481 return HCI_ERROR_LOCAL_HOST_TERM; 5482 5483 /* There is no way to cancel a BIS without terminating the BIG 5484 * which is done later on connection cleanup. 5485 */ 5486 return 0; 5487 } 5488 5489 if (hdev->hci_ver < BLUETOOTH_VER_1_2) 5490 return 0; 5491 5492 /* Wait for HCI_EV_CONN_COMPLETE, not HCI_EV_CMD_STATUS, when the 5493 * reason is anything but HCI_ERROR_REMOTE_POWER_OFF. This reason is 5494 * used when suspending or powering off, where we don't want to wait 5495 * for the peer's response. 5496 */ 5497 if (reason != HCI_ERROR_REMOTE_POWER_OFF) 5498 return __hci_cmd_sync_status_sk(hdev, HCI_OP_CREATE_CONN_CANCEL, 5499 6, &conn->dst, 5500 HCI_EV_CONN_COMPLETE, 5501 HCI_CMD_TIMEOUT, NULL); 5502 5503 return __hci_cmd_sync_status(hdev, HCI_OP_CREATE_CONN_CANCEL, 5504 6, &conn->dst, HCI_CMD_TIMEOUT); 5505 } 5506 5507 static int hci_reject_sco_sync(struct hci_dev *hdev, struct hci_conn *conn, 5508 u8 reason) 5509 { 5510 struct hci_cp_reject_sync_conn_req cp; 5511 5512 memset(&cp, 0, sizeof(cp)); 5513 bacpy(&cp.bdaddr, &conn->dst); 5514 cp.reason = reason; 5515 5516 /* SCO rejection has its own limited set of 5517 * allowed error values (0x0D-0x0F). 5518 */ 5519 if (reason < 0x0d || reason > 0x0f) 5520 cp.reason = HCI_ERROR_REJ_LIMITED_RESOURCES; 5521 5522 return __hci_cmd_sync_status(hdev, HCI_OP_REJECT_SYNC_CONN_REQ, 5523 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 5524 } 5525 5526 static int hci_le_reject_cis_sync(struct hci_dev *hdev, struct hci_conn *conn, 5527 u8 reason) 5528 { 5529 struct hci_cp_le_reject_cis cp; 5530 5531 memset(&cp, 0, sizeof(cp)); 5532 cp.handle = cpu_to_le16(conn->handle); 5533 cp.reason = reason; 5534 5535 return __hci_cmd_sync_status(hdev, HCI_OP_LE_REJECT_CIS, 5536 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 5537 } 5538 5539 static int hci_reject_conn_sync(struct hci_dev *hdev, struct hci_conn *conn, 5540 u8 reason) 5541 { 5542 struct hci_cp_reject_conn_req cp; 5543 5544 if (conn->type == ISO_LINK) 5545 return hci_le_reject_cis_sync(hdev, conn, reason); 5546 5547 if (conn->type == SCO_LINK || conn->type == ESCO_LINK) 5548 return hci_reject_sco_sync(hdev, conn, reason); 5549 5550 memset(&cp, 0, sizeof(cp)); 5551 bacpy(&cp.bdaddr, &conn->dst); 5552 cp.reason = reason; 5553 5554 return __hci_cmd_sync_status(hdev, HCI_OP_REJECT_CONN_REQ, 5555 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 5556 } 5557 5558 int hci_abort_conn_sync(struct hci_dev *hdev, struct hci_conn *conn, u8 reason) 5559 { 5560 int err = 0; 5561 u16 handle = conn->handle; 5562 bool disconnect = false; 5563 struct hci_conn *c; 5564 5565 switch (conn->state) { 5566 case BT_CONNECTED: 5567 case BT_CONFIG: 5568 err = hci_disconnect_sync(hdev, conn, reason); 5569 break; 5570 case BT_CONNECT: 5571 err = hci_connect_cancel_sync(hdev, conn, reason); 5572 break; 5573 case BT_CONNECT2: 5574 err = hci_reject_conn_sync(hdev, conn, reason); 5575 break; 5576 case BT_OPEN: 5577 case BT_BOUND: 5578 break; 5579 default: 5580 disconnect = true; 5581 break; 5582 } 5583 5584 hci_dev_lock(hdev); 5585 5586 /* Check if the connection has been cleaned up concurrently */ 5587 c = hci_conn_hash_lookup_handle(hdev, handle); 5588 if (!c || c != conn) { 5589 err = 0; 5590 goto unlock; 5591 } 5592 5593 /* Cleanup hci_conn object if it cannot be cancelled as it 5594 * likelly means the controller and host stack are out of sync 5595 * or in case of LE it was still scanning so it can be cleanup 5596 * safely. 5597 */ 5598 if (disconnect) { 5599 conn->state = BT_CLOSED; 5600 hci_disconn_cfm(conn, reason); 5601 hci_conn_del(conn); 5602 } else { 5603 hci_conn_failed(conn, reason); 5604 } 5605 5606 unlock: 5607 hci_dev_unlock(hdev); 5608 return err; 5609 } 5610 5611 static int hci_disconnect_all_sync(struct hci_dev *hdev, u8 reason) 5612 { 5613 struct list_head *head = &hdev->conn_hash.list; 5614 struct hci_conn *conn; 5615 5616 rcu_read_lock(); 5617 while ((conn = list_first_or_null_rcu(head, struct hci_conn, list))) { 5618 /* Make sure the connection is not freed while unlocking */ 5619 conn = hci_conn_get(conn); 5620 rcu_read_unlock(); 5621 /* Disregard possible errors since hci_conn_del shall have been 5622 * called even in case of errors had occurred since it would 5623 * then cause hci_conn_failed to be called which calls 5624 * hci_conn_del internally. 5625 */ 5626 hci_abort_conn_sync(hdev, conn, reason); 5627 hci_conn_put(conn); 5628 rcu_read_lock(); 5629 } 5630 rcu_read_unlock(); 5631 5632 return 0; 5633 } 5634 5635 /* This function perform power off HCI command sequence as follows: 5636 * 5637 * Clear Advertising 5638 * Stop Discovery 5639 * Disconnect all connections 5640 * hci_dev_close_sync 5641 */ 5642 static int hci_power_off_sync(struct hci_dev *hdev) 5643 { 5644 int err; 5645 5646 /* If controller is already down there is nothing to do */ 5647 if (!test_bit(HCI_UP, &hdev->flags)) 5648 return 0; 5649 5650 hci_dev_set_flag(hdev, HCI_POWERING_DOWN); 5651 5652 if (test_bit(HCI_ISCAN, &hdev->flags) || 5653 test_bit(HCI_PSCAN, &hdev->flags)) { 5654 err = hci_write_scan_enable_sync(hdev, 0x00); 5655 if (err) 5656 goto out; 5657 } 5658 5659 err = hci_clear_adv_sync(hdev, NULL, false); 5660 if (err) 5661 goto out; 5662 5663 err = hci_stop_discovery_sync(hdev); 5664 if (err) 5665 goto out; 5666 5667 /* Terminated due to Power Off */ 5668 err = hci_disconnect_all_sync(hdev, HCI_ERROR_REMOTE_POWER_OFF); 5669 if (err) 5670 goto out; 5671 5672 err = hci_dev_close_sync(hdev); 5673 5674 out: 5675 hci_dev_clear_flag(hdev, HCI_POWERING_DOWN); 5676 return err; 5677 } 5678 5679 int hci_set_powered_sync(struct hci_dev *hdev, u8 val) 5680 { 5681 if (val) 5682 return hci_power_on_sync(hdev); 5683 5684 return hci_power_off_sync(hdev); 5685 } 5686 5687 static int hci_write_iac_sync(struct hci_dev *hdev) 5688 { 5689 struct hci_cp_write_current_iac_lap cp; 5690 5691 if (!hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) 5692 return 0; 5693 5694 memset(&cp, 0, sizeof(cp)); 5695 5696 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE)) { 5697 /* Limited discoverable mode */ 5698 cp.num_iac = min_t(u8, hdev->num_iac, 2); 5699 cp.iac_lap[0] = 0x00; /* LIAC */ 5700 cp.iac_lap[1] = 0x8b; 5701 cp.iac_lap[2] = 0x9e; 5702 cp.iac_lap[3] = 0x33; /* GIAC */ 5703 cp.iac_lap[4] = 0x8b; 5704 cp.iac_lap[5] = 0x9e; 5705 } else { 5706 /* General discoverable mode */ 5707 cp.num_iac = 1; 5708 cp.iac_lap[0] = 0x33; /* GIAC */ 5709 cp.iac_lap[1] = 0x8b; 5710 cp.iac_lap[2] = 0x9e; 5711 } 5712 5713 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_CURRENT_IAC_LAP, 5714 (cp.num_iac * 3) + 1, &cp, 5715 HCI_CMD_TIMEOUT); 5716 } 5717 5718 int hci_update_discoverable_sync(struct hci_dev *hdev) 5719 { 5720 int err = 0; 5721 5722 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) { 5723 err = hci_write_iac_sync(hdev); 5724 if (err) 5725 return err; 5726 5727 err = hci_update_scan_sync(hdev); 5728 if (err) 5729 return err; 5730 5731 err = hci_update_class_sync(hdev); 5732 if (err) 5733 return err; 5734 } 5735 5736 /* Advertising instances don't use the global discoverable setting, so 5737 * only update AD if advertising was enabled using Set Advertising. 5738 */ 5739 if (hci_dev_test_flag(hdev, HCI_ADVERTISING)) { 5740 err = hci_update_adv_data_sync(hdev, 0x00); 5741 if (err) 5742 return err; 5743 5744 /* Discoverable mode affects the local advertising 5745 * address in limited privacy mode. 5746 */ 5747 if (hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY)) { 5748 if (ext_adv_capable(hdev)) 5749 err = hci_start_ext_adv_sync(hdev, 0x00); 5750 else 5751 err = hci_enable_advertising_sync(hdev); 5752 } 5753 } 5754 5755 return err; 5756 } 5757 5758 static int update_discoverable_sync(struct hci_dev *hdev, void *data) 5759 { 5760 return hci_update_discoverable_sync(hdev); 5761 } 5762 5763 int hci_update_discoverable(struct hci_dev *hdev) 5764 { 5765 /* Only queue if it would have any effect */ 5766 if (hdev_is_powered(hdev) && 5767 hci_dev_test_flag(hdev, HCI_ADVERTISING) && 5768 hci_dev_test_flag(hdev, HCI_DISCOVERABLE) && 5769 hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY)) 5770 return hci_cmd_sync_queue(hdev, update_discoverable_sync, NULL, 5771 NULL); 5772 5773 return 0; 5774 } 5775 5776 int hci_update_connectable_sync(struct hci_dev *hdev) 5777 { 5778 int err; 5779 5780 err = hci_update_scan_sync(hdev); 5781 if (err) 5782 return err; 5783 5784 /* If BR/EDR is not enabled and we disable advertising as a 5785 * by-product of disabling connectable, we need to update the 5786 * advertising flags. 5787 */ 5788 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) 5789 err = hci_update_adv_data_sync(hdev, hdev->cur_adv_instance); 5790 5791 /* Update the advertising parameters if necessary */ 5792 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) || 5793 !list_empty(&hdev->adv_instances)) { 5794 if (ext_adv_capable(hdev)) 5795 err = hci_start_ext_adv_sync(hdev, 5796 hdev->cur_adv_instance); 5797 else 5798 err = hci_enable_advertising_sync(hdev); 5799 5800 if (err) 5801 return err; 5802 } 5803 5804 return hci_update_passive_scan_sync(hdev); 5805 } 5806 5807 int hci_inquiry_sync(struct hci_dev *hdev, u8 length, u8 num_rsp) 5808 { 5809 const u8 giac[3] = { 0x33, 0x8b, 0x9e }; 5810 const u8 liac[3] = { 0x00, 0x8b, 0x9e }; 5811 struct hci_cp_inquiry cp; 5812 5813 bt_dev_dbg(hdev, ""); 5814 5815 if (test_bit(HCI_INQUIRY, &hdev->flags)) 5816 return 0; 5817 5818 hci_dev_lock(hdev); 5819 hci_inquiry_cache_flush(hdev); 5820 hci_dev_unlock(hdev); 5821 5822 memset(&cp, 0, sizeof(cp)); 5823 5824 if (hdev->discovery.limited) 5825 memcpy(&cp.lap, liac, sizeof(cp.lap)); 5826 else 5827 memcpy(&cp.lap, giac, sizeof(cp.lap)); 5828 5829 cp.length = length; 5830 cp.num_rsp = num_rsp; 5831 5832 return __hci_cmd_sync_status(hdev, HCI_OP_INQUIRY, 5833 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 5834 } 5835 5836 static int hci_active_scan_sync(struct hci_dev *hdev, uint16_t interval) 5837 { 5838 u8 own_addr_type; 5839 /* Accept list is not used for discovery */ 5840 u8 filter_policy = 0x00; 5841 /* Default is to enable duplicates filter */ 5842 u8 filter_dup = LE_SCAN_FILTER_DUP_ENABLE; 5843 int err; 5844 5845 bt_dev_dbg(hdev, ""); 5846 5847 /* If controller is scanning, it means the passive scanning is 5848 * running. Thus, we should temporarily stop it in order to set the 5849 * discovery scanning parameters. 5850 */ 5851 err = hci_scan_disable_sync(hdev); 5852 if (err) { 5853 bt_dev_err(hdev, "Unable to disable scanning: %d", err); 5854 return err; 5855 } 5856 5857 cancel_interleave_scan(hdev); 5858 5859 /* Pause address resolution for active scan and stop advertising if 5860 * privacy is enabled. 5861 */ 5862 err = hci_pause_addr_resolution(hdev); 5863 if (err) 5864 goto failed; 5865 5866 /* All active scans will be done with either a resolvable private 5867 * address (when privacy feature has been enabled) or non-resolvable 5868 * private address. 5869 */ 5870 err = hci_update_random_address_sync(hdev, true, scan_use_rpa(hdev), 5871 &own_addr_type); 5872 if (err < 0) 5873 own_addr_type = ADDR_LE_DEV_PUBLIC; 5874 5875 if (hci_is_adv_monitoring(hdev) || 5876 (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks) && 5877 hdev->discovery.result_filtering)) { 5878 /* Duplicate filter should be disabled when some advertisement 5879 * monitor is activated, otherwise AdvMon can only receive one 5880 * advertisement for one peer(*) during active scanning, and 5881 * might report loss to these peers. 5882 * 5883 * If controller does strict duplicate filtering and the 5884 * discovery requires result filtering disables controller based 5885 * filtering since that can cause reports that would match the 5886 * host filter to not be reported. 5887 */ 5888 filter_dup = LE_SCAN_FILTER_DUP_DISABLE; 5889 } 5890 5891 err = hci_start_scan_sync(hdev, LE_SCAN_ACTIVE, interval, 5892 hdev->le_scan_window_discovery, 5893 own_addr_type, filter_policy, filter_dup); 5894 if (!err) 5895 return err; 5896 5897 failed: 5898 /* Resume advertising if it was paused */ 5899 if (use_ll_privacy(hdev)) 5900 hci_resume_advertising_sync(hdev); 5901 5902 /* Resume passive scanning */ 5903 hci_update_passive_scan_sync(hdev); 5904 return err; 5905 } 5906 5907 static int hci_start_interleaved_discovery_sync(struct hci_dev *hdev) 5908 { 5909 int err; 5910 5911 bt_dev_dbg(hdev, ""); 5912 5913 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery * 2); 5914 if (err) 5915 return err; 5916 5917 return hci_inquiry_sync(hdev, DISCOV_BREDR_INQUIRY_LEN, 0); 5918 } 5919 5920 int hci_start_discovery_sync(struct hci_dev *hdev) 5921 { 5922 unsigned long timeout; 5923 int err; 5924 5925 bt_dev_dbg(hdev, "type %u", hdev->discovery.type); 5926 5927 switch (hdev->discovery.type) { 5928 case DISCOV_TYPE_BREDR: 5929 return hci_inquiry_sync(hdev, DISCOV_BREDR_INQUIRY_LEN, 0); 5930 case DISCOV_TYPE_INTERLEAVED: 5931 /* When running simultaneous discovery, the LE scanning time 5932 * should occupy the whole discovery time sine BR/EDR inquiry 5933 * and LE scanning are scheduled by the controller. 5934 * 5935 * For interleaving discovery in comparison, BR/EDR inquiry 5936 * and LE scanning are done sequentially with separate 5937 * timeouts. 5938 */ 5939 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, 5940 &hdev->quirks)) { 5941 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT); 5942 /* During simultaneous discovery, we double LE scan 5943 * interval. We must leave some time for the controller 5944 * to do BR/EDR inquiry. 5945 */ 5946 err = hci_start_interleaved_discovery_sync(hdev); 5947 break; 5948 } 5949 5950 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout); 5951 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery); 5952 break; 5953 case DISCOV_TYPE_LE: 5954 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT); 5955 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery); 5956 break; 5957 default: 5958 return -EINVAL; 5959 } 5960 5961 if (err) 5962 return err; 5963 5964 bt_dev_dbg(hdev, "timeout %u ms", jiffies_to_msecs(timeout)); 5965 5966 queue_delayed_work(hdev->req_workqueue, &hdev->le_scan_disable, 5967 timeout); 5968 return 0; 5969 } 5970 5971 static void hci_suspend_monitor_sync(struct hci_dev *hdev) 5972 { 5973 switch (hci_get_adv_monitor_offload_ext(hdev)) { 5974 case HCI_ADV_MONITOR_EXT_MSFT: 5975 msft_suspend_sync(hdev); 5976 break; 5977 default: 5978 return; 5979 } 5980 } 5981 5982 /* This function disables discovery and mark it as paused */ 5983 static int hci_pause_discovery_sync(struct hci_dev *hdev) 5984 { 5985 int old_state = hdev->discovery.state; 5986 int err; 5987 5988 /* If discovery already stopped/stopping/paused there nothing to do */ 5989 if (old_state == DISCOVERY_STOPPED || old_state == DISCOVERY_STOPPING || 5990 hdev->discovery_paused) 5991 return 0; 5992 5993 hci_discovery_set_state(hdev, DISCOVERY_STOPPING); 5994 err = hci_stop_discovery_sync(hdev); 5995 if (err) 5996 return err; 5997 5998 hdev->discovery_paused = true; 5999 hci_discovery_set_state(hdev, DISCOVERY_STOPPED); 6000 6001 return 0; 6002 } 6003 6004 static int hci_update_event_filter_sync(struct hci_dev *hdev) 6005 { 6006 struct bdaddr_list_with_flags *b; 6007 u8 scan = SCAN_DISABLED; 6008 bool scanning = test_bit(HCI_PSCAN, &hdev->flags); 6009 int err; 6010 6011 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) 6012 return 0; 6013 6014 /* Some fake CSR controllers lock up after setting this type of 6015 * filter, so avoid sending the request altogether. 6016 */ 6017 if (test_bit(HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL, &hdev->quirks)) 6018 return 0; 6019 6020 /* Always clear event filter when starting */ 6021 hci_clear_event_filter_sync(hdev); 6022 6023 list_for_each_entry(b, &hdev->accept_list, list) { 6024 if (!(b->flags & HCI_CONN_FLAG_REMOTE_WAKEUP)) 6025 continue; 6026 6027 bt_dev_dbg(hdev, "Adding event filters for %pMR", &b->bdaddr); 6028 6029 err = hci_set_event_filter_sync(hdev, HCI_FLT_CONN_SETUP, 6030 HCI_CONN_SETUP_ALLOW_BDADDR, 6031 &b->bdaddr, 6032 HCI_CONN_SETUP_AUTO_ON); 6033 if (err) 6034 bt_dev_dbg(hdev, "Failed to set event filter for %pMR", 6035 &b->bdaddr); 6036 else 6037 scan = SCAN_PAGE; 6038 } 6039 6040 if (scan && !scanning) 6041 hci_write_scan_enable_sync(hdev, scan); 6042 else if (!scan && scanning) 6043 hci_write_scan_enable_sync(hdev, scan); 6044 6045 return 0; 6046 } 6047 6048 /* This function disables scan (BR and LE) and mark it as paused */ 6049 static int hci_pause_scan_sync(struct hci_dev *hdev) 6050 { 6051 if (hdev->scanning_paused) 6052 return 0; 6053 6054 /* Disable page scan if enabled */ 6055 if (test_bit(HCI_PSCAN, &hdev->flags)) 6056 hci_write_scan_enable_sync(hdev, SCAN_DISABLED); 6057 6058 hci_scan_disable_sync(hdev); 6059 6060 hdev->scanning_paused = true; 6061 6062 return 0; 6063 } 6064 6065 /* This function performs the HCI suspend procedures in the follow order: 6066 * 6067 * Pause discovery (active scanning/inquiry) 6068 * Pause Directed Advertising/Advertising 6069 * Pause Scanning (passive scanning in case discovery was not active) 6070 * Disconnect all connections 6071 * Set suspend_status to BT_SUSPEND_DISCONNECT if hdev cannot wakeup 6072 * otherwise: 6073 * Update event mask (only set events that are allowed to wake up the host) 6074 * Update event filter (with devices marked with HCI_CONN_FLAG_REMOTE_WAKEUP) 6075 * Update passive scanning (lower duty cycle) 6076 * Set suspend_status to BT_SUSPEND_CONFIGURE_WAKE 6077 */ 6078 int hci_suspend_sync(struct hci_dev *hdev) 6079 { 6080 int err; 6081 6082 /* If marked as suspended there nothing to do */ 6083 if (hdev->suspended) 6084 return 0; 6085 6086 /* Mark device as suspended */ 6087 hdev->suspended = true; 6088 6089 /* Pause discovery if not already stopped */ 6090 hci_pause_discovery_sync(hdev); 6091 6092 /* Pause other advertisements */ 6093 hci_pause_advertising_sync(hdev); 6094 6095 /* Suspend monitor filters */ 6096 hci_suspend_monitor_sync(hdev); 6097 6098 /* Prevent disconnects from causing scanning to be re-enabled */ 6099 hci_pause_scan_sync(hdev); 6100 6101 if (hci_conn_count(hdev)) { 6102 /* Soft disconnect everything (power off) */ 6103 err = hci_disconnect_all_sync(hdev, HCI_ERROR_REMOTE_POWER_OFF); 6104 if (err) { 6105 /* Set state to BT_RUNNING so resume doesn't notify */ 6106 hdev->suspend_state = BT_RUNNING; 6107 hci_resume_sync(hdev); 6108 return err; 6109 } 6110 6111 /* Update event mask so only the allowed event can wakeup the 6112 * host. 6113 */ 6114 hci_set_event_mask_sync(hdev); 6115 } 6116 6117 /* Only configure accept list if disconnect succeeded and wake 6118 * isn't being prevented. 6119 */ 6120 if (!hdev->wakeup || !hdev->wakeup(hdev)) { 6121 hdev->suspend_state = BT_SUSPEND_DISCONNECT; 6122 return 0; 6123 } 6124 6125 /* Unpause to take care of updating scanning params */ 6126 hdev->scanning_paused = false; 6127 6128 /* Enable event filter for paired devices */ 6129 hci_update_event_filter_sync(hdev); 6130 6131 /* Update LE passive scan if enabled */ 6132 hci_update_passive_scan_sync(hdev); 6133 6134 /* Pause scan changes again. */ 6135 hdev->scanning_paused = true; 6136 6137 hdev->suspend_state = BT_SUSPEND_CONFIGURE_WAKE; 6138 6139 return 0; 6140 } 6141 6142 /* This function resumes discovery */ 6143 static int hci_resume_discovery_sync(struct hci_dev *hdev) 6144 { 6145 int err; 6146 6147 /* If discovery not paused there nothing to do */ 6148 if (!hdev->discovery_paused) 6149 return 0; 6150 6151 hdev->discovery_paused = false; 6152 6153 hci_discovery_set_state(hdev, DISCOVERY_STARTING); 6154 6155 err = hci_start_discovery_sync(hdev); 6156 6157 hci_discovery_set_state(hdev, err ? DISCOVERY_STOPPED : 6158 DISCOVERY_FINDING); 6159 6160 return err; 6161 } 6162 6163 static void hci_resume_monitor_sync(struct hci_dev *hdev) 6164 { 6165 switch (hci_get_adv_monitor_offload_ext(hdev)) { 6166 case HCI_ADV_MONITOR_EXT_MSFT: 6167 msft_resume_sync(hdev); 6168 break; 6169 default: 6170 return; 6171 } 6172 } 6173 6174 /* This function resume scan and reset paused flag */ 6175 static int hci_resume_scan_sync(struct hci_dev *hdev) 6176 { 6177 if (!hdev->scanning_paused) 6178 return 0; 6179 6180 hdev->scanning_paused = false; 6181 6182 hci_update_scan_sync(hdev); 6183 6184 /* Reset passive scanning to normal */ 6185 hci_update_passive_scan_sync(hdev); 6186 6187 return 0; 6188 } 6189 6190 /* This function performs the HCI suspend procedures in the follow order: 6191 * 6192 * Restore event mask 6193 * Clear event filter 6194 * Update passive scanning (normal duty cycle) 6195 * Resume Directed Advertising/Advertising 6196 * Resume discovery (active scanning/inquiry) 6197 */ 6198 int hci_resume_sync(struct hci_dev *hdev) 6199 { 6200 /* If not marked as suspended there nothing to do */ 6201 if (!hdev->suspended) 6202 return 0; 6203 6204 hdev->suspended = false; 6205 6206 /* Restore event mask */ 6207 hci_set_event_mask_sync(hdev); 6208 6209 /* Clear any event filters and restore scan state */ 6210 hci_clear_event_filter_sync(hdev); 6211 6212 /* Resume scanning */ 6213 hci_resume_scan_sync(hdev); 6214 6215 /* Resume monitor filters */ 6216 hci_resume_monitor_sync(hdev); 6217 6218 /* Resume other advertisements */ 6219 hci_resume_advertising_sync(hdev); 6220 6221 /* Resume discovery */ 6222 hci_resume_discovery_sync(hdev); 6223 6224 return 0; 6225 } 6226 6227 static bool conn_use_rpa(struct hci_conn *conn) 6228 { 6229 struct hci_dev *hdev = conn->hdev; 6230 6231 return hci_dev_test_flag(hdev, HCI_PRIVACY); 6232 } 6233 6234 static int hci_le_ext_directed_advertising_sync(struct hci_dev *hdev, 6235 struct hci_conn *conn) 6236 { 6237 struct hci_cp_le_set_ext_adv_params cp; 6238 int err; 6239 bdaddr_t random_addr; 6240 u8 own_addr_type; 6241 6242 err = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn), 6243 &own_addr_type); 6244 if (err) 6245 return err; 6246 6247 /* Set require_privacy to false so that the remote device has a 6248 * chance of identifying us. 6249 */ 6250 err = hci_get_random_address(hdev, false, conn_use_rpa(conn), NULL, 6251 &own_addr_type, &random_addr); 6252 if (err) 6253 return err; 6254 6255 memset(&cp, 0, sizeof(cp)); 6256 6257 cp.evt_properties = cpu_to_le16(LE_LEGACY_ADV_DIRECT_IND); 6258 cp.channel_map = hdev->le_adv_channel_map; 6259 cp.tx_power = HCI_TX_POWER_INVALID; 6260 cp.primary_phy = HCI_ADV_PHY_1M; 6261 cp.secondary_phy = HCI_ADV_PHY_1M; 6262 cp.handle = 0x00; /* Use instance 0 for directed adv */ 6263 cp.own_addr_type = own_addr_type; 6264 cp.peer_addr_type = conn->dst_type; 6265 bacpy(&cp.peer_addr, &conn->dst); 6266 6267 /* As per Core Spec 5.2 Vol 2, PART E, Sec 7.8.53, for 6268 * advertising_event_property LE_LEGACY_ADV_DIRECT_IND 6269 * does not supports advertising data when the advertising set already 6270 * contains some, the controller shall return erroc code 'Invalid 6271 * HCI Command Parameters(0x12). 6272 * So it is required to remove adv set for handle 0x00. since we use 6273 * instance 0 for directed adv. 6274 */ 6275 err = hci_remove_ext_adv_instance_sync(hdev, cp.handle, NULL); 6276 if (err) 6277 return err; 6278 6279 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EXT_ADV_PARAMS, 6280 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 6281 if (err) 6282 return err; 6283 6284 /* Check if random address need to be updated */ 6285 if (own_addr_type == ADDR_LE_DEV_RANDOM && 6286 bacmp(&random_addr, BDADDR_ANY) && 6287 bacmp(&random_addr, &hdev->random_addr)) { 6288 err = hci_set_adv_set_random_addr_sync(hdev, 0x00, 6289 &random_addr); 6290 if (err) 6291 return err; 6292 } 6293 6294 return hci_enable_ext_advertising_sync(hdev, 0x00); 6295 } 6296 6297 static int hci_le_directed_advertising_sync(struct hci_dev *hdev, 6298 struct hci_conn *conn) 6299 { 6300 struct hci_cp_le_set_adv_param cp; 6301 u8 status; 6302 u8 own_addr_type; 6303 u8 enable; 6304 6305 if (ext_adv_capable(hdev)) 6306 return hci_le_ext_directed_advertising_sync(hdev, conn); 6307 6308 /* Clear the HCI_LE_ADV bit temporarily so that the 6309 * hci_update_random_address knows that it's safe to go ahead 6310 * and write a new random address. The flag will be set back on 6311 * as soon as the SET_ADV_ENABLE HCI command completes. 6312 */ 6313 hci_dev_clear_flag(hdev, HCI_LE_ADV); 6314 6315 /* Set require_privacy to false so that the remote device has a 6316 * chance of identifying us. 6317 */ 6318 status = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn), 6319 &own_addr_type); 6320 if (status) 6321 return status; 6322 6323 memset(&cp, 0, sizeof(cp)); 6324 6325 /* Some controllers might reject command if intervals are not 6326 * within range for undirected advertising. 6327 * BCM20702A0 is known to be affected by this. 6328 */ 6329 cp.min_interval = cpu_to_le16(0x0020); 6330 cp.max_interval = cpu_to_le16(0x0020); 6331 6332 cp.type = LE_ADV_DIRECT_IND; 6333 cp.own_address_type = own_addr_type; 6334 cp.direct_addr_type = conn->dst_type; 6335 bacpy(&cp.direct_addr, &conn->dst); 6336 cp.channel_map = hdev->le_adv_channel_map; 6337 6338 status = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_PARAM, 6339 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 6340 if (status) 6341 return status; 6342 6343 enable = 0x01; 6344 6345 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_ENABLE, 6346 sizeof(enable), &enable, HCI_CMD_TIMEOUT); 6347 } 6348 6349 static void set_ext_conn_params(struct hci_conn *conn, 6350 struct hci_cp_le_ext_conn_param *p) 6351 { 6352 struct hci_dev *hdev = conn->hdev; 6353 6354 memset(p, 0, sizeof(*p)); 6355 6356 p->scan_interval = cpu_to_le16(hdev->le_scan_int_connect); 6357 p->scan_window = cpu_to_le16(hdev->le_scan_window_connect); 6358 p->conn_interval_min = cpu_to_le16(conn->le_conn_min_interval); 6359 p->conn_interval_max = cpu_to_le16(conn->le_conn_max_interval); 6360 p->conn_latency = cpu_to_le16(conn->le_conn_latency); 6361 p->supervision_timeout = cpu_to_le16(conn->le_supv_timeout); 6362 p->min_ce_len = cpu_to_le16(0x0000); 6363 p->max_ce_len = cpu_to_le16(0x0000); 6364 } 6365 6366 static int hci_le_ext_create_conn_sync(struct hci_dev *hdev, 6367 struct hci_conn *conn, u8 own_addr_type) 6368 { 6369 struct hci_cp_le_ext_create_conn *cp; 6370 struct hci_cp_le_ext_conn_param *p; 6371 u8 data[sizeof(*cp) + sizeof(*p) * 3]; 6372 u32 plen; 6373 6374 cp = (void *)data; 6375 p = (void *)cp->data; 6376 6377 memset(cp, 0, sizeof(*cp)); 6378 6379 bacpy(&cp->peer_addr, &conn->dst); 6380 cp->peer_addr_type = conn->dst_type; 6381 cp->own_addr_type = own_addr_type; 6382 6383 plen = sizeof(*cp); 6384 6385 if (scan_1m(hdev) && (conn->le_adv_phy == HCI_ADV_PHY_1M || 6386 conn->le_adv_sec_phy == HCI_ADV_PHY_1M)) { 6387 cp->phys |= LE_SCAN_PHY_1M; 6388 set_ext_conn_params(conn, p); 6389 6390 p++; 6391 plen += sizeof(*p); 6392 } 6393 6394 if (scan_2m(hdev) && (conn->le_adv_phy == HCI_ADV_PHY_2M || 6395 conn->le_adv_sec_phy == HCI_ADV_PHY_2M)) { 6396 cp->phys |= LE_SCAN_PHY_2M; 6397 set_ext_conn_params(conn, p); 6398 6399 p++; 6400 plen += sizeof(*p); 6401 } 6402 6403 if (scan_coded(hdev) && (conn->le_adv_phy == HCI_ADV_PHY_CODED || 6404 conn->le_adv_sec_phy == HCI_ADV_PHY_CODED)) { 6405 cp->phys |= LE_SCAN_PHY_CODED; 6406 set_ext_conn_params(conn, p); 6407 6408 plen += sizeof(*p); 6409 } 6410 6411 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_EXT_CREATE_CONN, 6412 plen, data, 6413 HCI_EV_LE_ENHANCED_CONN_COMPLETE, 6414 conn->conn_timeout, NULL); 6415 } 6416 6417 static int hci_le_create_conn_sync(struct hci_dev *hdev, void *data) 6418 { 6419 struct hci_cp_le_create_conn cp; 6420 struct hci_conn_params *params; 6421 u8 own_addr_type; 6422 int err; 6423 struct hci_conn *conn = data; 6424 6425 if (!hci_conn_valid(hdev, conn)) 6426 return -ECANCELED; 6427 6428 bt_dev_dbg(hdev, "conn %p", conn); 6429 6430 clear_bit(HCI_CONN_SCANNING, &conn->flags); 6431 conn->state = BT_CONNECT; 6432 6433 /* If requested to connect as peripheral use directed advertising */ 6434 if (conn->role == HCI_ROLE_SLAVE) { 6435 /* If we're active scanning and simultaneous roles is not 6436 * enabled simply reject the attempt. 6437 */ 6438 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) && 6439 hdev->le_scan_type == LE_SCAN_ACTIVE && 6440 !hci_dev_test_flag(hdev, HCI_LE_SIMULTANEOUS_ROLES)) { 6441 hci_conn_del(conn); 6442 return -EBUSY; 6443 } 6444 6445 /* Pause advertising while doing directed advertising. */ 6446 hci_pause_advertising_sync(hdev); 6447 6448 err = hci_le_directed_advertising_sync(hdev, conn); 6449 goto done; 6450 } 6451 6452 /* Disable advertising if simultaneous roles is not in use. */ 6453 if (!hci_dev_test_flag(hdev, HCI_LE_SIMULTANEOUS_ROLES)) 6454 hci_pause_advertising_sync(hdev); 6455 6456 params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type); 6457 if (params) { 6458 conn->le_conn_min_interval = params->conn_min_interval; 6459 conn->le_conn_max_interval = params->conn_max_interval; 6460 conn->le_conn_latency = params->conn_latency; 6461 conn->le_supv_timeout = params->supervision_timeout; 6462 } else { 6463 conn->le_conn_min_interval = hdev->le_conn_min_interval; 6464 conn->le_conn_max_interval = hdev->le_conn_max_interval; 6465 conn->le_conn_latency = hdev->le_conn_latency; 6466 conn->le_supv_timeout = hdev->le_supv_timeout; 6467 } 6468 6469 /* If controller is scanning, we stop it since some controllers are 6470 * not able to scan and connect at the same time. Also set the 6471 * HCI_LE_SCAN_INTERRUPTED flag so that the command complete 6472 * handler for scan disabling knows to set the correct discovery 6473 * state. 6474 */ 6475 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) { 6476 hci_scan_disable_sync(hdev); 6477 hci_dev_set_flag(hdev, HCI_LE_SCAN_INTERRUPTED); 6478 } 6479 6480 /* Update random address, but set require_privacy to false so 6481 * that we never connect with an non-resolvable address. 6482 */ 6483 err = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn), 6484 &own_addr_type); 6485 if (err) 6486 goto done; 6487 /* Send command LE Extended Create Connection if supported */ 6488 if (use_ext_conn(hdev)) { 6489 err = hci_le_ext_create_conn_sync(hdev, conn, own_addr_type); 6490 goto done; 6491 } 6492 6493 memset(&cp, 0, sizeof(cp)); 6494 6495 cp.scan_interval = cpu_to_le16(hdev->le_scan_int_connect); 6496 cp.scan_window = cpu_to_le16(hdev->le_scan_window_connect); 6497 6498 bacpy(&cp.peer_addr, &conn->dst); 6499 cp.peer_addr_type = conn->dst_type; 6500 cp.own_address_type = own_addr_type; 6501 cp.conn_interval_min = cpu_to_le16(conn->le_conn_min_interval); 6502 cp.conn_interval_max = cpu_to_le16(conn->le_conn_max_interval); 6503 cp.conn_latency = cpu_to_le16(conn->le_conn_latency); 6504 cp.supervision_timeout = cpu_to_le16(conn->le_supv_timeout); 6505 cp.min_ce_len = cpu_to_le16(0x0000); 6506 cp.max_ce_len = cpu_to_le16(0x0000); 6507 6508 /* BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E page 2261: 6509 * 6510 * If this event is unmasked and the HCI_LE_Connection_Complete event 6511 * is unmasked, only the HCI_LE_Enhanced_Connection_Complete event is 6512 * sent when a new connection has been created. 6513 */ 6514 err = __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CREATE_CONN, 6515 sizeof(cp), &cp, 6516 use_enhanced_conn_complete(hdev) ? 6517 HCI_EV_LE_ENHANCED_CONN_COMPLETE : 6518 HCI_EV_LE_CONN_COMPLETE, 6519 conn->conn_timeout, NULL); 6520 6521 done: 6522 if (err == -ETIMEDOUT) 6523 hci_le_connect_cancel_sync(hdev, conn, 0x00); 6524 6525 /* Re-enable advertising after the connection attempt is finished. */ 6526 hci_resume_advertising_sync(hdev); 6527 return err; 6528 } 6529 6530 int hci_le_create_cis_sync(struct hci_dev *hdev) 6531 { 6532 DEFINE_FLEX(struct hci_cp_le_create_cis, cmd, cis, num_cis, 0x1f); 6533 size_t aux_num_cis = 0; 6534 struct hci_conn *conn; 6535 u8 cig = BT_ISO_QOS_CIG_UNSET; 6536 6537 /* The spec allows only one pending LE Create CIS command at a time. If 6538 * the command is pending now, don't do anything. We check for pending 6539 * connections after each CIS Established event. 6540 * 6541 * BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E 6542 * page 2566: 6543 * 6544 * If the Host issues this command before all the 6545 * HCI_LE_CIS_Established events from the previous use of the 6546 * command have been generated, the Controller shall return the 6547 * error code Command Disallowed (0x0C). 6548 * 6549 * BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E 6550 * page 2567: 6551 * 6552 * When the Controller receives the HCI_LE_Create_CIS command, the 6553 * Controller sends the HCI_Command_Status event to the Host. An 6554 * HCI_LE_CIS_Established event will be generated for each CIS when it 6555 * is established or if it is disconnected or considered lost before 6556 * being established; until all the events are generated, the command 6557 * remains pending. 6558 */ 6559 6560 hci_dev_lock(hdev); 6561 6562 rcu_read_lock(); 6563 6564 /* Wait until previous Create CIS has completed */ 6565 list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) { 6566 if (test_bit(HCI_CONN_CREATE_CIS, &conn->flags)) 6567 goto done; 6568 } 6569 6570 /* Find CIG with all CIS ready */ 6571 list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) { 6572 struct hci_conn *link; 6573 6574 if (hci_conn_check_create_cis(conn)) 6575 continue; 6576 6577 cig = conn->iso_qos.ucast.cig; 6578 6579 list_for_each_entry_rcu(link, &hdev->conn_hash.list, list) { 6580 if (hci_conn_check_create_cis(link) > 0 && 6581 link->iso_qos.ucast.cig == cig && 6582 link->state != BT_CONNECTED) { 6583 cig = BT_ISO_QOS_CIG_UNSET; 6584 break; 6585 } 6586 } 6587 6588 if (cig != BT_ISO_QOS_CIG_UNSET) 6589 break; 6590 } 6591 6592 if (cig == BT_ISO_QOS_CIG_UNSET) 6593 goto done; 6594 6595 list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) { 6596 struct hci_cis *cis = &cmd->cis[aux_num_cis]; 6597 6598 if (hci_conn_check_create_cis(conn) || 6599 conn->iso_qos.ucast.cig != cig) 6600 continue; 6601 6602 set_bit(HCI_CONN_CREATE_CIS, &conn->flags); 6603 cis->acl_handle = cpu_to_le16(conn->parent->handle); 6604 cis->cis_handle = cpu_to_le16(conn->handle); 6605 aux_num_cis++; 6606 6607 if (aux_num_cis >= cmd->num_cis) 6608 break; 6609 } 6610 cmd->num_cis = aux_num_cis; 6611 6612 done: 6613 rcu_read_unlock(); 6614 6615 hci_dev_unlock(hdev); 6616 6617 if (!aux_num_cis) 6618 return 0; 6619 6620 /* Wait for HCI_LE_CIS_Established */ 6621 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CREATE_CIS, 6622 struct_size(cmd, cis, cmd->num_cis), 6623 cmd, HCI_EVT_LE_CIS_ESTABLISHED, 6624 conn->conn_timeout, NULL); 6625 } 6626 6627 int hci_le_remove_cig_sync(struct hci_dev *hdev, u8 handle) 6628 { 6629 struct hci_cp_le_remove_cig cp; 6630 6631 memset(&cp, 0, sizeof(cp)); 6632 cp.cig_id = handle; 6633 6634 return __hci_cmd_sync_status(hdev, HCI_OP_LE_REMOVE_CIG, sizeof(cp), 6635 &cp, HCI_CMD_TIMEOUT); 6636 } 6637 6638 int hci_le_big_terminate_sync(struct hci_dev *hdev, u8 handle) 6639 { 6640 struct hci_cp_le_big_term_sync cp; 6641 6642 memset(&cp, 0, sizeof(cp)); 6643 cp.handle = handle; 6644 6645 return __hci_cmd_sync_status(hdev, HCI_OP_LE_BIG_TERM_SYNC, 6646 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 6647 } 6648 6649 int hci_le_pa_terminate_sync(struct hci_dev *hdev, u16 handle) 6650 { 6651 struct hci_cp_le_pa_term_sync cp; 6652 6653 memset(&cp, 0, sizeof(cp)); 6654 cp.handle = cpu_to_le16(handle); 6655 6656 return __hci_cmd_sync_status(hdev, HCI_OP_LE_PA_TERM_SYNC, 6657 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 6658 } 6659 6660 int hci_get_random_address(struct hci_dev *hdev, bool require_privacy, 6661 bool use_rpa, struct adv_info *adv_instance, 6662 u8 *own_addr_type, bdaddr_t *rand_addr) 6663 { 6664 int err; 6665 6666 bacpy(rand_addr, BDADDR_ANY); 6667 6668 /* If privacy is enabled use a resolvable private address. If 6669 * current RPA has expired then generate a new one. 6670 */ 6671 if (use_rpa) { 6672 /* If Controller supports LL Privacy use own address type is 6673 * 0x03 6674 */ 6675 if (use_ll_privacy(hdev)) 6676 *own_addr_type = ADDR_LE_DEV_RANDOM_RESOLVED; 6677 else 6678 *own_addr_type = ADDR_LE_DEV_RANDOM; 6679 6680 if (adv_instance) { 6681 if (adv_rpa_valid(adv_instance)) 6682 return 0; 6683 } else { 6684 if (rpa_valid(hdev)) 6685 return 0; 6686 } 6687 6688 err = smp_generate_rpa(hdev, hdev->irk, &hdev->rpa); 6689 if (err < 0) { 6690 bt_dev_err(hdev, "failed to generate new RPA"); 6691 return err; 6692 } 6693 6694 bacpy(rand_addr, &hdev->rpa); 6695 6696 return 0; 6697 } 6698 6699 /* In case of required privacy without resolvable private address, 6700 * use an non-resolvable private address. This is useful for 6701 * non-connectable advertising. 6702 */ 6703 if (require_privacy) { 6704 bdaddr_t nrpa; 6705 6706 while (true) { 6707 /* The non-resolvable private address is generated 6708 * from random six bytes with the two most significant 6709 * bits cleared. 6710 */ 6711 get_random_bytes(&nrpa, 6); 6712 nrpa.b[5] &= 0x3f; 6713 6714 /* The non-resolvable private address shall not be 6715 * equal to the public address. 6716 */ 6717 if (bacmp(&hdev->bdaddr, &nrpa)) 6718 break; 6719 } 6720 6721 *own_addr_type = ADDR_LE_DEV_RANDOM; 6722 bacpy(rand_addr, &nrpa); 6723 6724 return 0; 6725 } 6726 6727 /* No privacy so use a public address. */ 6728 *own_addr_type = ADDR_LE_DEV_PUBLIC; 6729 6730 return 0; 6731 } 6732 6733 static int _update_adv_data_sync(struct hci_dev *hdev, void *data) 6734 { 6735 u8 instance = PTR_UINT(data); 6736 6737 return hci_update_adv_data_sync(hdev, instance); 6738 } 6739 6740 int hci_update_adv_data(struct hci_dev *hdev, u8 instance) 6741 { 6742 return hci_cmd_sync_queue(hdev, _update_adv_data_sync, 6743 UINT_PTR(instance), NULL); 6744 } 6745 6746 static int hci_acl_create_conn_sync(struct hci_dev *hdev, void *data) 6747 { 6748 struct hci_conn *conn = data; 6749 struct inquiry_entry *ie; 6750 struct hci_cp_create_conn cp; 6751 int err; 6752 6753 if (!hci_conn_valid(hdev, conn)) 6754 return -ECANCELED; 6755 6756 /* Many controllers disallow HCI Create Connection while it is doing 6757 * HCI Inquiry. So we cancel the Inquiry first before issuing HCI Create 6758 * Connection. This may cause the MGMT discovering state to become false 6759 * without user space's request but it is okay since the MGMT Discovery 6760 * APIs do not promise that discovery should be done forever. Instead, 6761 * the user space monitors the status of MGMT discovering and it may 6762 * request for discovery again when this flag becomes false. 6763 */ 6764 if (test_bit(HCI_INQUIRY, &hdev->flags)) { 6765 err = __hci_cmd_sync_status(hdev, HCI_OP_INQUIRY_CANCEL, 0, 6766 NULL, HCI_CMD_TIMEOUT); 6767 if (err) 6768 bt_dev_warn(hdev, "Failed to cancel inquiry %d", err); 6769 } 6770 6771 conn->state = BT_CONNECT; 6772 conn->out = true; 6773 conn->role = HCI_ROLE_MASTER; 6774 6775 conn->attempt++; 6776 6777 conn->link_policy = hdev->link_policy; 6778 6779 memset(&cp, 0, sizeof(cp)); 6780 bacpy(&cp.bdaddr, &conn->dst); 6781 cp.pscan_rep_mode = 0x02; 6782 6783 ie = hci_inquiry_cache_lookup(hdev, &conn->dst); 6784 if (ie) { 6785 if (inquiry_entry_age(ie) <= INQUIRY_ENTRY_AGE_MAX) { 6786 cp.pscan_rep_mode = ie->data.pscan_rep_mode; 6787 cp.pscan_mode = ie->data.pscan_mode; 6788 cp.clock_offset = ie->data.clock_offset | 6789 cpu_to_le16(0x8000); 6790 } 6791 6792 memcpy(conn->dev_class, ie->data.dev_class, 3); 6793 } 6794 6795 cp.pkt_type = cpu_to_le16(conn->pkt_type); 6796 if (lmp_rswitch_capable(hdev) && !(hdev->link_mode & HCI_LM_MASTER)) 6797 cp.role_switch = 0x01; 6798 else 6799 cp.role_switch = 0x00; 6800 6801 return __hci_cmd_sync_status_sk(hdev, HCI_OP_CREATE_CONN, 6802 sizeof(cp), &cp, 6803 HCI_EV_CONN_COMPLETE, 6804 conn->conn_timeout, NULL); 6805 } 6806 6807 int hci_connect_acl_sync(struct hci_dev *hdev, struct hci_conn *conn) 6808 { 6809 return hci_cmd_sync_queue_once(hdev, hci_acl_create_conn_sync, conn, 6810 NULL); 6811 } 6812 6813 static void create_le_conn_complete(struct hci_dev *hdev, void *data, int err) 6814 { 6815 struct hci_conn *conn = data; 6816 6817 bt_dev_dbg(hdev, "err %d", err); 6818 6819 if (err == -ECANCELED) 6820 return; 6821 6822 hci_dev_lock(hdev); 6823 6824 if (!hci_conn_valid(hdev, conn)) 6825 goto done; 6826 6827 if (!err) { 6828 hci_connect_le_scan_cleanup(conn, 0x00); 6829 goto done; 6830 } 6831 6832 /* Check if connection is still pending */ 6833 if (conn != hci_lookup_le_connect(hdev)) 6834 goto done; 6835 6836 /* Flush to make sure we send create conn cancel command if needed */ 6837 flush_delayed_work(&conn->le_conn_timeout); 6838 hci_conn_failed(conn, bt_status(err)); 6839 6840 done: 6841 hci_dev_unlock(hdev); 6842 } 6843 6844 int hci_connect_le_sync(struct hci_dev *hdev, struct hci_conn *conn) 6845 { 6846 return hci_cmd_sync_queue_once(hdev, hci_le_create_conn_sync, conn, 6847 create_le_conn_complete); 6848 } 6849 6850 int hci_cancel_connect_sync(struct hci_dev *hdev, struct hci_conn *conn) 6851 { 6852 if (conn->state != BT_OPEN) 6853 return -EINVAL; 6854 6855 switch (conn->type) { 6856 case ACL_LINK: 6857 return !hci_cmd_sync_dequeue_once(hdev, 6858 hci_acl_create_conn_sync, 6859 conn, NULL); 6860 case LE_LINK: 6861 return !hci_cmd_sync_dequeue_once(hdev, hci_le_create_conn_sync, 6862 conn, create_le_conn_complete); 6863 } 6864 6865 return -ENOENT; 6866 } 6867 6868 int hci_le_conn_update_sync(struct hci_dev *hdev, struct hci_conn *conn, 6869 struct hci_conn_params *params) 6870 { 6871 struct hci_cp_le_conn_update cp; 6872 6873 memset(&cp, 0, sizeof(cp)); 6874 cp.handle = cpu_to_le16(conn->handle); 6875 cp.conn_interval_min = cpu_to_le16(params->conn_min_interval); 6876 cp.conn_interval_max = cpu_to_le16(params->conn_max_interval); 6877 cp.conn_latency = cpu_to_le16(params->conn_latency); 6878 cp.supervision_timeout = cpu_to_le16(params->supervision_timeout); 6879 cp.min_ce_len = cpu_to_le16(0x0000); 6880 cp.max_ce_len = cpu_to_le16(0x0000); 6881 6882 return __hci_cmd_sync_status(hdev, HCI_OP_LE_CONN_UPDATE, 6883 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 6884 } 6885