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 -EEXIST; 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 (ll_ext_feature_capable(hdev)) 4442 events[5] |= BIT(2); 4443 4444 if (le_cs_capable(hdev)) { 4445 /* Channel Sounding events */ 4446 events[5] |= 0x08; /* LE CS Read Remote Supported Cap Complete event */ 4447 events[5] |= 0x10; /* LE CS Read Remote FAE Table Complete event */ 4448 events[5] |= 0x20; /* LE CS Security Enable Complete event */ 4449 events[5] |= 0x40; /* LE CS Config Complete event */ 4450 events[5] |= 0x80; /* LE CS Procedure Enable Complete event */ 4451 events[6] |= 0x01; /* LE CS Subevent Result event */ 4452 events[6] |= 0x02; /* LE CS Subevent Result Continue event */ 4453 events[6] |= 0x04; /* LE CS Test End Complete event */ 4454 } 4455 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_EVENT_MASK, 4456 sizeof(events), events, HCI_CMD_TIMEOUT); 4457 } 4458 4459 /* Read LE Advertising Channel TX Power */ 4460 static int hci_le_read_adv_tx_power_sync(struct hci_dev *hdev) 4461 { 4462 if ((hdev->commands[25] & 0x40) && !ext_adv_capable(hdev)) { 4463 /* HCI TS spec forbids mixing of legacy and extended 4464 * advertising commands wherein READ_ADV_TX_POWER is 4465 * also included. So do not call it if extended adv 4466 * is supported otherwise controller will return 4467 * COMMAND_DISALLOWED for extended commands. 4468 */ 4469 return __hci_cmd_sync_status(hdev, 4470 HCI_OP_LE_READ_ADV_TX_POWER, 4471 0, NULL, HCI_CMD_TIMEOUT); 4472 } 4473 4474 return 0; 4475 } 4476 4477 /* Read LE Min/Max Tx Power*/ 4478 static int hci_le_read_tx_power_sync(struct hci_dev *hdev) 4479 { 4480 if (!(hdev->commands[38] & 0x80) || 4481 hci_test_quirk(hdev, HCI_QUIRK_BROKEN_READ_TRANSMIT_POWER)) 4482 return 0; 4483 4484 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_TRANSMIT_POWER, 4485 0, NULL, HCI_CMD_TIMEOUT); 4486 } 4487 4488 /* Read LE Accept List Size */ 4489 static int hci_le_read_accept_list_size_sync(struct hci_dev *hdev) 4490 { 4491 if (!(hdev->commands[26] & 0x40)) 4492 return 0; 4493 4494 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_ACCEPT_LIST_SIZE, 4495 0, NULL, HCI_CMD_TIMEOUT); 4496 } 4497 4498 /* Read LE Resolving List Size */ 4499 static int hci_le_read_resolv_list_size_sync(struct hci_dev *hdev) 4500 { 4501 if (!(hdev->commands[34] & 0x40)) 4502 return 0; 4503 4504 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_RESOLV_LIST_SIZE, 4505 0, NULL, HCI_CMD_TIMEOUT); 4506 } 4507 4508 /* Clear LE Resolving List */ 4509 static int hci_le_clear_resolv_list_sync(struct hci_dev *hdev) 4510 { 4511 if (!(hdev->commands[34] & 0x20)) 4512 return 0; 4513 4514 return __hci_cmd_sync_status(hdev, HCI_OP_LE_CLEAR_RESOLV_LIST, 0, NULL, 4515 HCI_CMD_TIMEOUT); 4516 } 4517 4518 /* Set RPA timeout */ 4519 static int hci_le_set_rpa_timeout_sync(struct hci_dev *hdev) 4520 { 4521 __le16 timeout = cpu_to_le16(hdev->rpa_timeout); 4522 4523 if (!(hdev->commands[35] & 0x04) || 4524 hci_test_quirk(hdev, HCI_QUIRK_BROKEN_SET_RPA_TIMEOUT)) 4525 return 0; 4526 4527 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_RPA_TIMEOUT, 4528 sizeof(timeout), &timeout, 4529 HCI_CMD_TIMEOUT); 4530 } 4531 4532 /* Read LE Maximum Data Length */ 4533 static int hci_le_read_max_data_len_sync(struct hci_dev *hdev) 4534 { 4535 if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT)) 4536 return 0; 4537 4538 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_MAX_DATA_LEN, 0, NULL, 4539 HCI_CMD_TIMEOUT); 4540 } 4541 4542 /* Read LE Suggested Default Data Length */ 4543 static int hci_le_read_def_data_len_sync(struct hci_dev *hdev) 4544 { 4545 if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT)) 4546 return 0; 4547 4548 return __hci_cmd_sync_status(hdev, HCI_OP_LE_READ_DEF_DATA_LEN, 0, NULL, 4549 HCI_CMD_TIMEOUT); 4550 } 4551 4552 /* Read LE Number of Supported Advertising Sets */ 4553 static int hci_le_read_num_support_adv_sets_sync(struct hci_dev *hdev) 4554 { 4555 if (!ext_adv_capable(hdev)) 4556 return 0; 4557 4558 return __hci_cmd_sync_status(hdev, 4559 HCI_OP_LE_READ_NUM_SUPPORTED_ADV_SETS, 4560 0, NULL, HCI_CMD_TIMEOUT); 4561 } 4562 4563 /* Write LE Host Supported */ 4564 static int hci_set_le_support_sync(struct hci_dev *hdev) 4565 { 4566 struct hci_cp_write_le_host_supported cp; 4567 4568 /* LE-only devices do not support explicit enablement */ 4569 if (!lmp_bredr_capable(hdev)) 4570 return 0; 4571 4572 memset(&cp, 0, sizeof(cp)); 4573 4574 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) { 4575 cp.le = 0x01; 4576 cp.simul = 0x00; 4577 } 4578 4579 if (cp.le == lmp_host_le_capable(hdev)) 4580 return 0; 4581 4582 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, 4583 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4584 } 4585 4586 /* LE Set Host Feature */ 4587 static int hci_le_set_host_feature_sync(struct hci_dev *hdev, u8 bit, u8 value) 4588 { 4589 struct hci_cp_le_set_host_feature cp; 4590 4591 memset(&cp, 0, sizeof(cp)); 4592 4593 /* Connected Isochronous Channels (Host Support) */ 4594 cp.bit_number = bit; 4595 cp.bit_value = value; 4596 4597 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_HOST_FEATURE, 4598 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4599 } 4600 4601 /* Set Host Features, each feature needs to be sent separately since 4602 * HCI_OP_LE_SET_HOST_FEATURE doesn't support setting all of them at once. 4603 */ 4604 static int hci_le_set_host_features_sync(struct hci_dev *hdev) 4605 { 4606 int err; 4607 4608 if (cis_capable(hdev)) { 4609 /* Connected Isochronous Channels (Host Support) */ 4610 err = hci_le_set_host_feature_sync(hdev, 32, 4611 (iso_enabled(hdev) ? 0x01 : 4612 0x00)); 4613 if (err) 4614 return err; 4615 } 4616 4617 if (le_cs_capable(hdev)) 4618 /* Channel Sounding (Host Support) */ 4619 err = hci_le_set_host_feature_sync(hdev, 47, 0x01); 4620 4621 return err; 4622 } 4623 4624 /* LE Controller init stage 3 command sequence */ 4625 static const struct hci_init_stage le_init3[] = { 4626 /* HCI_OP_LE_SET_EVENT_MASK */ 4627 HCI_INIT(hci_le_set_event_mask_sync), 4628 /* HCI_OP_LE_READ_ADV_TX_POWER */ 4629 HCI_INIT(hci_le_read_adv_tx_power_sync), 4630 /* HCI_OP_LE_READ_TRANSMIT_POWER */ 4631 HCI_INIT(hci_le_read_tx_power_sync), 4632 /* HCI_OP_LE_READ_ACCEPT_LIST_SIZE */ 4633 HCI_INIT(hci_le_read_accept_list_size_sync), 4634 /* HCI_OP_LE_CLEAR_ACCEPT_LIST */ 4635 HCI_INIT(hci_le_clear_accept_list_sync), 4636 /* HCI_OP_LE_READ_RESOLV_LIST_SIZE */ 4637 HCI_INIT(hci_le_read_resolv_list_size_sync), 4638 /* HCI_OP_LE_CLEAR_RESOLV_LIST */ 4639 HCI_INIT(hci_le_clear_resolv_list_sync), 4640 /* HCI_OP_LE_SET_RPA_TIMEOUT */ 4641 HCI_INIT(hci_le_set_rpa_timeout_sync), 4642 /* HCI_OP_LE_READ_MAX_DATA_LEN */ 4643 HCI_INIT(hci_le_read_max_data_len_sync), 4644 /* HCI_OP_LE_READ_DEF_DATA_LEN */ 4645 HCI_INIT(hci_le_read_def_data_len_sync), 4646 /* HCI_OP_LE_READ_NUM_SUPPORTED_ADV_SETS */ 4647 HCI_INIT(hci_le_read_num_support_adv_sets_sync), 4648 /* HCI_OP_WRITE_LE_HOST_SUPPORTED */ 4649 HCI_INIT(hci_set_le_support_sync), 4650 /* HCI_OP_LE_SET_HOST_FEATURE */ 4651 HCI_INIT(hci_le_set_host_features_sync), 4652 {} 4653 }; 4654 4655 static int hci_init3_sync(struct hci_dev *hdev) 4656 { 4657 int err; 4658 4659 bt_dev_dbg(hdev, ""); 4660 4661 err = hci_init_stage_sync(hdev, hci_init3); 4662 if (err) 4663 return err; 4664 4665 if (lmp_le_capable(hdev)) 4666 return hci_init_stage_sync(hdev, le_init3); 4667 4668 return 0; 4669 } 4670 4671 static int hci_delete_stored_link_key_sync(struct hci_dev *hdev) 4672 { 4673 struct hci_cp_delete_stored_link_key cp; 4674 4675 /* Some Broadcom based Bluetooth controllers do not support the 4676 * Delete Stored Link Key command. They are clearly indicating its 4677 * absence in the bit mask of supported commands. 4678 * 4679 * Check the supported commands and only if the command is marked 4680 * as supported send it. If not supported assume that the controller 4681 * does not have actual support for stored link keys which makes this 4682 * command redundant anyway. 4683 * 4684 * Some controllers indicate that they support handling deleting 4685 * stored link keys, but they don't. The quirk lets a driver 4686 * just disable this command. 4687 */ 4688 if (!(hdev->commands[6] & 0x80) || 4689 hci_test_quirk(hdev, HCI_QUIRK_BROKEN_STORED_LINK_KEY)) 4690 return 0; 4691 4692 memset(&cp, 0, sizeof(cp)); 4693 bacpy(&cp.bdaddr, BDADDR_ANY); 4694 cp.delete_all = 0x01; 4695 4696 return __hci_cmd_sync_status(hdev, HCI_OP_DELETE_STORED_LINK_KEY, 4697 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4698 } 4699 4700 static int hci_set_event_mask_page_2_sync(struct hci_dev *hdev) 4701 { 4702 u8 events[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }; 4703 bool changed = false; 4704 4705 /* Set event mask page 2 if the HCI command for it is supported */ 4706 if (!(hdev->commands[22] & 0x04)) 4707 return 0; 4708 4709 /* If Connectionless Peripheral Broadcast central role is supported 4710 * enable all necessary events for it. 4711 */ 4712 if (lmp_cpb_central_capable(hdev)) { 4713 events[1] |= 0x40; /* Triggered Clock Capture */ 4714 events[1] |= 0x80; /* Synchronization Train Complete */ 4715 events[2] |= 0x08; /* Truncated Page Complete */ 4716 events[2] |= 0x20; /* CPB Channel Map Change */ 4717 changed = true; 4718 } 4719 4720 /* If Connectionless Peripheral Broadcast peripheral role is supported 4721 * enable all necessary events for it. 4722 */ 4723 if (lmp_cpb_peripheral_capable(hdev)) { 4724 events[2] |= 0x01; /* Synchronization Train Received */ 4725 events[2] |= 0x02; /* CPB Receive */ 4726 events[2] |= 0x04; /* CPB Timeout */ 4727 events[2] |= 0x10; /* Peripheral Page Response Timeout */ 4728 changed = true; 4729 } 4730 4731 /* Enable Authenticated Payload Timeout Expired event if supported */ 4732 if (lmp_ping_capable(hdev) || hdev->le_features[0] & HCI_LE_PING) { 4733 events[2] |= 0x80; 4734 changed = true; 4735 } 4736 4737 /* Some Broadcom based controllers indicate support for Set Event 4738 * Mask Page 2 command, but then actually do not support it. Since 4739 * the default value is all bits set to zero, the command is only 4740 * required if the event mask has to be changed. In case no change 4741 * to the event mask is needed, skip this command. 4742 */ 4743 if (!changed) 4744 return 0; 4745 4746 return __hci_cmd_sync_status(hdev, HCI_OP_SET_EVENT_MASK_PAGE_2, 4747 sizeof(events), events, HCI_CMD_TIMEOUT); 4748 } 4749 4750 /* Read local codec list if the HCI command is supported */ 4751 static int hci_read_local_codecs_sync(struct hci_dev *hdev) 4752 { 4753 if (hdev->commands[45] & 0x04) 4754 hci_read_supported_codecs_v2(hdev); 4755 else if (hdev->commands[29] & 0x20) 4756 hci_read_supported_codecs(hdev); 4757 4758 return 0; 4759 } 4760 4761 /* Read local pairing options if the HCI command is supported */ 4762 static int hci_read_local_pairing_opts_sync(struct hci_dev *hdev) 4763 { 4764 if (!(hdev->commands[41] & 0x08)) 4765 return 0; 4766 4767 return __hci_cmd_sync_status(hdev, HCI_OP_READ_LOCAL_PAIRING_OPTS, 4768 0, NULL, HCI_CMD_TIMEOUT); 4769 } 4770 4771 /* Get MWS transport configuration if the HCI command is supported */ 4772 static int hci_get_mws_transport_config_sync(struct hci_dev *hdev) 4773 { 4774 if (!mws_transport_config_capable(hdev)) 4775 return 0; 4776 4777 return __hci_cmd_sync_status(hdev, HCI_OP_GET_MWS_TRANSPORT_CONFIG, 4778 0, NULL, HCI_CMD_TIMEOUT); 4779 } 4780 4781 /* Check for Synchronization Train support */ 4782 static int hci_read_sync_train_params_sync(struct hci_dev *hdev) 4783 { 4784 if (!lmp_sync_train_capable(hdev)) 4785 return 0; 4786 4787 return __hci_cmd_sync_status(hdev, HCI_OP_READ_SYNC_TRAIN_PARAMS, 4788 0, NULL, HCI_CMD_TIMEOUT); 4789 } 4790 4791 /* Enable Secure Connections if supported and configured */ 4792 static int hci_write_sc_support_1_sync(struct hci_dev *hdev) 4793 { 4794 u8 support = 0x01; 4795 4796 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED) || 4797 !bredr_sc_enabled(hdev)) 4798 return 0; 4799 4800 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_SC_SUPPORT, 4801 sizeof(support), &support, 4802 HCI_CMD_TIMEOUT); 4803 } 4804 4805 /* Set erroneous data reporting if supported to the wideband speech 4806 * setting value 4807 */ 4808 static int hci_set_err_data_report_sync(struct hci_dev *hdev) 4809 { 4810 struct hci_cp_write_def_err_data_reporting cp; 4811 bool enabled = hci_dev_test_flag(hdev, HCI_WIDEBAND_SPEECH_ENABLED); 4812 4813 if (!(hdev->commands[18] & 0x08) || 4814 !(hdev->features[0][6] & LMP_ERR_DATA_REPORTING) || 4815 hci_test_quirk(hdev, HCI_QUIRK_BROKEN_ERR_DATA_REPORTING)) 4816 return 0; 4817 4818 if (enabled == hdev->err_data_reporting) 4819 return 0; 4820 4821 memset(&cp, 0, sizeof(cp)); 4822 cp.err_data_reporting = enabled ? ERR_DATA_REPORTING_ENABLED : 4823 ERR_DATA_REPORTING_DISABLED; 4824 4825 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_DEF_ERR_DATA_REPORTING, 4826 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4827 } 4828 4829 static const struct hci_init_stage hci_init4[] = { 4830 /* HCI_OP_DELETE_STORED_LINK_KEY */ 4831 HCI_INIT(hci_delete_stored_link_key_sync), 4832 /* HCI_OP_SET_EVENT_MASK_PAGE_2 */ 4833 HCI_INIT(hci_set_event_mask_page_2_sync), 4834 /* HCI_OP_READ_LOCAL_CODECS */ 4835 HCI_INIT(hci_read_local_codecs_sync), 4836 /* HCI_OP_READ_LOCAL_PAIRING_OPTS */ 4837 HCI_INIT(hci_read_local_pairing_opts_sync), 4838 /* HCI_OP_GET_MWS_TRANSPORT_CONFIG */ 4839 HCI_INIT(hci_get_mws_transport_config_sync), 4840 /* HCI_OP_READ_SYNC_TRAIN_PARAMS */ 4841 HCI_INIT(hci_read_sync_train_params_sync), 4842 /* HCI_OP_WRITE_SC_SUPPORT */ 4843 HCI_INIT(hci_write_sc_support_1_sync), 4844 /* HCI_OP_WRITE_DEF_ERR_DATA_REPORTING */ 4845 HCI_INIT(hci_set_err_data_report_sync), 4846 {} 4847 }; 4848 4849 /* Set Suggested Default Data Length to maximum if supported */ 4850 static int hci_le_set_write_def_data_len_sync(struct hci_dev *hdev) 4851 { 4852 struct hci_cp_le_write_def_data_len cp; 4853 4854 if (!(hdev->le_features[0] & HCI_LE_DATA_LEN_EXT)) 4855 return 0; 4856 4857 memset(&cp, 0, sizeof(cp)); 4858 cp.tx_len = cpu_to_le16(hdev->le_max_tx_len); 4859 cp.tx_time = cpu_to_le16(hdev->le_max_tx_time); 4860 4861 return __hci_cmd_sync_status(hdev, HCI_OP_LE_WRITE_DEF_DATA_LEN, 4862 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4863 } 4864 4865 /* Set Default PHY parameters if command is supported, enables all supported 4866 * PHYs according to the LE Features bits. 4867 */ 4868 static int hci_le_set_default_phy_sync(struct hci_dev *hdev) 4869 { 4870 struct hci_cp_le_set_default_phy cp; 4871 4872 if (!(hdev->commands[35] & 0x20)) { 4873 /* If the command is not supported it means only 1M PHY is 4874 * supported. 4875 */ 4876 hdev->le_tx_def_phys = HCI_LE_SET_PHY_1M; 4877 hdev->le_rx_def_phys = HCI_LE_SET_PHY_1M; 4878 return 0; 4879 } 4880 4881 memset(&cp, 0, sizeof(cp)); 4882 cp.all_phys = 0x00; 4883 cp.tx_phys = HCI_LE_SET_PHY_1M; 4884 cp.rx_phys = HCI_LE_SET_PHY_1M; 4885 4886 /* Enables 2M PHY if supported */ 4887 if (le_2m_capable(hdev)) { 4888 cp.tx_phys |= HCI_LE_SET_PHY_2M; 4889 cp.rx_phys |= HCI_LE_SET_PHY_2M; 4890 } 4891 4892 /* Enables Coded PHY if supported */ 4893 if (le_coded_capable(hdev)) { 4894 cp.tx_phys |= HCI_LE_SET_PHY_CODED; 4895 cp.rx_phys |= HCI_LE_SET_PHY_CODED; 4896 } 4897 4898 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_DEFAULT_PHY, 4899 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 4900 } 4901 4902 static const struct hci_init_stage le_init4[] = { 4903 /* HCI_OP_LE_WRITE_DEF_DATA_LEN */ 4904 HCI_INIT(hci_le_set_write_def_data_len_sync), 4905 /* HCI_OP_LE_SET_DEFAULT_PHY */ 4906 HCI_INIT(hci_le_set_default_phy_sync), 4907 {} 4908 }; 4909 4910 static int hci_init4_sync(struct hci_dev *hdev) 4911 { 4912 int err; 4913 4914 bt_dev_dbg(hdev, ""); 4915 4916 err = hci_init_stage_sync(hdev, hci_init4); 4917 if (err) 4918 return err; 4919 4920 if (lmp_le_capable(hdev)) 4921 return hci_init_stage_sync(hdev, le_init4); 4922 4923 return 0; 4924 } 4925 4926 static int hci_init_sync(struct hci_dev *hdev) 4927 { 4928 int err; 4929 4930 err = hci_init1_sync(hdev); 4931 if (err < 0) 4932 return err; 4933 4934 if (hci_dev_test_flag(hdev, HCI_SETUP)) 4935 hci_debugfs_create_basic(hdev); 4936 4937 err = hci_init2_sync(hdev); 4938 if (err < 0) 4939 return err; 4940 4941 err = hci_init3_sync(hdev); 4942 if (err < 0) 4943 return err; 4944 4945 err = hci_init4_sync(hdev); 4946 if (err < 0) 4947 return err; 4948 4949 /* This function is only called when the controller is actually in 4950 * configured state. When the controller is marked as unconfigured, 4951 * this initialization procedure is not run. 4952 * 4953 * It means that it is possible that a controller runs through its 4954 * setup phase and then discovers missing settings. If that is the 4955 * case, then this function will not be called. It then will only 4956 * be called during the config phase. 4957 * 4958 * So only when in setup phase or config phase, create the debugfs 4959 * entries and register the SMP channels. 4960 */ 4961 if (!hci_dev_test_flag(hdev, HCI_SETUP) && 4962 !hci_dev_test_flag(hdev, HCI_CONFIG)) 4963 return 0; 4964 4965 if (hci_dev_test_and_set_flag(hdev, HCI_DEBUGFS_CREATED)) 4966 return 0; 4967 4968 hci_debugfs_create_common(hdev); 4969 4970 if (lmp_bredr_capable(hdev)) 4971 hci_debugfs_create_bredr(hdev); 4972 4973 if (lmp_le_capable(hdev)) 4974 hci_debugfs_create_le(hdev); 4975 4976 return 0; 4977 } 4978 4979 #define HCI_QUIRK_BROKEN(_quirk, _desc) { HCI_QUIRK_BROKEN_##_quirk, _desc } 4980 4981 static const struct { 4982 unsigned long quirk; 4983 const char *desc; 4984 } hci_broken_table[] = { 4985 HCI_QUIRK_BROKEN(LOCAL_COMMANDS, 4986 "HCI Read Local Supported Commands not supported"), 4987 HCI_QUIRK_BROKEN(STORED_LINK_KEY, 4988 "HCI Delete Stored Link Key command is advertised, " 4989 "but not supported."), 4990 HCI_QUIRK_BROKEN(ERR_DATA_REPORTING, 4991 "HCI Read Default Erroneous Data Reporting command is " 4992 "advertised, but not supported."), 4993 HCI_QUIRK_BROKEN(READ_TRANSMIT_POWER, 4994 "HCI Read Transmit Power Level command is advertised, " 4995 "but not supported."), 4996 HCI_QUIRK_BROKEN(FILTER_CLEAR_ALL, 4997 "HCI Set Event Filter command not supported."), 4998 HCI_QUIRK_BROKEN(ENHANCED_SETUP_SYNC_CONN, 4999 "HCI Enhanced Setup Synchronous Connection command is " 5000 "advertised, but not supported."), 5001 HCI_QUIRK_BROKEN(SET_RPA_TIMEOUT, 5002 "HCI LE Set Random Private Address Timeout command is " 5003 "advertised, but not supported."), 5004 HCI_QUIRK_BROKEN(EXT_CREATE_CONN, 5005 "HCI LE Extended Create Connection command is " 5006 "advertised, but not supported."), 5007 HCI_QUIRK_BROKEN(WRITE_AUTH_PAYLOAD_TIMEOUT, 5008 "HCI WRITE AUTH PAYLOAD TIMEOUT command leads " 5009 "to unexpected SMP errors when pairing " 5010 "and will not be used."), 5011 HCI_QUIRK_BROKEN(LE_CODED, 5012 "HCI LE Coded PHY feature bit is set, " 5013 "but its usage is not supported.") 5014 }; 5015 5016 /* This function handles hdev setup stage: 5017 * 5018 * Calls hdev->setup 5019 * Setup address if HCI_QUIRK_USE_BDADDR_PROPERTY is set. 5020 */ 5021 static int hci_dev_setup_sync(struct hci_dev *hdev) 5022 { 5023 int ret = 0; 5024 bool invalid_bdaddr; 5025 size_t i; 5026 5027 if (!hci_dev_test_flag(hdev, HCI_SETUP) && 5028 !hci_test_quirk(hdev, HCI_QUIRK_NON_PERSISTENT_SETUP)) 5029 return 0; 5030 5031 bt_dev_dbg(hdev, ""); 5032 5033 hci_sock_dev_event(hdev, HCI_DEV_SETUP); 5034 5035 if (hdev->setup) 5036 ret = hdev->setup(hdev); 5037 5038 for (i = 0; i < ARRAY_SIZE(hci_broken_table); i++) { 5039 if (hci_test_quirk(hdev, hci_broken_table[i].quirk)) 5040 bt_dev_warn(hdev, "%s", hci_broken_table[i].desc); 5041 } 5042 5043 /* The transport driver can set the quirk to mark the 5044 * BD_ADDR invalid before creating the HCI device or in 5045 * its setup callback. 5046 */ 5047 invalid_bdaddr = hci_test_quirk(hdev, HCI_QUIRK_INVALID_BDADDR) || 5048 hci_test_quirk(hdev, HCI_QUIRK_USE_BDADDR_PROPERTY); 5049 if (!ret) { 5050 if (hci_test_quirk(hdev, HCI_QUIRK_USE_BDADDR_PROPERTY) && 5051 !bacmp(&hdev->public_addr, BDADDR_ANY)) 5052 hci_dev_get_bd_addr_from_property(hdev); 5053 5054 if (invalid_bdaddr && bacmp(&hdev->public_addr, BDADDR_ANY) && 5055 hdev->set_bdaddr) { 5056 ret = hdev->set_bdaddr(hdev, &hdev->public_addr); 5057 if (!ret) 5058 invalid_bdaddr = false; 5059 } 5060 } 5061 5062 /* The transport driver can set these quirks before 5063 * creating the HCI device or in its setup callback. 5064 * 5065 * For the invalid BD_ADDR quirk it is possible that 5066 * it becomes a valid address if the bootloader does 5067 * provide it (see above). 5068 * 5069 * In case any of them is set, the controller has to 5070 * start up as unconfigured. 5071 */ 5072 if (hci_test_quirk(hdev, HCI_QUIRK_EXTERNAL_CONFIG) || 5073 invalid_bdaddr) 5074 hci_dev_set_flag(hdev, HCI_UNCONFIGURED); 5075 5076 /* For an unconfigured controller it is required to 5077 * read at least the version information provided by 5078 * the Read Local Version Information command. 5079 * 5080 * If the set_bdaddr driver callback is provided, then 5081 * also the original Bluetooth public device address 5082 * will be read using the Read BD Address command. 5083 */ 5084 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) 5085 return hci_unconf_init_sync(hdev); 5086 5087 return ret; 5088 } 5089 5090 /* This function handles hdev init stage: 5091 * 5092 * Calls hci_dev_setup_sync to perform setup stage 5093 * Calls hci_init_sync to perform HCI command init sequence 5094 */ 5095 static int hci_dev_init_sync(struct hci_dev *hdev) 5096 { 5097 int ret; 5098 5099 bt_dev_dbg(hdev, ""); 5100 5101 atomic_set(&hdev->cmd_cnt, 1); 5102 set_bit(HCI_INIT, &hdev->flags); 5103 5104 ret = hci_dev_setup_sync(hdev); 5105 5106 if (hci_dev_test_flag(hdev, HCI_CONFIG)) { 5107 /* If public address change is configured, ensure that 5108 * the address gets programmed. If the driver does not 5109 * support changing the public address, fail the power 5110 * on procedure. 5111 */ 5112 if (bacmp(&hdev->public_addr, BDADDR_ANY) && 5113 hdev->set_bdaddr) 5114 ret = hdev->set_bdaddr(hdev, &hdev->public_addr); 5115 else 5116 ret = -EADDRNOTAVAIL; 5117 } 5118 5119 if (!ret) { 5120 if (!hci_dev_test_flag(hdev, HCI_UNCONFIGURED) && 5121 !hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) { 5122 ret = hci_init_sync(hdev); 5123 if (!ret && hdev->post_init) 5124 ret = hdev->post_init(hdev); 5125 } 5126 } 5127 5128 /* If the HCI Reset command is clearing all diagnostic settings, 5129 * then they need to be reprogrammed after the init procedure 5130 * completed. 5131 */ 5132 if (hci_test_quirk(hdev, HCI_QUIRK_NON_PERSISTENT_DIAG) && 5133 !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) && 5134 hci_dev_test_flag(hdev, HCI_VENDOR_DIAG) && hdev->set_diag) 5135 ret = hdev->set_diag(hdev, true); 5136 5137 if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) { 5138 msft_do_open(hdev); 5139 aosp_do_open(hdev); 5140 } 5141 5142 clear_bit(HCI_INIT, &hdev->flags); 5143 5144 return ret; 5145 } 5146 5147 int hci_dev_open_sync(struct hci_dev *hdev) 5148 { 5149 int ret; 5150 5151 bt_dev_dbg(hdev, ""); 5152 5153 if (hci_dev_test_flag(hdev, HCI_UNREGISTER)) { 5154 ret = -ENODEV; 5155 goto done; 5156 } 5157 5158 if (!hci_dev_test_flag(hdev, HCI_SETUP) && 5159 !hci_dev_test_flag(hdev, HCI_CONFIG)) { 5160 /* Check for rfkill but allow the HCI setup stage to 5161 * proceed (which in itself doesn't cause any RF activity). 5162 */ 5163 if (hci_dev_test_flag(hdev, HCI_RFKILLED)) { 5164 ret = -ERFKILL; 5165 goto done; 5166 } 5167 5168 /* Check for valid public address or a configured static 5169 * random address, but let the HCI setup proceed to 5170 * be able to determine if there is a public address 5171 * or not. 5172 * 5173 * In case of user channel usage, it is not important 5174 * if a public address or static random address is 5175 * available. 5176 */ 5177 if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL) && 5178 !bacmp(&hdev->bdaddr, BDADDR_ANY) && 5179 !bacmp(&hdev->static_addr, BDADDR_ANY)) { 5180 ret = -EADDRNOTAVAIL; 5181 goto done; 5182 } 5183 } 5184 5185 if (test_bit(HCI_UP, &hdev->flags)) { 5186 ret = -EALREADY; 5187 goto done; 5188 } 5189 5190 if (hdev->open(hdev)) { 5191 ret = -EIO; 5192 goto done; 5193 } 5194 5195 hci_devcd_reset(hdev); 5196 5197 set_bit(HCI_RUNNING, &hdev->flags); 5198 hci_sock_dev_event(hdev, HCI_DEV_OPEN); 5199 5200 ret = hci_dev_init_sync(hdev); 5201 if (!ret) { 5202 hci_dev_hold(hdev); 5203 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED); 5204 hci_adv_instances_set_rpa_expired(hdev, true); 5205 set_bit(HCI_UP, &hdev->flags); 5206 hci_sock_dev_event(hdev, HCI_DEV_UP); 5207 hci_leds_update_powered(hdev, true); 5208 if (!hci_dev_test_flag(hdev, HCI_SETUP) && 5209 !hci_dev_test_flag(hdev, HCI_CONFIG) && 5210 !hci_dev_test_flag(hdev, HCI_UNCONFIGURED) && 5211 !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) && 5212 hci_dev_test_flag(hdev, HCI_MGMT)) { 5213 ret = hci_powered_update_sync(hdev); 5214 mgmt_power_on(hdev, ret); 5215 } 5216 } else { 5217 /* Init failed, cleanup */ 5218 flush_work(&hdev->tx_work); 5219 5220 /* Since hci_rx_work() is possible to awake new cmd_work 5221 * it should be flushed first to avoid unexpected call of 5222 * hci_cmd_work() 5223 */ 5224 flush_work(&hdev->rx_work); 5225 flush_work(&hdev->cmd_work); 5226 5227 skb_queue_purge(&hdev->cmd_q); 5228 skb_queue_purge(&hdev->rx_q); 5229 5230 if (hdev->flush) 5231 hdev->flush(hdev); 5232 5233 if (hdev->sent_cmd) { 5234 cancel_delayed_work_sync(&hdev->cmd_timer); 5235 kfree_skb(hdev->sent_cmd); 5236 hdev->sent_cmd = NULL; 5237 } 5238 5239 if (hdev->req_skb) { 5240 kfree_skb(hdev->req_skb); 5241 hdev->req_skb = NULL; 5242 } 5243 5244 clear_bit(HCI_RUNNING, &hdev->flags); 5245 hci_sock_dev_event(hdev, HCI_DEV_CLOSE); 5246 5247 hdev->close(hdev); 5248 hdev->flags &= BIT(HCI_RAW); 5249 } 5250 5251 done: 5252 return ret; 5253 } 5254 5255 /* This function requires the caller holds hdev->lock */ 5256 static void hci_pend_le_actions_clear(struct hci_dev *hdev) 5257 { 5258 struct hci_conn_params *p; 5259 5260 list_for_each_entry(p, &hdev->le_conn_params, list) { 5261 hci_pend_le_list_del_init(p); 5262 if (p->conn) { 5263 hci_conn_drop(p->conn); 5264 hci_conn_put(p->conn); 5265 p->conn = NULL; 5266 } 5267 } 5268 5269 BT_DBG("All LE pending actions cleared"); 5270 } 5271 5272 static int hci_dev_shutdown(struct hci_dev *hdev) 5273 { 5274 int err = 0; 5275 /* Similar to how we first do setup and then set the exclusive access 5276 * bit for userspace, we must first unset userchannel and then clean up. 5277 * Otherwise, the kernel can't properly use the hci channel to clean up 5278 * the controller (some shutdown routines require sending additional 5279 * commands to the controller for example). 5280 */ 5281 bool was_userchannel = 5282 hci_dev_test_and_clear_flag(hdev, HCI_USER_CHANNEL); 5283 5284 if (!hci_dev_test_flag(hdev, HCI_UNREGISTER) && 5285 test_bit(HCI_UP, &hdev->flags)) { 5286 /* Execute vendor specific shutdown routine */ 5287 if (hdev->shutdown) 5288 err = hdev->shutdown(hdev); 5289 } 5290 5291 if (was_userchannel) 5292 hci_dev_set_flag(hdev, HCI_USER_CHANNEL); 5293 5294 return err; 5295 } 5296 5297 int hci_dev_close_sync(struct hci_dev *hdev) 5298 { 5299 bool auto_off; 5300 int err = 0; 5301 5302 bt_dev_dbg(hdev, ""); 5303 5304 /* Set HCI_DRAIN_WORKQUEUE flag to prevent queuing work during 5305 * reset/close. See hci_cmd_work() and handle_cmd_cnt_and_timer(). 5306 */ 5307 hci_dev_set_flag(hdev, HCI_CMD_DRAIN_WORKQUEUE); 5308 synchronize_rcu(); 5309 5310 if (hci_dev_test_flag(hdev, HCI_UNREGISTER)) { 5311 disable_delayed_work(&hdev->power_off); 5312 disable_delayed_work(&hdev->ncmd_timer); 5313 disable_delayed_work(&hdev->le_scan_disable); 5314 } else { 5315 cancel_delayed_work(&hdev->power_off); 5316 cancel_delayed_work(&hdev->ncmd_timer); 5317 cancel_delayed_work(&hdev->le_scan_disable); 5318 } 5319 5320 hci_cmd_sync_cancel_sync(hdev, ENODEV); 5321 5322 cancel_interleave_scan(hdev); 5323 5324 if (hdev->adv_instance_timeout) { 5325 cancel_delayed_work_sync(&hdev->adv_instance_expire); 5326 hdev->adv_instance_timeout = 0; 5327 } 5328 5329 err = hci_dev_shutdown(hdev); 5330 5331 if (!test_and_clear_bit(HCI_UP, &hdev->flags)) { 5332 cancel_delayed_work_sync(&hdev->cmd_timer); 5333 hci_dev_clear_flag(hdev, HCI_CMD_DRAIN_WORKQUEUE); 5334 return err; 5335 } 5336 5337 hci_leds_update_powered(hdev, false); 5338 5339 /* Flush RX and TX works */ 5340 flush_work(&hdev->tx_work); 5341 flush_work(&hdev->rx_work); 5342 5343 if (hdev->discov_timeout > 0) { 5344 hdev->discov_timeout = 0; 5345 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE); 5346 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE); 5347 } 5348 5349 if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) 5350 cancel_delayed_work(&hdev->service_cache); 5351 5352 if (hci_dev_test_flag(hdev, HCI_MGMT)) { 5353 struct adv_info *adv_instance; 5354 5355 cancel_delayed_work_sync(&hdev->rpa_expired); 5356 5357 list_for_each_entry(adv_instance, &hdev->adv_instances, list) 5358 cancel_delayed_work_sync(&adv_instance->rpa_expired_cb); 5359 } 5360 5361 /* Avoid potential lockdep warnings from the *_flush() calls by 5362 * ensuring the workqueue is empty up front. 5363 */ 5364 drain_workqueue(hdev->workqueue); 5365 5366 hci_dev_lock(hdev); 5367 5368 hci_discovery_set_state(hdev, DISCOVERY_STOPPED); 5369 5370 auto_off = hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF); 5371 5372 if (!auto_off && !hci_dev_test_flag(hdev, HCI_USER_CHANNEL) && 5373 hci_dev_test_flag(hdev, HCI_MGMT)) 5374 __mgmt_power_off(hdev); 5375 5376 hci_inquiry_cache_flush(hdev); 5377 hci_pend_le_actions_clear(hdev); 5378 hci_conn_hash_flush(hdev); 5379 /* Prevent data races on hdev->smp_data or hdev->smp_bredr_data */ 5380 smp_unregister(hdev); 5381 hci_dev_unlock(hdev); 5382 5383 hci_sock_dev_event(hdev, HCI_DEV_DOWN); 5384 5385 if (!hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) { 5386 aosp_do_close(hdev); 5387 msft_do_close(hdev); 5388 } 5389 5390 if (hdev->flush) 5391 hdev->flush(hdev); 5392 5393 /* Reset device */ 5394 skb_queue_purge(&hdev->cmd_q); 5395 atomic_set(&hdev->cmd_cnt, 1); 5396 hdev->acl_cnt = 0; 5397 hdev->sco_cnt = 0; 5398 hdev->le_cnt = 0; 5399 hdev->iso_cnt = 0; 5400 if (hci_test_quirk(hdev, HCI_QUIRK_RESET_ON_CLOSE) && 5401 !auto_off && !hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) { 5402 set_bit(HCI_INIT, &hdev->flags); 5403 hci_reset_sync(hdev); 5404 clear_bit(HCI_INIT, &hdev->flags); 5405 } 5406 5407 /* flush cmd work */ 5408 flush_work(&hdev->cmd_work); 5409 5410 /* Drop queues */ 5411 skb_queue_purge(&hdev->rx_q); 5412 skb_queue_purge(&hdev->cmd_q); 5413 skb_queue_purge(&hdev->raw_q); 5414 5415 /* Drop last sent command */ 5416 if (hdev->sent_cmd) { 5417 cancel_delayed_work_sync(&hdev->cmd_timer); 5418 kfree_skb(hdev->sent_cmd); 5419 hdev->sent_cmd = NULL; 5420 } 5421 5422 /* Drop last request */ 5423 if (hdev->req_skb) { 5424 kfree_skb(hdev->req_skb); 5425 hdev->req_skb = NULL; 5426 } 5427 5428 clear_bit(HCI_RUNNING, &hdev->flags); 5429 hci_sock_dev_event(hdev, HCI_DEV_CLOSE); 5430 5431 /* After this point our queues are empty and no tasks are scheduled. */ 5432 hdev->close(hdev); 5433 5434 /* Clear flags */ 5435 hdev->flags &= BIT(HCI_RAW); 5436 hci_dev_clear_volatile_flags(hdev); 5437 hci_dev_clear_flag(hdev, HCI_CMD_DRAIN_WORKQUEUE); 5438 5439 memset(hdev->eir, 0, sizeof(hdev->eir)); 5440 memset(hdev->dev_class, 0, sizeof(hdev->dev_class)); 5441 bacpy(&hdev->random_addr, BDADDR_ANY); 5442 hci_codec_list_clear(&hdev->local_codecs); 5443 5444 hci_dev_put(hdev); 5445 return err; 5446 } 5447 5448 /* This function perform power on HCI command sequence as follows: 5449 * 5450 * If controller is already up (HCI_UP) performs hci_powered_update_sync 5451 * sequence otherwise run hci_dev_open_sync which will follow with 5452 * hci_powered_update_sync after the init sequence is completed. 5453 */ 5454 static int hci_power_on_sync(struct hci_dev *hdev) 5455 { 5456 int err; 5457 5458 if (test_bit(HCI_UP, &hdev->flags) && 5459 hci_dev_test_flag(hdev, HCI_MGMT) && 5460 hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) { 5461 cancel_delayed_work(&hdev->power_off); 5462 return hci_powered_update_sync(hdev); 5463 } 5464 5465 err = hci_dev_open_sync(hdev); 5466 if (err < 0) 5467 return err; 5468 5469 /* During the HCI setup phase, a few error conditions are 5470 * ignored and they need to be checked now. If they are still 5471 * valid, it is important to return the device back off. 5472 */ 5473 if (hci_dev_test_flag(hdev, HCI_RFKILLED) || 5474 hci_dev_test_flag(hdev, HCI_UNCONFIGURED) || 5475 (!bacmp(&hdev->bdaddr, BDADDR_ANY) && 5476 !bacmp(&hdev->static_addr, BDADDR_ANY))) { 5477 hci_dev_clear_flag(hdev, HCI_AUTO_OFF); 5478 hci_dev_close_sync(hdev); 5479 } else if (hci_dev_test_flag(hdev, HCI_AUTO_OFF)) { 5480 queue_delayed_work(hdev->req_workqueue, &hdev->power_off, 5481 HCI_AUTO_OFF_TIMEOUT); 5482 } 5483 5484 if (hci_dev_test_and_clear_flag(hdev, HCI_SETUP)) { 5485 /* For unconfigured devices, set the HCI_RAW flag 5486 * so that userspace can easily identify them. 5487 */ 5488 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) 5489 set_bit(HCI_RAW, &hdev->flags); 5490 5491 /* For fully configured devices, this will send 5492 * the Index Added event. For unconfigured devices, 5493 * it will send Unconfigued Index Added event. 5494 * 5495 * Devices with HCI_QUIRK_RAW_DEVICE are ignored 5496 * and no event will be send. 5497 */ 5498 mgmt_index_added(hdev); 5499 } else if (hci_dev_test_and_clear_flag(hdev, HCI_CONFIG)) { 5500 /* When the controller is now configured, then it 5501 * is important to clear the HCI_RAW flag. 5502 */ 5503 if (!hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) 5504 clear_bit(HCI_RAW, &hdev->flags); 5505 5506 /* Powering on the controller with HCI_CONFIG set only 5507 * happens with the transition from unconfigured to 5508 * configured. This will send the Index Added event. 5509 */ 5510 mgmt_index_added(hdev); 5511 } 5512 5513 return 0; 5514 } 5515 5516 static int hci_remote_name_cancel_sync(struct hci_dev *hdev, bdaddr_t *addr) 5517 { 5518 struct hci_cp_remote_name_req_cancel cp; 5519 5520 memset(&cp, 0, sizeof(cp)); 5521 bacpy(&cp.bdaddr, addr); 5522 5523 return __hci_cmd_sync_status(hdev, HCI_OP_REMOTE_NAME_REQ_CANCEL, 5524 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 5525 } 5526 5527 int hci_stop_discovery_sync(struct hci_dev *hdev) 5528 { 5529 struct discovery_state *d = &hdev->discovery; 5530 struct inquiry_entry *e; 5531 int err; 5532 5533 bt_dev_dbg(hdev, "state %u", hdev->discovery.state); 5534 5535 if (d->state == DISCOVERY_FINDING || d->state == DISCOVERY_STOPPING) { 5536 if (test_bit(HCI_INQUIRY, &hdev->flags)) { 5537 err = __hci_cmd_sync_status(hdev, HCI_OP_INQUIRY_CANCEL, 5538 0, NULL, HCI_CMD_TIMEOUT); 5539 if (err) 5540 return err; 5541 } 5542 5543 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) { 5544 cancel_delayed_work(&hdev->le_scan_disable); 5545 5546 err = hci_scan_disable_sync(hdev); 5547 if (err) 5548 return err; 5549 } 5550 5551 } else { 5552 err = hci_scan_disable_sync(hdev); 5553 if (err) 5554 return err; 5555 } 5556 5557 /* Resume advertising if it was paused */ 5558 if (ll_privacy_capable(hdev)) 5559 hci_resume_advertising_sync(hdev); 5560 5561 /* No further actions needed for LE-only discovery */ 5562 if (d->type == DISCOV_TYPE_LE) 5563 return 0; 5564 5565 if (d->state == DISCOVERY_RESOLVING || d->state == DISCOVERY_STOPPING) { 5566 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, 5567 NAME_PENDING); 5568 if (!e) 5569 return 0; 5570 5571 /* Ignore cancel errors since it should interfere with stopping 5572 * of the discovery. 5573 */ 5574 hci_remote_name_cancel_sync(hdev, &e->data.bdaddr); 5575 } 5576 5577 return 0; 5578 } 5579 5580 static int hci_disconnect_sync(struct hci_dev *hdev, struct hci_conn *conn, 5581 u8 reason) 5582 { 5583 struct hci_cp_disconnect cp; 5584 5585 if (conn->type == BIS_LINK || conn->type == PA_LINK) { 5586 /* This is a BIS connection, hci_conn_del will 5587 * do the necessary cleanup. 5588 */ 5589 hci_dev_lock(hdev); 5590 hci_conn_failed(conn, reason); 5591 hci_dev_unlock(hdev); 5592 5593 return 0; 5594 } 5595 5596 memset(&cp, 0, sizeof(cp)); 5597 cp.handle = cpu_to_le16(conn->handle); 5598 cp.reason = reason; 5599 5600 /* Wait for HCI_EV_DISCONN_COMPLETE, not HCI_EV_CMD_STATUS, when the 5601 * reason is anything but HCI_ERROR_REMOTE_POWER_OFF. This reason is 5602 * used when suspending or powering off, where we don't want to wait 5603 * for the peer's response. 5604 */ 5605 if (reason != HCI_ERROR_REMOTE_POWER_OFF) 5606 return __hci_cmd_sync_status_sk(hdev, HCI_OP_DISCONNECT, 5607 sizeof(cp), &cp, 5608 HCI_EV_DISCONN_COMPLETE, 5609 HCI_CMD_TIMEOUT, NULL); 5610 5611 return __hci_cmd_sync_status(hdev, HCI_OP_DISCONNECT, sizeof(cp), &cp, 5612 HCI_CMD_TIMEOUT); 5613 } 5614 5615 static int hci_le_connect_cancel_sync(struct hci_dev *hdev, 5616 struct hci_conn *conn, u8 reason) 5617 { 5618 /* Return reason if scanning since the connection shall probably be 5619 * cleanup directly. 5620 */ 5621 if (test_bit(HCI_CONN_SCANNING, &conn->flags)) 5622 return reason; 5623 5624 if (conn->role == HCI_ROLE_SLAVE || 5625 test_and_set_bit(HCI_CONN_CANCEL, &conn->flags)) 5626 return 0; 5627 5628 return __hci_cmd_sync_status(hdev, HCI_OP_LE_CREATE_CONN_CANCEL, 5629 0, NULL, HCI_CMD_TIMEOUT); 5630 } 5631 5632 static int hci_connect_cancel_sync(struct hci_dev *hdev, struct hci_conn *conn, 5633 u8 reason) 5634 { 5635 if (conn->type == LE_LINK) 5636 return hci_le_connect_cancel_sync(hdev, conn, reason); 5637 5638 if (conn->type == CIS_LINK) { 5639 /* BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E 5640 * page 1857: 5641 * 5642 * If this command is issued for a CIS on the Central and the 5643 * CIS is successfully terminated before being established, 5644 * then an HCI_LE_CIS_Established event shall also be sent for 5645 * this CIS with the Status Operation Cancelled by Host (0x44). 5646 */ 5647 if (test_bit(HCI_CONN_CREATE_CIS, &conn->flags)) 5648 return hci_disconnect_sync(hdev, conn, reason); 5649 5650 /* CIS with no Create CIS sent have nothing to cancel */ 5651 return HCI_ERROR_LOCAL_HOST_TERM; 5652 } 5653 5654 if (conn->type == BIS_LINK || conn->type == PA_LINK) { 5655 /* There is no way to cancel a BIS without terminating the BIG 5656 * which is done later on connection cleanup. 5657 */ 5658 return 0; 5659 } 5660 5661 if (hdev->hci_ver < BLUETOOTH_VER_1_2) 5662 return 0; 5663 5664 /* Wait for HCI_EV_CONN_COMPLETE, not HCI_EV_CMD_STATUS, when the 5665 * reason is anything but HCI_ERROR_REMOTE_POWER_OFF. This reason is 5666 * used when suspending or powering off, where we don't want to wait 5667 * for the peer's response. 5668 */ 5669 if (reason != HCI_ERROR_REMOTE_POWER_OFF) 5670 return __hci_cmd_sync_status_sk(hdev, HCI_OP_CREATE_CONN_CANCEL, 5671 6, &conn->dst, 5672 HCI_EV_CONN_COMPLETE, 5673 HCI_CMD_TIMEOUT, NULL); 5674 5675 return __hci_cmd_sync_status(hdev, HCI_OP_CREATE_CONN_CANCEL, 5676 6, &conn->dst, HCI_CMD_TIMEOUT); 5677 } 5678 5679 static int hci_reject_sco_sync(struct hci_dev *hdev, struct hci_conn *conn, 5680 u8 reason) 5681 { 5682 struct hci_cp_reject_sync_conn_req cp; 5683 5684 memset(&cp, 0, sizeof(cp)); 5685 bacpy(&cp.bdaddr, &conn->dst); 5686 cp.reason = reason; 5687 5688 /* SCO rejection has its own limited set of 5689 * allowed error values (0x0D-0x0F). 5690 */ 5691 if (reason < 0x0d || reason > 0x0f) 5692 cp.reason = HCI_ERROR_REJ_LIMITED_RESOURCES; 5693 5694 return __hci_cmd_sync_status(hdev, HCI_OP_REJECT_SYNC_CONN_REQ, 5695 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 5696 } 5697 5698 static int hci_le_reject_cis_sync(struct hci_dev *hdev, struct hci_conn *conn, 5699 u8 reason) 5700 { 5701 struct hci_cp_le_reject_cis cp; 5702 5703 memset(&cp, 0, sizeof(cp)); 5704 cp.handle = cpu_to_le16(conn->handle); 5705 cp.reason = reason; 5706 5707 return __hci_cmd_sync_status(hdev, HCI_OP_LE_REJECT_CIS, 5708 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 5709 } 5710 5711 static int hci_reject_conn_sync(struct hci_dev *hdev, struct hci_conn *conn, 5712 u8 reason) 5713 { 5714 struct hci_cp_reject_conn_req cp; 5715 5716 if (conn->type == CIS_LINK) 5717 return hci_le_reject_cis_sync(hdev, conn, reason); 5718 5719 if (conn->type == BIS_LINK || conn->type == PA_LINK) 5720 return -EINVAL; 5721 5722 if (conn->type == SCO_LINK || conn->type == ESCO_LINK) 5723 return hci_reject_sco_sync(hdev, conn, reason); 5724 5725 memset(&cp, 0, sizeof(cp)); 5726 bacpy(&cp.bdaddr, &conn->dst); 5727 cp.reason = reason; 5728 5729 return __hci_cmd_sync_status(hdev, HCI_OP_REJECT_CONN_REQ, 5730 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 5731 } 5732 5733 int hci_abort_conn_sync(struct hci_dev *hdev, struct hci_conn *conn, u8 reason) 5734 { 5735 int err = 0; 5736 u16 handle = conn->handle; 5737 bool disconnect = false; 5738 struct hci_conn *c; 5739 5740 switch (conn->state) { 5741 case BT_CONNECTED: 5742 case BT_CONFIG: 5743 err = hci_disconnect_sync(hdev, conn, reason); 5744 break; 5745 case BT_CONNECT: 5746 err = hci_connect_cancel_sync(hdev, conn, reason); 5747 break; 5748 case BT_CONNECT2: 5749 err = hci_reject_conn_sync(hdev, conn, reason); 5750 break; 5751 case BT_OPEN: 5752 case BT_BOUND: 5753 break; 5754 default: 5755 disconnect = true; 5756 break; 5757 } 5758 5759 hci_dev_lock(hdev); 5760 5761 /* Check if the connection has been cleaned up concurrently */ 5762 c = hci_conn_hash_lookup_handle(hdev, handle); 5763 if (!c || c != conn) { 5764 err = 0; 5765 goto unlock; 5766 } 5767 5768 /* Cleanup hci_conn object if it cannot be cancelled as it 5769 * likely means the controller and host stack are out of sync 5770 * or in case of LE it was still scanning so it can be cleanup 5771 * safely. 5772 */ 5773 if (disconnect) { 5774 conn->state = BT_CLOSED; 5775 hci_disconn_cfm(conn, reason); 5776 hci_conn_del(conn); 5777 } else { 5778 hci_conn_failed(conn, reason); 5779 } 5780 5781 unlock: 5782 hci_dev_unlock(hdev); 5783 return err; 5784 } 5785 5786 static int hci_disconnect_all_sync(struct hci_dev *hdev, u8 reason) 5787 { 5788 struct list_head *head = &hdev->conn_hash.list; 5789 struct hci_conn *conn; 5790 5791 rcu_read_lock(); 5792 while ((conn = list_first_or_null_rcu(head, struct hci_conn, list))) { 5793 /* Make sure the connection is not freed while unlocking */ 5794 conn = hci_conn_get(conn); 5795 rcu_read_unlock(); 5796 /* Disregard possible errors since hci_conn_del shall have been 5797 * called even in case of errors had occurred since it would 5798 * then cause hci_conn_failed to be called which calls 5799 * hci_conn_del internally. 5800 */ 5801 hci_abort_conn_sync(hdev, conn, reason); 5802 hci_conn_put(conn); 5803 rcu_read_lock(); 5804 } 5805 rcu_read_unlock(); 5806 5807 return 0; 5808 } 5809 5810 /* This function perform power off HCI command sequence as follows: 5811 * 5812 * Clear Advertising 5813 * Stop Discovery 5814 * Disconnect all connections 5815 * hci_dev_close_sync 5816 */ 5817 static int hci_power_off_sync(struct hci_dev *hdev) 5818 { 5819 int err; 5820 5821 /* If controller is already down there is nothing to do */ 5822 if (!test_bit(HCI_UP, &hdev->flags)) 5823 return 0; 5824 5825 hci_dev_set_flag(hdev, HCI_POWERING_DOWN); 5826 5827 if (test_bit(HCI_ISCAN, &hdev->flags) || 5828 test_bit(HCI_PSCAN, &hdev->flags)) { 5829 err = hci_write_scan_enable_sync(hdev, 0x00); 5830 if (err) 5831 goto out; 5832 } 5833 5834 err = hci_clear_adv_sync(hdev, NULL, false); 5835 if (err) 5836 goto out; 5837 5838 err = hci_stop_discovery_sync(hdev); 5839 if (err) 5840 goto out; 5841 5842 /* Terminated due to Power Off */ 5843 err = hci_disconnect_all_sync(hdev, HCI_ERROR_REMOTE_POWER_OFF); 5844 if (err) 5845 goto out; 5846 5847 err = hci_dev_close_sync(hdev); 5848 5849 out: 5850 hci_dev_clear_flag(hdev, HCI_POWERING_DOWN); 5851 return err; 5852 } 5853 5854 int hci_set_powered_sync(struct hci_dev *hdev, u8 val) 5855 { 5856 if (val) 5857 return hci_power_on_sync(hdev); 5858 5859 return hci_power_off_sync(hdev); 5860 } 5861 5862 static int hci_write_iac_sync(struct hci_dev *hdev) 5863 { 5864 struct hci_cp_write_current_iac_lap cp; 5865 5866 if (!hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) 5867 return 0; 5868 5869 memset(&cp, 0, sizeof(cp)); 5870 5871 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE)) { 5872 /* Limited discoverable mode */ 5873 cp.num_iac = min_t(u8, hdev->num_iac, 2); 5874 cp.iac_lap[0] = 0x00; /* LIAC */ 5875 cp.iac_lap[1] = 0x8b; 5876 cp.iac_lap[2] = 0x9e; 5877 cp.iac_lap[3] = 0x33; /* GIAC */ 5878 cp.iac_lap[4] = 0x8b; 5879 cp.iac_lap[5] = 0x9e; 5880 } else { 5881 /* General discoverable mode */ 5882 cp.num_iac = 1; 5883 cp.iac_lap[0] = 0x33; /* GIAC */ 5884 cp.iac_lap[1] = 0x8b; 5885 cp.iac_lap[2] = 0x9e; 5886 } 5887 5888 return __hci_cmd_sync_status(hdev, HCI_OP_WRITE_CURRENT_IAC_LAP, 5889 (cp.num_iac * 3) + 1, &cp, 5890 HCI_CMD_TIMEOUT); 5891 } 5892 5893 int hci_update_discoverable_sync(struct hci_dev *hdev) 5894 { 5895 int err = 0; 5896 5897 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) { 5898 err = hci_write_iac_sync(hdev); 5899 if (err) 5900 return err; 5901 5902 err = hci_update_scan_sync(hdev); 5903 if (err) 5904 return err; 5905 5906 err = hci_update_class_sync(hdev); 5907 if (err) 5908 return err; 5909 } 5910 5911 /* Advertising instances don't use the global discoverable setting, so 5912 * only update AD if advertising was enabled using Set Advertising. 5913 */ 5914 if (hci_dev_test_flag(hdev, HCI_ADVERTISING)) { 5915 err = hci_update_adv_data_sync(hdev, 0x00); 5916 if (err) 5917 return err; 5918 5919 /* Discoverable mode affects the local advertising 5920 * address in limited privacy mode. 5921 */ 5922 if (hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY)) { 5923 if (ext_adv_capable(hdev)) 5924 err = hci_start_ext_adv_sync(hdev, 0x00); 5925 else 5926 err = hci_enable_advertising_sync(hdev); 5927 } 5928 } 5929 5930 return err; 5931 } 5932 5933 static int update_discoverable_sync(struct hci_dev *hdev, void *data) 5934 { 5935 return hci_update_discoverable_sync(hdev); 5936 } 5937 5938 int hci_update_discoverable(struct hci_dev *hdev) 5939 { 5940 /* Only queue if it would have any effect */ 5941 if (hdev_is_powered(hdev) && 5942 hci_dev_test_flag(hdev, HCI_ADVERTISING) && 5943 hci_dev_test_flag(hdev, HCI_DISCOVERABLE) && 5944 hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY)) 5945 return hci_cmd_sync_queue(hdev, update_discoverable_sync, NULL, 5946 NULL); 5947 5948 return 0; 5949 } 5950 5951 int hci_update_connectable_sync(struct hci_dev *hdev) 5952 { 5953 int err; 5954 5955 err = hci_update_scan_sync(hdev); 5956 if (err) 5957 return err; 5958 5959 /* If BR/EDR is not enabled and we disable advertising as a 5960 * by-product of disabling connectable, we need to update the 5961 * advertising flags. 5962 */ 5963 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) 5964 err = hci_update_adv_data_sync(hdev, hdev->cur_adv_instance); 5965 5966 /* Update the advertising parameters if necessary */ 5967 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) || 5968 !list_empty(&hdev->adv_instances)) { 5969 if (ext_adv_capable(hdev)) 5970 err = hci_start_ext_adv_sync(hdev, 5971 hdev->cur_adv_instance); 5972 else 5973 err = hci_enable_advertising_sync(hdev); 5974 5975 if (err) 5976 return err; 5977 } 5978 5979 return hci_update_passive_scan_sync(hdev); 5980 } 5981 5982 int hci_inquiry_sync(struct hci_dev *hdev, u8 length, u8 num_rsp) 5983 { 5984 const u8 giac[3] = { 0x33, 0x8b, 0x9e }; 5985 const u8 liac[3] = { 0x00, 0x8b, 0x9e }; 5986 struct hci_cp_inquiry cp; 5987 5988 bt_dev_dbg(hdev, ""); 5989 5990 if (test_bit(HCI_INQUIRY, &hdev->flags)) 5991 return 0; 5992 5993 hci_dev_lock(hdev); 5994 hci_inquiry_cache_flush(hdev); 5995 hci_dev_unlock(hdev); 5996 5997 memset(&cp, 0, sizeof(cp)); 5998 5999 if (hdev->discovery.limited) 6000 memcpy(&cp.lap, liac, sizeof(cp.lap)); 6001 else 6002 memcpy(&cp.lap, giac, sizeof(cp.lap)); 6003 6004 cp.length = length; 6005 cp.num_rsp = num_rsp; 6006 6007 return __hci_cmd_sync_status(hdev, HCI_OP_INQUIRY, 6008 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 6009 } 6010 6011 static int hci_active_scan_sync(struct hci_dev *hdev, uint16_t interval) 6012 { 6013 u8 own_addr_type; 6014 /* Accept list is not used for discovery */ 6015 u8 filter_policy = 0x00; 6016 /* Default is to enable duplicates filter */ 6017 u8 filter_dup = LE_SCAN_FILTER_DUP_ENABLE; 6018 int err; 6019 6020 bt_dev_dbg(hdev, ""); 6021 6022 /* If controller is scanning, it means the passive scanning is 6023 * running. Thus, we should temporarily stop it in order to set the 6024 * discovery scanning parameters. 6025 */ 6026 err = hci_scan_disable_sync(hdev); 6027 if (err) { 6028 bt_dev_err(hdev, "Unable to disable scanning: %d", err); 6029 return err; 6030 } 6031 6032 cancel_interleave_scan(hdev); 6033 6034 /* Pause address resolution for active scan and stop advertising if 6035 * privacy is enabled. 6036 */ 6037 err = hci_pause_addr_resolution(hdev); 6038 if (err) 6039 goto failed; 6040 6041 /* All active scans will be done with either a resolvable private 6042 * address (when privacy feature has been enabled) or non-resolvable 6043 * private address. 6044 */ 6045 err = hci_update_random_address_sync(hdev, true, scan_use_rpa(hdev), 6046 &own_addr_type); 6047 if (err < 0) 6048 own_addr_type = ADDR_LE_DEV_PUBLIC; 6049 6050 if (hci_is_adv_monitoring(hdev) || 6051 (hci_test_quirk(hdev, HCI_QUIRK_STRICT_DUPLICATE_FILTER) && 6052 hdev->discovery.result_filtering)) { 6053 /* Duplicate filter should be disabled when some advertisement 6054 * monitor is activated, otherwise AdvMon can only receive one 6055 * advertisement for one peer(*) during active scanning, and 6056 * might report loss to these peers. 6057 * 6058 * If controller does strict duplicate filtering and the 6059 * discovery requires result filtering disables controller based 6060 * filtering since that can cause reports that would match the 6061 * host filter to not be reported. 6062 */ 6063 filter_dup = LE_SCAN_FILTER_DUP_DISABLE; 6064 } 6065 6066 err = hci_start_scan_sync(hdev, LE_SCAN_ACTIVE, interval, 6067 hdev->le_scan_window_discovery, 6068 own_addr_type, filter_policy, filter_dup); 6069 if (!err) 6070 return err; 6071 6072 failed: 6073 /* Resume advertising if it was paused */ 6074 if (ll_privacy_capable(hdev)) 6075 hci_resume_advertising_sync(hdev); 6076 6077 /* Resume passive scanning */ 6078 hci_update_passive_scan_sync(hdev); 6079 return err; 6080 } 6081 6082 static int hci_start_interleaved_discovery_sync(struct hci_dev *hdev) 6083 { 6084 int err; 6085 6086 bt_dev_dbg(hdev, ""); 6087 6088 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery * 2); 6089 if (err) 6090 return err; 6091 6092 return hci_inquiry_sync(hdev, DISCOV_BREDR_INQUIRY_LEN, 0); 6093 } 6094 6095 int hci_start_discovery_sync(struct hci_dev *hdev) 6096 { 6097 unsigned long timeout; 6098 int err; 6099 6100 bt_dev_dbg(hdev, "type %u", hdev->discovery.type); 6101 6102 switch (hdev->discovery.type) { 6103 case DISCOV_TYPE_BREDR: 6104 return hci_inquiry_sync(hdev, DISCOV_BREDR_INQUIRY_LEN, 0); 6105 case DISCOV_TYPE_INTERLEAVED: 6106 /* When running simultaneous discovery, the LE scanning time 6107 * should occupy the whole discovery time sine BR/EDR inquiry 6108 * and LE scanning are scheduled by the controller. 6109 * 6110 * For interleaving discovery in comparison, BR/EDR inquiry 6111 * and LE scanning are done sequentially with separate 6112 * timeouts. 6113 */ 6114 if (hci_test_quirk(hdev, HCI_QUIRK_SIMULTANEOUS_DISCOVERY)) { 6115 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT); 6116 /* During simultaneous discovery, we double LE scan 6117 * interval. We must leave some time for the controller 6118 * to do BR/EDR inquiry. 6119 */ 6120 err = hci_start_interleaved_discovery_sync(hdev); 6121 break; 6122 } 6123 6124 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout); 6125 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery); 6126 break; 6127 case DISCOV_TYPE_LE: 6128 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT); 6129 err = hci_active_scan_sync(hdev, hdev->le_scan_int_discovery); 6130 break; 6131 default: 6132 return -EINVAL; 6133 } 6134 6135 if (err) 6136 return err; 6137 6138 bt_dev_dbg(hdev, "timeout %u ms", jiffies_to_msecs(timeout)); 6139 6140 queue_delayed_work(hdev->req_workqueue, &hdev->le_scan_disable, 6141 timeout); 6142 return 0; 6143 } 6144 6145 static void hci_suspend_monitor_sync(struct hci_dev *hdev) 6146 { 6147 switch (hci_get_adv_monitor_offload_ext(hdev)) { 6148 case HCI_ADV_MONITOR_EXT_MSFT: 6149 msft_suspend_sync(hdev); 6150 break; 6151 default: 6152 return; 6153 } 6154 } 6155 6156 /* This function disables discovery and mark it as paused */ 6157 static int hci_pause_discovery_sync(struct hci_dev *hdev) 6158 { 6159 int old_state = hdev->discovery.state; 6160 int err; 6161 6162 /* If discovery already stopped/stopping/paused there nothing to do */ 6163 if (old_state == DISCOVERY_STOPPED || old_state == DISCOVERY_STOPPING || 6164 hdev->discovery_paused) 6165 return 0; 6166 6167 hci_discovery_set_state(hdev, DISCOVERY_STOPPING); 6168 err = hci_stop_discovery_sync(hdev); 6169 if (err) 6170 return err; 6171 6172 hdev->discovery_paused = true; 6173 hci_discovery_set_state(hdev, DISCOVERY_STOPPED); 6174 6175 return 0; 6176 } 6177 6178 static int hci_update_event_filter_sync(struct hci_dev *hdev) 6179 { 6180 struct bdaddr_list_with_flags *b; 6181 u8 scan = SCAN_DISABLED; 6182 bool scanning = test_bit(HCI_PSCAN, &hdev->flags); 6183 int err; 6184 6185 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) 6186 return 0; 6187 6188 /* Some fake CSR controllers lock up after setting this type of 6189 * filter, so avoid sending the request altogether. 6190 */ 6191 if (hci_test_quirk(hdev, HCI_QUIRK_BROKEN_FILTER_CLEAR_ALL)) 6192 return 0; 6193 6194 /* Always clear event filter when starting */ 6195 hci_clear_event_filter_sync(hdev); 6196 6197 list_for_each_entry(b, &hdev->accept_list, list) { 6198 if (!(b->flags & HCI_CONN_FLAG_REMOTE_WAKEUP)) 6199 continue; 6200 6201 bt_dev_dbg(hdev, "Adding event filters for %pMR", &b->bdaddr); 6202 6203 err = hci_set_event_filter_sync(hdev, HCI_FLT_CONN_SETUP, 6204 HCI_CONN_SETUP_ALLOW_BDADDR, 6205 &b->bdaddr, 6206 HCI_CONN_SETUP_AUTO_ON); 6207 if (err) 6208 bt_dev_err(hdev, "Failed to set event filter for %pMR", 6209 &b->bdaddr); 6210 else 6211 scan = SCAN_PAGE; 6212 } 6213 6214 if (scan && !scanning) 6215 hci_write_scan_enable_sync(hdev, scan); 6216 else if (!scan && scanning) 6217 hci_write_scan_enable_sync(hdev, scan); 6218 6219 return 0; 6220 } 6221 6222 /* This function disables scan (BR and LE) and mark it as paused */ 6223 static int hci_pause_scan_sync(struct hci_dev *hdev) 6224 { 6225 if (hdev->scanning_paused) 6226 return 0; 6227 6228 /* Disable page scan if enabled */ 6229 if (test_bit(HCI_PSCAN, &hdev->flags)) 6230 hci_write_scan_enable_sync(hdev, SCAN_DISABLED); 6231 6232 hci_scan_disable_sync(hdev); 6233 6234 hdev->scanning_paused = true; 6235 6236 return 0; 6237 } 6238 6239 /* This function performs the HCI suspend procedures in the follow order: 6240 * 6241 * Pause discovery (active scanning/inquiry) 6242 * Pause Directed Advertising/Advertising 6243 * Pause Scanning (passive scanning in case discovery was not active) 6244 * Disconnect all connections 6245 * Set suspend_status to BT_SUSPEND_DISCONNECT if hdev cannot wakeup 6246 * otherwise: 6247 * Update event mask (only set events that are allowed to wake up the host) 6248 * Update event filter (with devices marked with HCI_CONN_FLAG_REMOTE_WAKEUP) 6249 * Update passive scanning (lower duty cycle) 6250 * Set suspend_status to BT_SUSPEND_CONFIGURE_WAKE 6251 */ 6252 int hci_suspend_sync(struct hci_dev *hdev) 6253 { 6254 int err; 6255 6256 /* If marked as suspended there nothing to do */ 6257 if (hdev->suspended) 6258 return 0; 6259 6260 /* Mark device as suspended */ 6261 hdev->suspended = true; 6262 6263 /* Pause discovery if not already stopped */ 6264 hci_pause_discovery_sync(hdev); 6265 6266 /* Pause other advertisements */ 6267 hci_pause_advertising_sync(hdev); 6268 6269 /* Suspend monitor filters */ 6270 hci_suspend_monitor_sync(hdev); 6271 6272 /* Prevent disconnects from causing scanning to be re-enabled */ 6273 hci_pause_scan_sync(hdev); 6274 6275 if (hci_conn_count(hdev)) { 6276 /* Soft disconnect everything (power off) */ 6277 err = hci_disconnect_all_sync(hdev, HCI_ERROR_REMOTE_POWER_OFF); 6278 if (err) { 6279 /* Set state to BT_RUNNING so resume doesn't notify */ 6280 hdev->suspend_state = BT_RUNNING; 6281 hci_resume_sync(hdev); 6282 return err; 6283 } 6284 6285 /* Update event mask so only the allowed event can wakeup the 6286 * host. 6287 */ 6288 hci_set_event_mask_sync(hdev); 6289 } 6290 6291 /* Only configure accept list if disconnect succeeded and wake 6292 * isn't being prevented. 6293 */ 6294 if (!hdev->wakeup || !hdev->wakeup(hdev)) { 6295 hdev->suspend_state = BT_SUSPEND_DISCONNECT; 6296 return 0; 6297 } 6298 6299 /* Unpause to take care of updating scanning params */ 6300 hdev->scanning_paused = false; 6301 6302 /* Enable event filter for paired devices */ 6303 hci_update_event_filter_sync(hdev); 6304 6305 /* Update LE passive scan if enabled */ 6306 hci_update_passive_scan_sync(hdev); 6307 6308 /* Pause scan changes again. */ 6309 hdev->scanning_paused = true; 6310 6311 hdev->suspend_state = BT_SUSPEND_CONFIGURE_WAKE; 6312 6313 return 0; 6314 } 6315 6316 /* This function resumes discovery */ 6317 static int hci_resume_discovery_sync(struct hci_dev *hdev) 6318 { 6319 int err; 6320 6321 /* If discovery not paused there nothing to do */ 6322 if (!hdev->discovery_paused) 6323 return 0; 6324 6325 hdev->discovery_paused = false; 6326 6327 hci_discovery_set_state(hdev, DISCOVERY_STARTING); 6328 6329 err = hci_start_discovery_sync(hdev); 6330 6331 hci_discovery_set_state(hdev, err ? DISCOVERY_STOPPED : 6332 DISCOVERY_FINDING); 6333 6334 return err; 6335 } 6336 6337 static void hci_resume_monitor_sync(struct hci_dev *hdev) 6338 { 6339 switch (hci_get_adv_monitor_offload_ext(hdev)) { 6340 case HCI_ADV_MONITOR_EXT_MSFT: 6341 msft_resume_sync(hdev); 6342 break; 6343 default: 6344 return; 6345 } 6346 } 6347 6348 /* This function resume scan and reset paused flag */ 6349 static int hci_resume_scan_sync(struct hci_dev *hdev) 6350 { 6351 if (!hdev->scanning_paused) 6352 return 0; 6353 6354 hdev->scanning_paused = false; 6355 6356 hci_update_scan_sync(hdev); 6357 6358 /* Reset passive scanning to normal */ 6359 hci_update_passive_scan_sync(hdev); 6360 6361 return 0; 6362 } 6363 6364 /* This function performs the HCI suspend procedures in the follow order: 6365 * 6366 * Restore event mask 6367 * Clear event filter 6368 * Update passive scanning (normal duty cycle) 6369 * Resume Directed Advertising/Advertising 6370 * Resume discovery (active scanning/inquiry) 6371 */ 6372 int hci_resume_sync(struct hci_dev *hdev) 6373 { 6374 /* If not marked as suspended there nothing to do */ 6375 if (!hdev->suspended) 6376 return 0; 6377 6378 hdev->suspended = false; 6379 6380 /* Restore event mask */ 6381 hci_set_event_mask_sync(hdev); 6382 6383 /* Clear any event filters and restore scan state */ 6384 hci_clear_event_filter_sync(hdev); 6385 6386 /* Resume scanning */ 6387 hci_resume_scan_sync(hdev); 6388 6389 /* Resume monitor filters */ 6390 hci_resume_monitor_sync(hdev); 6391 6392 /* Resume other advertisements */ 6393 hci_resume_advertising_sync(hdev); 6394 6395 /* Resume discovery */ 6396 hci_resume_discovery_sync(hdev); 6397 6398 return 0; 6399 } 6400 6401 static bool conn_use_rpa(struct hci_conn *conn) 6402 { 6403 struct hci_dev *hdev = conn->hdev; 6404 6405 return hci_dev_test_flag(hdev, HCI_PRIVACY); 6406 } 6407 6408 static int hci_le_ext_directed_advertising_sync(struct hci_dev *hdev, 6409 struct hci_conn *conn) 6410 { 6411 struct hci_cp_le_set_ext_adv_params cp; 6412 struct hci_rp_le_set_ext_adv_params rp; 6413 int err; 6414 bdaddr_t random_addr; 6415 u8 own_addr_type; 6416 6417 err = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn), 6418 &own_addr_type); 6419 if (err) 6420 return err; 6421 6422 /* Set require_privacy to false so that the remote device has a 6423 * chance of identifying us. 6424 */ 6425 err = hci_get_random_address(hdev, false, conn_use_rpa(conn), NULL, 6426 &own_addr_type, &random_addr); 6427 if (err) 6428 return err; 6429 6430 memset(&cp, 0, sizeof(cp)); 6431 6432 cp.evt_properties = cpu_to_le16(LE_LEGACY_ADV_DIRECT_IND); 6433 cp.channel_map = hdev->le_adv_channel_map; 6434 cp.tx_power = HCI_TX_POWER_INVALID; 6435 cp.primary_phy = HCI_ADV_PHY_1M; 6436 cp.secondary_phy = HCI_ADV_PHY_1M; 6437 cp.handle = 0x00; /* Use instance 0 for directed adv */ 6438 cp.own_addr_type = own_addr_type; 6439 cp.peer_addr_type = conn->dst_type; 6440 bacpy(&cp.peer_addr, &conn->dst); 6441 6442 /* As per Core Spec 5.2 Vol 2, PART E, Sec 7.8.53, for 6443 * advertising_event_property LE_LEGACY_ADV_DIRECT_IND 6444 * does not supports advertising data when the advertising set already 6445 * contains some, the controller shall return erroc code 'Invalid 6446 * HCI Command Parameters(0x12). 6447 * So it is required to remove adv set for handle 0x00. since we use 6448 * instance 0 for directed adv. 6449 */ 6450 err = hci_remove_ext_adv_instance_sync(hdev, cp.handle, NULL); 6451 if (err) 6452 return err; 6453 6454 err = hci_set_ext_adv_params_sync(hdev, NULL, &cp, &rp); 6455 if (err) 6456 return err; 6457 6458 /* Update adv data as tx power is known now */ 6459 err = hci_set_ext_adv_data_sync(hdev, cp.handle); 6460 if (err) 6461 return err; 6462 6463 /* Check if random address need to be updated */ 6464 if (own_addr_type == ADDR_LE_DEV_RANDOM && 6465 bacmp(&random_addr, BDADDR_ANY) && 6466 bacmp(&random_addr, &hdev->random_addr)) { 6467 err = hci_set_adv_set_random_addr_sync(hdev, 0x00, 6468 &random_addr); 6469 if (err) 6470 return err; 6471 } 6472 6473 return hci_enable_ext_advertising_sync(hdev, 0x00); 6474 } 6475 6476 static int hci_le_directed_advertising_sync(struct hci_dev *hdev, 6477 struct hci_conn *conn) 6478 { 6479 struct hci_cp_le_set_adv_param cp; 6480 u8 status; 6481 u8 own_addr_type; 6482 u8 enable; 6483 6484 if (ext_adv_capable(hdev)) 6485 return hci_le_ext_directed_advertising_sync(hdev, conn); 6486 6487 /* Clear the HCI_LE_ADV bit temporarily so that the 6488 * hci_update_random_address knows that it's safe to go ahead 6489 * and write a new random address. The flag will be set back on 6490 * as soon as the SET_ADV_ENABLE HCI command completes. 6491 */ 6492 hci_dev_clear_flag(hdev, HCI_LE_ADV); 6493 6494 /* Set require_privacy to false so that the remote device has a 6495 * chance of identifying us. 6496 */ 6497 status = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn), 6498 &own_addr_type); 6499 if (status) 6500 return status; 6501 6502 memset(&cp, 0, sizeof(cp)); 6503 6504 /* Some controllers might reject command if intervals are not 6505 * within range for undirected advertising. 6506 * BCM20702A0 is known to be affected by this. 6507 */ 6508 cp.min_interval = cpu_to_le16(0x0020); 6509 cp.max_interval = cpu_to_le16(0x0020); 6510 6511 cp.type = LE_ADV_DIRECT_IND; 6512 cp.own_address_type = own_addr_type; 6513 cp.direct_addr_type = conn->dst_type; 6514 bacpy(&cp.direct_addr, &conn->dst); 6515 cp.channel_map = hdev->le_adv_channel_map; 6516 6517 status = __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_PARAM, 6518 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 6519 if (status) 6520 return status; 6521 6522 enable = 0x01; 6523 6524 return __hci_cmd_sync_status(hdev, HCI_OP_LE_SET_ADV_ENABLE, 6525 sizeof(enable), &enable, HCI_CMD_TIMEOUT); 6526 } 6527 6528 static void set_ext_conn_params(struct hci_conn *conn, 6529 struct hci_cp_le_ext_conn_param *p) 6530 { 6531 struct hci_dev *hdev = conn->hdev; 6532 6533 memset(p, 0, sizeof(*p)); 6534 6535 p->scan_interval = cpu_to_le16(hdev->le_scan_int_connect); 6536 p->scan_window = cpu_to_le16(hdev->le_scan_window_connect); 6537 p->conn_interval_min = cpu_to_le16(conn->le_conn_min_interval); 6538 p->conn_interval_max = cpu_to_le16(conn->le_conn_max_interval); 6539 p->conn_latency = cpu_to_le16(conn->le_conn_latency); 6540 p->supervision_timeout = cpu_to_le16(conn->le_supv_timeout); 6541 p->min_ce_len = cpu_to_le16(0x0000); 6542 p->max_ce_len = cpu_to_le16(0x0000); 6543 } 6544 6545 static int hci_le_ext_create_conn_sync(struct hci_dev *hdev, 6546 struct hci_conn *conn, u8 own_addr_type) 6547 { 6548 struct hci_cp_le_ext_create_conn *cp; 6549 struct hci_cp_le_ext_conn_param *p; 6550 u8 data[sizeof(*cp) + sizeof(*p) * 3]; 6551 u32 plen; 6552 6553 cp = (void *)data; 6554 p = (void *)cp->data; 6555 6556 memset(cp, 0, sizeof(*cp)); 6557 6558 bacpy(&cp->peer_addr, &conn->dst); 6559 cp->peer_addr_type = conn->dst_type; 6560 cp->own_addr_type = own_addr_type; 6561 6562 plen = sizeof(*cp); 6563 6564 if (scan_1m(hdev) && (conn->le_adv_phy == HCI_ADV_PHY_1M || 6565 conn->le_adv_sec_phy == HCI_ADV_PHY_1M)) { 6566 cp->phys |= LE_SCAN_PHY_1M; 6567 set_ext_conn_params(conn, p); 6568 6569 p++; 6570 plen += sizeof(*p); 6571 } 6572 6573 if (scan_2m(hdev) && (conn->le_adv_phy == HCI_ADV_PHY_2M || 6574 conn->le_adv_sec_phy == HCI_ADV_PHY_2M)) { 6575 cp->phys |= LE_SCAN_PHY_2M; 6576 set_ext_conn_params(conn, p); 6577 6578 p++; 6579 plen += sizeof(*p); 6580 } 6581 6582 if (scan_coded(hdev) && (conn->le_adv_phy == HCI_ADV_PHY_CODED || 6583 conn->le_adv_sec_phy == HCI_ADV_PHY_CODED)) { 6584 cp->phys |= LE_SCAN_PHY_CODED; 6585 set_ext_conn_params(conn, p); 6586 6587 plen += sizeof(*p); 6588 } 6589 6590 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_EXT_CREATE_CONN, 6591 plen, data, 6592 HCI_EV_LE_ENHANCED_CONN_COMPLETE, 6593 conn->conn_timeout, NULL); 6594 } 6595 6596 static int hci_le_create_conn_sync(struct hci_dev *hdev, void *data) 6597 { 6598 struct hci_cp_le_create_conn cp; 6599 struct hci_conn_params *params; 6600 u8 own_addr_type; 6601 int err; 6602 struct hci_conn *conn = data; 6603 6604 if (!hci_conn_valid(hdev, conn)) 6605 return -ECANCELED; 6606 6607 bt_dev_dbg(hdev, "conn %p", conn); 6608 6609 clear_bit(HCI_CONN_SCANNING, &conn->flags); 6610 conn->state = BT_CONNECT; 6611 6612 /* If requested to connect as peripheral use directed advertising */ 6613 if (conn->role == HCI_ROLE_SLAVE) { 6614 /* If we're active scanning and simultaneous roles is not 6615 * enabled simply reject the attempt. 6616 */ 6617 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) && 6618 hdev->le_scan_type == LE_SCAN_ACTIVE && 6619 !hci_dev_test_flag(hdev, HCI_LE_SIMULTANEOUS_ROLES)) { 6620 hci_conn_del(conn); 6621 return -EBUSY; 6622 } 6623 6624 /* Pause advertising while doing directed advertising. */ 6625 hci_pause_advertising_sync(hdev); 6626 6627 err = hci_le_directed_advertising_sync(hdev, conn); 6628 goto done; 6629 } 6630 6631 /* Disable advertising if simultaneous roles is not in use. */ 6632 if (!hci_dev_test_flag(hdev, HCI_LE_SIMULTANEOUS_ROLES)) 6633 hci_pause_advertising_sync(hdev); 6634 6635 params = hci_conn_params_lookup(hdev, &conn->dst, conn->dst_type); 6636 if (params) { 6637 conn->le_conn_min_interval = params->conn_min_interval; 6638 conn->le_conn_max_interval = params->conn_max_interval; 6639 conn->le_conn_latency = params->conn_latency; 6640 conn->le_supv_timeout = params->supervision_timeout; 6641 } else { 6642 conn->le_conn_min_interval = hdev->le_conn_min_interval; 6643 conn->le_conn_max_interval = hdev->le_conn_max_interval; 6644 conn->le_conn_latency = hdev->le_conn_latency; 6645 conn->le_supv_timeout = hdev->le_supv_timeout; 6646 } 6647 6648 /* If controller is scanning, we stop it since some controllers are 6649 * not able to scan and connect at the same time. Also set the 6650 * HCI_LE_SCAN_INTERRUPTED flag so that the command complete 6651 * handler for scan disabling knows to set the correct discovery 6652 * state. 6653 */ 6654 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) { 6655 hci_dev_set_flag(hdev, HCI_LE_SCAN_INTERRUPTED); 6656 hci_scan_disable_sync(hdev); 6657 } 6658 6659 /* Update random address, but set require_privacy to false so 6660 * that we never connect with an non-resolvable address. 6661 */ 6662 err = hci_update_random_address_sync(hdev, false, conn_use_rpa(conn), 6663 &own_addr_type); 6664 if (err) 6665 goto done; 6666 /* Send command LE Extended Create Connection if supported */ 6667 if (use_ext_conn(hdev)) { 6668 err = hci_le_ext_create_conn_sync(hdev, conn, own_addr_type); 6669 goto done; 6670 } 6671 6672 memset(&cp, 0, sizeof(cp)); 6673 6674 cp.scan_interval = cpu_to_le16(hdev->le_scan_int_connect); 6675 cp.scan_window = cpu_to_le16(hdev->le_scan_window_connect); 6676 6677 bacpy(&cp.peer_addr, &conn->dst); 6678 cp.peer_addr_type = conn->dst_type; 6679 cp.own_address_type = own_addr_type; 6680 cp.conn_interval_min = cpu_to_le16(conn->le_conn_min_interval); 6681 cp.conn_interval_max = cpu_to_le16(conn->le_conn_max_interval); 6682 cp.conn_latency = cpu_to_le16(conn->le_conn_latency); 6683 cp.supervision_timeout = cpu_to_le16(conn->le_supv_timeout); 6684 cp.min_ce_len = cpu_to_le16(0x0000); 6685 cp.max_ce_len = cpu_to_le16(0x0000); 6686 6687 /* BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E page 2261: 6688 * 6689 * If this event is unmasked and the HCI_LE_Connection_Complete event 6690 * is unmasked, only the HCI_LE_Enhanced_Connection_Complete event is 6691 * sent when a new connection has been created. 6692 */ 6693 err = __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CREATE_CONN, 6694 sizeof(cp), &cp, 6695 use_enhanced_conn_complete(hdev) ? 6696 HCI_EV_LE_ENHANCED_CONN_COMPLETE : 6697 HCI_EV_LE_CONN_COMPLETE, 6698 conn->conn_timeout, NULL); 6699 6700 done: 6701 if (err == -ETIMEDOUT) 6702 hci_le_connect_cancel_sync(hdev, conn, 0x00); 6703 6704 /* Re-enable advertising after the connection attempt is finished. */ 6705 hci_resume_advertising_sync(hdev); 6706 return err; 6707 } 6708 6709 int hci_le_create_cis_sync(struct hci_dev *hdev) 6710 { 6711 DEFINE_FLEX(struct hci_cp_le_create_cis, cmd, cis, num_cis, 0x1f); 6712 size_t aux_num_cis = 0; 6713 struct hci_conn *conn; 6714 u16 timeout = 0; 6715 u8 cig = BT_ISO_QOS_CIG_UNSET; 6716 6717 /* The spec allows only one pending LE Create CIS command at a time. If 6718 * the command is pending now, don't do anything. We check for pending 6719 * connections after each CIS Established event. 6720 * 6721 * BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E 6722 * page 2566: 6723 * 6724 * If the Host issues this command before all the 6725 * HCI_LE_CIS_Established events from the previous use of the 6726 * command have been generated, the Controller shall return the 6727 * error code Command Disallowed (0x0C). 6728 * 6729 * BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E 6730 * page 2567: 6731 * 6732 * When the Controller receives the HCI_LE_Create_CIS command, the 6733 * Controller sends the HCI_Command_Status event to the Host. An 6734 * HCI_LE_CIS_Established event will be generated for each CIS when it 6735 * is established or if it is disconnected or considered lost before 6736 * being established; until all the events are generated, the command 6737 * remains pending. 6738 */ 6739 6740 hci_dev_lock(hdev); 6741 6742 rcu_read_lock(); 6743 6744 /* Wait until previous Create CIS has completed */ 6745 list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) { 6746 if (test_bit(HCI_CONN_CREATE_CIS, &conn->flags)) 6747 goto done; 6748 } 6749 6750 /* Find CIG with all CIS ready */ 6751 list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) { 6752 struct hci_conn *link; 6753 6754 if (hci_conn_check_create_cis(conn)) 6755 continue; 6756 6757 cig = conn->iso_qos.ucast.cig; 6758 6759 list_for_each_entry_rcu(link, &hdev->conn_hash.list, list) { 6760 if (hci_conn_check_create_cis(link) > 0 && 6761 link->iso_qos.ucast.cig == cig && 6762 link->state != BT_CONNECTED) { 6763 cig = BT_ISO_QOS_CIG_UNSET; 6764 break; 6765 } 6766 } 6767 6768 if (cig != BT_ISO_QOS_CIG_UNSET) 6769 break; 6770 } 6771 6772 if (cig == BT_ISO_QOS_CIG_UNSET) 6773 goto done; 6774 6775 list_for_each_entry_rcu(conn, &hdev->conn_hash.list, list) { 6776 struct hci_cis *cis = &cmd->cis[aux_num_cis]; 6777 6778 if (hci_conn_check_create_cis(conn) || 6779 conn->iso_qos.ucast.cig != cig) 6780 continue; 6781 6782 set_bit(HCI_CONN_CREATE_CIS, &conn->flags); 6783 cis->acl_handle = cpu_to_le16(conn->parent->handle); 6784 cis->cis_handle = cpu_to_le16(conn->handle); 6785 timeout = conn->conn_timeout; 6786 aux_num_cis++; 6787 6788 if (aux_num_cis >= cmd->num_cis) 6789 break; 6790 } 6791 cmd->num_cis = aux_num_cis; 6792 6793 done: 6794 rcu_read_unlock(); 6795 6796 hci_dev_unlock(hdev); 6797 6798 if (!aux_num_cis) 6799 return 0; 6800 6801 /* Wait for HCI_LE_CIS_Established */ 6802 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_CREATE_CIS, 6803 struct_size(cmd, cis, cmd->num_cis), 6804 cmd, HCI_EVT_LE_CIS_ESTABLISHED, 6805 timeout, NULL); 6806 } 6807 6808 int hci_le_remove_cig_sync(struct hci_dev *hdev, u8 handle) 6809 { 6810 struct hci_cp_le_remove_cig cp; 6811 6812 memset(&cp, 0, sizeof(cp)); 6813 cp.cig_id = handle; 6814 6815 return __hci_cmd_sync_status(hdev, HCI_OP_LE_REMOVE_CIG, sizeof(cp), 6816 &cp, HCI_CMD_TIMEOUT); 6817 } 6818 6819 int hci_le_big_terminate_sync(struct hci_dev *hdev, u8 handle) 6820 { 6821 struct hci_cp_le_big_term_sync cp; 6822 6823 memset(&cp, 0, sizeof(cp)); 6824 cp.handle = handle; 6825 6826 return __hci_cmd_sync_status(hdev, HCI_OP_LE_BIG_TERM_SYNC, 6827 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 6828 } 6829 6830 int hci_le_pa_terminate_sync(struct hci_dev *hdev, u16 handle) 6831 { 6832 struct hci_cp_le_pa_term_sync cp; 6833 6834 memset(&cp, 0, sizeof(cp)); 6835 cp.handle = cpu_to_le16(handle); 6836 6837 return __hci_cmd_sync_status(hdev, HCI_OP_LE_PA_TERM_SYNC, 6838 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 6839 } 6840 6841 int hci_get_random_address(struct hci_dev *hdev, bool require_privacy, 6842 bool use_rpa, struct adv_info *adv_instance, 6843 u8 *own_addr_type, bdaddr_t *rand_addr) 6844 { 6845 int err; 6846 6847 bacpy(rand_addr, BDADDR_ANY); 6848 6849 /* If privacy is enabled use a resolvable private address. If 6850 * current RPA has expired then generate a new one. 6851 */ 6852 if (use_rpa) { 6853 /* If Controller supports LL Privacy use own address type is 6854 * 0x03 6855 */ 6856 if (ll_privacy_capable(hdev)) 6857 *own_addr_type = ADDR_LE_DEV_RANDOM_RESOLVED; 6858 else 6859 *own_addr_type = ADDR_LE_DEV_RANDOM; 6860 6861 if (adv_instance) { 6862 if (adv_rpa_valid(adv_instance)) 6863 return 0; 6864 } else { 6865 if (rpa_valid(hdev)) 6866 return 0; 6867 } 6868 6869 err = smp_generate_rpa(hdev, hdev->irk, &hdev->rpa); 6870 if (err < 0) { 6871 bt_dev_err(hdev, "failed to generate new RPA"); 6872 return err; 6873 } 6874 6875 bacpy(rand_addr, &hdev->rpa); 6876 6877 return 0; 6878 } 6879 6880 /* In case of required privacy without resolvable private address, 6881 * use an non-resolvable private address. This is useful for 6882 * non-connectable advertising. 6883 */ 6884 if (require_privacy) { 6885 bdaddr_t nrpa; 6886 6887 while (true) { 6888 /* The non-resolvable private address is generated 6889 * from random six bytes with the two most significant 6890 * bits cleared. 6891 */ 6892 get_random_bytes(&nrpa, 6); 6893 nrpa.b[5] &= 0x3f; 6894 6895 /* The non-resolvable private address shall not be 6896 * equal to the public address. 6897 */ 6898 if (bacmp(&hdev->bdaddr, &nrpa)) 6899 break; 6900 } 6901 6902 *own_addr_type = ADDR_LE_DEV_RANDOM; 6903 bacpy(rand_addr, &nrpa); 6904 6905 return 0; 6906 } 6907 6908 /* No privacy, use the current address */ 6909 hci_copy_identity_address(hdev, rand_addr, own_addr_type); 6910 6911 return 0; 6912 } 6913 6914 static int _update_adv_data_sync(struct hci_dev *hdev, void *data) 6915 { 6916 u8 instance = PTR_UINT(data); 6917 6918 return hci_update_adv_data_sync(hdev, instance); 6919 } 6920 6921 int hci_update_adv_data(struct hci_dev *hdev, u8 instance) 6922 { 6923 return hci_cmd_sync_queue(hdev, _update_adv_data_sync, 6924 UINT_PTR(instance), NULL); 6925 } 6926 6927 static int hci_acl_create_conn_sync(struct hci_dev *hdev, void *data) 6928 { 6929 struct hci_conn *conn = data; 6930 struct inquiry_entry *ie; 6931 struct hci_cp_create_conn cp; 6932 int err; 6933 6934 if (!hci_conn_valid(hdev, conn)) 6935 return -ECANCELED; 6936 6937 /* Many controllers disallow HCI Create Connection while it is doing 6938 * HCI Inquiry. So we cancel the Inquiry first before issuing HCI Create 6939 * Connection. This may cause the MGMT discovering state to become false 6940 * without user space's request but it is okay since the MGMT Discovery 6941 * APIs do not promise that discovery should be done forever. Instead, 6942 * the user space monitors the status of MGMT discovering and it may 6943 * request for discovery again when this flag becomes false. 6944 */ 6945 if (test_bit(HCI_INQUIRY, &hdev->flags)) { 6946 err = __hci_cmd_sync_status(hdev, HCI_OP_INQUIRY_CANCEL, 0, 6947 NULL, HCI_CMD_TIMEOUT); 6948 if (err) 6949 bt_dev_warn(hdev, "Failed to cancel inquiry %d", err); 6950 } 6951 6952 conn->state = BT_CONNECT; 6953 conn->out = true; 6954 conn->role = HCI_ROLE_MASTER; 6955 6956 conn->attempt++; 6957 6958 memset(&cp, 0, sizeof(cp)); 6959 bacpy(&cp.bdaddr, &conn->dst); 6960 cp.pscan_rep_mode = 0x02; 6961 6962 ie = hci_inquiry_cache_lookup(hdev, &conn->dst); 6963 if (ie) { 6964 if (inquiry_entry_age(ie) <= INQUIRY_ENTRY_AGE_MAX) { 6965 cp.pscan_rep_mode = ie->data.pscan_rep_mode; 6966 cp.pscan_mode = ie->data.pscan_mode; 6967 cp.clock_offset = ie->data.clock_offset | 6968 cpu_to_le16(0x8000); 6969 } 6970 6971 memcpy(conn->dev_class, ie->data.dev_class, 3); 6972 } 6973 6974 cp.pkt_type = cpu_to_le16(conn->pkt_type); 6975 if (lmp_rswitch_capable(hdev) && !(hdev->link_mode & HCI_LM_MASTER)) 6976 cp.role_switch = 0x01; 6977 else 6978 cp.role_switch = 0x00; 6979 6980 return __hci_cmd_sync_status_sk(hdev, HCI_OP_CREATE_CONN, 6981 sizeof(cp), &cp, 6982 HCI_EV_CONN_COMPLETE, 6983 conn->conn_timeout, NULL); 6984 } 6985 6986 int hci_connect_acl_sync(struct hci_dev *hdev, struct hci_conn *conn) 6987 { 6988 int err; 6989 6990 err = hci_cmd_sync_queue_once(hdev, hci_acl_create_conn_sync, conn, 6991 NULL); 6992 return (err == -EEXIST) ? 0 : err; 6993 } 6994 6995 static void create_le_conn_complete(struct hci_dev *hdev, void *data, int err) 6996 { 6997 struct hci_conn *conn = data; 6998 6999 bt_dev_dbg(hdev, "err %d", err); 7000 7001 if (err == -ECANCELED) 7002 return; 7003 7004 hci_dev_lock(hdev); 7005 7006 if (!hci_conn_valid(hdev, conn)) 7007 goto done; 7008 7009 if (!err) { 7010 hci_connect_le_scan_cleanup(conn, 0x00); 7011 goto done; 7012 } 7013 7014 /* Check if connection is still pending */ 7015 if (conn != hci_lookup_le_connect(hdev)) 7016 goto done; 7017 7018 /* Flush to make sure we send create conn cancel command if needed */ 7019 flush_delayed_work(&conn->le_conn_timeout); 7020 hci_conn_failed(conn, bt_status(err)); 7021 7022 done: 7023 hci_dev_unlock(hdev); 7024 } 7025 7026 int hci_connect_le_sync(struct hci_dev *hdev, struct hci_conn *conn) 7027 { 7028 int err; 7029 7030 err = hci_cmd_sync_queue_once(hdev, hci_le_create_conn_sync, conn, 7031 create_le_conn_complete); 7032 return (err == -EEXIST) ? 0 : err; 7033 } 7034 7035 int hci_cancel_connect_sync(struct hci_dev *hdev, struct hci_conn *conn) 7036 { 7037 if (conn->state != BT_OPEN) 7038 return -EINVAL; 7039 7040 switch (conn->type) { 7041 case ACL_LINK: 7042 return !hci_cmd_sync_dequeue_once(hdev, 7043 hci_acl_create_conn_sync, 7044 conn, NULL); 7045 case LE_LINK: 7046 return !hci_cmd_sync_dequeue_once(hdev, hci_le_create_conn_sync, 7047 conn, create_le_conn_complete); 7048 } 7049 7050 return -ENOENT; 7051 } 7052 7053 int hci_le_conn_update_sync(struct hci_dev *hdev, struct hci_conn *conn, 7054 struct hci_conn_params *params) 7055 { 7056 struct hci_cp_le_conn_update cp; 7057 7058 memset(&cp, 0, sizeof(cp)); 7059 cp.handle = cpu_to_le16(conn->handle); 7060 cp.conn_interval_min = cpu_to_le16(params->conn_min_interval); 7061 cp.conn_interval_max = cpu_to_le16(params->conn_max_interval); 7062 cp.conn_latency = cpu_to_le16(params->conn_latency); 7063 cp.supervision_timeout = cpu_to_le16(params->supervision_timeout); 7064 cp.min_ce_len = cpu_to_le16(0x0000); 7065 cp.max_ce_len = cpu_to_le16(0x0000); 7066 7067 return __hci_cmd_sync_status(hdev, HCI_OP_LE_CONN_UPDATE, 7068 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 7069 } 7070 7071 static void create_pa_complete(struct hci_dev *hdev, void *data, int err) 7072 { 7073 struct hci_conn *conn = data; 7074 struct hci_conn *pa_sync; 7075 7076 bt_dev_dbg(hdev, "err %d", err); 7077 7078 if (err == -ECANCELED) 7079 return; 7080 7081 hci_dev_lock(hdev); 7082 7083 if (hci_conn_valid(hdev, conn)) 7084 clear_bit(HCI_CONN_CREATE_PA_SYNC, &conn->flags); 7085 7086 if (!err) 7087 goto unlock; 7088 7089 /* Add connection to indicate PA sync error */ 7090 pa_sync = hci_conn_add_unset(hdev, PA_LINK, BDADDR_ANY, 0, 7091 HCI_ROLE_SLAVE); 7092 7093 if (IS_ERR(pa_sync)) 7094 goto unlock; 7095 7096 set_bit(HCI_CONN_PA_SYNC_FAILED, &pa_sync->flags); 7097 7098 /* Notify iso layer */ 7099 hci_connect_cfm(pa_sync, bt_status(err)); 7100 7101 unlock: 7102 hci_dev_unlock(hdev); 7103 } 7104 7105 static int hci_le_past_params_sync(struct hci_dev *hdev, struct hci_conn *conn, 7106 struct hci_conn *acl, struct bt_iso_qos *qos) 7107 { 7108 struct hci_cp_le_past_params cp; 7109 int err; 7110 7111 memset(&cp, 0, sizeof(cp)); 7112 cp.handle = cpu_to_le16(acl->handle); 7113 /* An HCI_LE_Periodic_Advertising_Sync_Transfer_Received event is sent 7114 * to the Host. HCI_LE_Periodic_Advertising_Report events will be 7115 * enabled with duplicate filtering enabled. 7116 */ 7117 cp.mode = 0x03; 7118 cp.skip = cpu_to_le16(qos->bcast.skip); 7119 cp.sync_timeout = cpu_to_le16(qos->bcast.sync_timeout); 7120 cp.cte_type = qos->bcast.sync_cte_type; 7121 7122 /* HCI_LE_PAST_PARAMS command returns a command complete event so it 7123 * cannot wait for HCI_EV_LE_PAST_RECEIVED. 7124 */ 7125 err = __hci_cmd_sync_status(hdev, HCI_OP_LE_PAST_PARAMS, 7126 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 7127 if (err) 7128 return err; 7129 7130 /* Wait for HCI_EV_LE_PAST_RECEIVED event */ 7131 return __hci_cmd_sync_status_sk(hdev, HCI_OP_NOP, 0, NULL, 7132 HCI_EV_LE_PAST_RECEIVED, 7133 conn->conn_timeout, NULL); 7134 } 7135 7136 static int hci_le_pa_create_sync(struct hci_dev *hdev, void *data) 7137 { 7138 struct hci_cp_le_pa_create_sync cp; 7139 struct hci_conn *conn = data, *le; 7140 struct bt_iso_qos *qos = &conn->iso_qos; 7141 int err; 7142 7143 if (!hci_conn_valid(hdev, conn)) 7144 return -ECANCELED; 7145 7146 if (conn->sync_handle != HCI_SYNC_HANDLE_INVALID) 7147 return -EINVAL; 7148 7149 if (hci_dev_test_and_set_flag(hdev, HCI_PA_SYNC)) 7150 return -EBUSY; 7151 7152 /* Stop scanning if SID has not been set and active scanning is enabled 7153 * so we use passive scanning which will be scanning using the allow 7154 * list programmed to contain only the connection address. 7155 */ 7156 if (conn->sid == HCI_SID_INVALID && 7157 hci_dev_test_flag(hdev, HCI_LE_SCAN)) { 7158 hci_scan_disable_sync(hdev); 7159 hci_dev_set_flag(hdev, HCI_LE_SCAN_INTERRUPTED); 7160 hci_discovery_set_state(hdev, DISCOVERY_STOPPED); 7161 } 7162 7163 /* Mark HCI_CONN_CREATE_PA_SYNC so hci_update_passive_scan_sync can 7164 * program the address in the allow list so PA advertisements can be 7165 * received. 7166 */ 7167 set_bit(HCI_CONN_CREATE_PA_SYNC, &conn->flags); 7168 7169 hci_update_passive_scan_sync(hdev); 7170 7171 /* Check if PAST is possible: 7172 * 7173 * 1. Check if an ACL connection with the destination address exists 7174 * 2. Check if that HCI_CONN_FLAG_PAST has been set which indicates that 7175 * user really intended to use PAST. 7176 */ 7177 le = hci_conn_hash_lookup_le(hdev, &conn->dst, conn->dst_type); 7178 if (le) { 7179 struct hci_conn_params *params; 7180 7181 params = hci_conn_params_lookup(hdev, &le->dst, le->dst_type); 7182 if (params && params->flags & HCI_CONN_FLAG_PAST) { 7183 err = hci_le_past_params_sync(hdev, conn, le, qos); 7184 if (!err) 7185 goto done; 7186 } 7187 } 7188 7189 /* SID has not been set listen for HCI_EV_LE_EXT_ADV_REPORT to update 7190 * it. 7191 */ 7192 if (conn->sid == HCI_SID_INVALID) { 7193 err = __hci_cmd_sync_status_sk(hdev, HCI_OP_NOP, 0, NULL, 7194 HCI_EV_LE_EXT_ADV_REPORT, 7195 conn->conn_timeout, NULL); 7196 if (err == -ETIMEDOUT) 7197 goto done; 7198 } 7199 7200 memset(&cp, 0, sizeof(cp)); 7201 cp.options = qos->bcast.options; 7202 cp.sid = conn->sid; 7203 cp.addr_type = conn->dst_type; 7204 bacpy(&cp.addr, &conn->dst); 7205 cp.skip = cpu_to_le16(qos->bcast.skip); 7206 cp.sync_timeout = cpu_to_le16(qos->bcast.sync_timeout); 7207 cp.sync_cte_type = qos->bcast.sync_cte_type; 7208 7209 /* The spec allows only one pending LE Periodic Advertising Create 7210 * Sync command at a time so we forcefully wait for PA Sync Established 7211 * event since cmd_work can only schedule one command at a time. 7212 * 7213 * BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E 7214 * page 2493: 7215 * 7216 * If the Host issues this command when another HCI_LE_Periodic_ 7217 * Advertising_Create_Sync command is pending, the Controller shall 7218 * return the error code Command Disallowed (0x0C). 7219 */ 7220 err = __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_PA_CREATE_SYNC, 7221 sizeof(cp), &cp, 7222 HCI_EV_LE_PA_SYNC_ESTABLISHED, 7223 conn->conn_timeout, NULL); 7224 if (err == -ETIMEDOUT) 7225 __hci_cmd_sync_status(hdev, HCI_OP_LE_PA_CREATE_SYNC_CANCEL, 7226 0, NULL, HCI_CMD_TIMEOUT); 7227 7228 done: 7229 hci_dev_clear_flag(hdev, HCI_PA_SYNC); 7230 7231 /* Update passive scan since HCI_PA_SYNC flag has been cleared */ 7232 hci_update_passive_scan_sync(hdev); 7233 7234 return err; 7235 } 7236 7237 int hci_connect_pa_sync(struct hci_dev *hdev, struct hci_conn *conn) 7238 { 7239 int err; 7240 7241 err = hci_cmd_sync_queue_once(hdev, hci_le_pa_create_sync, conn, 7242 create_pa_complete); 7243 return (err == -EEXIST) ? 0 : err; 7244 } 7245 7246 static void create_big_complete(struct hci_dev *hdev, void *data, int err) 7247 { 7248 struct hci_conn *conn = data; 7249 7250 bt_dev_dbg(hdev, "err %d", err); 7251 7252 if (err == -ECANCELED) 7253 return; 7254 7255 if (hci_conn_valid(hdev, conn)) 7256 clear_bit(HCI_CONN_CREATE_BIG_SYNC, &conn->flags); 7257 } 7258 7259 static int hci_le_big_create_sync(struct hci_dev *hdev, void *data) 7260 { 7261 DEFINE_FLEX(struct hci_cp_le_big_create_sync, cp, bis, num_bis, 7262 HCI_MAX_ISO_BIS); 7263 struct hci_conn *conn = data; 7264 struct bt_iso_qos *qos = &conn->iso_qos; 7265 int err; 7266 7267 if (!hci_conn_valid(hdev, conn)) 7268 return -ECANCELED; 7269 7270 set_bit(HCI_CONN_CREATE_BIG_SYNC, &conn->flags); 7271 7272 memset(cp, 0, sizeof(*cp)); 7273 cp->handle = qos->bcast.big; 7274 cp->sync_handle = cpu_to_le16(conn->sync_handle); 7275 cp->encryption = qos->bcast.encryption; 7276 memcpy(cp->bcode, qos->bcast.bcode, sizeof(cp->bcode)); 7277 cp->mse = qos->bcast.mse; 7278 cp->timeout = cpu_to_le16(qos->bcast.timeout); 7279 cp->num_bis = conn->num_bis; 7280 memcpy(cp->bis, conn->bis, conn->num_bis); 7281 7282 /* The spec allows only one pending LE BIG Create Sync command at 7283 * a time, so we forcefully wait for BIG Sync Established event since 7284 * cmd_work can only schedule one command at a time. 7285 * 7286 * BLUETOOTH CORE SPECIFICATION Version 5.3 | Vol 4, Part E 7287 * page 2586: 7288 * 7289 * If the Host sends this command when the Controller is in the 7290 * process of synchronizing to any BIG, i.e. the HCI_LE_BIG_Sync_ 7291 * Established event has not been generated, the Controller shall 7292 * return the error code Command Disallowed (0x0C). 7293 */ 7294 err = __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_BIG_CREATE_SYNC, 7295 struct_size(cp, bis, cp->num_bis), cp, 7296 HCI_EVT_LE_BIG_SYNC_ESTABLISHED, 7297 conn->conn_timeout, NULL); 7298 if (err == -ETIMEDOUT) 7299 hci_le_big_terminate_sync(hdev, cp->handle); 7300 7301 return err; 7302 } 7303 7304 int hci_connect_big_sync(struct hci_dev *hdev, struct hci_conn *conn) 7305 { 7306 int err; 7307 7308 err = hci_cmd_sync_queue_once(hdev, hci_le_big_create_sync, conn, 7309 create_big_complete); 7310 return (err == -EEXIST) ? 0 : err; 7311 } 7312 7313 struct past_data { 7314 struct hci_conn *conn; 7315 struct hci_conn *le; 7316 }; 7317 7318 static void past_complete(struct hci_dev *hdev, void *data, int err) 7319 { 7320 struct past_data *past = data; 7321 7322 bt_dev_dbg(hdev, "err %d", err); 7323 7324 kfree(past); 7325 } 7326 7327 static int hci_le_past_set_info_sync(struct hci_dev *hdev, void *data) 7328 { 7329 struct past_data *past = data; 7330 struct hci_cp_le_past_set_info cp; 7331 7332 hci_dev_lock(hdev); 7333 7334 if (!hci_conn_valid(hdev, past->conn) || 7335 !hci_conn_valid(hdev, past->le)) { 7336 hci_dev_unlock(hdev); 7337 return -ECANCELED; 7338 } 7339 7340 memset(&cp, 0, sizeof(cp)); 7341 cp.handle = cpu_to_le16(past->le->handle); 7342 cp.adv_handle = past->conn->iso_qos.bcast.bis; 7343 7344 hci_dev_unlock(hdev); 7345 7346 return __hci_cmd_sync_status(hdev, HCI_OP_LE_PAST_SET_INFO, 7347 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 7348 } 7349 7350 static int hci_le_past_sync(struct hci_dev *hdev, void *data) 7351 { 7352 struct past_data *past = data; 7353 struct hci_cp_le_past cp; 7354 7355 hci_dev_lock(hdev); 7356 7357 if (!hci_conn_valid(hdev, past->conn) || 7358 !hci_conn_valid(hdev, past->le)) { 7359 hci_dev_unlock(hdev); 7360 return -ECANCELED; 7361 } 7362 7363 memset(&cp, 0, sizeof(cp)); 7364 cp.handle = cpu_to_le16(past->le->handle); 7365 cp.sync_handle = cpu_to_le16(past->conn->sync_handle); 7366 7367 hci_dev_unlock(hdev); 7368 7369 return __hci_cmd_sync_status(hdev, HCI_OP_LE_PAST, 7370 sizeof(cp), &cp, HCI_CMD_TIMEOUT); 7371 } 7372 7373 int hci_past_sync(struct hci_conn *conn, struct hci_conn *le) 7374 { 7375 struct past_data *data; 7376 int err; 7377 7378 if (conn->type != BIS_LINK && conn->type != PA_LINK) 7379 return -EINVAL; 7380 7381 if (!past_sender_capable(conn->hdev)) 7382 return -EOPNOTSUPP; 7383 7384 data = kmalloc_obj(*data); 7385 if (!data) 7386 return -ENOMEM; 7387 7388 data->conn = conn; 7389 data->le = le; 7390 7391 if (conn->role == HCI_ROLE_MASTER) 7392 err = hci_cmd_sync_queue_once(conn->hdev, 7393 hci_le_past_set_info_sync, data, 7394 past_complete); 7395 else 7396 err = hci_cmd_sync_queue_once(conn->hdev, hci_le_past_sync, 7397 data, past_complete); 7398 7399 if (err) 7400 kfree(data); 7401 7402 return (err == -EEXIST) ? 0 : err; 7403 } 7404 7405 static void le_read_features_complete(struct hci_dev *hdev, void *data, int err) 7406 { 7407 struct hci_conn *conn = data; 7408 7409 bt_dev_dbg(hdev, "err %d", err); 7410 7411 hci_conn_drop(conn); 7412 hci_conn_put(conn); 7413 } 7414 7415 static int hci_le_read_all_remote_features_sync(struct hci_dev *hdev, 7416 void *data) 7417 { 7418 struct hci_conn *conn = data; 7419 struct hci_cp_le_read_all_remote_features cp; 7420 7421 memset(&cp, 0, sizeof(cp)); 7422 cp.handle = cpu_to_le16(conn->handle); 7423 cp.pages = 10; /* Attempt to read all pages */ 7424 7425 /* Wait for HCI_EVT_LE_ALL_REMOTE_FEATURES_COMPLETE event otherwise 7426 * hci_conn_drop may run prematurely causing a disconnection. 7427 */ 7428 return __hci_cmd_sync_status_sk(hdev, 7429 HCI_OP_LE_READ_ALL_REMOTE_FEATURES, 7430 sizeof(cp), &cp, 7431 HCI_EVT_LE_ALL_REMOTE_FEATURES_COMPLETE, 7432 HCI_CMD_TIMEOUT, NULL); 7433 } 7434 7435 static int hci_le_read_remote_features_sync(struct hci_dev *hdev, void *data) 7436 { 7437 struct hci_conn *conn = data; 7438 struct hci_cp_le_read_remote_features cp; 7439 7440 if (!hci_conn_valid(hdev, conn)) 7441 return -ECANCELED; 7442 7443 /* Check if LL Extended Feature Set is supported and 7444 * HCI_OP_LE_READ_ALL_REMOTE_FEATURES is supported then use that to read 7445 * all features. 7446 */ 7447 if (ll_ext_feature_capable(hdev) && hdev->commands[47] & BIT(3)) 7448 return hci_le_read_all_remote_features_sync(hdev, data); 7449 7450 memset(&cp, 0, sizeof(cp)); 7451 cp.handle = cpu_to_le16(conn->handle); 7452 7453 /* Wait for HCI_EV_LE_REMOTE_FEAT_COMPLETE event otherwise 7454 * hci_conn_drop may run prematurely causing a disconnection. 7455 */ 7456 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_READ_REMOTE_FEATURES, 7457 sizeof(cp), &cp, 7458 HCI_EV_LE_REMOTE_FEAT_COMPLETE, 7459 HCI_CMD_TIMEOUT, NULL); 7460 } 7461 7462 int hci_le_read_remote_features(struct hci_conn *conn) 7463 { 7464 struct hci_dev *hdev = conn->hdev; 7465 int err; 7466 7467 /* The remote features procedure is defined for central 7468 * role only. So only in case of an initiated connection 7469 * request the remote features. 7470 * 7471 * If the local controller supports peripheral-initiated features 7472 * exchange, then requesting the remote features in peripheral 7473 * role is possible. Otherwise just transition into the 7474 * connected state without requesting the remote features. 7475 */ 7476 if (conn->out || (hdev->le_features[0] & HCI_LE_PERIPHERAL_FEATURES)) { 7477 err = hci_cmd_sync_queue_once(hdev, 7478 hci_le_read_remote_features_sync, 7479 hci_conn_hold(hci_conn_get(conn)), 7480 le_read_features_complete); 7481 if (err) { 7482 hci_conn_drop(conn); 7483 hci_conn_put(conn); 7484 } 7485 } else { 7486 err = -EOPNOTSUPP; 7487 } 7488 7489 return (err == -EEXIST) ? 0 : err; 7490 } 7491 7492 static void pkt_type_changed(struct hci_dev *hdev, void *data, int err) 7493 { 7494 struct hci_cp_change_conn_ptype *cp = data; 7495 7496 bt_dev_dbg(hdev, "err %d", err); 7497 7498 kfree(cp); 7499 } 7500 7501 static int hci_change_conn_ptype_sync(struct hci_dev *hdev, void *data) 7502 { 7503 struct hci_cp_change_conn_ptype *cp = data; 7504 7505 return __hci_cmd_sync_status_sk(hdev, HCI_OP_CHANGE_CONN_PTYPE, 7506 sizeof(*cp), cp, 7507 HCI_EV_PKT_TYPE_CHANGE, 7508 HCI_CMD_TIMEOUT, NULL); 7509 } 7510 7511 int hci_acl_change_pkt_type(struct hci_conn *conn, u16 pkt_type) 7512 { 7513 struct hci_dev *hdev = conn->hdev; 7514 struct hci_cp_change_conn_ptype *cp; 7515 int err; 7516 7517 cp = kmalloc_obj(*cp); 7518 if (!cp) 7519 return -ENOMEM; 7520 7521 cp->handle = cpu_to_le16(conn->handle); 7522 cp->pkt_type = cpu_to_le16(pkt_type); 7523 7524 err = hci_cmd_sync_queue_once(hdev, hci_change_conn_ptype_sync, cp, 7525 pkt_type_changed); 7526 if (err) 7527 kfree(cp); 7528 7529 return (err == -EEXIST) ? 0 : err; 7530 } 7531 7532 static void le_phy_update_complete(struct hci_dev *hdev, void *data, int err) 7533 { 7534 struct hci_cp_le_set_phy *cp = data; 7535 7536 bt_dev_dbg(hdev, "err %d", err); 7537 7538 kfree(cp); 7539 } 7540 7541 static int hci_le_set_phy_sync(struct hci_dev *hdev, void *data) 7542 { 7543 struct hci_cp_le_set_phy *cp = data; 7544 7545 return __hci_cmd_sync_status_sk(hdev, HCI_OP_LE_SET_PHY, 7546 sizeof(*cp), cp, 7547 HCI_EV_LE_PHY_UPDATE_COMPLETE, 7548 HCI_CMD_TIMEOUT, NULL); 7549 } 7550 7551 int hci_le_set_phy(struct hci_conn *conn, u8 tx_phys, u8 rx_phys) 7552 { 7553 struct hci_dev *hdev = conn->hdev; 7554 struct hci_cp_le_set_phy *cp; 7555 int err; 7556 7557 cp = kmalloc_obj(*cp); 7558 if (!cp) 7559 return -ENOMEM; 7560 7561 memset(cp, 0, sizeof(*cp)); 7562 cp->handle = cpu_to_le16(conn->handle); 7563 cp->tx_phys = tx_phys; 7564 cp->rx_phys = rx_phys; 7565 7566 err = hci_cmd_sync_queue_once(hdev, hci_le_set_phy_sync, cp, 7567 le_phy_update_complete); 7568 if (err) 7569 kfree(cp); 7570 7571 return (err == -EEXIST) ? 0 : err; 7572 } 7573