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