2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
4 Copyright (C) 2011 ProFUSION Embedded Systems
6 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License version 2 as
10 published by the Free Software Foundation;
12 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
13 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
14 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
15 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
16 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
17 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
19 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
22 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
23 SOFTWARE IS DISCLAIMED.
26 /* Bluetooth HCI core. */
28 #include <linux/export.h>
29 #include <linux/rfkill.h>
30 #include <linux/debugfs.h>
31 #include <linux/crypto.h>
32 #include <linux/property.h>
33 #include <linux/suspend.h>
34 #include <linux/wait.h>
35 #include <asm/unaligned.h>
37 #include <net/bluetooth/bluetooth.h>
38 #include <net/bluetooth/hci_core.h>
39 #include <net/bluetooth/l2cap.h>
40 #include <net/bluetooth/mgmt.h>
42 #include "hci_request.h"
43 #include "hci_debugfs.h"
48 static void hci_rx_work(struct work_struct
*work
);
49 static void hci_cmd_work(struct work_struct
*work
);
50 static void hci_tx_work(struct work_struct
*work
);
53 LIST_HEAD(hci_dev_list
);
54 DEFINE_RWLOCK(hci_dev_list_lock
);
56 /* HCI callback list */
57 LIST_HEAD(hci_cb_list
);
58 DEFINE_MUTEX(hci_cb_list_lock
);
60 /* HCI ID Numbering */
61 static DEFINE_IDA(hci_index_ida
);
63 /* ---- HCI debugfs entries ---- */
65 static ssize_t
dut_mode_read(struct file
*file
, char __user
*user_buf
,
66 size_t count
, loff_t
*ppos
)
68 struct hci_dev
*hdev
= file
->private_data
;
71 buf
[0] = hci_dev_test_flag(hdev
, HCI_DUT_MODE
) ? 'Y' : 'N';
74 return simple_read_from_buffer(user_buf
, count
, ppos
, buf
, 2);
77 static ssize_t
dut_mode_write(struct file
*file
, const char __user
*user_buf
,
78 size_t count
, loff_t
*ppos
)
80 struct hci_dev
*hdev
= file
->private_data
;
85 if (!test_bit(HCI_UP
, &hdev
->flags
))
88 err
= kstrtobool_from_user(user_buf
, count
, &enable
);
92 if (enable
== hci_dev_test_flag(hdev
, HCI_DUT_MODE
))
95 hci_req_sync_lock(hdev
);
97 skb
= __hci_cmd_sync(hdev
, HCI_OP_ENABLE_DUT_MODE
, 0, NULL
,
100 skb
= __hci_cmd_sync(hdev
, HCI_OP_RESET
, 0, NULL
,
102 hci_req_sync_unlock(hdev
);
109 hci_dev_change_flag(hdev
, HCI_DUT_MODE
);
114 static const struct file_operations dut_mode_fops
= {
116 .read
= dut_mode_read
,
117 .write
= dut_mode_write
,
118 .llseek
= default_llseek
,
121 static ssize_t
vendor_diag_read(struct file
*file
, char __user
*user_buf
,
122 size_t count
, loff_t
*ppos
)
124 struct hci_dev
*hdev
= file
->private_data
;
127 buf
[0] = hci_dev_test_flag(hdev
, HCI_VENDOR_DIAG
) ? 'Y' : 'N';
130 return simple_read_from_buffer(user_buf
, count
, ppos
, buf
, 2);
133 static ssize_t
vendor_diag_write(struct file
*file
, const char __user
*user_buf
,
134 size_t count
, loff_t
*ppos
)
136 struct hci_dev
*hdev
= file
->private_data
;
140 err
= kstrtobool_from_user(user_buf
, count
, &enable
);
144 /* When the diagnostic flags are not persistent and the transport
145 * is not active or in user channel operation, then there is no need
146 * for the vendor callback. Instead just store the desired value and
147 * the setting will be programmed when the controller gets powered on.
149 if (test_bit(HCI_QUIRK_NON_PERSISTENT_DIAG
, &hdev
->quirks
) &&
150 (!test_bit(HCI_RUNNING
, &hdev
->flags
) ||
151 hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
)))
154 hci_req_sync_lock(hdev
);
155 err
= hdev
->set_diag(hdev
, enable
);
156 hci_req_sync_unlock(hdev
);
163 hci_dev_set_flag(hdev
, HCI_VENDOR_DIAG
);
165 hci_dev_clear_flag(hdev
, HCI_VENDOR_DIAG
);
170 static const struct file_operations vendor_diag_fops
= {
172 .read
= vendor_diag_read
,
173 .write
= vendor_diag_write
,
174 .llseek
= default_llseek
,
177 static void hci_debugfs_create_basic(struct hci_dev
*hdev
)
179 debugfs_create_file("dut_mode", 0644, hdev
->debugfs
, hdev
,
183 debugfs_create_file("vendor_diag", 0644, hdev
->debugfs
, hdev
,
187 static int hci_reset_req(struct hci_request
*req
, unsigned long opt
)
189 BT_DBG("%s %ld", req
->hdev
->name
, opt
);
192 set_bit(HCI_RESET
, &req
->hdev
->flags
);
193 hci_req_add(req
, HCI_OP_RESET
, 0, NULL
);
197 static void bredr_init(struct hci_request
*req
)
199 req
->hdev
->flow_ctl_mode
= HCI_FLOW_CTL_MODE_PACKET_BASED
;
201 /* Read Local Supported Features */
202 hci_req_add(req
, HCI_OP_READ_LOCAL_FEATURES
, 0, NULL
);
204 /* Read Local Version */
205 hci_req_add(req
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
);
207 /* Read BD Address */
208 hci_req_add(req
, HCI_OP_READ_BD_ADDR
, 0, NULL
);
211 static void amp_init1(struct hci_request
*req
)
213 req
->hdev
->flow_ctl_mode
= HCI_FLOW_CTL_MODE_BLOCK_BASED
;
215 /* Read Local Version */
216 hci_req_add(req
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
);
218 /* Read Local Supported Commands */
219 hci_req_add(req
, HCI_OP_READ_LOCAL_COMMANDS
, 0, NULL
);
221 /* Read Local AMP Info */
222 hci_req_add(req
, HCI_OP_READ_LOCAL_AMP_INFO
, 0, NULL
);
224 /* Read Data Blk size */
225 hci_req_add(req
, HCI_OP_READ_DATA_BLOCK_SIZE
, 0, NULL
);
227 /* Read Flow Control Mode */
228 hci_req_add(req
, HCI_OP_READ_FLOW_CONTROL_MODE
, 0, NULL
);
230 /* Read Location Data */
231 hci_req_add(req
, HCI_OP_READ_LOCATION_DATA
, 0, NULL
);
234 static int amp_init2(struct hci_request
*req
)
236 /* Read Local Supported Features. Not all AMP controllers
237 * support this so it's placed conditionally in the second
240 if (req
->hdev
->commands
[14] & 0x20)
241 hci_req_add(req
, HCI_OP_READ_LOCAL_FEATURES
, 0, NULL
);
246 static int hci_init1_req(struct hci_request
*req
, unsigned long opt
)
248 struct hci_dev
*hdev
= req
->hdev
;
250 BT_DBG("%s %ld", hdev
->name
, opt
);
253 if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
))
254 hci_reset_req(req
, 0);
256 switch (hdev
->dev_type
) {
264 bt_dev_err(hdev
, "Unknown device type %d", hdev
->dev_type
);
271 static void bredr_setup(struct hci_request
*req
)
276 /* Read Buffer Size (ACL mtu, max pkt, etc.) */
277 hci_req_add(req
, HCI_OP_READ_BUFFER_SIZE
, 0, NULL
);
279 /* Read Class of Device */
280 hci_req_add(req
, HCI_OP_READ_CLASS_OF_DEV
, 0, NULL
);
282 /* Read Local Name */
283 hci_req_add(req
, HCI_OP_READ_LOCAL_NAME
, 0, NULL
);
285 /* Read Voice Setting */
286 hci_req_add(req
, HCI_OP_READ_VOICE_SETTING
, 0, NULL
);
288 /* Read Number of Supported IAC */
289 hci_req_add(req
, HCI_OP_READ_NUM_SUPPORTED_IAC
, 0, NULL
);
291 /* Read Current IAC LAP */
292 hci_req_add(req
, HCI_OP_READ_CURRENT_IAC_LAP
, 0, NULL
);
294 /* Clear Event Filters */
295 flt_type
= HCI_FLT_CLEAR_ALL
;
296 hci_req_add(req
, HCI_OP_SET_EVENT_FLT
, 1, &flt_type
);
298 /* Connection accept timeout ~20 secs */
299 param
= cpu_to_le16(0x7d00);
300 hci_req_add(req
, HCI_OP_WRITE_CA_TIMEOUT
, 2, ¶m
);
303 static void le_setup(struct hci_request
*req
)
305 struct hci_dev
*hdev
= req
->hdev
;
307 /* Read LE Buffer Size */
308 hci_req_add(req
, HCI_OP_LE_READ_BUFFER_SIZE
, 0, NULL
);
310 /* Read LE Local Supported Features */
311 hci_req_add(req
, HCI_OP_LE_READ_LOCAL_FEATURES
, 0, NULL
);
313 /* Read LE Supported States */
314 hci_req_add(req
, HCI_OP_LE_READ_SUPPORTED_STATES
, 0, NULL
);
316 /* LE-only controllers have LE implicitly enabled */
317 if (!lmp_bredr_capable(hdev
))
318 hci_dev_set_flag(hdev
, HCI_LE_ENABLED
);
321 static void hci_setup_event_mask(struct hci_request
*req
)
323 struct hci_dev
*hdev
= req
->hdev
;
325 /* The second byte is 0xff instead of 0x9f (two reserved bits
326 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
329 u8 events
[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
331 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
332 * any event mask for pre 1.2 devices.
334 if (hdev
->hci_ver
< BLUETOOTH_VER_1_2
)
337 if (lmp_bredr_capable(hdev
)) {
338 events
[4] |= 0x01; /* Flow Specification Complete */
340 /* Use a different default for LE-only devices */
341 memset(events
, 0, sizeof(events
));
342 events
[1] |= 0x20; /* Command Complete */
343 events
[1] |= 0x40; /* Command Status */
344 events
[1] |= 0x80; /* Hardware Error */
346 /* If the controller supports the Disconnect command, enable
347 * the corresponding event. In addition enable packet flow
348 * control related events.
350 if (hdev
->commands
[0] & 0x20) {
351 events
[0] |= 0x10; /* Disconnection Complete */
352 events
[2] |= 0x04; /* Number of Completed Packets */
353 events
[3] |= 0x02; /* Data Buffer Overflow */
356 /* If the controller supports the Read Remote Version
357 * Information command, enable the corresponding event.
359 if (hdev
->commands
[2] & 0x80)
360 events
[1] |= 0x08; /* Read Remote Version Information
364 if (hdev
->le_features
[0] & HCI_LE_ENCRYPTION
) {
365 events
[0] |= 0x80; /* Encryption Change */
366 events
[5] |= 0x80; /* Encryption Key Refresh Complete */
370 if (lmp_inq_rssi_capable(hdev
) ||
371 test_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE
, &hdev
->quirks
))
372 events
[4] |= 0x02; /* Inquiry Result with RSSI */
374 if (lmp_ext_feat_capable(hdev
))
375 events
[4] |= 0x04; /* Read Remote Extended Features Complete */
377 if (lmp_esco_capable(hdev
)) {
378 events
[5] |= 0x08; /* Synchronous Connection Complete */
379 events
[5] |= 0x10; /* Synchronous Connection Changed */
382 if (lmp_sniffsubr_capable(hdev
))
383 events
[5] |= 0x20; /* Sniff Subrating */
385 if (lmp_pause_enc_capable(hdev
))
386 events
[5] |= 0x80; /* Encryption Key Refresh Complete */
388 if (lmp_ext_inq_capable(hdev
))
389 events
[5] |= 0x40; /* Extended Inquiry Result */
391 if (lmp_no_flush_capable(hdev
))
392 events
[7] |= 0x01; /* Enhanced Flush Complete */
394 if (lmp_lsto_capable(hdev
))
395 events
[6] |= 0x80; /* Link Supervision Timeout Changed */
397 if (lmp_ssp_capable(hdev
)) {
398 events
[6] |= 0x01; /* IO Capability Request */
399 events
[6] |= 0x02; /* IO Capability Response */
400 events
[6] |= 0x04; /* User Confirmation Request */
401 events
[6] |= 0x08; /* User Passkey Request */
402 events
[6] |= 0x10; /* Remote OOB Data Request */
403 events
[6] |= 0x20; /* Simple Pairing Complete */
404 events
[7] |= 0x04; /* User Passkey Notification */
405 events
[7] |= 0x08; /* Keypress Notification */
406 events
[7] |= 0x10; /* Remote Host Supported
407 * Features Notification
411 if (lmp_le_capable(hdev
))
412 events
[7] |= 0x20; /* LE Meta-Event */
414 hci_req_add(req
, HCI_OP_SET_EVENT_MASK
, sizeof(events
), events
);
417 static int hci_init2_req(struct hci_request
*req
, unsigned long opt
)
419 struct hci_dev
*hdev
= req
->hdev
;
421 if (hdev
->dev_type
== HCI_AMP
)
422 return amp_init2(req
);
424 if (lmp_bredr_capable(hdev
))
427 hci_dev_clear_flag(hdev
, HCI_BREDR_ENABLED
);
429 if (lmp_le_capable(hdev
))
432 /* All Bluetooth 1.2 and later controllers should support the
433 * HCI command for reading the local supported commands.
435 * Unfortunately some controllers indicate Bluetooth 1.2 support,
436 * but do not have support for this command. If that is the case,
437 * the driver can quirk the behavior and skip reading the local
438 * supported commands.
440 if (hdev
->hci_ver
> BLUETOOTH_VER_1_1
&&
441 !test_bit(HCI_QUIRK_BROKEN_LOCAL_COMMANDS
, &hdev
->quirks
))
442 hci_req_add(req
, HCI_OP_READ_LOCAL_COMMANDS
, 0, NULL
);
444 if (lmp_ssp_capable(hdev
)) {
445 /* When SSP is available, then the host features page
446 * should also be available as well. However some
447 * controllers list the max_page as 0 as long as SSP
448 * has not been enabled. To achieve proper debugging
449 * output, force the minimum max_page to 1 at least.
451 hdev
->max_page
= 0x01;
453 if (hci_dev_test_flag(hdev
, HCI_SSP_ENABLED
)) {
456 hci_req_add(req
, HCI_OP_WRITE_SSP_MODE
,
457 sizeof(mode
), &mode
);
459 struct hci_cp_write_eir cp
;
461 memset(hdev
->eir
, 0, sizeof(hdev
->eir
));
462 memset(&cp
, 0, sizeof(cp
));
464 hci_req_add(req
, HCI_OP_WRITE_EIR
, sizeof(cp
), &cp
);
468 if (lmp_inq_rssi_capable(hdev
) ||
469 test_bit(HCI_QUIRK_FIXUP_INQUIRY_MODE
, &hdev
->quirks
)) {
472 /* If Extended Inquiry Result events are supported, then
473 * they are clearly preferred over Inquiry Result with RSSI
476 mode
= lmp_ext_inq_capable(hdev
) ? 0x02 : 0x01;
478 hci_req_add(req
, HCI_OP_WRITE_INQUIRY_MODE
, 1, &mode
);
481 if (lmp_inq_tx_pwr_capable(hdev
))
482 hci_req_add(req
, HCI_OP_READ_INQ_RSP_TX_POWER
, 0, NULL
);
484 if (lmp_ext_feat_capable(hdev
)) {
485 struct hci_cp_read_local_ext_features cp
;
488 hci_req_add(req
, HCI_OP_READ_LOCAL_EXT_FEATURES
,
492 if (hci_dev_test_flag(hdev
, HCI_LINK_SECURITY
)) {
494 hci_req_add(req
, HCI_OP_WRITE_AUTH_ENABLE
, sizeof(enable
),
501 static void hci_setup_link_policy(struct hci_request
*req
)
503 struct hci_dev
*hdev
= req
->hdev
;
504 struct hci_cp_write_def_link_policy cp
;
507 if (lmp_rswitch_capable(hdev
))
508 link_policy
|= HCI_LP_RSWITCH
;
509 if (lmp_hold_capable(hdev
))
510 link_policy
|= HCI_LP_HOLD
;
511 if (lmp_sniff_capable(hdev
))
512 link_policy
|= HCI_LP_SNIFF
;
513 if (lmp_park_capable(hdev
))
514 link_policy
|= HCI_LP_PARK
;
516 cp
.policy
= cpu_to_le16(link_policy
);
517 hci_req_add(req
, HCI_OP_WRITE_DEF_LINK_POLICY
, sizeof(cp
), &cp
);
520 static void hci_set_le_support(struct hci_request
*req
)
522 struct hci_dev
*hdev
= req
->hdev
;
523 struct hci_cp_write_le_host_supported cp
;
525 /* LE-only devices do not support explicit enablement */
526 if (!lmp_bredr_capable(hdev
))
529 memset(&cp
, 0, sizeof(cp
));
531 if (hci_dev_test_flag(hdev
, HCI_LE_ENABLED
)) {
536 if (cp
.le
!= lmp_host_le_capable(hdev
))
537 hci_req_add(req
, HCI_OP_WRITE_LE_HOST_SUPPORTED
, sizeof(cp
),
541 static void hci_set_event_mask_page_2(struct hci_request
*req
)
543 struct hci_dev
*hdev
= req
->hdev
;
544 u8 events
[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
545 bool changed
= false;
547 /* If Connectionless Slave Broadcast master role is supported
548 * enable all necessary events for it.
550 if (lmp_csb_master_capable(hdev
)) {
551 events
[1] |= 0x40; /* Triggered Clock Capture */
552 events
[1] |= 0x80; /* Synchronization Train Complete */
553 events
[2] |= 0x10; /* Slave Page Response Timeout */
554 events
[2] |= 0x20; /* CSB Channel Map Change */
558 /* If Connectionless Slave Broadcast slave role is supported
559 * enable all necessary events for it.
561 if (lmp_csb_slave_capable(hdev
)) {
562 events
[2] |= 0x01; /* Synchronization Train Received */
563 events
[2] |= 0x02; /* CSB Receive */
564 events
[2] |= 0x04; /* CSB Timeout */
565 events
[2] |= 0x08; /* Truncated Page Complete */
569 /* Enable Authenticated Payload Timeout Expired event if supported */
570 if (lmp_ping_capable(hdev
) || hdev
->le_features
[0] & HCI_LE_PING
) {
575 /* Some Broadcom based controllers indicate support for Set Event
576 * Mask Page 2 command, but then actually do not support it. Since
577 * the default value is all bits set to zero, the command is only
578 * required if the event mask has to be changed. In case no change
579 * to the event mask is needed, skip this command.
582 hci_req_add(req
, HCI_OP_SET_EVENT_MASK_PAGE_2
,
583 sizeof(events
), events
);
586 static int hci_init3_req(struct hci_request
*req
, unsigned long opt
)
588 struct hci_dev
*hdev
= req
->hdev
;
591 hci_setup_event_mask(req
);
593 if (hdev
->commands
[6] & 0x20 &&
594 !test_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY
, &hdev
->quirks
)) {
595 struct hci_cp_read_stored_link_key cp
;
597 bacpy(&cp
.bdaddr
, BDADDR_ANY
);
599 hci_req_add(req
, HCI_OP_READ_STORED_LINK_KEY
, sizeof(cp
), &cp
);
602 if (hdev
->commands
[5] & 0x10)
603 hci_setup_link_policy(req
);
605 if (hdev
->commands
[8] & 0x01)
606 hci_req_add(req
, HCI_OP_READ_PAGE_SCAN_ACTIVITY
, 0, NULL
);
608 if (hdev
->commands
[18] & 0x04 &&
609 !test_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING
, &hdev
->quirks
))
610 hci_req_add(req
, HCI_OP_READ_DEF_ERR_DATA_REPORTING
, 0, NULL
);
612 /* Some older Broadcom based Bluetooth 1.2 controllers do not
613 * support the Read Page Scan Type command. Check support for
614 * this command in the bit mask of supported commands.
616 if (hdev
->commands
[13] & 0x01)
617 hci_req_add(req
, HCI_OP_READ_PAGE_SCAN_TYPE
, 0, NULL
);
619 if (lmp_le_capable(hdev
)) {
622 memset(events
, 0, sizeof(events
));
624 if (hdev
->le_features
[0] & HCI_LE_ENCRYPTION
)
625 events
[0] |= 0x10; /* LE Long Term Key Request */
627 /* If controller supports the Connection Parameters Request
628 * Link Layer Procedure, enable the corresponding event.
630 if (hdev
->le_features
[0] & HCI_LE_CONN_PARAM_REQ_PROC
)
631 events
[0] |= 0x20; /* LE Remote Connection
635 /* If the controller supports the Data Length Extension
636 * feature, enable the corresponding event.
638 if (hdev
->le_features
[0] & HCI_LE_DATA_LEN_EXT
)
639 events
[0] |= 0x40; /* LE Data Length Change */
641 /* If the controller supports LL Privacy feature, enable
642 * the corresponding event.
644 if (hdev
->le_features
[0] & HCI_LE_LL_PRIVACY
)
645 events
[1] |= 0x02; /* LE Enhanced Connection
649 /* If the controller supports Extended Scanner Filter
650 * Policies, enable the correspondig event.
652 if (hdev
->le_features
[0] & HCI_LE_EXT_SCAN_POLICY
)
653 events
[1] |= 0x04; /* LE Direct Advertising
657 /* If the controller supports Channel Selection Algorithm #2
658 * feature, enable the corresponding event.
660 if (hdev
->le_features
[1] & HCI_LE_CHAN_SEL_ALG2
)
661 events
[2] |= 0x08; /* LE Channel Selection
665 /* If the controller supports the LE Set Scan Enable command,
666 * enable the corresponding advertising report event.
668 if (hdev
->commands
[26] & 0x08)
669 events
[0] |= 0x02; /* LE Advertising Report */
671 /* If the controller supports the LE Create Connection
672 * command, enable the corresponding event.
674 if (hdev
->commands
[26] & 0x10)
675 events
[0] |= 0x01; /* LE Connection Complete */
677 /* If the controller supports the LE Connection Update
678 * command, enable the corresponding event.
680 if (hdev
->commands
[27] & 0x04)
681 events
[0] |= 0x04; /* LE Connection Update
685 /* If the controller supports the LE Read Remote Used Features
686 * command, enable the corresponding event.
688 if (hdev
->commands
[27] & 0x20)
689 events
[0] |= 0x08; /* LE Read Remote Used
693 /* If the controller supports the LE Read Local P-256
694 * Public Key command, enable the corresponding event.
696 if (hdev
->commands
[34] & 0x02)
697 events
[0] |= 0x80; /* LE Read Local P-256
698 * Public Key Complete
701 /* If the controller supports the LE Generate DHKey
702 * command, enable the corresponding event.
704 if (hdev
->commands
[34] & 0x04)
705 events
[1] |= 0x01; /* LE Generate DHKey Complete */
707 /* If the controller supports the LE Set Default PHY or
708 * LE Set PHY commands, enable the corresponding event.
710 if (hdev
->commands
[35] & (0x20 | 0x40))
711 events
[1] |= 0x08; /* LE PHY Update Complete */
713 /* If the controller supports LE Set Extended Scan Parameters
714 * and LE Set Extended Scan Enable commands, enable the
715 * corresponding event.
717 if (use_ext_scan(hdev
))
718 events
[1] |= 0x10; /* LE Extended Advertising
722 /* If the controller supports the LE Extended Advertising
723 * command, enable the corresponding event.
725 if (ext_adv_capable(hdev
))
726 events
[2] |= 0x02; /* LE Advertising Set
730 hci_req_add(req
, HCI_OP_LE_SET_EVENT_MASK
, sizeof(events
),
733 /* Read LE Advertising Channel TX Power */
734 if ((hdev
->commands
[25] & 0x40) && !ext_adv_capable(hdev
)) {
735 /* HCI TS spec forbids mixing of legacy and extended
736 * advertising commands wherein READ_ADV_TX_POWER is
737 * also included. So do not call it if extended adv
738 * is supported otherwise controller will return
739 * COMMAND_DISALLOWED for extended commands.
741 hci_req_add(req
, HCI_OP_LE_READ_ADV_TX_POWER
, 0, NULL
);
744 if (hdev
->commands
[38] & 0x80) {
745 /* Read LE Min/Max Tx Power*/
746 hci_req_add(req
, HCI_OP_LE_READ_TRANSMIT_POWER
,
750 if (hdev
->commands
[26] & 0x40) {
751 /* Read LE White List Size */
752 hci_req_add(req
, HCI_OP_LE_READ_WHITE_LIST_SIZE
,
756 if (hdev
->commands
[26] & 0x80) {
757 /* Clear LE White List */
758 hci_req_add(req
, HCI_OP_LE_CLEAR_WHITE_LIST
, 0, NULL
);
761 if (hdev
->commands
[34] & 0x40) {
762 /* Read LE Resolving List Size */
763 hci_req_add(req
, HCI_OP_LE_READ_RESOLV_LIST_SIZE
,
767 if (hdev
->commands
[34] & 0x20) {
768 /* Clear LE Resolving List */
769 hci_req_add(req
, HCI_OP_LE_CLEAR_RESOLV_LIST
, 0, NULL
);
772 if (hdev
->commands
[35] & 0x04) {
773 __le16 rpa_timeout
= cpu_to_le16(hdev
->rpa_timeout
);
775 /* Set RPA timeout */
776 hci_req_add(req
, HCI_OP_LE_SET_RPA_TIMEOUT
, 2,
780 if (hdev
->le_features
[0] & HCI_LE_DATA_LEN_EXT
) {
781 /* Read LE Maximum Data Length */
782 hci_req_add(req
, HCI_OP_LE_READ_MAX_DATA_LEN
, 0, NULL
);
784 /* Read LE Suggested Default Data Length */
785 hci_req_add(req
, HCI_OP_LE_READ_DEF_DATA_LEN
, 0, NULL
);
788 if (ext_adv_capable(hdev
)) {
789 /* Read LE Number of Supported Advertising Sets */
790 hci_req_add(req
, HCI_OP_LE_READ_NUM_SUPPORTED_ADV_SETS
,
794 hci_set_le_support(req
);
797 /* Read features beyond page 1 if available */
798 for (p
= 2; p
< HCI_MAX_PAGES
&& p
<= hdev
->max_page
; p
++) {
799 struct hci_cp_read_local_ext_features cp
;
802 hci_req_add(req
, HCI_OP_READ_LOCAL_EXT_FEATURES
,
809 static int hci_init4_req(struct hci_request
*req
, unsigned long opt
)
811 struct hci_dev
*hdev
= req
->hdev
;
813 /* Some Broadcom based Bluetooth controllers do not support the
814 * Delete Stored Link Key command. They are clearly indicating its
815 * absence in the bit mask of supported commands.
817 * Check the supported commands and only if the command is marked
818 * as supported send it. If not supported assume that the controller
819 * does not have actual support for stored link keys which makes this
820 * command redundant anyway.
822 * Some controllers indicate that they support handling deleting
823 * stored link keys, but they don't. The quirk lets a driver
824 * just disable this command.
826 if (hdev
->commands
[6] & 0x80 &&
827 !test_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY
, &hdev
->quirks
)) {
828 struct hci_cp_delete_stored_link_key cp
;
830 bacpy(&cp
.bdaddr
, BDADDR_ANY
);
831 cp
.delete_all
= 0x01;
832 hci_req_add(req
, HCI_OP_DELETE_STORED_LINK_KEY
,
836 /* Set event mask page 2 if the HCI command for it is supported */
837 if (hdev
->commands
[22] & 0x04)
838 hci_set_event_mask_page_2(req
);
840 /* Read local codec list if the HCI command is supported */
841 if (hdev
->commands
[29] & 0x20)
842 hci_req_add(req
, HCI_OP_READ_LOCAL_CODECS
, 0, NULL
);
844 /* Read local pairing options if the HCI command is supported */
845 if (hdev
->commands
[41] & 0x08)
846 hci_req_add(req
, HCI_OP_READ_LOCAL_PAIRING_OPTS
, 0, NULL
);
848 /* Get MWS transport configuration if the HCI command is supported */
849 if (hdev
->commands
[30] & 0x08)
850 hci_req_add(req
, HCI_OP_GET_MWS_TRANSPORT_CONFIG
, 0, NULL
);
852 /* Check for Synchronization Train support */
853 if (lmp_sync_train_capable(hdev
))
854 hci_req_add(req
, HCI_OP_READ_SYNC_TRAIN_PARAMS
, 0, NULL
);
856 /* Enable Secure Connections if supported and configured */
857 if (hci_dev_test_flag(hdev
, HCI_SSP_ENABLED
) &&
858 bredr_sc_enabled(hdev
)) {
861 hci_req_add(req
, HCI_OP_WRITE_SC_SUPPORT
,
862 sizeof(support
), &support
);
865 /* Set erroneous data reporting if supported to the wideband speech
868 if (hdev
->commands
[18] & 0x08 &&
869 !test_bit(HCI_QUIRK_BROKEN_ERR_DATA_REPORTING
, &hdev
->quirks
)) {
870 bool enabled
= hci_dev_test_flag(hdev
,
871 HCI_WIDEBAND_SPEECH_ENABLED
);
874 (hdev
->err_data_reporting
== ERR_DATA_REPORTING_ENABLED
)) {
875 struct hci_cp_write_def_err_data_reporting cp
;
877 cp
.err_data_reporting
= enabled
?
878 ERR_DATA_REPORTING_ENABLED
:
879 ERR_DATA_REPORTING_DISABLED
;
881 hci_req_add(req
, HCI_OP_WRITE_DEF_ERR_DATA_REPORTING
,
886 /* Set Suggested Default Data Length to maximum if supported */
887 if (hdev
->le_features
[0] & HCI_LE_DATA_LEN_EXT
) {
888 struct hci_cp_le_write_def_data_len cp
;
890 cp
.tx_len
= cpu_to_le16(hdev
->le_max_tx_len
);
891 cp
.tx_time
= cpu_to_le16(hdev
->le_max_tx_time
);
892 hci_req_add(req
, HCI_OP_LE_WRITE_DEF_DATA_LEN
, sizeof(cp
), &cp
);
895 /* Set Default PHY parameters if command is supported */
896 if (hdev
->commands
[35] & 0x20) {
897 struct hci_cp_le_set_default_phy cp
;
900 cp
.tx_phys
= hdev
->le_tx_def_phys
;
901 cp
.rx_phys
= hdev
->le_rx_def_phys
;
903 hci_req_add(req
, HCI_OP_LE_SET_DEFAULT_PHY
, sizeof(cp
), &cp
);
909 static int __hci_init(struct hci_dev
*hdev
)
913 err
= __hci_req_sync(hdev
, hci_init1_req
, 0, HCI_INIT_TIMEOUT
, NULL
);
917 if (hci_dev_test_flag(hdev
, HCI_SETUP
))
918 hci_debugfs_create_basic(hdev
);
920 err
= __hci_req_sync(hdev
, hci_init2_req
, 0, HCI_INIT_TIMEOUT
, NULL
);
924 /* HCI_PRIMARY covers both single-mode LE, BR/EDR and dual-mode
925 * BR/EDR/LE type controllers. AMP controllers only need the
926 * first two stages of init.
928 if (hdev
->dev_type
!= HCI_PRIMARY
)
931 err
= __hci_req_sync(hdev
, hci_init3_req
, 0, HCI_INIT_TIMEOUT
, NULL
);
935 err
= __hci_req_sync(hdev
, hci_init4_req
, 0, HCI_INIT_TIMEOUT
, NULL
);
939 /* This function is only called when the controller is actually in
940 * configured state. When the controller is marked as unconfigured,
941 * this initialization procedure is not run.
943 * It means that it is possible that a controller runs through its
944 * setup phase and then discovers missing settings. If that is the
945 * case, then this function will not be called. It then will only
946 * be called during the config phase.
948 * So only when in setup phase or config phase, create the debugfs
949 * entries and register the SMP channels.
951 if (!hci_dev_test_flag(hdev
, HCI_SETUP
) &&
952 !hci_dev_test_flag(hdev
, HCI_CONFIG
))
955 hci_debugfs_create_common(hdev
);
957 if (lmp_bredr_capable(hdev
))
958 hci_debugfs_create_bredr(hdev
);
960 if (lmp_le_capable(hdev
))
961 hci_debugfs_create_le(hdev
);
966 static int hci_init0_req(struct hci_request
*req
, unsigned long opt
)
968 struct hci_dev
*hdev
= req
->hdev
;
970 BT_DBG("%s %ld", hdev
->name
, opt
);
973 if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
))
974 hci_reset_req(req
, 0);
976 /* Read Local Version */
977 hci_req_add(req
, HCI_OP_READ_LOCAL_VERSION
, 0, NULL
);
979 /* Read BD Address */
980 if (hdev
->set_bdaddr
)
981 hci_req_add(req
, HCI_OP_READ_BD_ADDR
, 0, NULL
);
986 static int __hci_unconf_init(struct hci_dev
*hdev
)
990 if (test_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
))
993 err
= __hci_req_sync(hdev
, hci_init0_req
, 0, HCI_INIT_TIMEOUT
, NULL
);
997 if (hci_dev_test_flag(hdev
, HCI_SETUP
))
998 hci_debugfs_create_basic(hdev
);
1003 static int hci_scan_req(struct hci_request
*req
, unsigned long opt
)
1007 BT_DBG("%s %x", req
->hdev
->name
, scan
);
1009 /* Inquiry and Page scans */
1010 hci_req_add(req
, HCI_OP_WRITE_SCAN_ENABLE
, 1, &scan
);
1014 static int hci_auth_req(struct hci_request
*req
, unsigned long opt
)
1018 BT_DBG("%s %x", req
->hdev
->name
, auth
);
1020 /* Authentication */
1021 hci_req_add(req
, HCI_OP_WRITE_AUTH_ENABLE
, 1, &auth
);
1025 static int hci_encrypt_req(struct hci_request
*req
, unsigned long opt
)
1029 BT_DBG("%s %x", req
->hdev
->name
, encrypt
);
1032 hci_req_add(req
, HCI_OP_WRITE_ENCRYPT_MODE
, 1, &encrypt
);
1036 static int hci_linkpol_req(struct hci_request
*req
, unsigned long opt
)
1038 __le16 policy
= cpu_to_le16(opt
);
1040 BT_DBG("%s %x", req
->hdev
->name
, policy
);
1042 /* Default link policy */
1043 hci_req_add(req
, HCI_OP_WRITE_DEF_LINK_POLICY
, 2, &policy
);
1047 /* Get HCI device by index.
1048 * Device is held on return. */
1049 struct hci_dev
*hci_dev_get(int index
)
1051 struct hci_dev
*hdev
= NULL
, *d
;
1053 BT_DBG("%d", index
);
1058 read_lock(&hci_dev_list_lock
);
1059 list_for_each_entry(d
, &hci_dev_list
, list
) {
1060 if (d
->id
== index
) {
1061 hdev
= hci_dev_hold(d
);
1065 read_unlock(&hci_dev_list_lock
);
1069 /* ---- Inquiry support ---- */
1071 bool hci_discovery_active(struct hci_dev
*hdev
)
1073 struct discovery_state
*discov
= &hdev
->discovery
;
1075 switch (discov
->state
) {
1076 case DISCOVERY_FINDING
:
1077 case DISCOVERY_RESOLVING
:
1085 void hci_discovery_set_state(struct hci_dev
*hdev
, int state
)
1087 int old_state
= hdev
->discovery
.state
;
1089 BT_DBG("%s state %u -> %u", hdev
->name
, hdev
->discovery
.state
, state
);
1091 if (old_state
== state
)
1094 hdev
->discovery
.state
= state
;
1097 case DISCOVERY_STOPPED
:
1098 hci_update_background_scan(hdev
);
1100 if (old_state
!= DISCOVERY_STARTING
)
1101 mgmt_discovering(hdev
, 0);
1103 case DISCOVERY_STARTING
:
1105 case DISCOVERY_FINDING
:
1106 mgmt_discovering(hdev
, 1);
1108 case DISCOVERY_RESOLVING
:
1110 case DISCOVERY_STOPPING
:
1115 void hci_inquiry_cache_flush(struct hci_dev
*hdev
)
1117 struct discovery_state
*cache
= &hdev
->discovery
;
1118 struct inquiry_entry
*p
, *n
;
1120 list_for_each_entry_safe(p
, n
, &cache
->all
, all
) {
1125 INIT_LIST_HEAD(&cache
->unknown
);
1126 INIT_LIST_HEAD(&cache
->resolve
);
1129 struct inquiry_entry
*hci_inquiry_cache_lookup(struct hci_dev
*hdev
,
1132 struct discovery_state
*cache
= &hdev
->discovery
;
1133 struct inquiry_entry
*e
;
1135 BT_DBG("cache %p, %pMR", cache
, bdaddr
);
1137 list_for_each_entry(e
, &cache
->all
, all
) {
1138 if (!bacmp(&e
->data
.bdaddr
, bdaddr
))
1145 struct inquiry_entry
*hci_inquiry_cache_lookup_unknown(struct hci_dev
*hdev
,
1148 struct discovery_state
*cache
= &hdev
->discovery
;
1149 struct inquiry_entry
*e
;
1151 BT_DBG("cache %p, %pMR", cache
, bdaddr
);
1153 list_for_each_entry(e
, &cache
->unknown
, list
) {
1154 if (!bacmp(&e
->data
.bdaddr
, bdaddr
))
1161 struct inquiry_entry
*hci_inquiry_cache_lookup_resolve(struct hci_dev
*hdev
,
1165 struct discovery_state
*cache
= &hdev
->discovery
;
1166 struct inquiry_entry
*e
;
1168 BT_DBG("cache %p bdaddr %pMR state %d", cache
, bdaddr
, state
);
1170 list_for_each_entry(e
, &cache
->resolve
, list
) {
1171 if (!bacmp(bdaddr
, BDADDR_ANY
) && e
->name_state
== state
)
1173 if (!bacmp(&e
->data
.bdaddr
, bdaddr
))
1180 void hci_inquiry_cache_update_resolve(struct hci_dev
*hdev
,
1181 struct inquiry_entry
*ie
)
1183 struct discovery_state
*cache
= &hdev
->discovery
;
1184 struct list_head
*pos
= &cache
->resolve
;
1185 struct inquiry_entry
*p
;
1187 list_del(&ie
->list
);
1189 list_for_each_entry(p
, &cache
->resolve
, list
) {
1190 if (p
->name_state
!= NAME_PENDING
&&
1191 abs(p
->data
.rssi
) >= abs(ie
->data
.rssi
))
1196 list_add(&ie
->list
, pos
);
1199 u32
hci_inquiry_cache_update(struct hci_dev
*hdev
, struct inquiry_data
*data
,
1202 struct discovery_state
*cache
= &hdev
->discovery
;
1203 struct inquiry_entry
*ie
;
1206 BT_DBG("cache %p, %pMR", cache
, &data
->bdaddr
);
1208 hci_remove_remote_oob_data(hdev
, &data
->bdaddr
, BDADDR_BREDR
);
1210 if (!data
->ssp_mode
)
1211 flags
|= MGMT_DEV_FOUND_LEGACY_PAIRING
;
1213 ie
= hci_inquiry_cache_lookup(hdev
, &data
->bdaddr
);
1215 if (!ie
->data
.ssp_mode
)
1216 flags
|= MGMT_DEV_FOUND_LEGACY_PAIRING
;
1218 if (ie
->name_state
== NAME_NEEDED
&&
1219 data
->rssi
!= ie
->data
.rssi
) {
1220 ie
->data
.rssi
= data
->rssi
;
1221 hci_inquiry_cache_update_resolve(hdev
, ie
);
1227 /* Entry not in the cache. Add new one. */
1228 ie
= kzalloc(sizeof(*ie
), GFP_KERNEL
);
1230 flags
|= MGMT_DEV_FOUND_CONFIRM_NAME
;
1234 list_add(&ie
->all
, &cache
->all
);
1237 ie
->name_state
= NAME_KNOWN
;
1239 ie
->name_state
= NAME_NOT_KNOWN
;
1240 list_add(&ie
->list
, &cache
->unknown
);
1244 if (name_known
&& ie
->name_state
!= NAME_KNOWN
&&
1245 ie
->name_state
!= NAME_PENDING
) {
1246 ie
->name_state
= NAME_KNOWN
;
1247 list_del(&ie
->list
);
1250 memcpy(&ie
->data
, data
, sizeof(*data
));
1251 ie
->timestamp
= jiffies
;
1252 cache
->timestamp
= jiffies
;
1254 if (ie
->name_state
== NAME_NOT_KNOWN
)
1255 flags
|= MGMT_DEV_FOUND_CONFIRM_NAME
;
1261 static int inquiry_cache_dump(struct hci_dev
*hdev
, int num
, __u8
*buf
)
1263 struct discovery_state
*cache
= &hdev
->discovery
;
1264 struct inquiry_info
*info
= (struct inquiry_info
*) buf
;
1265 struct inquiry_entry
*e
;
1268 list_for_each_entry(e
, &cache
->all
, all
) {
1269 struct inquiry_data
*data
= &e
->data
;
1274 bacpy(&info
->bdaddr
, &data
->bdaddr
);
1275 info
->pscan_rep_mode
= data
->pscan_rep_mode
;
1276 info
->pscan_period_mode
= data
->pscan_period_mode
;
1277 info
->pscan_mode
= data
->pscan_mode
;
1278 memcpy(info
->dev_class
, data
->dev_class
, 3);
1279 info
->clock_offset
= data
->clock_offset
;
1285 BT_DBG("cache %p, copied %d", cache
, copied
);
1289 static int hci_inq_req(struct hci_request
*req
, unsigned long opt
)
1291 struct hci_inquiry_req
*ir
= (struct hci_inquiry_req
*) opt
;
1292 struct hci_dev
*hdev
= req
->hdev
;
1293 struct hci_cp_inquiry cp
;
1295 BT_DBG("%s", hdev
->name
);
1297 if (test_bit(HCI_INQUIRY
, &hdev
->flags
))
1301 memcpy(&cp
.lap
, &ir
->lap
, 3);
1302 cp
.length
= ir
->length
;
1303 cp
.num_rsp
= ir
->num_rsp
;
1304 hci_req_add(req
, HCI_OP_INQUIRY
, sizeof(cp
), &cp
);
1309 int hci_inquiry(void __user
*arg
)
1311 __u8 __user
*ptr
= arg
;
1312 struct hci_inquiry_req ir
;
1313 struct hci_dev
*hdev
;
1314 int err
= 0, do_inquiry
= 0, max_rsp
;
1318 if (copy_from_user(&ir
, ptr
, sizeof(ir
)))
1321 hdev
= hci_dev_get(ir
.dev_id
);
1325 if (hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
)) {
1330 if (hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
)) {
1335 if (hdev
->dev_type
!= HCI_PRIMARY
) {
1340 if (!hci_dev_test_flag(hdev
, HCI_BREDR_ENABLED
)) {
1346 if (inquiry_cache_age(hdev
) > INQUIRY_CACHE_AGE_MAX
||
1347 inquiry_cache_empty(hdev
) || ir
.flags
& IREQ_CACHE_FLUSH
) {
1348 hci_inquiry_cache_flush(hdev
);
1351 hci_dev_unlock(hdev
);
1353 timeo
= ir
.length
* msecs_to_jiffies(2000);
1356 err
= hci_req_sync(hdev
, hci_inq_req
, (unsigned long) &ir
,
1361 /* Wait until Inquiry procedure finishes (HCI_INQUIRY flag is
1362 * cleared). If it is interrupted by a signal, return -EINTR.
1364 if (wait_on_bit(&hdev
->flags
, HCI_INQUIRY
,
1365 TASK_INTERRUPTIBLE
))
1369 /* for unlimited number of responses we will use buffer with
1372 max_rsp
= (ir
.num_rsp
== 0) ? 255 : ir
.num_rsp
;
1374 /* cache_dump can't sleep. Therefore we allocate temp buffer and then
1375 * copy it to the user space.
1377 buf
= kmalloc_array(max_rsp
, sizeof(struct inquiry_info
), GFP_KERNEL
);
1384 ir
.num_rsp
= inquiry_cache_dump(hdev
, max_rsp
, buf
);
1385 hci_dev_unlock(hdev
);
1387 BT_DBG("num_rsp %d", ir
.num_rsp
);
1389 if (!copy_to_user(ptr
, &ir
, sizeof(ir
))) {
1391 if (copy_to_user(ptr
, buf
, sizeof(struct inquiry_info
) *
1405 * hci_dev_get_bd_addr_from_property - Get the Bluetooth Device Address
1406 * (BD_ADDR) for a HCI device from
1407 * a firmware node property.
1408 * @hdev: The HCI device
1410 * Search the firmware node for 'local-bd-address'.
1412 * All-zero BD addresses are rejected, because those could be properties
1413 * that exist in the firmware tables, but were not updated by the firmware. For
1414 * example, the DTS could define 'local-bd-address', with zero BD addresses.
1416 static void hci_dev_get_bd_addr_from_property(struct hci_dev
*hdev
)
1418 struct fwnode_handle
*fwnode
= dev_fwnode(hdev
->dev
.parent
);
1422 ret
= fwnode_property_read_u8_array(fwnode
, "local-bd-address",
1423 (u8
*)&ba
, sizeof(ba
));
1424 if (ret
< 0 || !bacmp(&ba
, BDADDR_ANY
))
1427 bacpy(&hdev
->public_addr
, &ba
);
1430 static int hci_dev_do_open(struct hci_dev
*hdev
)
1434 BT_DBG("%s %p", hdev
->name
, hdev
);
1436 hci_req_sync_lock(hdev
);
1438 if (hci_dev_test_flag(hdev
, HCI_UNREGISTER
)) {
1443 if (!hci_dev_test_flag(hdev
, HCI_SETUP
) &&
1444 !hci_dev_test_flag(hdev
, HCI_CONFIG
)) {
1445 /* Check for rfkill but allow the HCI setup stage to
1446 * proceed (which in itself doesn't cause any RF activity).
1448 if (hci_dev_test_flag(hdev
, HCI_RFKILLED
)) {
1453 /* Check for valid public address or a configured static
1454 * random adddress, but let the HCI setup proceed to
1455 * be able to determine if there is a public address
1458 * In case of user channel usage, it is not important
1459 * if a public address or static random address is
1462 * This check is only valid for BR/EDR controllers
1463 * since AMP controllers do not have an address.
1465 if (!hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
) &&
1466 hdev
->dev_type
== HCI_PRIMARY
&&
1467 !bacmp(&hdev
->bdaddr
, BDADDR_ANY
) &&
1468 !bacmp(&hdev
->static_addr
, BDADDR_ANY
)) {
1469 ret
= -EADDRNOTAVAIL
;
1474 if (test_bit(HCI_UP
, &hdev
->flags
)) {
1479 if (hdev
->open(hdev
)) {
1484 set_bit(HCI_RUNNING
, &hdev
->flags
);
1485 hci_sock_dev_event(hdev
, HCI_DEV_OPEN
);
1487 atomic_set(&hdev
->cmd_cnt
, 1);
1488 set_bit(HCI_INIT
, &hdev
->flags
);
1490 if (hci_dev_test_flag(hdev
, HCI_SETUP
) ||
1491 test_bit(HCI_QUIRK_NON_PERSISTENT_SETUP
, &hdev
->quirks
)) {
1492 bool invalid_bdaddr
;
1494 hci_sock_dev_event(hdev
, HCI_DEV_SETUP
);
1497 ret
= hdev
->setup(hdev
);
1499 /* The transport driver can set the quirk to mark the
1500 * BD_ADDR invalid before creating the HCI device or in
1501 * its setup callback.
1503 invalid_bdaddr
= test_bit(HCI_QUIRK_INVALID_BDADDR
,
1509 if (test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY
, &hdev
->quirks
)) {
1510 if (!bacmp(&hdev
->public_addr
, BDADDR_ANY
))
1511 hci_dev_get_bd_addr_from_property(hdev
);
1513 if (bacmp(&hdev
->public_addr
, BDADDR_ANY
) &&
1515 ret
= hdev
->set_bdaddr(hdev
,
1516 &hdev
->public_addr
);
1518 /* If setting of the BD_ADDR from the device
1519 * property succeeds, then treat the address
1520 * as valid even if the invalid BD_ADDR
1521 * quirk indicates otherwise.
1524 invalid_bdaddr
= false;
1529 /* The transport driver can set these quirks before
1530 * creating the HCI device or in its setup callback.
1532 * For the invalid BD_ADDR quirk it is possible that
1533 * it becomes a valid address if the bootloader does
1534 * provide it (see above).
1536 * In case any of them is set, the controller has to
1537 * start up as unconfigured.
1539 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG
, &hdev
->quirks
) ||
1541 hci_dev_set_flag(hdev
, HCI_UNCONFIGURED
);
1543 /* For an unconfigured controller it is required to
1544 * read at least the version information provided by
1545 * the Read Local Version Information command.
1547 * If the set_bdaddr driver callback is provided, then
1548 * also the original Bluetooth public device address
1549 * will be read using the Read BD Address command.
1551 if (hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
))
1552 ret
= __hci_unconf_init(hdev
);
1555 if (hci_dev_test_flag(hdev
, HCI_CONFIG
)) {
1556 /* If public address change is configured, ensure that
1557 * the address gets programmed. If the driver does not
1558 * support changing the public address, fail the power
1561 if (bacmp(&hdev
->public_addr
, BDADDR_ANY
) &&
1563 ret
= hdev
->set_bdaddr(hdev
, &hdev
->public_addr
);
1565 ret
= -EADDRNOTAVAIL
;
1569 if (!hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
) &&
1570 !hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
)) {
1571 ret
= __hci_init(hdev
);
1572 if (!ret
&& hdev
->post_init
)
1573 ret
= hdev
->post_init(hdev
);
1577 /* If the HCI Reset command is clearing all diagnostic settings,
1578 * then they need to be reprogrammed after the init procedure
1581 if (test_bit(HCI_QUIRK_NON_PERSISTENT_DIAG
, &hdev
->quirks
) &&
1582 !hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
) &&
1583 hci_dev_test_flag(hdev
, HCI_VENDOR_DIAG
) && hdev
->set_diag
)
1584 ret
= hdev
->set_diag(hdev
, true);
1588 clear_bit(HCI_INIT
, &hdev
->flags
);
1592 hci_dev_set_flag(hdev
, HCI_RPA_EXPIRED
);
1593 hci_adv_instances_set_rpa_expired(hdev
, true);
1594 set_bit(HCI_UP
, &hdev
->flags
);
1595 hci_sock_dev_event(hdev
, HCI_DEV_UP
);
1596 hci_leds_update_powered(hdev
, true);
1597 if (!hci_dev_test_flag(hdev
, HCI_SETUP
) &&
1598 !hci_dev_test_flag(hdev
, HCI_CONFIG
) &&
1599 !hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
) &&
1600 !hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
) &&
1601 hci_dev_test_flag(hdev
, HCI_MGMT
) &&
1602 hdev
->dev_type
== HCI_PRIMARY
) {
1603 ret
= __hci_req_hci_power_on(hdev
);
1604 mgmt_power_on(hdev
, ret
);
1607 /* Init failed, cleanup */
1608 flush_work(&hdev
->tx_work
);
1609 flush_work(&hdev
->cmd_work
);
1610 flush_work(&hdev
->rx_work
);
1612 skb_queue_purge(&hdev
->cmd_q
);
1613 skb_queue_purge(&hdev
->rx_q
);
1618 if (hdev
->sent_cmd
) {
1619 kfree_skb(hdev
->sent_cmd
);
1620 hdev
->sent_cmd
= NULL
;
1623 clear_bit(HCI_RUNNING
, &hdev
->flags
);
1624 hci_sock_dev_event(hdev
, HCI_DEV_CLOSE
);
1627 hdev
->flags
&= BIT(HCI_RAW
);
1631 hci_req_sync_unlock(hdev
);
1635 /* ---- HCI ioctl helpers ---- */
1637 int hci_dev_open(__u16 dev
)
1639 struct hci_dev
*hdev
;
1642 hdev
= hci_dev_get(dev
);
1646 /* Devices that are marked as unconfigured can only be powered
1647 * up as user channel. Trying to bring them up as normal devices
1648 * will result into a failure. Only user channel operation is
1651 * When this function is called for a user channel, the flag
1652 * HCI_USER_CHANNEL will be set first before attempting to
1655 if (hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
) &&
1656 !hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
)) {
1661 /* We need to ensure that no other power on/off work is pending
1662 * before proceeding to call hci_dev_do_open. This is
1663 * particularly important if the setup procedure has not yet
1666 if (hci_dev_test_and_clear_flag(hdev
, HCI_AUTO_OFF
))
1667 cancel_delayed_work(&hdev
->power_off
);
1669 /* After this call it is guaranteed that the setup procedure
1670 * has finished. This means that error conditions like RFKILL
1671 * or no valid public or static random address apply.
1673 flush_workqueue(hdev
->req_workqueue
);
1675 /* For controllers not using the management interface and that
1676 * are brought up using legacy ioctl, set the HCI_BONDABLE bit
1677 * so that pairing works for them. Once the management interface
1678 * is in use this bit will be cleared again and userspace has
1679 * to explicitly enable it.
1681 if (!hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
) &&
1682 !hci_dev_test_flag(hdev
, HCI_MGMT
))
1683 hci_dev_set_flag(hdev
, HCI_BONDABLE
);
1685 err
= hci_dev_do_open(hdev
);
1692 /* This function requires the caller holds hdev->lock */
1693 static void hci_pend_le_actions_clear(struct hci_dev
*hdev
)
1695 struct hci_conn_params
*p
;
1697 list_for_each_entry(p
, &hdev
->le_conn_params
, list
) {
1699 hci_conn_drop(p
->conn
);
1700 hci_conn_put(p
->conn
);
1703 list_del_init(&p
->action
);
1706 BT_DBG("All LE pending actions cleared");
1709 int hci_dev_do_close(struct hci_dev
*hdev
)
1713 BT_DBG("%s %p", hdev
->name
, hdev
);
1715 if (!hci_dev_test_flag(hdev
, HCI_UNREGISTER
) &&
1716 !hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
) &&
1717 test_bit(HCI_UP
, &hdev
->flags
)) {
1718 /* Execute vendor specific shutdown routine */
1720 hdev
->shutdown(hdev
);
1723 cancel_delayed_work(&hdev
->power_off
);
1725 hci_request_cancel_all(hdev
);
1726 hci_req_sync_lock(hdev
);
1728 if (!test_and_clear_bit(HCI_UP
, &hdev
->flags
)) {
1729 cancel_delayed_work_sync(&hdev
->cmd_timer
);
1730 hci_req_sync_unlock(hdev
);
1734 hci_leds_update_powered(hdev
, false);
1736 /* Flush RX and TX works */
1737 flush_work(&hdev
->tx_work
);
1738 flush_work(&hdev
->rx_work
);
1740 if (hdev
->discov_timeout
> 0) {
1741 hdev
->discov_timeout
= 0;
1742 hci_dev_clear_flag(hdev
, HCI_DISCOVERABLE
);
1743 hci_dev_clear_flag(hdev
, HCI_LIMITED_DISCOVERABLE
);
1746 if (hci_dev_test_and_clear_flag(hdev
, HCI_SERVICE_CACHE
))
1747 cancel_delayed_work(&hdev
->service_cache
);
1749 if (hci_dev_test_flag(hdev
, HCI_MGMT
)) {
1750 struct adv_info
*adv_instance
;
1752 cancel_delayed_work_sync(&hdev
->rpa_expired
);
1754 list_for_each_entry(adv_instance
, &hdev
->adv_instances
, list
)
1755 cancel_delayed_work_sync(&adv_instance
->rpa_expired_cb
);
1758 /* Avoid potential lockdep warnings from the *_flush() calls by
1759 * ensuring the workqueue is empty up front.
1761 drain_workqueue(hdev
->workqueue
);
1765 hci_discovery_set_state(hdev
, DISCOVERY_STOPPED
);
1767 auto_off
= hci_dev_test_and_clear_flag(hdev
, HCI_AUTO_OFF
);
1769 if (!auto_off
&& hdev
->dev_type
== HCI_PRIMARY
&&
1770 !hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
) &&
1771 hci_dev_test_flag(hdev
, HCI_MGMT
))
1772 __mgmt_power_off(hdev
);
1774 hci_inquiry_cache_flush(hdev
);
1775 hci_pend_le_actions_clear(hdev
);
1776 hci_conn_hash_flush(hdev
);
1777 hci_dev_unlock(hdev
);
1779 smp_unregister(hdev
);
1781 hci_sock_dev_event(hdev
, HCI_DEV_DOWN
);
1783 msft_do_close(hdev
);
1789 skb_queue_purge(&hdev
->cmd_q
);
1790 atomic_set(&hdev
->cmd_cnt
, 1);
1791 if (test_bit(HCI_QUIRK_RESET_ON_CLOSE
, &hdev
->quirks
) &&
1792 !auto_off
&& !hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
)) {
1793 set_bit(HCI_INIT
, &hdev
->flags
);
1794 __hci_req_sync(hdev
, hci_reset_req
, 0, HCI_CMD_TIMEOUT
, NULL
);
1795 clear_bit(HCI_INIT
, &hdev
->flags
);
1798 /* flush cmd work */
1799 flush_work(&hdev
->cmd_work
);
1802 skb_queue_purge(&hdev
->rx_q
);
1803 skb_queue_purge(&hdev
->cmd_q
);
1804 skb_queue_purge(&hdev
->raw_q
);
1806 /* Drop last sent command */
1807 if (hdev
->sent_cmd
) {
1808 cancel_delayed_work_sync(&hdev
->cmd_timer
);
1809 kfree_skb(hdev
->sent_cmd
);
1810 hdev
->sent_cmd
= NULL
;
1813 clear_bit(HCI_RUNNING
, &hdev
->flags
);
1814 hci_sock_dev_event(hdev
, HCI_DEV_CLOSE
);
1816 if (test_and_clear_bit(SUSPEND_POWERING_DOWN
, hdev
->suspend_tasks
))
1817 wake_up(&hdev
->suspend_wait_q
);
1819 /* After this point our queues are empty
1820 * and no tasks are scheduled. */
1824 hdev
->flags
&= BIT(HCI_RAW
);
1825 hci_dev_clear_volatile_flags(hdev
);
1827 /* Controller radio is available but is currently powered down */
1828 hdev
->amp_status
= AMP_STATUS_POWERED_DOWN
;
1830 memset(hdev
->eir
, 0, sizeof(hdev
->eir
));
1831 memset(hdev
->dev_class
, 0, sizeof(hdev
->dev_class
));
1832 bacpy(&hdev
->random_addr
, BDADDR_ANY
);
1834 hci_req_sync_unlock(hdev
);
1840 int hci_dev_close(__u16 dev
)
1842 struct hci_dev
*hdev
;
1845 hdev
= hci_dev_get(dev
);
1849 if (hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
)) {
1854 if (hci_dev_test_and_clear_flag(hdev
, HCI_AUTO_OFF
))
1855 cancel_delayed_work(&hdev
->power_off
);
1857 err
= hci_dev_do_close(hdev
);
1864 static int hci_dev_do_reset(struct hci_dev
*hdev
)
1868 BT_DBG("%s %p", hdev
->name
, hdev
);
1870 hci_req_sync_lock(hdev
);
1873 skb_queue_purge(&hdev
->rx_q
);
1874 skb_queue_purge(&hdev
->cmd_q
);
1876 /* Avoid potential lockdep warnings from the *_flush() calls by
1877 * ensuring the workqueue is empty up front.
1879 drain_workqueue(hdev
->workqueue
);
1882 hci_inquiry_cache_flush(hdev
);
1883 hci_conn_hash_flush(hdev
);
1884 hci_dev_unlock(hdev
);
1889 atomic_set(&hdev
->cmd_cnt
, 1);
1890 hdev
->acl_cnt
= 0; hdev
->sco_cnt
= 0; hdev
->le_cnt
= 0;
1892 ret
= __hci_req_sync(hdev
, hci_reset_req
, 0, HCI_INIT_TIMEOUT
, NULL
);
1894 hci_req_sync_unlock(hdev
);
1898 int hci_dev_reset(__u16 dev
)
1900 struct hci_dev
*hdev
;
1903 hdev
= hci_dev_get(dev
);
1907 if (!test_bit(HCI_UP
, &hdev
->flags
)) {
1912 if (hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
)) {
1917 if (hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
)) {
1922 err
= hci_dev_do_reset(hdev
);
1929 int hci_dev_reset_stat(__u16 dev
)
1931 struct hci_dev
*hdev
;
1934 hdev
= hci_dev_get(dev
);
1938 if (hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
)) {
1943 if (hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
)) {
1948 memset(&hdev
->stat
, 0, sizeof(struct hci_dev_stats
));
1955 static void hci_update_scan_state(struct hci_dev
*hdev
, u8 scan
)
1957 bool conn_changed
, discov_changed
;
1959 BT_DBG("%s scan 0x%02x", hdev
->name
, scan
);
1961 if ((scan
& SCAN_PAGE
))
1962 conn_changed
= !hci_dev_test_and_set_flag(hdev
,
1965 conn_changed
= hci_dev_test_and_clear_flag(hdev
,
1968 if ((scan
& SCAN_INQUIRY
)) {
1969 discov_changed
= !hci_dev_test_and_set_flag(hdev
,
1972 hci_dev_clear_flag(hdev
, HCI_LIMITED_DISCOVERABLE
);
1973 discov_changed
= hci_dev_test_and_clear_flag(hdev
,
1977 if (!hci_dev_test_flag(hdev
, HCI_MGMT
))
1980 if (conn_changed
|| discov_changed
) {
1981 /* In case this was disabled through mgmt */
1982 hci_dev_set_flag(hdev
, HCI_BREDR_ENABLED
);
1984 if (hci_dev_test_flag(hdev
, HCI_LE_ENABLED
))
1985 hci_req_update_adv_data(hdev
, hdev
->cur_adv_instance
);
1987 mgmt_new_settings(hdev
);
1991 int hci_dev_cmd(unsigned int cmd
, void __user
*arg
)
1993 struct hci_dev
*hdev
;
1994 struct hci_dev_req dr
;
1997 if (copy_from_user(&dr
, arg
, sizeof(dr
)))
2000 hdev
= hci_dev_get(dr
.dev_id
);
2004 if (hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
)) {
2009 if (hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
)) {
2014 if (hdev
->dev_type
!= HCI_PRIMARY
) {
2019 if (!hci_dev_test_flag(hdev
, HCI_BREDR_ENABLED
)) {
2026 err
= hci_req_sync(hdev
, hci_auth_req
, dr
.dev_opt
,
2027 HCI_INIT_TIMEOUT
, NULL
);
2031 if (!lmp_encrypt_capable(hdev
)) {
2036 if (!test_bit(HCI_AUTH
, &hdev
->flags
)) {
2037 /* Auth must be enabled first */
2038 err
= hci_req_sync(hdev
, hci_auth_req
, dr
.dev_opt
,
2039 HCI_INIT_TIMEOUT
, NULL
);
2044 err
= hci_req_sync(hdev
, hci_encrypt_req
, dr
.dev_opt
,
2045 HCI_INIT_TIMEOUT
, NULL
);
2049 err
= hci_req_sync(hdev
, hci_scan_req
, dr
.dev_opt
,
2050 HCI_INIT_TIMEOUT
, NULL
);
2052 /* Ensure that the connectable and discoverable states
2053 * get correctly modified as this was a non-mgmt change.
2056 hci_update_scan_state(hdev
, dr
.dev_opt
);
2060 err
= hci_req_sync(hdev
, hci_linkpol_req
, dr
.dev_opt
,
2061 HCI_INIT_TIMEOUT
, NULL
);
2064 case HCISETLINKMODE
:
2065 hdev
->link_mode
= ((__u16
) dr
.dev_opt
) &
2066 (HCI_LM_MASTER
| HCI_LM_ACCEPT
);
2070 if (hdev
->pkt_type
== (__u16
) dr
.dev_opt
)
2073 hdev
->pkt_type
= (__u16
) dr
.dev_opt
;
2074 mgmt_phy_configuration_changed(hdev
, NULL
);
2078 hdev
->acl_mtu
= *((__u16
*) &dr
.dev_opt
+ 1);
2079 hdev
->acl_pkts
= *((__u16
*) &dr
.dev_opt
+ 0);
2083 hdev
->sco_mtu
= *((__u16
*) &dr
.dev_opt
+ 1);
2084 hdev
->sco_pkts
= *((__u16
*) &dr
.dev_opt
+ 0);
2097 int hci_get_dev_list(void __user
*arg
)
2099 struct hci_dev
*hdev
;
2100 struct hci_dev_list_req
*dl
;
2101 struct hci_dev_req
*dr
;
2102 int n
= 0, size
, err
;
2105 if (get_user(dev_num
, (__u16 __user
*) arg
))
2108 if (!dev_num
|| dev_num
> (PAGE_SIZE
* 2) / sizeof(*dr
))
2111 size
= sizeof(*dl
) + dev_num
* sizeof(*dr
);
2113 dl
= kzalloc(size
, GFP_KERNEL
);
2119 read_lock(&hci_dev_list_lock
);
2120 list_for_each_entry(hdev
, &hci_dev_list
, list
) {
2121 unsigned long flags
= hdev
->flags
;
2123 /* When the auto-off is configured it means the transport
2124 * is running, but in that case still indicate that the
2125 * device is actually down.
2127 if (hci_dev_test_flag(hdev
, HCI_AUTO_OFF
))
2128 flags
&= ~BIT(HCI_UP
);
2130 (dr
+ n
)->dev_id
= hdev
->id
;
2131 (dr
+ n
)->dev_opt
= flags
;
2136 read_unlock(&hci_dev_list_lock
);
2139 size
= sizeof(*dl
) + n
* sizeof(*dr
);
2141 err
= copy_to_user(arg
, dl
, size
);
2144 return err
? -EFAULT
: 0;
2147 int hci_get_dev_info(void __user
*arg
)
2149 struct hci_dev
*hdev
;
2150 struct hci_dev_info di
;
2151 unsigned long flags
;
2154 if (copy_from_user(&di
, arg
, sizeof(di
)))
2157 hdev
= hci_dev_get(di
.dev_id
);
2161 /* When the auto-off is configured it means the transport
2162 * is running, but in that case still indicate that the
2163 * device is actually down.
2165 if (hci_dev_test_flag(hdev
, HCI_AUTO_OFF
))
2166 flags
= hdev
->flags
& ~BIT(HCI_UP
);
2168 flags
= hdev
->flags
;
2170 strcpy(di
.name
, hdev
->name
);
2171 di
.bdaddr
= hdev
->bdaddr
;
2172 di
.type
= (hdev
->bus
& 0x0f) | ((hdev
->dev_type
& 0x03) << 4);
2174 di
.pkt_type
= hdev
->pkt_type
;
2175 if (lmp_bredr_capable(hdev
)) {
2176 di
.acl_mtu
= hdev
->acl_mtu
;
2177 di
.acl_pkts
= hdev
->acl_pkts
;
2178 di
.sco_mtu
= hdev
->sco_mtu
;
2179 di
.sco_pkts
= hdev
->sco_pkts
;
2181 di
.acl_mtu
= hdev
->le_mtu
;
2182 di
.acl_pkts
= hdev
->le_pkts
;
2186 di
.link_policy
= hdev
->link_policy
;
2187 di
.link_mode
= hdev
->link_mode
;
2189 memcpy(&di
.stat
, &hdev
->stat
, sizeof(di
.stat
));
2190 memcpy(&di
.features
, &hdev
->features
, sizeof(di
.features
));
2192 if (copy_to_user(arg
, &di
, sizeof(di
)))
2200 /* ---- Interface to HCI drivers ---- */
2202 static int hci_rfkill_set_block(void *data
, bool blocked
)
2204 struct hci_dev
*hdev
= data
;
2206 BT_DBG("%p name %s blocked %d", hdev
, hdev
->name
, blocked
);
2208 if (hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
))
2212 hci_dev_set_flag(hdev
, HCI_RFKILLED
);
2213 if (!hci_dev_test_flag(hdev
, HCI_SETUP
) &&
2214 !hci_dev_test_flag(hdev
, HCI_CONFIG
))
2215 hci_dev_do_close(hdev
);
2217 hci_dev_clear_flag(hdev
, HCI_RFKILLED
);
2223 static const struct rfkill_ops hci_rfkill_ops
= {
2224 .set_block
= hci_rfkill_set_block
,
2227 static void hci_power_on(struct work_struct
*work
)
2229 struct hci_dev
*hdev
= container_of(work
, struct hci_dev
, power_on
);
2232 BT_DBG("%s", hdev
->name
);
2234 if (test_bit(HCI_UP
, &hdev
->flags
) &&
2235 hci_dev_test_flag(hdev
, HCI_MGMT
) &&
2236 hci_dev_test_and_clear_flag(hdev
, HCI_AUTO_OFF
)) {
2237 cancel_delayed_work(&hdev
->power_off
);
2238 hci_req_sync_lock(hdev
);
2239 err
= __hci_req_hci_power_on(hdev
);
2240 hci_req_sync_unlock(hdev
);
2241 mgmt_power_on(hdev
, err
);
2245 err
= hci_dev_do_open(hdev
);
2248 mgmt_set_powered_failed(hdev
, err
);
2249 hci_dev_unlock(hdev
);
2253 /* During the HCI setup phase, a few error conditions are
2254 * ignored and they need to be checked now. If they are still
2255 * valid, it is important to turn the device back off.
2257 if (hci_dev_test_flag(hdev
, HCI_RFKILLED
) ||
2258 hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
) ||
2259 (hdev
->dev_type
== HCI_PRIMARY
&&
2260 !bacmp(&hdev
->bdaddr
, BDADDR_ANY
) &&
2261 !bacmp(&hdev
->static_addr
, BDADDR_ANY
))) {
2262 hci_dev_clear_flag(hdev
, HCI_AUTO_OFF
);
2263 hci_dev_do_close(hdev
);
2264 } else if (hci_dev_test_flag(hdev
, HCI_AUTO_OFF
)) {
2265 queue_delayed_work(hdev
->req_workqueue
, &hdev
->power_off
,
2266 HCI_AUTO_OFF_TIMEOUT
);
2269 if (hci_dev_test_and_clear_flag(hdev
, HCI_SETUP
)) {
2270 /* For unconfigured devices, set the HCI_RAW flag
2271 * so that userspace can easily identify them.
2273 if (hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
))
2274 set_bit(HCI_RAW
, &hdev
->flags
);
2276 /* For fully configured devices, this will send
2277 * the Index Added event. For unconfigured devices,
2278 * it will send Unconfigued Index Added event.
2280 * Devices with HCI_QUIRK_RAW_DEVICE are ignored
2281 * and no event will be send.
2283 mgmt_index_added(hdev
);
2284 } else if (hci_dev_test_and_clear_flag(hdev
, HCI_CONFIG
)) {
2285 /* When the controller is now configured, then it
2286 * is important to clear the HCI_RAW flag.
2288 if (!hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
))
2289 clear_bit(HCI_RAW
, &hdev
->flags
);
2291 /* Powering on the controller with HCI_CONFIG set only
2292 * happens with the transition from unconfigured to
2293 * configured. This will send the Index Added event.
2295 mgmt_index_added(hdev
);
2299 static void hci_power_off(struct work_struct
*work
)
2301 struct hci_dev
*hdev
= container_of(work
, struct hci_dev
,
2304 BT_DBG("%s", hdev
->name
);
2306 hci_dev_do_close(hdev
);
2309 static void hci_error_reset(struct work_struct
*work
)
2311 struct hci_dev
*hdev
= container_of(work
, struct hci_dev
, error_reset
);
2313 BT_DBG("%s", hdev
->name
);
2316 hdev
->hw_error(hdev
, hdev
->hw_error_code
);
2318 bt_dev_err(hdev
, "hardware error 0x%2.2x", hdev
->hw_error_code
);
2320 if (hci_dev_do_close(hdev
))
2323 hci_dev_do_open(hdev
);
2326 void hci_uuids_clear(struct hci_dev
*hdev
)
2328 struct bt_uuid
*uuid
, *tmp
;
2330 list_for_each_entry_safe(uuid
, tmp
, &hdev
->uuids
, list
) {
2331 list_del(&uuid
->list
);
2336 void hci_link_keys_clear(struct hci_dev
*hdev
)
2338 struct link_key
*key
;
2340 list_for_each_entry(key
, &hdev
->link_keys
, list
) {
2341 list_del_rcu(&key
->list
);
2342 kfree_rcu(key
, rcu
);
2346 void hci_smp_ltks_clear(struct hci_dev
*hdev
)
2350 list_for_each_entry(k
, &hdev
->long_term_keys
, list
) {
2351 list_del_rcu(&k
->list
);
2356 void hci_smp_irks_clear(struct hci_dev
*hdev
)
2360 list_for_each_entry(k
, &hdev
->identity_resolving_keys
, list
) {
2361 list_del_rcu(&k
->list
);
2366 void hci_blocked_keys_clear(struct hci_dev
*hdev
)
2368 struct blocked_key
*b
;
2370 list_for_each_entry(b
, &hdev
->blocked_keys
, list
) {
2371 list_del_rcu(&b
->list
);
2376 bool hci_is_blocked_key(struct hci_dev
*hdev
, u8 type
, u8 val
[16])
2378 bool blocked
= false;
2379 struct blocked_key
*b
;
2382 list_for_each_entry_rcu(b
, &hdev
->blocked_keys
, list
) {
2383 if (b
->type
== type
&& !memcmp(b
->val
, val
, sizeof(b
->val
))) {
2393 struct link_key
*hci_find_link_key(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
)
2398 list_for_each_entry_rcu(k
, &hdev
->link_keys
, list
) {
2399 if (bacmp(bdaddr
, &k
->bdaddr
) == 0) {
2402 if (hci_is_blocked_key(hdev
,
2403 HCI_BLOCKED_KEY_TYPE_LINKKEY
,
2405 bt_dev_warn_ratelimited(hdev
,
2406 "Link key blocked for %pMR",
2419 static bool hci_persistent_key(struct hci_dev
*hdev
, struct hci_conn
*conn
,
2420 u8 key_type
, u8 old_key_type
)
2423 if (key_type
< 0x03)
2426 /* Debug keys are insecure so don't store them persistently */
2427 if (key_type
== HCI_LK_DEBUG_COMBINATION
)
2430 /* Changed combination key and there's no previous one */
2431 if (key_type
== HCI_LK_CHANGED_COMBINATION
&& old_key_type
== 0xff)
2434 /* Security mode 3 case */
2438 /* BR/EDR key derived using SC from an LE link */
2439 if (conn
->type
== LE_LINK
)
2442 /* Neither local nor remote side had no-bonding as requirement */
2443 if (conn
->auth_type
> 0x01 && conn
->remote_auth
> 0x01)
2446 /* Local side had dedicated bonding as requirement */
2447 if (conn
->auth_type
== 0x02 || conn
->auth_type
== 0x03)
2450 /* Remote side had dedicated bonding as requirement */
2451 if (conn
->remote_auth
== 0x02 || conn
->remote_auth
== 0x03)
2454 /* If none of the above criteria match, then don't store the key
2459 static u8
ltk_role(u8 type
)
2461 if (type
== SMP_LTK
)
2462 return HCI_ROLE_MASTER
;
2464 return HCI_ROLE_SLAVE
;
2467 struct smp_ltk
*hci_find_ltk(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
,
2468 u8 addr_type
, u8 role
)
2473 list_for_each_entry_rcu(k
, &hdev
->long_term_keys
, list
) {
2474 if (addr_type
!= k
->bdaddr_type
|| bacmp(bdaddr
, &k
->bdaddr
))
2477 if (smp_ltk_is_sc(k
) || ltk_role(k
->type
) == role
) {
2480 if (hci_is_blocked_key(hdev
, HCI_BLOCKED_KEY_TYPE_LTK
,
2482 bt_dev_warn_ratelimited(hdev
,
2483 "LTK blocked for %pMR",
2496 struct smp_irk
*hci_find_irk_by_rpa(struct hci_dev
*hdev
, bdaddr_t
*rpa
)
2498 struct smp_irk
*irk_to_return
= NULL
;
2499 struct smp_irk
*irk
;
2502 list_for_each_entry_rcu(irk
, &hdev
->identity_resolving_keys
, list
) {
2503 if (!bacmp(&irk
->rpa
, rpa
)) {
2504 irk_to_return
= irk
;
2509 list_for_each_entry_rcu(irk
, &hdev
->identity_resolving_keys
, list
) {
2510 if (smp_irk_matches(hdev
, irk
->val
, rpa
)) {
2511 bacpy(&irk
->rpa
, rpa
);
2512 irk_to_return
= irk
;
2518 if (irk_to_return
&& hci_is_blocked_key(hdev
, HCI_BLOCKED_KEY_TYPE_IRK
,
2519 irk_to_return
->val
)) {
2520 bt_dev_warn_ratelimited(hdev
, "Identity key blocked for %pMR",
2521 &irk_to_return
->bdaddr
);
2522 irk_to_return
= NULL
;
2527 return irk_to_return
;
2530 struct smp_irk
*hci_find_irk_by_addr(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
,
2533 struct smp_irk
*irk_to_return
= NULL
;
2534 struct smp_irk
*irk
;
2536 /* Identity Address must be public or static random */
2537 if (addr_type
== ADDR_LE_DEV_RANDOM
&& (bdaddr
->b
[5] & 0xc0) != 0xc0)
2541 list_for_each_entry_rcu(irk
, &hdev
->identity_resolving_keys
, list
) {
2542 if (addr_type
== irk
->addr_type
&&
2543 bacmp(bdaddr
, &irk
->bdaddr
) == 0) {
2544 irk_to_return
= irk
;
2551 if (irk_to_return
&& hci_is_blocked_key(hdev
, HCI_BLOCKED_KEY_TYPE_IRK
,
2552 irk_to_return
->val
)) {
2553 bt_dev_warn_ratelimited(hdev
, "Identity key blocked for %pMR",
2554 &irk_to_return
->bdaddr
);
2555 irk_to_return
= NULL
;
2560 return irk_to_return
;
2563 struct link_key
*hci_add_link_key(struct hci_dev
*hdev
, struct hci_conn
*conn
,
2564 bdaddr_t
*bdaddr
, u8
*val
, u8 type
,
2565 u8 pin_len
, bool *persistent
)
2567 struct link_key
*key
, *old_key
;
2570 old_key
= hci_find_link_key(hdev
, bdaddr
);
2572 old_key_type
= old_key
->type
;
2575 old_key_type
= conn
? conn
->key_type
: 0xff;
2576 key
= kzalloc(sizeof(*key
), GFP_KERNEL
);
2579 list_add_rcu(&key
->list
, &hdev
->link_keys
);
2582 BT_DBG("%s key for %pMR type %u", hdev
->name
, bdaddr
, type
);
2584 /* Some buggy controller combinations generate a changed
2585 * combination key for legacy pairing even when there's no
2587 if (type
== HCI_LK_CHANGED_COMBINATION
&&
2588 (!conn
|| conn
->remote_auth
== 0xff) && old_key_type
== 0xff) {
2589 type
= HCI_LK_COMBINATION
;
2591 conn
->key_type
= type
;
2594 bacpy(&key
->bdaddr
, bdaddr
);
2595 memcpy(key
->val
, val
, HCI_LINK_KEY_SIZE
);
2596 key
->pin_len
= pin_len
;
2598 if (type
== HCI_LK_CHANGED_COMBINATION
)
2599 key
->type
= old_key_type
;
2604 *persistent
= hci_persistent_key(hdev
, conn
, type
,
2610 struct smp_ltk
*hci_add_ltk(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
,
2611 u8 addr_type
, u8 type
, u8 authenticated
,
2612 u8 tk
[16], u8 enc_size
, __le16 ediv
, __le64 rand
)
2614 struct smp_ltk
*key
, *old_key
;
2615 u8 role
= ltk_role(type
);
2617 old_key
= hci_find_ltk(hdev
, bdaddr
, addr_type
, role
);
2621 key
= kzalloc(sizeof(*key
), GFP_KERNEL
);
2624 list_add_rcu(&key
->list
, &hdev
->long_term_keys
);
2627 bacpy(&key
->bdaddr
, bdaddr
);
2628 key
->bdaddr_type
= addr_type
;
2629 memcpy(key
->val
, tk
, sizeof(key
->val
));
2630 key
->authenticated
= authenticated
;
2633 key
->enc_size
= enc_size
;
2639 struct smp_irk
*hci_add_irk(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
,
2640 u8 addr_type
, u8 val
[16], bdaddr_t
*rpa
)
2642 struct smp_irk
*irk
;
2644 irk
= hci_find_irk_by_addr(hdev
, bdaddr
, addr_type
);
2646 irk
= kzalloc(sizeof(*irk
), GFP_KERNEL
);
2650 bacpy(&irk
->bdaddr
, bdaddr
);
2651 irk
->addr_type
= addr_type
;
2653 list_add_rcu(&irk
->list
, &hdev
->identity_resolving_keys
);
2656 memcpy(irk
->val
, val
, 16);
2657 bacpy(&irk
->rpa
, rpa
);
2662 int hci_remove_link_key(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
)
2664 struct link_key
*key
;
2666 key
= hci_find_link_key(hdev
, bdaddr
);
2670 BT_DBG("%s removing %pMR", hdev
->name
, bdaddr
);
2672 list_del_rcu(&key
->list
);
2673 kfree_rcu(key
, rcu
);
2678 int hci_remove_ltk(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
, u8 bdaddr_type
)
2683 list_for_each_entry_rcu(k
, &hdev
->long_term_keys
, list
) {
2684 if (bacmp(bdaddr
, &k
->bdaddr
) || k
->bdaddr_type
!= bdaddr_type
)
2687 BT_DBG("%s removing %pMR", hdev
->name
, bdaddr
);
2689 list_del_rcu(&k
->list
);
2694 return removed
? 0 : -ENOENT
;
2697 void hci_remove_irk(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
, u8 addr_type
)
2701 list_for_each_entry_rcu(k
, &hdev
->identity_resolving_keys
, list
) {
2702 if (bacmp(bdaddr
, &k
->bdaddr
) || k
->addr_type
!= addr_type
)
2705 BT_DBG("%s removing %pMR", hdev
->name
, bdaddr
);
2707 list_del_rcu(&k
->list
);
2712 bool hci_bdaddr_is_paired(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
, u8 type
)
2715 struct smp_irk
*irk
;
2718 if (type
== BDADDR_BREDR
) {
2719 if (hci_find_link_key(hdev
, bdaddr
))
2724 /* Convert to HCI addr type which struct smp_ltk uses */
2725 if (type
== BDADDR_LE_PUBLIC
)
2726 addr_type
= ADDR_LE_DEV_PUBLIC
;
2728 addr_type
= ADDR_LE_DEV_RANDOM
;
2730 irk
= hci_get_irk(hdev
, bdaddr
, addr_type
);
2732 bdaddr
= &irk
->bdaddr
;
2733 addr_type
= irk
->addr_type
;
2737 list_for_each_entry_rcu(k
, &hdev
->long_term_keys
, list
) {
2738 if (k
->bdaddr_type
== addr_type
&& !bacmp(bdaddr
, &k
->bdaddr
)) {
2748 /* HCI command timer function */
2749 static void hci_cmd_timeout(struct work_struct
*work
)
2751 struct hci_dev
*hdev
= container_of(work
, struct hci_dev
,
2754 if (hdev
->sent_cmd
) {
2755 struct hci_command_hdr
*sent
= (void *) hdev
->sent_cmd
->data
;
2756 u16 opcode
= __le16_to_cpu(sent
->opcode
);
2758 bt_dev_err(hdev
, "command 0x%4.4x tx timeout", opcode
);
2760 bt_dev_err(hdev
, "command tx timeout");
2763 if (hdev
->cmd_timeout
)
2764 hdev
->cmd_timeout(hdev
);
2766 atomic_set(&hdev
->cmd_cnt
, 1);
2767 queue_work(hdev
->workqueue
, &hdev
->cmd_work
);
2770 struct oob_data
*hci_find_remote_oob_data(struct hci_dev
*hdev
,
2771 bdaddr_t
*bdaddr
, u8 bdaddr_type
)
2773 struct oob_data
*data
;
2775 list_for_each_entry(data
, &hdev
->remote_oob_data
, list
) {
2776 if (bacmp(bdaddr
, &data
->bdaddr
) != 0)
2778 if (data
->bdaddr_type
!= bdaddr_type
)
2786 int hci_remove_remote_oob_data(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
,
2789 struct oob_data
*data
;
2791 data
= hci_find_remote_oob_data(hdev
, bdaddr
, bdaddr_type
);
2795 BT_DBG("%s removing %pMR (%u)", hdev
->name
, bdaddr
, bdaddr_type
);
2797 list_del(&data
->list
);
2803 void hci_remote_oob_data_clear(struct hci_dev
*hdev
)
2805 struct oob_data
*data
, *n
;
2807 list_for_each_entry_safe(data
, n
, &hdev
->remote_oob_data
, list
) {
2808 list_del(&data
->list
);
2813 int hci_add_remote_oob_data(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
,
2814 u8 bdaddr_type
, u8
*hash192
, u8
*rand192
,
2815 u8
*hash256
, u8
*rand256
)
2817 struct oob_data
*data
;
2819 data
= hci_find_remote_oob_data(hdev
, bdaddr
, bdaddr_type
);
2821 data
= kmalloc(sizeof(*data
), GFP_KERNEL
);
2825 bacpy(&data
->bdaddr
, bdaddr
);
2826 data
->bdaddr_type
= bdaddr_type
;
2827 list_add(&data
->list
, &hdev
->remote_oob_data
);
2830 if (hash192
&& rand192
) {
2831 memcpy(data
->hash192
, hash192
, sizeof(data
->hash192
));
2832 memcpy(data
->rand192
, rand192
, sizeof(data
->rand192
));
2833 if (hash256
&& rand256
)
2834 data
->present
= 0x03;
2836 memset(data
->hash192
, 0, sizeof(data
->hash192
));
2837 memset(data
->rand192
, 0, sizeof(data
->rand192
));
2838 if (hash256
&& rand256
)
2839 data
->present
= 0x02;
2841 data
->present
= 0x00;
2844 if (hash256
&& rand256
) {
2845 memcpy(data
->hash256
, hash256
, sizeof(data
->hash256
));
2846 memcpy(data
->rand256
, rand256
, sizeof(data
->rand256
));
2848 memset(data
->hash256
, 0, sizeof(data
->hash256
));
2849 memset(data
->rand256
, 0, sizeof(data
->rand256
));
2850 if (hash192
&& rand192
)
2851 data
->present
= 0x01;
2854 BT_DBG("%s for %pMR", hdev
->name
, bdaddr
);
2859 /* This function requires the caller holds hdev->lock */
2860 struct adv_info
*hci_find_adv_instance(struct hci_dev
*hdev
, u8 instance
)
2862 struct adv_info
*adv_instance
;
2864 list_for_each_entry(adv_instance
, &hdev
->adv_instances
, list
) {
2865 if (adv_instance
->instance
== instance
)
2866 return adv_instance
;
2872 /* This function requires the caller holds hdev->lock */
2873 struct adv_info
*hci_get_next_instance(struct hci_dev
*hdev
, u8 instance
)
2875 struct adv_info
*cur_instance
;
2877 cur_instance
= hci_find_adv_instance(hdev
, instance
);
2881 if (cur_instance
== list_last_entry(&hdev
->adv_instances
,
2882 struct adv_info
, list
))
2883 return list_first_entry(&hdev
->adv_instances
,
2884 struct adv_info
, list
);
2886 return list_next_entry(cur_instance
, list
);
2889 /* This function requires the caller holds hdev->lock */
2890 int hci_remove_adv_instance(struct hci_dev
*hdev
, u8 instance
)
2892 struct adv_info
*adv_instance
;
2894 adv_instance
= hci_find_adv_instance(hdev
, instance
);
2898 BT_DBG("%s removing %dMR", hdev
->name
, instance
);
2900 if (hdev
->cur_adv_instance
== instance
) {
2901 if (hdev
->adv_instance_timeout
) {
2902 cancel_delayed_work(&hdev
->adv_instance_expire
);
2903 hdev
->adv_instance_timeout
= 0;
2905 hdev
->cur_adv_instance
= 0x00;
2908 cancel_delayed_work_sync(&adv_instance
->rpa_expired_cb
);
2910 list_del(&adv_instance
->list
);
2911 kfree(adv_instance
);
2913 hdev
->adv_instance_cnt
--;
2918 void hci_adv_instances_set_rpa_expired(struct hci_dev
*hdev
, bool rpa_expired
)
2920 struct adv_info
*adv_instance
, *n
;
2922 list_for_each_entry_safe(adv_instance
, n
, &hdev
->adv_instances
, list
)
2923 adv_instance
->rpa_expired
= rpa_expired
;
2926 /* This function requires the caller holds hdev->lock */
2927 void hci_adv_instances_clear(struct hci_dev
*hdev
)
2929 struct adv_info
*adv_instance
, *n
;
2931 if (hdev
->adv_instance_timeout
) {
2932 cancel_delayed_work(&hdev
->adv_instance_expire
);
2933 hdev
->adv_instance_timeout
= 0;
2936 list_for_each_entry_safe(adv_instance
, n
, &hdev
->adv_instances
, list
) {
2937 cancel_delayed_work_sync(&adv_instance
->rpa_expired_cb
);
2938 list_del(&adv_instance
->list
);
2939 kfree(adv_instance
);
2942 hdev
->adv_instance_cnt
= 0;
2943 hdev
->cur_adv_instance
= 0x00;
2946 static void adv_instance_rpa_expired(struct work_struct
*work
)
2948 struct adv_info
*adv_instance
= container_of(work
, struct adv_info
,
2949 rpa_expired_cb
.work
);
2953 adv_instance
->rpa_expired
= true;
2956 /* This function requires the caller holds hdev->lock */
2957 int hci_add_adv_instance(struct hci_dev
*hdev
, u8 instance
, u32 flags
,
2958 u16 adv_data_len
, u8
*adv_data
,
2959 u16 scan_rsp_len
, u8
*scan_rsp_data
,
2960 u16 timeout
, u16 duration
, s8 tx_power
,
2961 u32 min_interval
, u32 max_interval
)
2963 struct adv_info
*adv_instance
;
2965 adv_instance
= hci_find_adv_instance(hdev
, instance
);
2967 memset(adv_instance
->adv_data
, 0,
2968 sizeof(adv_instance
->adv_data
));
2969 memset(adv_instance
->scan_rsp_data
, 0,
2970 sizeof(adv_instance
->scan_rsp_data
));
2972 if (hdev
->adv_instance_cnt
>= hdev
->le_num_of_adv_sets
||
2973 instance
< 1 || instance
> hdev
->le_num_of_adv_sets
)
2976 adv_instance
= kzalloc(sizeof(*adv_instance
), GFP_KERNEL
);
2980 adv_instance
->pending
= true;
2981 adv_instance
->instance
= instance
;
2982 list_add(&adv_instance
->list
, &hdev
->adv_instances
);
2983 hdev
->adv_instance_cnt
++;
2986 adv_instance
->flags
= flags
;
2987 adv_instance
->adv_data_len
= adv_data_len
;
2988 adv_instance
->scan_rsp_len
= scan_rsp_len
;
2989 adv_instance
->min_interval
= min_interval
;
2990 adv_instance
->max_interval
= max_interval
;
2991 adv_instance
->tx_power
= tx_power
;
2994 memcpy(adv_instance
->adv_data
, adv_data
, adv_data_len
);
2997 memcpy(adv_instance
->scan_rsp_data
,
2998 scan_rsp_data
, scan_rsp_len
);
3000 adv_instance
->timeout
= timeout
;
3001 adv_instance
->remaining_time
= timeout
;
3004 adv_instance
->duration
= hdev
->def_multi_adv_rotation_duration
;
3006 adv_instance
->duration
= duration
;
3008 INIT_DELAYED_WORK(&adv_instance
->rpa_expired_cb
,
3009 adv_instance_rpa_expired
);
3011 BT_DBG("%s for %dMR", hdev
->name
, instance
);
3016 /* This function requires the caller holds hdev->lock */
3017 int hci_set_adv_instance_data(struct hci_dev
*hdev
, u8 instance
,
3018 u16 adv_data_len
, u8
*adv_data
,
3019 u16 scan_rsp_len
, u8
*scan_rsp_data
)
3021 struct adv_info
*adv_instance
;
3023 adv_instance
= hci_find_adv_instance(hdev
, instance
);
3025 /* If advertisement doesn't exist, we can't modify its data */
3030 memset(adv_instance
->adv_data
, 0,
3031 sizeof(adv_instance
->adv_data
));
3032 memcpy(adv_instance
->adv_data
, adv_data
, adv_data_len
);
3033 adv_instance
->adv_data_len
= adv_data_len
;
3037 memset(adv_instance
->scan_rsp_data
, 0,
3038 sizeof(adv_instance
->scan_rsp_data
));
3039 memcpy(adv_instance
->scan_rsp_data
,
3040 scan_rsp_data
, scan_rsp_len
);
3041 adv_instance
->scan_rsp_len
= scan_rsp_len
;
3047 /* This function requires the caller holds hdev->lock */
3048 void hci_adv_monitors_clear(struct hci_dev
*hdev
)
3050 struct adv_monitor
*monitor
;
3053 idr_for_each_entry(&hdev
->adv_monitors_idr
, monitor
, handle
)
3054 hci_free_adv_monitor(monitor
);
3056 idr_destroy(&hdev
->adv_monitors_idr
);
3059 void hci_free_adv_monitor(struct adv_monitor
*monitor
)
3061 struct adv_pattern
*pattern
;
3062 struct adv_pattern
*tmp
;
3067 list_for_each_entry_safe(pattern
, tmp
, &monitor
->patterns
, list
)
3073 /* This function requires the caller holds hdev->lock */
3074 int hci_add_adv_monitor(struct hci_dev
*hdev
, struct adv_monitor
*monitor
)
3076 int min
, max
, handle
;
3081 min
= HCI_MIN_ADV_MONITOR_HANDLE
;
3082 max
= HCI_MIN_ADV_MONITOR_HANDLE
+ HCI_MAX_ADV_MONITOR_NUM_HANDLES
;
3083 handle
= idr_alloc(&hdev
->adv_monitors_idr
, monitor
, min
, max
,
3088 hdev
->adv_monitors_cnt
++;
3089 monitor
->handle
= handle
;
3091 hci_update_background_scan(hdev
);
3096 static int free_adv_monitor(int id
, void *ptr
, void *data
)
3098 struct hci_dev
*hdev
= data
;
3099 struct adv_monitor
*monitor
= ptr
;
3101 idr_remove(&hdev
->adv_monitors_idr
, monitor
->handle
);
3102 hci_free_adv_monitor(monitor
);
3103 hdev
->adv_monitors_cnt
--;
3108 /* This function requires the caller holds hdev->lock */
3109 int hci_remove_adv_monitor(struct hci_dev
*hdev
, u16 handle
)
3111 struct adv_monitor
*monitor
;
3114 monitor
= idr_find(&hdev
->adv_monitors_idr
, handle
);
3118 idr_remove(&hdev
->adv_monitors_idr
, monitor
->handle
);
3119 hci_free_adv_monitor(monitor
);
3120 hdev
->adv_monitors_cnt
--;
3122 /* Remove all monitors if handle is 0. */
3123 idr_for_each(&hdev
->adv_monitors_idr
, &free_adv_monitor
, hdev
);
3126 hci_update_background_scan(hdev
);
3131 /* This function requires the caller holds hdev->lock */
3132 bool hci_is_adv_monitoring(struct hci_dev
*hdev
)
3134 return !idr_is_empty(&hdev
->adv_monitors_idr
);
3137 struct bdaddr_list
*hci_bdaddr_list_lookup(struct list_head
*bdaddr_list
,
3138 bdaddr_t
*bdaddr
, u8 type
)
3140 struct bdaddr_list
*b
;
3142 list_for_each_entry(b
, bdaddr_list
, list
) {
3143 if (!bacmp(&b
->bdaddr
, bdaddr
) && b
->bdaddr_type
== type
)
3150 struct bdaddr_list_with_irk
*hci_bdaddr_list_lookup_with_irk(
3151 struct list_head
*bdaddr_list
, bdaddr_t
*bdaddr
,
3154 struct bdaddr_list_with_irk
*b
;
3156 list_for_each_entry(b
, bdaddr_list
, list
) {
3157 if (!bacmp(&b
->bdaddr
, bdaddr
) && b
->bdaddr_type
== type
)
3164 struct bdaddr_list_with_flags
*
3165 hci_bdaddr_list_lookup_with_flags(struct list_head
*bdaddr_list
,
3166 bdaddr_t
*bdaddr
, u8 type
)
3168 struct bdaddr_list_with_flags
*b
;
3170 list_for_each_entry(b
, bdaddr_list
, list
) {
3171 if (!bacmp(&b
->bdaddr
, bdaddr
) && b
->bdaddr_type
== type
)
3178 void hci_bdaddr_list_clear(struct list_head
*bdaddr_list
)
3180 struct bdaddr_list
*b
, *n
;
3182 list_for_each_entry_safe(b
, n
, bdaddr_list
, list
) {
3188 int hci_bdaddr_list_add(struct list_head
*list
, bdaddr_t
*bdaddr
, u8 type
)
3190 struct bdaddr_list
*entry
;
3192 if (!bacmp(bdaddr
, BDADDR_ANY
))
3195 if (hci_bdaddr_list_lookup(list
, bdaddr
, type
))
3198 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
3202 bacpy(&entry
->bdaddr
, bdaddr
);
3203 entry
->bdaddr_type
= type
;
3205 list_add(&entry
->list
, list
);
3210 int hci_bdaddr_list_add_with_irk(struct list_head
*list
, bdaddr_t
*bdaddr
,
3211 u8 type
, u8
*peer_irk
, u8
*local_irk
)
3213 struct bdaddr_list_with_irk
*entry
;
3215 if (!bacmp(bdaddr
, BDADDR_ANY
))
3218 if (hci_bdaddr_list_lookup(list
, bdaddr
, type
))
3221 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
3225 bacpy(&entry
->bdaddr
, bdaddr
);
3226 entry
->bdaddr_type
= type
;
3229 memcpy(entry
->peer_irk
, peer_irk
, 16);
3232 memcpy(entry
->local_irk
, local_irk
, 16);
3234 list_add(&entry
->list
, list
);
3239 int hci_bdaddr_list_add_with_flags(struct list_head
*list
, bdaddr_t
*bdaddr
,
3242 struct bdaddr_list_with_flags
*entry
;
3244 if (!bacmp(bdaddr
, BDADDR_ANY
))
3247 if (hci_bdaddr_list_lookup(list
, bdaddr
, type
))
3250 entry
= kzalloc(sizeof(*entry
), GFP_KERNEL
);
3254 bacpy(&entry
->bdaddr
, bdaddr
);
3255 entry
->bdaddr_type
= type
;
3256 entry
->current_flags
= flags
;
3258 list_add(&entry
->list
, list
);
3263 int hci_bdaddr_list_del(struct list_head
*list
, bdaddr_t
*bdaddr
, u8 type
)
3265 struct bdaddr_list
*entry
;
3267 if (!bacmp(bdaddr
, BDADDR_ANY
)) {
3268 hci_bdaddr_list_clear(list
);
3272 entry
= hci_bdaddr_list_lookup(list
, bdaddr
, type
);
3276 list_del(&entry
->list
);
3282 int hci_bdaddr_list_del_with_irk(struct list_head
*list
, bdaddr_t
*bdaddr
,
3285 struct bdaddr_list_with_irk
*entry
;
3287 if (!bacmp(bdaddr
, BDADDR_ANY
)) {
3288 hci_bdaddr_list_clear(list
);
3292 entry
= hci_bdaddr_list_lookup_with_irk(list
, bdaddr
, type
);
3296 list_del(&entry
->list
);
3302 int hci_bdaddr_list_del_with_flags(struct list_head
*list
, bdaddr_t
*bdaddr
,
3305 struct bdaddr_list_with_flags
*entry
;
3307 if (!bacmp(bdaddr
, BDADDR_ANY
)) {
3308 hci_bdaddr_list_clear(list
);
3312 entry
= hci_bdaddr_list_lookup_with_flags(list
, bdaddr
, type
);
3316 list_del(&entry
->list
);
3322 /* This function requires the caller holds hdev->lock */
3323 struct hci_conn_params
*hci_conn_params_lookup(struct hci_dev
*hdev
,
3324 bdaddr_t
*addr
, u8 addr_type
)
3326 struct hci_conn_params
*params
;
3328 list_for_each_entry(params
, &hdev
->le_conn_params
, list
) {
3329 if (bacmp(¶ms
->addr
, addr
) == 0 &&
3330 params
->addr_type
== addr_type
) {
3338 /* This function requires the caller holds hdev->lock */
3339 struct hci_conn_params
*hci_pend_le_action_lookup(struct list_head
*list
,
3340 bdaddr_t
*addr
, u8 addr_type
)
3342 struct hci_conn_params
*param
;
3344 switch (addr_type
) {
3345 case ADDR_LE_DEV_PUBLIC_RESOLVED
:
3346 addr_type
= ADDR_LE_DEV_PUBLIC
;
3348 case ADDR_LE_DEV_RANDOM_RESOLVED
:
3349 addr_type
= ADDR_LE_DEV_RANDOM
;
3353 list_for_each_entry(param
, list
, action
) {
3354 if (bacmp(¶m
->addr
, addr
) == 0 &&
3355 param
->addr_type
== addr_type
)
3362 /* This function requires the caller holds hdev->lock */
3363 struct hci_conn_params
*hci_conn_params_add(struct hci_dev
*hdev
,
3364 bdaddr_t
*addr
, u8 addr_type
)
3366 struct hci_conn_params
*params
;
3368 params
= hci_conn_params_lookup(hdev
, addr
, addr_type
);
3372 params
= kzalloc(sizeof(*params
), GFP_KERNEL
);
3374 bt_dev_err(hdev
, "out of memory");
3378 bacpy(¶ms
->addr
, addr
);
3379 params
->addr_type
= addr_type
;
3381 list_add(¶ms
->list
, &hdev
->le_conn_params
);
3382 INIT_LIST_HEAD(¶ms
->action
);
3384 params
->conn_min_interval
= hdev
->le_conn_min_interval
;
3385 params
->conn_max_interval
= hdev
->le_conn_max_interval
;
3386 params
->conn_latency
= hdev
->le_conn_latency
;
3387 params
->supervision_timeout
= hdev
->le_supv_timeout
;
3388 params
->auto_connect
= HCI_AUTO_CONN_DISABLED
;
3390 BT_DBG("addr %pMR (type %u)", addr
, addr_type
);
3395 static void hci_conn_params_free(struct hci_conn_params
*params
)
3398 hci_conn_drop(params
->conn
);
3399 hci_conn_put(params
->conn
);
3402 list_del(¶ms
->action
);
3403 list_del(¶ms
->list
);
3407 /* This function requires the caller holds hdev->lock */
3408 void hci_conn_params_del(struct hci_dev
*hdev
, bdaddr_t
*addr
, u8 addr_type
)
3410 struct hci_conn_params
*params
;
3412 params
= hci_conn_params_lookup(hdev
, addr
, addr_type
);
3416 hci_conn_params_free(params
);
3418 hci_update_background_scan(hdev
);
3420 BT_DBG("addr %pMR (type %u)", addr
, addr_type
);
3423 /* This function requires the caller holds hdev->lock */
3424 void hci_conn_params_clear_disabled(struct hci_dev
*hdev
)
3426 struct hci_conn_params
*params
, *tmp
;
3428 list_for_each_entry_safe(params
, tmp
, &hdev
->le_conn_params
, list
) {
3429 if (params
->auto_connect
!= HCI_AUTO_CONN_DISABLED
)
3432 /* If trying to estabilish one time connection to disabled
3433 * device, leave the params, but mark them as just once.
3435 if (params
->explicit_connect
) {
3436 params
->auto_connect
= HCI_AUTO_CONN_EXPLICIT
;
3440 list_del(¶ms
->list
);
3444 BT_DBG("All LE disabled connection parameters were removed");
3447 /* This function requires the caller holds hdev->lock */
3448 static void hci_conn_params_clear_all(struct hci_dev
*hdev
)
3450 struct hci_conn_params
*params
, *tmp
;
3452 list_for_each_entry_safe(params
, tmp
, &hdev
->le_conn_params
, list
)
3453 hci_conn_params_free(params
);
3455 BT_DBG("All LE connection parameters were removed");
3458 /* Copy the Identity Address of the controller.
3460 * If the controller has a public BD_ADDR, then by default use that one.
3461 * If this is a LE only controller without a public address, default to
3462 * the static random address.
3464 * For debugging purposes it is possible to force controllers with a
3465 * public address to use the static random address instead.
3467 * In case BR/EDR has been disabled on a dual-mode controller and
3468 * userspace has configured a static address, then that address
3469 * becomes the identity address instead of the public BR/EDR address.
3471 void hci_copy_identity_address(struct hci_dev
*hdev
, bdaddr_t
*bdaddr
,
3474 if (hci_dev_test_flag(hdev
, HCI_FORCE_STATIC_ADDR
) ||
3475 !bacmp(&hdev
->bdaddr
, BDADDR_ANY
) ||
3476 (!hci_dev_test_flag(hdev
, HCI_BREDR_ENABLED
) &&
3477 bacmp(&hdev
->static_addr
, BDADDR_ANY
))) {
3478 bacpy(bdaddr
, &hdev
->static_addr
);
3479 *bdaddr_type
= ADDR_LE_DEV_RANDOM
;
3481 bacpy(bdaddr
, &hdev
->bdaddr
);
3482 *bdaddr_type
= ADDR_LE_DEV_PUBLIC
;
3486 static void hci_suspend_clear_tasks(struct hci_dev
*hdev
)
3490 for (i
= 0; i
< __SUSPEND_NUM_TASKS
; i
++)
3491 clear_bit(i
, hdev
->suspend_tasks
);
3493 wake_up(&hdev
->suspend_wait_q
);
3496 static int hci_suspend_wait_event(struct hci_dev
*hdev
)
3499 (find_first_bit(hdev->suspend_tasks, __SUSPEND_NUM_TASKS) == \
3500 __SUSPEND_NUM_TASKS)
3503 int ret
= wait_event_timeout(hdev
->suspend_wait_q
,
3504 WAKE_COND
, SUSPEND_NOTIFIER_TIMEOUT
);
3507 bt_dev_err(hdev
, "Timed out waiting for suspend events");
3508 for (i
= 0; i
< __SUSPEND_NUM_TASKS
; ++i
) {
3509 if (test_bit(i
, hdev
->suspend_tasks
))
3510 bt_dev_err(hdev
, "Suspend timeout bit: %d", i
);
3511 clear_bit(i
, hdev
->suspend_tasks
);
3522 static void hci_prepare_suspend(struct work_struct
*work
)
3524 struct hci_dev
*hdev
=
3525 container_of(work
, struct hci_dev
, suspend_prepare
);
3528 hci_req_prepare_suspend(hdev
, hdev
->suspend_state_next
);
3529 hci_dev_unlock(hdev
);
3532 static int hci_change_suspend_state(struct hci_dev
*hdev
,
3533 enum suspended_state next
)
3535 hdev
->suspend_state_next
= next
;
3536 set_bit(SUSPEND_PREPARE_NOTIFIER
, hdev
->suspend_tasks
);
3537 queue_work(hdev
->req_workqueue
, &hdev
->suspend_prepare
);
3538 return hci_suspend_wait_event(hdev
);
3541 static void hci_clear_wake_reason(struct hci_dev
*hdev
)
3545 hdev
->wake_reason
= 0;
3546 bacpy(&hdev
->wake_addr
, BDADDR_ANY
);
3547 hdev
->wake_addr_type
= 0;
3549 hci_dev_unlock(hdev
);
3552 static int hci_suspend_notifier(struct notifier_block
*nb
, unsigned long action
,
3555 struct hci_dev
*hdev
=
3556 container_of(nb
, struct hci_dev
, suspend_notifier
);
3558 u8 state
= BT_RUNNING
;
3560 /* If powering down, wait for completion. */
3561 if (mgmt_powering_down(hdev
)) {
3562 set_bit(SUSPEND_POWERING_DOWN
, hdev
->suspend_tasks
);
3563 ret
= hci_suspend_wait_event(hdev
);
3568 /* Suspend notifier should only act on events when powered. */
3569 if (!hdev_is_powered(hdev
))
3572 if (action
== PM_SUSPEND_PREPARE
) {
3573 /* Suspend consists of two actions:
3574 * - First, disconnect everything and make the controller not
3575 * connectable (disabling scanning)
3576 * - Second, program event filter/whitelist and enable scan
3578 ret
= hci_change_suspend_state(hdev
, BT_SUSPEND_DISCONNECT
);
3580 state
= BT_SUSPEND_DISCONNECT
;
3582 /* Only configure whitelist if disconnect succeeded and wake
3583 * isn't being prevented.
3585 if (!ret
&& !(hdev
->prevent_wake
&& hdev
->prevent_wake(hdev
))) {
3586 ret
= hci_change_suspend_state(hdev
,
3587 BT_SUSPEND_CONFIGURE_WAKE
);
3589 state
= BT_SUSPEND_CONFIGURE_WAKE
;
3592 hci_clear_wake_reason(hdev
);
3593 mgmt_suspending(hdev
, state
);
3595 } else if (action
== PM_POST_SUSPEND
) {
3596 ret
= hci_change_suspend_state(hdev
, BT_RUNNING
);
3598 mgmt_resuming(hdev
, hdev
->wake_reason
, &hdev
->wake_addr
,
3599 hdev
->wake_addr_type
);
3603 /* We always allow suspend even if suspend preparation failed and
3604 * attempt to recover in resume.
3607 bt_dev_err(hdev
, "Suspend notifier action (%lu) failed: %d",
3613 /* Alloc HCI device */
3614 struct hci_dev
*hci_alloc_dev(void)
3616 struct hci_dev
*hdev
;
3618 hdev
= kzalloc(sizeof(*hdev
), GFP_KERNEL
);
3622 hdev
->pkt_type
= (HCI_DM1
| HCI_DH1
| HCI_HV1
);
3623 hdev
->esco_type
= (ESCO_HV1
);
3624 hdev
->link_mode
= (HCI_LM_ACCEPT
);
3625 hdev
->num_iac
= 0x01; /* One IAC support is mandatory */
3626 hdev
->io_capability
= 0x03; /* No Input No Output */
3627 hdev
->manufacturer
= 0xffff; /* Default to internal use */
3628 hdev
->inq_tx_power
= HCI_TX_POWER_INVALID
;
3629 hdev
->adv_tx_power
= HCI_TX_POWER_INVALID
;
3630 hdev
->adv_instance_cnt
= 0;
3631 hdev
->cur_adv_instance
= 0x00;
3632 hdev
->adv_instance_timeout
= 0;
3634 hdev
->advmon_allowlist_duration
= 300;
3635 hdev
->advmon_no_filter_duration
= 500;
3636 hdev
->enable_advmon_interleave_scan
= 0x00; /* Default to disable */
3638 hdev
->sniff_max_interval
= 800;
3639 hdev
->sniff_min_interval
= 80;
3641 hdev
->le_adv_channel_map
= 0x07;
3642 hdev
->le_adv_min_interval
= 0x0800;
3643 hdev
->le_adv_max_interval
= 0x0800;
3644 hdev
->le_scan_interval
= 0x0060;
3645 hdev
->le_scan_window
= 0x0030;
3646 hdev
->le_scan_int_suspend
= 0x0400;
3647 hdev
->le_scan_window_suspend
= 0x0012;
3648 hdev
->le_scan_int_discovery
= DISCOV_LE_SCAN_INT
;
3649 hdev
->le_scan_window_discovery
= DISCOV_LE_SCAN_WIN
;
3650 hdev
->le_scan_int_connect
= 0x0060;
3651 hdev
->le_scan_window_connect
= 0x0060;
3652 hdev
->le_conn_min_interval
= 0x0018;
3653 hdev
->le_conn_max_interval
= 0x0028;
3654 hdev
->le_conn_latency
= 0x0000;
3655 hdev
->le_supv_timeout
= 0x002a;
3656 hdev
->le_def_tx_len
= 0x001b;
3657 hdev
->le_def_tx_time
= 0x0148;
3658 hdev
->le_max_tx_len
= 0x001b;
3659 hdev
->le_max_tx_time
= 0x0148;
3660 hdev
->le_max_rx_len
= 0x001b;
3661 hdev
->le_max_rx_time
= 0x0148;
3662 hdev
->le_max_key_size
= SMP_MAX_ENC_KEY_SIZE
;
3663 hdev
->le_min_key_size
= SMP_MIN_ENC_KEY_SIZE
;
3664 hdev
->le_tx_def_phys
= HCI_LE_SET_PHY_1M
;
3665 hdev
->le_rx_def_phys
= HCI_LE_SET_PHY_1M
;
3666 hdev
->le_num_of_adv_sets
= HCI_MAX_ADV_INSTANCES
;
3667 hdev
->def_multi_adv_rotation_duration
= HCI_DEFAULT_ADV_DURATION
;
3668 hdev
->def_le_autoconnect_timeout
= HCI_LE_AUTOCONN_TIMEOUT
;
3669 hdev
->min_le_tx_power
= HCI_TX_POWER_INVALID
;
3670 hdev
->max_le_tx_power
= HCI_TX_POWER_INVALID
;
3672 hdev
->rpa_timeout
= HCI_DEFAULT_RPA_TIMEOUT
;
3673 hdev
->discov_interleaved_timeout
= DISCOV_INTERLEAVED_TIMEOUT
;
3674 hdev
->conn_info_min_age
= DEFAULT_CONN_INFO_MIN_AGE
;
3675 hdev
->conn_info_max_age
= DEFAULT_CONN_INFO_MAX_AGE
;
3676 hdev
->auth_payload_timeout
= DEFAULT_AUTH_PAYLOAD_TIMEOUT
;
3677 hdev
->min_enc_key_size
= HCI_MIN_ENC_KEY_SIZE
;
3679 /* default 1.28 sec page scan */
3680 hdev
->def_page_scan_type
= PAGE_SCAN_TYPE_STANDARD
;
3681 hdev
->def_page_scan_int
= 0x0800;
3682 hdev
->def_page_scan_window
= 0x0012;
3684 mutex_init(&hdev
->lock
);
3685 mutex_init(&hdev
->req_lock
);
3687 INIT_LIST_HEAD(&hdev
->mgmt_pending
);
3688 INIT_LIST_HEAD(&hdev
->blacklist
);
3689 INIT_LIST_HEAD(&hdev
->whitelist
);
3690 INIT_LIST_HEAD(&hdev
->uuids
);
3691 INIT_LIST_HEAD(&hdev
->link_keys
);
3692 INIT_LIST_HEAD(&hdev
->long_term_keys
);
3693 INIT_LIST_HEAD(&hdev
->identity_resolving_keys
);
3694 INIT_LIST_HEAD(&hdev
->remote_oob_data
);
3695 INIT_LIST_HEAD(&hdev
->le_white_list
);
3696 INIT_LIST_HEAD(&hdev
->le_resolv_list
);
3697 INIT_LIST_HEAD(&hdev
->le_conn_params
);
3698 INIT_LIST_HEAD(&hdev
->pend_le_conns
);
3699 INIT_LIST_HEAD(&hdev
->pend_le_reports
);
3700 INIT_LIST_HEAD(&hdev
->conn_hash
.list
);
3701 INIT_LIST_HEAD(&hdev
->adv_instances
);
3702 INIT_LIST_HEAD(&hdev
->blocked_keys
);
3704 INIT_WORK(&hdev
->rx_work
, hci_rx_work
);
3705 INIT_WORK(&hdev
->cmd_work
, hci_cmd_work
);
3706 INIT_WORK(&hdev
->tx_work
, hci_tx_work
);
3707 INIT_WORK(&hdev
->power_on
, hci_power_on
);
3708 INIT_WORK(&hdev
->error_reset
, hci_error_reset
);
3709 INIT_WORK(&hdev
->suspend_prepare
, hci_prepare_suspend
);
3711 INIT_DELAYED_WORK(&hdev
->power_off
, hci_power_off
);
3713 skb_queue_head_init(&hdev
->rx_q
);
3714 skb_queue_head_init(&hdev
->cmd_q
);
3715 skb_queue_head_init(&hdev
->raw_q
);
3717 init_waitqueue_head(&hdev
->req_wait_q
);
3718 init_waitqueue_head(&hdev
->suspend_wait_q
);
3720 INIT_DELAYED_WORK(&hdev
->cmd_timer
, hci_cmd_timeout
);
3722 hci_request_setup(hdev
);
3724 hci_init_sysfs(hdev
);
3725 discovery_init(hdev
);
3729 EXPORT_SYMBOL(hci_alloc_dev
);
3731 /* Free HCI device */
3732 void hci_free_dev(struct hci_dev
*hdev
)
3734 /* will free via device release */
3735 put_device(&hdev
->dev
);
3737 EXPORT_SYMBOL(hci_free_dev
);
3739 /* Register HCI device */
3740 int hci_register_dev(struct hci_dev
*hdev
)
3744 if (!hdev
->open
|| !hdev
->close
|| !hdev
->send
)
3747 /* Do not allow HCI_AMP devices to register at index 0,
3748 * so the index can be used as the AMP controller ID.
3750 switch (hdev
->dev_type
) {
3752 id
= ida_simple_get(&hci_index_ida
, 0, 0, GFP_KERNEL
);
3755 id
= ida_simple_get(&hci_index_ida
, 1, 0, GFP_KERNEL
);
3764 sprintf(hdev
->name
, "hci%d", id
);
3767 BT_DBG("%p name %s bus %d", hdev
, hdev
->name
, hdev
->bus
);
3769 hdev
->workqueue
= alloc_ordered_workqueue("%s", WQ_HIGHPRI
, hdev
->name
);
3770 if (!hdev
->workqueue
) {
3775 hdev
->req_workqueue
= alloc_ordered_workqueue("%s", WQ_HIGHPRI
,
3777 if (!hdev
->req_workqueue
) {
3778 destroy_workqueue(hdev
->workqueue
);
3783 if (!IS_ERR_OR_NULL(bt_debugfs
))
3784 hdev
->debugfs
= debugfs_create_dir(hdev
->name
, bt_debugfs
);
3786 dev_set_name(&hdev
->dev
, "%s", hdev
->name
);
3788 error
= device_add(&hdev
->dev
);
3792 hci_leds_init(hdev
);
3794 hdev
->rfkill
= rfkill_alloc(hdev
->name
, &hdev
->dev
,
3795 RFKILL_TYPE_BLUETOOTH
, &hci_rfkill_ops
,
3798 if (rfkill_register(hdev
->rfkill
) < 0) {
3799 rfkill_destroy(hdev
->rfkill
);
3800 hdev
->rfkill
= NULL
;
3804 if (hdev
->rfkill
&& rfkill_blocked(hdev
->rfkill
))
3805 hci_dev_set_flag(hdev
, HCI_RFKILLED
);
3807 hci_dev_set_flag(hdev
, HCI_SETUP
);
3808 hci_dev_set_flag(hdev
, HCI_AUTO_OFF
);
3810 if (hdev
->dev_type
== HCI_PRIMARY
) {
3811 /* Assume BR/EDR support until proven otherwise (such as
3812 * through reading supported features during init.
3814 hci_dev_set_flag(hdev
, HCI_BREDR_ENABLED
);
3817 write_lock(&hci_dev_list_lock
);
3818 list_add(&hdev
->list
, &hci_dev_list
);
3819 write_unlock(&hci_dev_list_lock
);
3821 /* Devices that are marked for raw-only usage are unconfigured
3822 * and should not be included in normal operation.
3824 if (test_bit(HCI_QUIRK_RAW_DEVICE
, &hdev
->quirks
))
3825 hci_dev_set_flag(hdev
, HCI_UNCONFIGURED
);
3827 hci_sock_dev_event(hdev
, HCI_DEV_REG
);
3830 hdev
->suspend_notifier
.notifier_call
= hci_suspend_notifier
;
3831 error
= register_pm_notifier(&hdev
->suspend_notifier
);
3835 queue_work(hdev
->req_workqueue
, &hdev
->power_on
);
3837 idr_init(&hdev
->adv_monitors_idr
);
3842 destroy_workqueue(hdev
->workqueue
);
3843 destroy_workqueue(hdev
->req_workqueue
);
3845 ida_simple_remove(&hci_index_ida
, hdev
->id
);
3849 EXPORT_SYMBOL(hci_register_dev
);
3851 /* Unregister HCI device */
3852 void hci_unregister_dev(struct hci_dev
*hdev
)
3856 BT_DBG("%p name %s bus %d", hdev
, hdev
->name
, hdev
->bus
);
3858 hci_dev_set_flag(hdev
, HCI_UNREGISTER
);
3862 write_lock(&hci_dev_list_lock
);
3863 list_del(&hdev
->list
);
3864 write_unlock(&hci_dev_list_lock
);
3866 cancel_work_sync(&hdev
->power_on
);
3868 hci_suspend_clear_tasks(hdev
);
3869 unregister_pm_notifier(&hdev
->suspend_notifier
);
3870 cancel_work_sync(&hdev
->suspend_prepare
);
3872 hci_dev_do_close(hdev
);
3874 if (!test_bit(HCI_INIT
, &hdev
->flags
) &&
3875 !hci_dev_test_flag(hdev
, HCI_SETUP
) &&
3876 !hci_dev_test_flag(hdev
, HCI_CONFIG
)) {
3878 mgmt_index_removed(hdev
);
3879 hci_dev_unlock(hdev
);
3882 /* mgmt_index_removed should take care of emptying the
3884 BUG_ON(!list_empty(&hdev
->mgmt_pending
));
3886 hci_sock_dev_event(hdev
, HCI_DEV_UNREG
);
3889 rfkill_unregister(hdev
->rfkill
);
3890 rfkill_destroy(hdev
->rfkill
);
3893 device_del(&hdev
->dev
);
3895 debugfs_remove_recursive(hdev
->debugfs
);
3896 kfree_const(hdev
->hw_info
);
3897 kfree_const(hdev
->fw_info
);
3899 destroy_workqueue(hdev
->workqueue
);
3900 destroy_workqueue(hdev
->req_workqueue
);
3903 hci_bdaddr_list_clear(&hdev
->blacklist
);
3904 hci_bdaddr_list_clear(&hdev
->whitelist
);
3905 hci_uuids_clear(hdev
);
3906 hci_link_keys_clear(hdev
);
3907 hci_smp_ltks_clear(hdev
);
3908 hci_smp_irks_clear(hdev
);
3909 hci_remote_oob_data_clear(hdev
);
3910 hci_adv_instances_clear(hdev
);
3911 hci_adv_monitors_clear(hdev
);
3912 hci_bdaddr_list_clear(&hdev
->le_white_list
);
3913 hci_bdaddr_list_clear(&hdev
->le_resolv_list
);
3914 hci_conn_params_clear_all(hdev
);
3915 hci_discovery_filter_clear(hdev
);
3916 hci_blocked_keys_clear(hdev
);
3917 hci_dev_unlock(hdev
);
3921 ida_simple_remove(&hci_index_ida
, id
);
3923 EXPORT_SYMBOL(hci_unregister_dev
);
3925 /* Suspend HCI device */
3926 int hci_suspend_dev(struct hci_dev
*hdev
)
3928 hci_sock_dev_event(hdev
, HCI_DEV_SUSPEND
);
3931 EXPORT_SYMBOL(hci_suspend_dev
);
3933 /* Resume HCI device */
3934 int hci_resume_dev(struct hci_dev
*hdev
)
3936 hci_sock_dev_event(hdev
, HCI_DEV_RESUME
);
3939 EXPORT_SYMBOL(hci_resume_dev
);
3941 /* Reset HCI device */
3942 int hci_reset_dev(struct hci_dev
*hdev
)
3944 static const u8 hw_err
[] = { HCI_EV_HARDWARE_ERROR
, 0x01, 0x00 };
3945 struct sk_buff
*skb
;
3947 skb
= bt_skb_alloc(3, GFP_ATOMIC
);
3951 hci_skb_pkt_type(skb
) = HCI_EVENT_PKT
;
3952 skb_put_data(skb
, hw_err
, 3);
3954 /* Send Hardware Error to upper stack */
3955 return hci_recv_frame(hdev
, skb
);
3957 EXPORT_SYMBOL(hci_reset_dev
);
3959 /* Receive frame from HCI drivers */
3960 int hci_recv_frame(struct hci_dev
*hdev
, struct sk_buff
*skb
)
3962 if (!hdev
|| (!test_bit(HCI_UP
, &hdev
->flags
)
3963 && !test_bit(HCI_INIT
, &hdev
->flags
))) {
3968 if (hci_skb_pkt_type(skb
) != HCI_EVENT_PKT
&&
3969 hci_skb_pkt_type(skb
) != HCI_ACLDATA_PKT
&&
3970 hci_skb_pkt_type(skb
) != HCI_SCODATA_PKT
&&
3971 hci_skb_pkt_type(skb
) != HCI_ISODATA_PKT
) {
3977 bt_cb(skb
)->incoming
= 1;
3980 __net_timestamp(skb
);
3982 skb_queue_tail(&hdev
->rx_q
, skb
);
3983 queue_work(hdev
->workqueue
, &hdev
->rx_work
);
3987 EXPORT_SYMBOL(hci_recv_frame
);
3989 /* Receive diagnostic message from HCI drivers */
3990 int hci_recv_diag(struct hci_dev
*hdev
, struct sk_buff
*skb
)
3992 /* Mark as diagnostic packet */
3993 hci_skb_pkt_type(skb
) = HCI_DIAG_PKT
;
3996 __net_timestamp(skb
);
3998 skb_queue_tail(&hdev
->rx_q
, skb
);
3999 queue_work(hdev
->workqueue
, &hdev
->rx_work
);
4003 EXPORT_SYMBOL(hci_recv_diag
);
4005 void hci_set_hw_info(struct hci_dev
*hdev
, const char *fmt
, ...)
4009 va_start(vargs
, fmt
);
4010 kfree_const(hdev
->hw_info
);
4011 hdev
->hw_info
= kvasprintf_const(GFP_KERNEL
, fmt
, vargs
);
4014 EXPORT_SYMBOL(hci_set_hw_info
);
4016 void hci_set_fw_info(struct hci_dev
*hdev
, const char *fmt
, ...)
4020 va_start(vargs
, fmt
);
4021 kfree_const(hdev
->fw_info
);
4022 hdev
->fw_info
= kvasprintf_const(GFP_KERNEL
, fmt
, vargs
);
4025 EXPORT_SYMBOL(hci_set_fw_info
);
4027 /* ---- Interface to upper protocols ---- */
4029 int hci_register_cb(struct hci_cb
*cb
)
4031 BT_DBG("%p name %s", cb
, cb
->name
);
4033 mutex_lock(&hci_cb_list_lock
);
4034 list_add_tail(&cb
->list
, &hci_cb_list
);
4035 mutex_unlock(&hci_cb_list_lock
);
4039 EXPORT_SYMBOL(hci_register_cb
);
4041 int hci_unregister_cb(struct hci_cb
*cb
)
4043 BT_DBG("%p name %s", cb
, cb
->name
);
4045 mutex_lock(&hci_cb_list_lock
);
4046 list_del(&cb
->list
);
4047 mutex_unlock(&hci_cb_list_lock
);
4051 EXPORT_SYMBOL(hci_unregister_cb
);
4053 static void hci_send_frame(struct hci_dev
*hdev
, struct sk_buff
*skb
)
4057 BT_DBG("%s type %d len %d", hdev
->name
, hci_skb_pkt_type(skb
),
4061 __net_timestamp(skb
);
4063 /* Send copy to monitor */
4064 hci_send_to_monitor(hdev
, skb
);
4066 if (atomic_read(&hdev
->promisc
)) {
4067 /* Send copy to the sockets */
4068 hci_send_to_sock(hdev
, skb
);
4071 /* Get rid of skb owner, prior to sending to the driver. */
4074 if (!test_bit(HCI_RUNNING
, &hdev
->flags
)) {
4079 err
= hdev
->send(hdev
, skb
);
4081 bt_dev_err(hdev
, "sending frame failed (%d)", err
);
4086 /* Send HCI command */
4087 int hci_send_cmd(struct hci_dev
*hdev
, __u16 opcode
, __u32 plen
,
4090 struct sk_buff
*skb
;
4092 BT_DBG("%s opcode 0x%4.4x plen %d", hdev
->name
, opcode
, plen
);
4094 skb
= hci_prepare_cmd(hdev
, opcode
, plen
, param
);
4096 bt_dev_err(hdev
, "no memory for command");
4100 /* Stand-alone HCI commands must be flagged as
4101 * single-command requests.
4103 bt_cb(skb
)->hci
.req_flags
|= HCI_REQ_START
;
4105 skb_queue_tail(&hdev
->cmd_q
, skb
);
4106 queue_work(hdev
->workqueue
, &hdev
->cmd_work
);
4111 int __hci_cmd_send(struct hci_dev
*hdev
, u16 opcode
, u32 plen
,
4114 struct sk_buff
*skb
;
4116 if (hci_opcode_ogf(opcode
) != 0x3f) {
4117 /* A controller receiving a command shall respond with either
4118 * a Command Status Event or a Command Complete Event.
4119 * Therefore, all standard HCI commands must be sent via the
4120 * standard API, using hci_send_cmd or hci_cmd_sync helpers.
4121 * Some vendors do not comply with this rule for vendor-specific
4122 * commands and do not return any event. We want to support
4123 * unresponded commands for such cases only.
4125 bt_dev_err(hdev
, "unresponded command not supported");
4129 skb
= hci_prepare_cmd(hdev
, opcode
, plen
, param
);
4131 bt_dev_err(hdev
, "no memory for command (opcode 0x%4.4x)",
4136 hci_send_frame(hdev
, skb
);
4140 EXPORT_SYMBOL(__hci_cmd_send
);
4142 /* Get data from the previously sent command */
4143 void *hci_sent_cmd_data(struct hci_dev
*hdev
, __u16 opcode
)
4145 struct hci_command_hdr
*hdr
;
4147 if (!hdev
->sent_cmd
)
4150 hdr
= (void *) hdev
->sent_cmd
->data
;
4152 if (hdr
->opcode
!= cpu_to_le16(opcode
))
4155 BT_DBG("%s opcode 0x%4.4x", hdev
->name
, opcode
);
4157 return hdev
->sent_cmd
->data
+ HCI_COMMAND_HDR_SIZE
;
4160 /* Send HCI command and wait for command commplete event */
4161 struct sk_buff
*hci_cmd_sync(struct hci_dev
*hdev
, u16 opcode
, u32 plen
,
4162 const void *param
, u32 timeout
)
4164 struct sk_buff
*skb
;
4166 if (!test_bit(HCI_UP
, &hdev
->flags
))
4167 return ERR_PTR(-ENETDOWN
);
4169 bt_dev_dbg(hdev
, "opcode 0x%4.4x plen %d", opcode
, plen
);
4171 hci_req_sync_lock(hdev
);
4172 skb
= __hci_cmd_sync(hdev
, opcode
, plen
, param
, timeout
);
4173 hci_req_sync_unlock(hdev
);
4177 EXPORT_SYMBOL(hci_cmd_sync
);
4180 static void hci_add_acl_hdr(struct sk_buff
*skb
, __u16 handle
, __u16 flags
)
4182 struct hci_acl_hdr
*hdr
;
4185 skb_push(skb
, HCI_ACL_HDR_SIZE
);
4186 skb_reset_transport_header(skb
);
4187 hdr
= (struct hci_acl_hdr
*)skb_transport_header(skb
);
4188 hdr
->handle
= cpu_to_le16(hci_handle_pack(handle
, flags
));
4189 hdr
->dlen
= cpu_to_le16(len
);
4192 static void hci_queue_acl(struct hci_chan
*chan
, struct sk_buff_head
*queue
,
4193 struct sk_buff
*skb
, __u16 flags
)
4195 struct hci_conn
*conn
= chan
->conn
;
4196 struct hci_dev
*hdev
= conn
->hdev
;
4197 struct sk_buff
*list
;
4199 skb
->len
= skb_headlen(skb
);
4202 hci_skb_pkt_type(skb
) = HCI_ACLDATA_PKT
;
4204 switch (hdev
->dev_type
) {
4206 hci_add_acl_hdr(skb
, conn
->handle
, flags
);
4209 hci_add_acl_hdr(skb
, chan
->handle
, flags
);
4212 bt_dev_err(hdev
, "unknown dev_type %d", hdev
->dev_type
);
4216 list
= skb_shinfo(skb
)->frag_list
;
4218 /* Non fragmented */
4219 BT_DBG("%s nonfrag skb %p len %d", hdev
->name
, skb
, skb
->len
);
4221 skb_queue_tail(queue
, skb
);
4224 BT_DBG("%s frag %p len %d", hdev
->name
, skb
, skb
->len
);
4226 skb_shinfo(skb
)->frag_list
= NULL
;
4228 /* Queue all fragments atomically. We need to use spin_lock_bh
4229 * here because of 6LoWPAN links, as there this function is
4230 * called from softirq and using normal spin lock could cause
4233 spin_lock_bh(&queue
->lock
);
4235 __skb_queue_tail(queue
, skb
);
4237 flags
&= ~ACL_START
;
4240 skb
= list
; list
= list
->next
;
4242 hci_skb_pkt_type(skb
) = HCI_ACLDATA_PKT
;
4243 hci_add_acl_hdr(skb
, conn
->handle
, flags
);
4245 BT_DBG("%s frag %p len %d", hdev
->name
, skb
, skb
->len
);
4247 __skb_queue_tail(queue
, skb
);
4250 spin_unlock_bh(&queue
->lock
);
4254 void hci_send_acl(struct hci_chan
*chan
, struct sk_buff
*skb
, __u16 flags
)
4256 struct hci_dev
*hdev
= chan
->conn
->hdev
;
4258 BT_DBG("%s chan %p flags 0x%4.4x", hdev
->name
, chan
, flags
);
4260 hci_queue_acl(chan
, &chan
->data_q
, skb
, flags
);
4262 queue_work(hdev
->workqueue
, &hdev
->tx_work
);
4266 void hci_send_sco(struct hci_conn
*conn
, struct sk_buff
*skb
)
4268 struct hci_dev
*hdev
= conn
->hdev
;
4269 struct hci_sco_hdr hdr
;
4271 BT_DBG("%s len %d", hdev
->name
, skb
->len
);
4273 hdr
.handle
= cpu_to_le16(conn
->handle
);
4274 hdr
.dlen
= skb
->len
;
4276 skb_push(skb
, HCI_SCO_HDR_SIZE
);
4277 skb_reset_transport_header(skb
);
4278 memcpy(skb_transport_header(skb
), &hdr
, HCI_SCO_HDR_SIZE
);
4280 hci_skb_pkt_type(skb
) = HCI_SCODATA_PKT
;
4282 skb_queue_tail(&conn
->data_q
, skb
);
4283 queue_work(hdev
->workqueue
, &hdev
->tx_work
);
4286 /* ---- HCI TX task (outgoing data) ---- */
4288 /* HCI Connection scheduler */
4289 static struct hci_conn
*hci_low_sent(struct hci_dev
*hdev
, __u8 type
,
4292 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
4293 struct hci_conn
*conn
= NULL
, *c
;
4294 unsigned int num
= 0, min
= ~0;
4296 /* We don't have to lock device here. Connections are always
4297 * added and removed with TX task disabled. */
4301 list_for_each_entry_rcu(c
, &h
->list
, list
) {
4302 if (c
->type
!= type
|| skb_queue_empty(&c
->data_q
))
4305 if (c
->state
!= BT_CONNECTED
&& c
->state
!= BT_CONFIG
)
4310 if (c
->sent
< min
) {
4315 if (hci_conn_num(hdev
, type
) == num
)
4324 switch (conn
->type
) {
4326 cnt
= hdev
->acl_cnt
;
4330 cnt
= hdev
->sco_cnt
;
4333 cnt
= hdev
->le_mtu
? hdev
->le_cnt
: hdev
->acl_cnt
;
4337 bt_dev_err(hdev
, "unknown link type %d", conn
->type
);
4345 BT_DBG("conn %p quote %d", conn
, *quote
);
4349 static void hci_link_tx_to(struct hci_dev
*hdev
, __u8 type
)
4351 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
4354 bt_dev_err(hdev
, "link tx timeout");
4358 /* Kill stalled connections */
4359 list_for_each_entry_rcu(c
, &h
->list
, list
) {
4360 if (c
->type
== type
&& c
->sent
) {
4361 bt_dev_err(hdev
, "killing stalled connection %pMR",
4363 hci_disconnect(c
, HCI_ERROR_REMOTE_USER_TERM
);
4370 static struct hci_chan
*hci_chan_sent(struct hci_dev
*hdev
, __u8 type
,
4373 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
4374 struct hci_chan
*chan
= NULL
;
4375 unsigned int num
= 0, min
= ~0, cur_prio
= 0;
4376 struct hci_conn
*conn
;
4377 int cnt
, q
, conn_num
= 0;
4379 BT_DBG("%s", hdev
->name
);
4383 list_for_each_entry_rcu(conn
, &h
->list
, list
) {
4384 struct hci_chan
*tmp
;
4386 if (conn
->type
!= type
)
4389 if (conn
->state
!= BT_CONNECTED
&& conn
->state
!= BT_CONFIG
)
4394 list_for_each_entry_rcu(tmp
, &conn
->chan_list
, list
) {
4395 struct sk_buff
*skb
;
4397 if (skb_queue_empty(&tmp
->data_q
))
4400 skb
= skb_peek(&tmp
->data_q
);
4401 if (skb
->priority
< cur_prio
)
4404 if (skb
->priority
> cur_prio
) {
4407 cur_prio
= skb
->priority
;
4412 if (conn
->sent
< min
) {
4418 if (hci_conn_num(hdev
, type
) == conn_num
)
4427 switch (chan
->conn
->type
) {
4429 cnt
= hdev
->acl_cnt
;
4432 cnt
= hdev
->block_cnt
;
4436 cnt
= hdev
->sco_cnt
;
4439 cnt
= hdev
->le_mtu
? hdev
->le_cnt
: hdev
->acl_cnt
;
4443 bt_dev_err(hdev
, "unknown link type %d", chan
->conn
->type
);
4448 BT_DBG("chan %p quote %d", chan
, *quote
);
4452 static void hci_prio_recalculate(struct hci_dev
*hdev
, __u8 type
)
4454 struct hci_conn_hash
*h
= &hdev
->conn_hash
;
4455 struct hci_conn
*conn
;
4458 BT_DBG("%s", hdev
->name
);
4462 list_for_each_entry_rcu(conn
, &h
->list
, list
) {
4463 struct hci_chan
*chan
;
4465 if (conn
->type
!= type
)
4468 if (conn
->state
!= BT_CONNECTED
&& conn
->state
!= BT_CONFIG
)
4473 list_for_each_entry_rcu(chan
, &conn
->chan_list
, list
) {
4474 struct sk_buff
*skb
;
4481 if (skb_queue_empty(&chan
->data_q
))
4484 skb
= skb_peek(&chan
->data_q
);
4485 if (skb
->priority
>= HCI_PRIO_MAX
- 1)
4488 skb
->priority
= HCI_PRIO_MAX
- 1;
4490 BT_DBG("chan %p skb %p promoted to %d", chan
, skb
,
4494 if (hci_conn_num(hdev
, type
) == num
)
4502 static inline int __get_blocks(struct hci_dev
*hdev
, struct sk_buff
*skb
)
4504 /* Calculate count of blocks used by this packet */
4505 return DIV_ROUND_UP(skb
->len
- HCI_ACL_HDR_SIZE
, hdev
->block_len
);
4508 static void __check_timeout(struct hci_dev
*hdev
, unsigned int cnt
)
4510 if (!hci_dev_test_flag(hdev
, HCI_UNCONFIGURED
)) {
4511 /* ACL tx timeout must be longer than maximum
4512 * link supervision timeout (40.9 seconds) */
4513 if (!cnt
&& time_after(jiffies
, hdev
->acl_last_tx
+
4514 HCI_ACL_TX_TIMEOUT
))
4515 hci_link_tx_to(hdev
, ACL_LINK
);
4520 static void hci_sched_sco(struct hci_dev
*hdev
)
4522 struct hci_conn
*conn
;
4523 struct sk_buff
*skb
;
4526 BT_DBG("%s", hdev
->name
);
4528 if (!hci_conn_num(hdev
, SCO_LINK
))
4531 while (hdev
->sco_cnt
&& (conn
= hci_low_sent(hdev
, SCO_LINK
, "e
))) {
4532 while (quote
-- && (skb
= skb_dequeue(&conn
->data_q
))) {
4533 BT_DBG("skb %p len %d", skb
, skb
->len
);
4534 hci_send_frame(hdev
, skb
);
4537 if (conn
->sent
== ~0)
4543 static void hci_sched_esco(struct hci_dev
*hdev
)
4545 struct hci_conn
*conn
;
4546 struct sk_buff
*skb
;
4549 BT_DBG("%s", hdev
->name
);
4551 if (!hci_conn_num(hdev
, ESCO_LINK
))
4554 while (hdev
->sco_cnt
&& (conn
= hci_low_sent(hdev
, ESCO_LINK
,
4556 while (quote
-- && (skb
= skb_dequeue(&conn
->data_q
))) {
4557 BT_DBG("skb %p len %d", skb
, skb
->len
);
4558 hci_send_frame(hdev
, skb
);
4561 if (conn
->sent
== ~0)
4567 static void hci_sched_acl_pkt(struct hci_dev
*hdev
)
4569 unsigned int cnt
= hdev
->acl_cnt
;
4570 struct hci_chan
*chan
;
4571 struct sk_buff
*skb
;
4574 __check_timeout(hdev
, cnt
);
4576 while (hdev
->acl_cnt
&&
4577 (chan
= hci_chan_sent(hdev
, ACL_LINK
, "e
))) {
4578 u32 priority
= (skb_peek(&chan
->data_q
))->priority
;
4579 while (quote
-- && (skb
= skb_peek(&chan
->data_q
))) {
4580 BT_DBG("chan %p skb %p len %d priority %u", chan
, skb
,
4581 skb
->len
, skb
->priority
);
4583 /* Stop if priority has changed */
4584 if (skb
->priority
< priority
)
4587 skb
= skb_dequeue(&chan
->data_q
);
4589 hci_conn_enter_active_mode(chan
->conn
,
4590 bt_cb(skb
)->force_active
);
4592 hci_send_frame(hdev
, skb
);
4593 hdev
->acl_last_tx
= jiffies
;
4599 /* Send pending SCO packets right away */
4600 hci_sched_sco(hdev
);
4601 hci_sched_esco(hdev
);
4605 if (cnt
!= hdev
->acl_cnt
)
4606 hci_prio_recalculate(hdev
, ACL_LINK
);
4609 static void hci_sched_acl_blk(struct hci_dev
*hdev
)
4611 unsigned int cnt
= hdev
->block_cnt
;
4612 struct hci_chan
*chan
;
4613 struct sk_buff
*skb
;
4617 __check_timeout(hdev
, cnt
);
4619 BT_DBG("%s", hdev
->name
);
4621 if (hdev
->dev_type
== HCI_AMP
)
4626 while (hdev
->block_cnt
> 0 &&
4627 (chan
= hci_chan_sent(hdev
, type
, "e
))) {
4628 u32 priority
= (skb_peek(&chan
->data_q
))->priority
;
4629 while (quote
> 0 && (skb
= skb_peek(&chan
->data_q
))) {
4632 BT_DBG("chan %p skb %p len %d priority %u", chan
, skb
,
4633 skb
->len
, skb
->priority
);
4635 /* Stop if priority has changed */
4636 if (skb
->priority
< priority
)
4639 skb
= skb_dequeue(&chan
->data_q
);
4641 blocks
= __get_blocks(hdev
, skb
);
4642 if (blocks
> hdev
->block_cnt
)
4645 hci_conn_enter_active_mode(chan
->conn
,
4646 bt_cb(skb
)->force_active
);
4648 hci_send_frame(hdev
, skb
);
4649 hdev
->acl_last_tx
= jiffies
;
4651 hdev
->block_cnt
-= blocks
;
4654 chan
->sent
+= blocks
;
4655 chan
->conn
->sent
+= blocks
;
4659 if (cnt
!= hdev
->block_cnt
)
4660 hci_prio_recalculate(hdev
, type
);
4663 static void hci_sched_acl(struct hci_dev
*hdev
)
4665 BT_DBG("%s", hdev
->name
);
4667 /* No ACL link over BR/EDR controller */
4668 if (!hci_conn_num(hdev
, ACL_LINK
) && hdev
->dev_type
== HCI_PRIMARY
)
4671 /* No AMP link over AMP controller */
4672 if (!hci_conn_num(hdev
, AMP_LINK
) && hdev
->dev_type
== HCI_AMP
)
4675 switch (hdev
->flow_ctl_mode
) {
4676 case HCI_FLOW_CTL_MODE_PACKET_BASED
:
4677 hci_sched_acl_pkt(hdev
);
4680 case HCI_FLOW_CTL_MODE_BLOCK_BASED
:
4681 hci_sched_acl_blk(hdev
);
4686 static void hci_sched_le(struct hci_dev
*hdev
)
4688 struct hci_chan
*chan
;
4689 struct sk_buff
*skb
;
4690 int quote
, cnt
, tmp
;
4692 BT_DBG("%s", hdev
->name
);
4694 if (!hci_conn_num(hdev
, LE_LINK
))
4697 cnt
= hdev
->le_pkts
? hdev
->le_cnt
: hdev
->acl_cnt
;
4699 __check_timeout(hdev
, cnt
);
4702 while (cnt
&& (chan
= hci_chan_sent(hdev
, LE_LINK
, "e
))) {
4703 u32 priority
= (skb_peek(&chan
->data_q
))->priority
;
4704 while (quote
-- && (skb
= skb_peek(&chan
->data_q
))) {
4705 BT_DBG("chan %p skb %p len %d priority %u", chan
, skb
,
4706 skb
->len
, skb
->priority
);
4708 /* Stop if priority has changed */
4709 if (skb
->priority
< priority
)
4712 skb
= skb_dequeue(&chan
->data_q
);
4714 hci_send_frame(hdev
, skb
);
4715 hdev
->le_last_tx
= jiffies
;
4721 /* Send pending SCO packets right away */
4722 hci_sched_sco(hdev
);
4723 hci_sched_esco(hdev
);
4730 hdev
->acl_cnt
= cnt
;
4733 hci_prio_recalculate(hdev
, LE_LINK
);
4736 static void hci_tx_work(struct work_struct
*work
)
4738 struct hci_dev
*hdev
= container_of(work
, struct hci_dev
, tx_work
);
4739 struct sk_buff
*skb
;
4741 BT_DBG("%s acl %d sco %d le %d", hdev
->name
, hdev
->acl_cnt
,
4742 hdev
->sco_cnt
, hdev
->le_cnt
);
4744 if (!hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
)) {
4745 /* Schedule queues and send stuff to HCI driver */
4746 hci_sched_sco(hdev
);
4747 hci_sched_esco(hdev
);
4748 hci_sched_acl(hdev
);
4752 /* Send next queued raw (unknown type) packet */
4753 while ((skb
= skb_dequeue(&hdev
->raw_q
)))
4754 hci_send_frame(hdev
, skb
);
4757 /* ----- HCI RX task (incoming data processing) ----- */
4759 /* ACL data packet */
4760 static void hci_acldata_packet(struct hci_dev
*hdev
, struct sk_buff
*skb
)
4762 struct hci_acl_hdr
*hdr
= (void *) skb
->data
;
4763 struct hci_conn
*conn
;
4764 __u16 handle
, flags
;
4766 skb_pull(skb
, HCI_ACL_HDR_SIZE
);
4768 handle
= __le16_to_cpu(hdr
->handle
);
4769 flags
= hci_flags(handle
);
4770 handle
= hci_handle(handle
);
4772 BT_DBG("%s len %d handle 0x%4.4x flags 0x%4.4x", hdev
->name
, skb
->len
,
4775 hdev
->stat
.acl_rx
++;
4778 conn
= hci_conn_hash_lookup_handle(hdev
, handle
);
4779 hci_dev_unlock(hdev
);
4782 hci_conn_enter_active_mode(conn
, BT_POWER_FORCE_ACTIVE_OFF
);
4784 /* Send to upper protocol */
4785 l2cap_recv_acldata(conn
, skb
, flags
);
4788 bt_dev_err(hdev
, "ACL packet for unknown connection handle %d",
4795 /* SCO data packet */
4796 static void hci_scodata_packet(struct hci_dev
*hdev
, struct sk_buff
*skb
)
4798 struct hci_sco_hdr
*hdr
= (void *) skb
->data
;
4799 struct hci_conn
*conn
;
4800 __u16 handle
, flags
;
4802 skb_pull(skb
, HCI_SCO_HDR_SIZE
);
4804 handle
= __le16_to_cpu(hdr
->handle
);
4805 flags
= hci_flags(handle
);
4806 handle
= hci_handle(handle
);
4808 BT_DBG("%s len %d handle 0x%4.4x flags 0x%4.4x", hdev
->name
, skb
->len
,
4811 hdev
->stat
.sco_rx
++;
4814 conn
= hci_conn_hash_lookup_handle(hdev
, handle
);
4815 hci_dev_unlock(hdev
);
4818 /* Send to upper protocol */
4819 bt_cb(skb
)->sco
.pkt_status
= flags
& 0x03;
4820 sco_recv_scodata(conn
, skb
);
4823 bt_dev_err(hdev
, "SCO packet for unknown connection handle %d",
4830 static bool hci_req_is_complete(struct hci_dev
*hdev
)
4832 struct sk_buff
*skb
;
4834 skb
= skb_peek(&hdev
->cmd_q
);
4838 return (bt_cb(skb
)->hci
.req_flags
& HCI_REQ_START
);
4841 static void hci_resend_last(struct hci_dev
*hdev
)
4843 struct hci_command_hdr
*sent
;
4844 struct sk_buff
*skb
;
4847 if (!hdev
->sent_cmd
)
4850 sent
= (void *) hdev
->sent_cmd
->data
;
4851 opcode
= __le16_to_cpu(sent
->opcode
);
4852 if (opcode
== HCI_OP_RESET
)
4855 skb
= skb_clone(hdev
->sent_cmd
, GFP_KERNEL
);
4859 skb_queue_head(&hdev
->cmd_q
, skb
);
4860 queue_work(hdev
->workqueue
, &hdev
->cmd_work
);
4863 void hci_req_cmd_complete(struct hci_dev
*hdev
, u16 opcode
, u8 status
,
4864 hci_req_complete_t
*req_complete
,
4865 hci_req_complete_skb_t
*req_complete_skb
)
4867 struct sk_buff
*skb
;
4868 unsigned long flags
;
4870 BT_DBG("opcode 0x%04x status 0x%02x", opcode
, status
);
4872 /* If the completed command doesn't match the last one that was
4873 * sent we need to do special handling of it.
4875 if (!hci_sent_cmd_data(hdev
, opcode
)) {
4876 /* Some CSR based controllers generate a spontaneous
4877 * reset complete event during init and any pending
4878 * command will never be completed. In such a case we
4879 * need to resend whatever was the last sent
4882 if (test_bit(HCI_INIT
, &hdev
->flags
) && opcode
== HCI_OP_RESET
)
4883 hci_resend_last(hdev
);
4888 /* If we reach this point this event matches the last command sent */
4889 hci_dev_clear_flag(hdev
, HCI_CMD_PENDING
);
4891 /* If the command succeeded and there's still more commands in
4892 * this request the request is not yet complete.
4894 if (!status
&& !hci_req_is_complete(hdev
))
4897 /* If this was the last command in a request the complete
4898 * callback would be found in hdev->sent_cmd instead of the
4899 * command queue (hdev->cmd_q).
4901 if (bt_cb(hdev
->sent_cmd
)->hci
.req_flags
& HCI_REQ_SKB
) {
4902 *req_complete_skb
= bt_cb(hdev
->sent_cmd
)->hci
.req_complete_skb
;
4906 if (bt_cb(hdev
->sent_cmd
)->hci
.req_complete
) {
4907 *req_complete
= bt_cb(hdev
->sent_cmd
)->hci
.req_complete
;
4911 /* Remove all pending commands belonging to this request */
4912 spin_lock_irqsave(&hdev
->cmd_q
.lock
, flags
);
4913 while ((skb
= __skb_dequeue(&hdev
->cmd_q
))) {
4914 if (bt_cb(skb
)->hci
.req_flags
& HCI_REQ_START
) {
4915 __skb_queue_head(&hdev
->cmd_q
, skb
);
4919 if (bt_cb(skb
)->hci
.req_flags
& HCI_REQ_SKB
)
4920 *req_complete_skb
= bt_cb(skb
)->hci
.req_complete_skb
;
4922 *req_complete
= bt_cb(skb
)->hci
.req_complete
;
4925 spin_unlock_irqrestore(&hdev
->cmd_q
.lock
, flags
);
4928 static void hci_rx_work(struct work_struct
*work
)
4930 struct hci_dev
*hdev
= container_of(work
, struct hci_dev
, rx_work
);
4931 struct sk_buff
*skb
;
4933 BT_DBG("%s", hdev
->name
);
4935 while ((skb
= skb_dequeue(&hdev
->rx_q
))) {
4936 /* Send copy to monitor */
4937 hci_send_to_monitor(hdev
, skb
);
4939 if (atomic_read(&hdev
->promisc
)) {
4940 /* Send copy to the sockets */
4941 hci_send_to_sock(hdev
, skb
);
4944 /* If the device has been opened in HCI_USER_CHANNEL,
4945 * the userspace has exclusive access to device.
4946 * When device is HCI_INIT, we still need to process
4947 * the data packets to the driver in order
4948 * to complete its setup().
4950 if (hci_dev_test_flag(hdev
, HCI_USER_CHANNEL
) &&
4951 !test_bit(HCI_INIT
, &hdev
->flags
)) {
4956 if (test_bit(HCI_INIT
, &hdev
->flags
)) {
4957 /* Don't process data packets in this states. */
4958 switch (hci_skb_pkt_type(skb
)) {
4959 case HCI_ACLDATA_PKT
:
4960 case HCI_SCODATA_PKT
:
4961 case HCI_ISODATA_PKT
:
4968 switch (hci_skb_pkt_type(skb
)) {
4970 BT_DBG("%s Event packet", hdev
->name
);
4971 hci_event_packet(hdev
, skb
);
4974 case HCI_ACLDATA_PKT
:
4975 BT_DBG("%s ACL data packet", hdev
->name
);
4976 hci_acldata_packet(hdev
, skb
);
4979 case HCI_SCODATA_PKT
:
4980 BT_DBG("%s SCO data packet", hdev
->name
);
4981 hci_scodata_packet(hdev
, skb
);
4991 static void hci_cmd_work(struct work_struct
*work
)
4993 struct hci_dev
*hdev
= container_of(work
, struct hci_dev
, cmd_work
);
4994 struct sk_buff
*skb
;
4996 BT_DBG("%s cmd_cnt %d cmd queued %d", hdev
->name
,
4997 atomic_read(&hdev
->cmd_cnt
), skb_queue_len(&hdev
->cmd_q
));
4999 /* Send queued commands */
5000 if (atomic_read(&hdev
->cmd_cnt
)) {
5001 skb
= skb_dequeue(&hdev
->cmd_q
);
5005 kfree_skb(hdev
->sent_cmd
);
5007 hdev
->sent_cmd
= skb_clone(skb
, GFP_KERNEL
);
5008 if (hdev
->sent_cmd
) {
5009 if (hci_req_status_pend(hdev
))
5010 hci_dev_set_flag(hdev
, HCI_CMD_PENDING
);
5011 atomic_dec(&hdev
->cmd_cnt
);
5012 hci_send_frame(hdev
, skb
);
5013 if (test_bit(HCI_RESET
, &hdev
->flags
))
5014 cancel_delayed_work(&hdev
->cmd_timer
);
5016 schedule_delayed_work(&hdev
->cmd_timer
,
5019 skb_queue_head(&hdev
->cmd_q
, skb
);
5020 queue_work(hdev
->workqueue
, &hdev
->cmd_work
);