YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | BlueZ - Bluetooth protocol stack for Linux |
| 3 | Copyright (C) 2000-2001 Qualcomm Incorporated |
Gustavo F. Padovan | 590051d | 2011-12-18 13:39:33 -0200 | [diff] [blame] | 4 | Copyright (C) 2011 ProFUSION Embedded Systems |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | |
| 6 | Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com> |
| 7 | |
| 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; |
| 11 | |
| 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 |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 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 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 20 | |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 21 | ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, |
| 22 | COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | SOFTWARE IS DISCLAIMED. |
| 24 | */ |
| 25 | |
| 26 | /* Bluetooth HCI core. */ |
| 27 | |
S.Çağlar Onur | 8245302 | 2008-02-17 23:25:57 -0800 | [diff] [blame] | 28 | #include <linux/jiffies.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/module.h> |
| 30 | #include <linux/kmod.h> |
| 31 | |
| 32 | #include <linux/types.h> |
| 33 | #include <linux/errno.h> |
| 34 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/sched.h> |
| 36 | #include <linux/slab.h> |
| 37 | #include <linux/poll.h> |
| 38 | #include <linux/fcntl.h> |
| 39 | #include <linux/init.h> |
| 40 | #include <linux/skbuff.h> |
Marcel Holtmann | f48fd9c | 2010-03-20 15:20:04 +0100 | [diff] [blame] | 41 | #include <linux/workqueue.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <linux/interrupt.h> |
Marcel Holtmann | 611b30f | 2009-06-08 14:41:38 +0200 | [diff] [blame] | 43 | #include <linux/rfkill.h> |
Ville Tervo | 6bd3232 | 2011-02-16 16:32:41 +0200 | [diff] [blame] | 44 | #include <linux/timer.h> |
Vinicius Costa Gomes | 3a0259b | 2011-06-09 18:50:43 -0300 | [diff] [blame] | 45 | #include <linux/crypto.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #include <net/sock.h> |
| 47 | |
| 48 | #include <asm/system.h> |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 49 | #include <linux/uaccess.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | #include <asm/unaligned.h> |
| 51 | |
| 52 | #include <net/bluetooth/bluetooth.h> |
| 53 | #include <net/bluetooth/hci_core.h> |
| 54 | |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 55 | #define AUTO_OFF_TIMEOUT 2000 |
| 56 | |
Marcel Holtmann | b78752c | 2010-08-08 23:06:53 -0400 | [diff] [blame] | 57 | static void hci_rx_work(struct work_struct *work); |
Gustavo F. Padovan | c347b76 | 2011-12-14 23:53:47 -0200 | [diff] [blame] | 58 | static void hci_cmd_work(struct work_struct *work); |
Gustavo F. Padovan | 3eff45e | 2011-12-15 00:50:02 -0200 | [diff] [blame] | 59 | static void hci_tx_work(struct work_struct *work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | /* HCI device list */ |
| 62 | LIST_HEAD(hci_dev_list); |
| 63 | DEFINE_RWLOCK(hci_dev_list_lock); |
| 64 | |
| 65 | /* HCI callback list */ |
| 66 | LIST_HEAD(hci_cb_list); |
| 67 | DEFINE_RWLOCK(hci_cb_list_lock); |
| 68 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | /* ---- HCI notifications ---- */ |
| 70 | |
Marcel Holtmann | 6516455 | 2005-10-28 19:20:48 +0200 | [diff] [blame] | 71 | static void hci_notify(struct hci_dev *hdev, int event) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | { |
Marcel Holtmann | 040030e | 2012-02-20 14:50:37 +0100 | [diff] [blame] | 73 | hci_sock_dev_event(hdev, event); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | } |
| 75 | |
| 76 | /* ---- HCI requests ---- */ |
| 77 | |
Johan Hedberg | 23bb576 | 2010-12-21 23:01:27 +0200 | [diff] [blame] | 78 | void hci_req_complete(struct hci_dev *hdev, __u16 cmd, int result) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | { |
Johan Hedberg | 23bb576 | 2010-12-21 23:01:27 +0200 | [diff] [blame] | 80 | BT_DBG("%s command 0x%04x result 0x%2.2x", hdev->name, cmd, result); |
| 81 | |
Johan Hedberg | a5040ef | 2011-01-10 13:28:59 +0200 | [diff] [blame] | 82 | /* If this is the init phase check if the completed command matches |
| 83 | * the last init command, and if not just return. |
| 84 | */ |
Johan Hedberg | 75fb0e3 | 2012-03-01 21:35:55 +0200 | [diff] [blame] | 85 | if (test_bit(HCI_INIT, &hdev->flags) && hdev->init_last_cmd != cmd) { |
| 86 | struct hci_command_hdr *sent = (void *) hdev->sent_cmd->data; |
| 87 | struct sk_buff *skb; |
| 88 | |
| 89 | /* Some CSR based controllers generate a spontaneous |
| 90 | * reset complete event during init and any pending |
| 91 | * command will never be completed. In such a case we |
| 92 | * need to resend whatever was the last sent |
| 93 | * command. |
| 94 | */ |
| 95 | |
| 96 | if (cmd != HCI_OP_RESET || sent->opcode == HCI_OP_RESET) |
| 97 | return; |
| 98 | |
| 99 | skb = skb_clone(hdev->sent_cmd, GFP_ATOMIC); |
| 100 | if (skb) { |
| 101 | skb_queue_head(&hdev->cmd_q, skb); |
| 102 | queue_work(hdev->workqueue, &hdev->cmd_work); |
| 103 | } |
| 104 | |
Johan Hedberg | 23bb576 | 2010-12-21 23:01:27 +0200 | [diff] [blame] | 105 | return; |
Johan Hedberg | 75fb0e3 | 2012-03-01 21:35:55 +0200 | [diff] [blame] | 106 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
| 108 | if (hdev->req_status == HCI_REQ_PEND) { |
| 109 | hdev->req_result = result; |
| 110 | hdev->req_status = HCI_REQ_DONE; |
| 111 | wake_up_interruptible(&hdev->req_wait_q); |
| 112 | } |
| 113 | } |
| 114 | |
| 115 | static void hci_req_cancel(struct hci_dev *hdev, int err) |
| 116 | { |
| 117 | BT_DBG("%s err 0x%2.2x", hdev->name, err); |
| 118 | |
| 119 | if (hdev->req_status == HCI_REQ_PEND) { |
| 120 | hdev->req_result = err; |
| 121 | hdev->req_status = HCI_REQ_CANCELED; |
| 122 | wake_up_interruptible(&hdev->req_wait_q); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | /* Execute request and wait for completion. */ |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 127 | static int __hci_request(struct hci_dev *hdev, void (*req)(struct hci_dev *hdev, unsigned long opt), |
Szymon Janc | 01df8c3 | 2011-02-17 16:46:47 +0100 | [diff] [blame] | 128 | unsigned long opt, __u32 timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | { |
| 130 | DECLARE_WAITQUEUE(wait, current); |
| 131 | int err = 0; |
| 132 | |
| 133 | BT_DBG("%s start", hdev->name); |
| 134 | |
| 135 | hdev->req_status = HCI_REQ_PEND; |
| 136 | |
| 137 | add_wait_queue(&hdev->req_wait_q, &wait); |
| 138 | set_current_state(TASK_INTERRUPTIBLE); |
| 139 | |
| 140 | req(hdev, opt); |
| 141 | schedule_timeout(timeout); |
| 142 | |
| 143 | remove_wait_queue(&hdev->req_wait_q, &wait); |
| 144 | |
| 145 | if (signal_pending(current)) |
| 146 | return -EINTR; |
| 147 | |
| 148 | switch (hdev->req_status) { |
| 149 | case HCI_REQ_DONE: |
Joe Perches | e175072 | 2011-06-29 18:18:29 -0700 | [diff] [blame] | 150 | err = -bt_to_errno(hdev->req_result); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | break; |
| 152 | |
| 153 | case HCI_REQ_CANCELED: |
| 154 | err = -hdev->req_result; |
| 155 | break; |
| 156 | |
| 157 | default: |
| 158 | err = -ETIMEDOUT; |
| 159 | break; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 160 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | |
Johan Hedberg | a5040ef | 2011-01-10 13:28:59 +0200 | [diff] [blame] | 162 | hdev->req_status = hdev->req_result = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
| 164 | BT_DBG("%s end: err %d", hdev->name, err); |
| 165 | |
| 166 | return err; |
| 167 | } |
| 168 | |
| 169 | static inline int hci_request(struct hci_dev *hdev, void (*req)(struct hci_dev *hdev, unsigned long opt), |
Szymon Janc | 01df8c3 | 2011-02-17 16:46:47 +0100 | [diff] [blame] | 170 | unsigned long opt, __u32 timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
| 172 | int ret; |
| 173 | |
Marcel Holtmann | 7c6a329 | 2008-09-12 03:11:54 +0200 | [diff] [blame] | 174 | if (!test_bit(HCI_UP, &hdev->flags)) |
| 175 | return -ENETDOWN; |
| 176 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | /* Serialize all requests */ |
| 178 | hci_req_lock(hdev); |
| 179 | ret = __hci_request(hdev, req, opt, timeout); |
| 180 | hci_req_unlock(hdev); |
| 181 | |
| 182 | return ret; |
| 183 | } |
| 184 | |
| 185 | static void hci_reset_req(struct hci_dev *hdev, unsigned long opt) |
| 186 | { |
| 187 | BT_DBG("%s %ld", hdev->name, opt); |
| 188 | |
| 189 | /* Reset device */ |
Gustavo F. Padovan | f630cf0 | 2011-03-16 15:36:29 -0300 | [diff] [blame] | 190 | set_bit(HCI_RESET, &hdev->flags); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 191 | hci_send_cmd(hdev, HCI_OP_RESET, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 192 | } |
| 193 | |
Andrei Emeltchenko | e61ef49 | 2011-12-19 16:31:27 +0200 | [diff] [blame] | 194 | static void bredr_init(struct hci_dev *hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | { |
Johan Hedberg | b0916ea | 2011-01-10 13:44:55 +0200 | [diff] [blame] | 196 | struct hci_cp_delete_stored_link_key cp; |
Marcel Holtmann | 1ebb925 | 2005-11-08 09:57:21 -0800 | [diff] [blame] | 197 | __le16 param; |
Marcel Holtmann | 89f2783 | 2007-09-09 08:39:49 +0200 | [diff] [blame] | 198 | __u8 flt_type; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 199 | |
Andrei Emeltchenko | 2455a3e | 2011-12-19 16:31:28 +0200 | [diff] [blame] | 200 | hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_PACKET_BASED; |
| 201 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | /* Mandatory initialization */ |
| 203 | |
| 204 | /* Reset */ |
Gustavo F. Padovan | f630cf0 | 2011-03-16 15:36:29 -0300 | [diff] [blame] | 205 | if (!test_bit(HCI_QUIRK_NO_RESET, &hdev->quirks)) { |
Andrei Emeltchenko | e61ef49 | 2011-12-19 16:31:27 +0200 | [diff] [blame] | 206 | set_bit(HCI_RESET, &hdev->flags); |
| 207 | hci_send_cmd(hdev, HCI_OP_RESET, 0, NULL); |
Gustavo F. Padovan | f630cf0 | 2011-03-16 15:36:29 -0300 | [diff] [blame] | 208 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | |
| 210 | /* Read Local Supported Features */ |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 211 | hci_send_cmd(hdev, HCI_OP_READ_LOCAL_FEATURES, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 213 | /* Read Local Version */ |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 214 | hci_send_cmd(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL); |
Marcel Holtmann | 1143e5a | 2006-09-23 09:57:20 +0200 | [diff] [blame] | 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | /* Read Buffer Size (ACL mtu, max pkt, etc.) */ |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 217 | hci_send_cmd(hdev, HCI_OP_READ_BUFFER_SIZE, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 218 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | /* Read BD Address */ |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 220 | hci_send_cmd(hdev, HCI_OP_READ_BD_ADDR, 0, NULL); |
| 221 | |
| 222 | /* Read Class of Device */ |
| 223 | hci_send_cmd(hdev, HCI_OP_READ_CLASS_OF_DEV, 0, NULL); |
| 224 | |
| 225 | /* Read Local Name */ |
| 226 | hci_send_cmd(hdev, HCI_OP_READ_LOCAL_NAME, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | |
| 228 | /* Read Voice Setting */ |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 229 | hci_send_cmd(hdev, HCI_OP_READ_VOICE_SETTING, 0, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
| 231 | /* Optional initialization */ |
| 232 | |
| 233 | /* Clear Event Filters */ |
Marcel Holtmann | 89f2783 | 2007-09-09 08:39:49 +0200 | [diff] [blame] | 234 | flt_type = HCI_FLT_CLEAR_ALL; |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 235 | hci_send_cmd(hdev, HCI_OP_SET_EVENT_FLT, 1, &flt_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | /* Connection accept timeout ~20 secs */ |
YOSHIFUJI Hideaki | aca3192 | 2007-03-25 20:12:50 -0700 | [diff] [blame] | 238 | param = cpu_to_le16(0x7d00); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 239 | hci_send_cmd(hdev, HCI_OP_WRITE_CA_TIMEOUT, 2, ¶m); |
Johan Hedberg | b0916ea | 2011-01-10 13:44:55 +0200 | [diff] [blame] | 240 | |
| 241 | bacpy(&cp.bdaddr, BDADDR_ANY); |
| 242 | cp.delete_all = 1; |
| 243 | hci_send_cmd(hdev, HCI_OP_DELETE_STORED_LINK_KEY, sizeof(cp), &cp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | } |
| 245 | |
Andrei Emeltchenko | e61ef49 | 2011-12-19 16:31:27 +0200 | [diff] [blame] | 246 | static void amp_init(struct hci_dev *hdev) |
| 247 | { |
Andrei Emeltchenko | 2455a3e | 2011-12-19 16:31:28 +0200 | [diff] [blame] | 248 | hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_BLOCK_BASED; |
| 249 | |
Andrei Emeltchenko | e61ef49 | 2011-12-19 16:31:27 +0200 | [diff] [blame] | 250 | /* Reset */ |
| 251 | hci_send_cmd(hdev, HCI_OP_RESET, 0, NULL); |
| 252 | |
| 253 | /* Read Local Version */ |
| 254 | hci_send_cmd(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL); |
| 255 | } |
| 256 | |
| 257 | static void hci_init_req(struct hci_dev *hdev, unsigned long opt) |
| 258 | { |
| 259 | struct sk_buff *skb; |
| 260 | |
| 261 | BT_DBG("%s %ld", hdev->name, opt); |
| 262 | |
| 263 | /* Driver initialization */ |
| 264 | |
| 265 | /* Special commands */ |
| 266 | while ((skb = skb_dequeue(&hdev->driver_init))) { |
| 267 | bt_cb(skb)->pkt_type = HCI_COMMAND_PKT; |
| 268 | skb->dev = (void *) hdev; |
| 269 | |
| 270 | skb_queue_tail(&hdev->cmd_q, skb); |
| 271 | queue_work(hdev->workqueue, &hdev->cmd_work); |
| 272 | } |
| 273 | skb_queue_purge(&hdev->driver_init); |
| 274 | |
| 275 | switch (hdev->dev_type) { |
| 276 | case HCI_BREDR: |
| 277 | bredr_init(hdev); |
| 278 | break; |
| 279 | |
| 280 | case HCI_AMP: |
| 281 | amp_init(hdev); |
| 282 | break; |
| 283 | |
| 284 | default: |
| 285 | BT_ERR("Unknown device type %d", hdev->dev_type); |
| 286 | break; |
| 287 | } |
| 288 | |
| 289 | } |
| 290 | |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 291 | static void hci_le_init_req(struct hci_dev *hdev, unsigned long opt) |
| 292 | { |
| 293 | BT_DBG("%s", hdev->name); |
| 294 | |
| 295 | /* Read LE buffer size */ |
| 296 | hci_send_cmd(hdev, HCI_OP_LE_READ_BUFFER_SIZE, 0, NULL); |
| 297 | } |
| 298 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | static void hci_scan_req(struct hci_dev *hdev, unsigned long opt) |
| 300 | { |
| 301 | __u8 scan = opt; |
| 302 | |
| 303 | BT_DBG("%s %x", hdev->name, scan); |
| 304 | |
| 305 | /* Inquiry and Page scans */ |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 306 | hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | } |
| 308 | |
| 309 | static void hci_auth_req(struct hci_dev *hdev, unsigned long opt) |
| 310 | { |
| 311 | __u8 auth = opt; |
| 312 | |
| 313 | BT_DBG("%s %x", hdev->name, auth); |
| 314 | |
| 315 | /* Authentication */ |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 316 | hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, 1, &auth); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | static void hci_encrypt_req(struct hci_dev *hdev, unsigned long opt) |
| 320 | { |
| 321 | __u8 encrypt = opt; |
| 322 | |
| 323 | BT_DBG("%s %x", hdev->name, encrypt); |
| 324 | |
Marcel Holtmann | e4e8e37 | 2008-07-14 20:13:47 +0200 | [diff] [blame] | 325 | /* Encryption */ |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 326 | hci_send_cmd(hdev, HCI_OP_WRITE_ENCRYPT_MODE, 1, &encrypt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Marcel Holtmann | e4e8e37 | 2008-07-14 20:13:47 +0200 | [diff] [blame] | 329 | static void hci_linkpol_req(struct hci_dev *hdev, unsigned long opt) |
| 330 | { |
| 331 | __le16 policy = cpu_to_le16(opt); |
| 332 | |
Marcel Holtmann | a418b89 | 2008-11-30 12:17:28 +0100 | [diff] [blame] | 333 | BT_DBG("%s %x", hdev->name, policy); |
Marcel Holtmann | e4e8e37 | 2008-07-14 20:13:47 +0200 | [diff] [blame] | 334 | |
| 335 | /* Default link policy */ |
| 336 | hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, 2, &policy); |
| 337 | } |
| 338 | |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 339 | /* Get HCI device by index. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | * Device is held on return. */ |
| 341 | struct hci_dev *hci_dev_get(int index) |
| 342 | { |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 343 | struct hci_dev *hdev = NULL, *d; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
| 345 | BT_DBG("%d", index); |
| 346 | |
| 347 | if (index < 0) |
| 348 | return NULL; |
| 349 | |
| 350 | read_lock(&hci_dev_list_lock); |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 351 | list_for_each_entry(d, &hci_dev_list, list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 352 | if (d->id == index) { |
| 353 | hdev = hci_dev_hold(d); |
| 354 | break; |
| 355 | } |
| 356 | } |
| 357 | read_unlock(&hci_dev_list_lock); |
| 358 | return hdev; |
| 359 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | |
| 361 | /* ---- Inquiry support ---- */ |
Johan Hedberg | ff9ef57 | 2012-01-04 14:23:45 +0200 | [diff] [blame] | 362 | |
Johan Hedberg | 30dc78e | 2012-01-04 15:44:20 +0200 | [diff] [blame] | 363 | bool hci_discovery_active(struct hci_dev *hdev) |
| 364 | { |
| 365 | struct discovery_state *discov = &hdev->discovery; |
| 366 | |
Andre Guedes | 6fbe195 | 2012-02-03 17:47:58 -0300 | [diff] [blame] | 367 | switch (discov->state) { |
Andre Guedes | 343f935 | 2012-02-17 20:39:37 -0300 | [diff] [blame] | 368 | case DISCOVERY_FINDING: |
Andre Guedes | 6fbe195 | 2012-02-03 17:47:58 -0300 | [diff] [blame] | 369 | case DISCOVERY_RESOLVING: |
Johan Hedberg | 30dc78e | 2012-01-04 15:44:20 +0200 | [diff] [blame] | 370 | return true; |
| 371 | |
Andre Guedes | 6fbe195 | 2012-02-03 17:47:58 -0300 | [diff] [blame] | 372 | default: |
| 373 | return false; |
| 374 | } |
Johan Hedberg | 30dc78e | 2012-01-04 15:44:20 +0200 | [diff] [blame] | 375 | } |
| 376 | |
Johan Hedberg | ff9ef57 | 2012-01-04 14:23:45 +0200 | [diff] [blame] | 377 | void hci_discovery_set_state(struct hci_dev *hdev, int state) |
| 378 | { |
| 379 | BT_DBG("%s state %u -> %u", hdev->name, hdev->discovery.state, state); |
| 380 | |
| 381 | if (hdev->discovery.state == state) |
| 382 | return; |
| 383 | |
| 384 | switch (state) { |
| 385 | case DISCOVERY_STOPPED: |
Andre Guedes | 7b99b65 | 2012-02-13 15:41:02 -0300 | [diff] [blame] | 386 | if (hdev->discovery.state != DISCOVERY_STARTING) |
| 387 | mgmt_discovering(hdev, 0); |
Johan Hedberg | f963e8e | 2012-02-20 23:30:44 +0200 | [diff] [blame] | 388 | hdev->discovery.type = 0; |
Johan Hedberg | ff9ef57 | 2012-01-04 14:23:45 +0200 | [diff] [blame] | 389 | break; |
| 390 | case DISCOVERY_STARTING: |
| 391 | break; |
Andre Guedes | 343f935 | 2012-02-17 20:39:37 -0300 | [diff] [blame] | 392 | case DISCOVERY_FINDING: |
Johan Hedberg | ff9ef57 | 2012-01-04 14:23:45 +0200 | [diff] [blame] | 393 | mgmt_discovering(hdev, 1); |
| 394 | break; |
Johan Hedberg | 30dc78e | 2012-01-04 15:44:20 +0200 | [diff] [blame] | 395 | case DISCOVERY_RESOLVING: |
| 396 | break; |
Johan Hedberg | ff9ef57 | 2012-01-04 14:23:45 +0200 | [diff] [blame] | 397 | case DISCOVERY_STOPPING: |
| 398 | break; |
| 399 | } |
| 400 | |
| 401 | hdev->discovery.state = state; |
| 402 | } |
| 403 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 404 | static void inquiry_cache_flush(struct hci_dev *hdev) |
| 405 | { |
Johan Hedberg | 3088351 | 2012-01-04 14:16:21 +0200 | [diff] [blame] | 406 | struct discovery_state *cache = &hdev->discovery; |
Johan Hedberg | b57c1a5 | 2012-01-03 16:03:00 +0200 | [diff] [blame] | 407 | struct inquiry_entry *p, *n; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 409 | list_for_each_entry_safe(p, n, &cache->all, all) { |
| 410 | list_del(&p->all); |
Johan Hedberg | b57c1a5 | 2012-01-03 16:03:00 +0200 | [diff] [blame] | 411 | kfree(p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | } |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 413 | |
| 414 | INIT_LIST_HEAD(&cache->unknown); |
| 415 | INIT_LIST_HEAD(&cache->resolve); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | } |
| 417 | |
| 418 | struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr) |
| 419 | { |
Johan Hedberg | 3088351 | 2012-01-04 14:16:21 +0200 | [diff] [blame] | 420 | struct discovery_state *cache = &hdev->discovery; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | struct inquiry_entry *e; |
| 422 | |
| 423 | BT_DBG("cache %p, %s", cache, batostr(bdaddr)); |
| 424 | |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 425 | list_for_each_entry(e, &cache->all, all) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | if (!bacmp(&e->data.bdaddr, bdaddr)) |
Johan Hedberg | b57c1a5 | 2012-01-03 16:03:00 +0200 | [diff] [blame] | 427 | return e; |
| 428 | } |
| 429 | |
| 430 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 431 | } |
| 432 | |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 433 | struct inquiry_entry *hci_inquiry_cache_lookup_unknown(struct hci_dev *hdev, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 434 | bdaddr_t *bdaddr) |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 435 | { |
Johan Hedberg | 3088351 | 2012-01-04 14:16:21 +0200 | [diff] [blame] | 436 | struct discovery_state *cache = &hdev->discovery; |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 437 | struct inquiry_entry *e; |
| 438 | |
| 439 | BT_DBG("cache %p, %s", cache, batostr(bdaddr)); |
| 440 | |
| 441 | list_for_each_entry(e, &cache->unknown, list) { |
| 442 | if (!bacmp(&e->data.bdaddr, bdaddr)) |
| 443 | return e; |
| 444 | } |
| 445 | |
| 446 | return NULL; |
| 447 | } |
| 448 | |
Johan Hedberg | 30dc78e | 2012-01-04 15:44:20 +0200 | [diff] [blame] | 449 | struct inquiry_entry *hci_inquiry_cache_lookup_resolve(struct hci_dev *hdev, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 450 | bdaddr_t *bdaddr, |
| 451 | int state) |
Johan Hedberg | 30dc78e | 2012-01-04 15:44:20 +0200 | [diff] [blame] | 452 | { |
| 453 | struct discovery_state *cache = &hdev->discovery; |
| 454 | struct inquiry_entry *e; |
| 455 | |
| 456 | BT_DBG("cache %p bdaddr %s state %d", cache, batostr(bdaddr), state); |
| 457 | |
| 458 | list_for_each_entry(e, &cache->resolve, list) { |
| 459 | if (!bacmp(bdaddr, BDADDR_ANY) && e->name_state == state) |
| 460 | return e; |
| 461 | if (!bacmp(&e->data.bdaddr, bdaddr)) |
| 462 | return e; |
| 463 | } |
| 464 | |
| 465 | return NULL; |
| 466 | } |
| 467 | |
Johan Hedberg | a3d4e20 | 2012-01-09 00:53:02 +0200 | [diff] [blame] | 468 | void hci_inquiry_cache_update_resolve(struct hci_dev *hdev, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 469 | struct inquiry_entry *ie) |
Johan Hedberg | a3d4e20 | 2012-01-09 00:53:02 +0200 | [diff] [blame] | 470 | { |
| 471 | struct discovery_state *cache = &hdev->discovery; |
| 472 | struct list_head *pos = &cache->resolve; |
| 473 | struct inquiry_entry *p; |
| 474 | |
| 475 | list_del(&ie->list); |
| 476 | |
| 477 | list_for_each_entry(p, &cache->resolve, list) { |
| 478 | if (p->name_state != NAME_PENDING && |
| 479 | abs(p->data.rssi) >= abs(ie->data.rssi)) |
| 480 | break; |
| 481 | pos = &p->list; |
| 482 | } |
| 483 | |
| 484 | list_add(&ie->list, pos); |
| 485 | } |
| 486 | |
Johan Hedberg | 3175405 | 2012-01-04 13:39:52 +0200 | [diff] [blame] | 487 | bool hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 488 | bool name_known, bool *ssp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 489 | { |
Johan Hedberg | 3088351 | 2012-01-04 14:16:21 +0200 | [diff] [blame] | 490 | struct discovery_state *cache = &hdev->discovery; |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 491 | struct inquiry_entry *ie; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | |
| 493 | BT_DBG("cache %p, %s", cache, batostr(&data->bdaddr)); |
| 494 | |
Johan Hedberg | 388fc8f | 2012-02-23 00:38:59 +0200 | [diff] [blame] | 495 | if (ssp) |
| 496 | *ssp = data->ssp_mode; |
| 497 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 498 | ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr); |
Johan Hedberg | a3d4e20 | 2012-01-09 00:53:02 +0200 | [diff] [blame] | 499 | if (ie) { |
Johan Hedberg | 388fc8f | 2012-02-23 00:38:59 +0200 | [diff] [blame] | 500 | if (ie->data.ssp_mode && ssp) |
| 501 | *ssp = true; |
| 502 | |
Johan Hedberg | a3d4e20 | 2012-01-09 00:53:02 +0200 | [diff] [blame] | 503 | if (ie->name_state == NAME_NEEDED && |
| 504 | data->rssi != ie->data.rssi) { |
| 505 | ie->data.rssi = data->rssi; |
| 506 | hci_inquiry_cache_update_resolve(hdev, ie); |
| 507 | } |
| 508 | |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 509 | goto update; |
Johan Hedberg | a3d4e20 | 2012-01-09 00:53:02 +0200 | [diff] [blame] | 510 | } |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 511 | |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 512 | /* Entry not in the cache. Add new one. */ |
| 513 | ie = kzalloc(sizeof(struct inquiry_entry), GFP_ATOMIC); |
| 514 | if (!ie) |
Johan Hedberg | 3175405 | 2012-01-04 13:39:52 +0200 | [diff] [blame] | 515 | return false; |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 516 | |
| 517 | list_add(&ie->all, &cache->all); |
| 518 | |
| 519 | if (name_known) { |
| 520 | ie->name_state = NAME_KNOWN; |
| 521 | } else { |
| 522 | ie->name_state = NAME_NOT_KNOWN; |
| 523 | list_add(&ie->list, &cache->unknown); |
| 524 | } |
| 525 | |
| 526 | update: |
| 527 | if (name_known && ie->name_state != NAME_KNOWN && |
| 528 | ie->name_state != NAME_PENDING) { |
| 529 | ie->name_state = NAME_KNOWN; |
| 530 | list_del(&ie->list); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | } |
| 532 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 533 | memcpy(&ie->data, data, sizeof(*data)); |
| 534 | ie->timestamp = jiffies; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | cache->timestamp = jiffies; |
Johan Hedberg | 3175405 | 2012-01-04 13:39:52 +0200 | [diff] [blame] | 536 | |
| 537 | if (ie->name_state == NAME_NOT_KNOWN) |
| 538 | return false; |
| 539 | |
| 540 | return true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | static int inquiry_cache_dump(struct hci_dev *hdev, int num, __u8 *buf) |
| 544 | { |
Johan Hedberg | 3088351 | 2012-01-04 14:16:21 +0200 | [diff] [blame] | 545 | struct discovery_state *cache = &hdev->discovery; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 546 | struct inquiry_info *info = (struct inquiry_info *) buf; |
| 547 | struct inquiry_entry *e; |
| 548 | int copied = 0; |
| 549 | |
Johan Hedberg | 561aafb | 2012-01-04 13:31:59 +0200 | [diff] [blame] | 550 | list_for_each_entry(e, &cache->all, all) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 551 | struct inquiry_data *data = &e->data; |
Johan Hedberg | b57c1a5 | 2012-01-03 16:03:00 +0200 | [diff] [blame] | 552 | |
| 553 | if (copied >= num) |
| 554 | break; |
| 555 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 556 | bacpy(&info->bdaddr, &data->bdaddr); |
| 557 | info->pscan_rep_mode = data->pscan_rep_mode; |
| 558 | info->pscan_period_mode = data->pscan_period_mode; |
| 559 | info->pscan_mode = data->pscan_mode; |
| 560 | memcpy(info->dev_class, data->dev_class, 3); |
| 561 | info->clock_offset = data->clock_offset; |
Johan Hedberg | b57c1a5 | 2012-01-03 16:03:00 +0200 | [diff] [blame] | 562 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 563 | info++; |
Johan Hedberg | b57c1a5 | 2012-01-03 16:03:00 +0200 | [diff] [blame] | 564 | copied++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 565 | } |
| 566 | |
| 567 | BT_DBG("cache %p, copied %d", cache, copied); |
| 568 | return copied; |
| 569 | } |
| 570 | |
| 571 | static void hci_inq_req(struct hci_dev *hdev, unsigned long opt) |
| 572 | { |
| 573 | struct hci_inquiry_req *ir = (struct hci_inquiry_req *) opt; |
| 574 | struct hci_cp_inquiry cp; |
| 575 | |
| 576 | BT_DBG("%s", hdev->name); |
| 577 | |
| 578 | if (test_bit(HCI_INQUIRY, &hdev->flags)) |
| 579 | return; |
| 580 | |
| 581 | /* Start Inquiry */ |
| 582 | memcpy(&cp.lap, &ir->lap, 3); |
| 583 | cp.length = ir->length; |
| 584 | cp.num_rsp = ir->num_rsp; |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 585 | hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | } |
| 587 | |
| 588 | int hci_inquiry(void __user *arg) |
| 589 | { |
| 590 | __u8 __user *ptr = arg; |
| 591 | struct hci_inquiry_req ir; |
| 592 | struct hci_dev *hdev; |
| 593 | int err = 0, do_inquiry = 0, max_rsp; |
| 594 | long timeo; |
| 595 | __u8 *buf; |
| 596 | |
| 597 | if (copy_from_user(&ir, ptr, sizeof(ir))) |
| 598 | return -EFAULT; |
| 599 | |
Andrei Emeltchenko | 5a08ecc | 2011-01-11 17:20:20 +0200 | [diff] [blame] | 600 | hdev = hci_dev_get(ir.dev_id); |
| 601 | if (!hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | return -ENODEV; |
| 603 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 604 | hci_dev_lock(hdev); |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 605 | if (inquiry_cache_age(hdev) > INQUIRY_CACHE_AGE_MAX || |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 606 | inquiry_cache_empty(hdev) || |
| 607 | ir.flags & IREQ_CACHE_FLUSH) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 608 | inquiry_cache_flush(hdev); |
| 609 | do_inquiry = 1; |
| 610 | } |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 611 | hci_dev_unlock(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 612 | |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 613 | timeo = ir.length * msecs_to_jiffies(2000); |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 614 | |
| 615 | if (do_inquiry) { |
| 616 | err = hci_request(hdev, hci_inq_req, (unsigned long)&ir, timeo); |
| 617 | if (err < 0) |
| 618 | goto done; |
| 619 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 620 | |
| 621 | /* for unlimited number of responses we will use buffer with 255 entries */ |
| 622 | max_rsp = (ir.num_rsp == 0) ? 255 : ir.num_rsp; |
| 623 | |
| 624 | /* cache_dump can't sleep. Therefore we allocate temp buffer and then |
| 625 | * copy it to the user space. |
| 626 | */ |
Szymon Janc | 01df8c3 | 2011-02-17 16:46:47 +0100 | [diff] [blame] | 627 | buf = kmalloc(sizeof(struct inquiry_info) * max_rsp, GFP_KERNEL); |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 628 | if (!buf) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 629 | err = -ENOMEM; |
| 630 | goto done; |
| 631 | } |
| 632 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 633 | hci_dev_lock(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 634 | ir.num_rsp = inquiry_cache_dump(hdev, max_rsp, buf); |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 635 | hci_dev_unlock(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 636 | |
| 637 | BT_DBG("num_rsp %d", ir.num_rsp); |
| 638 | |
| 639 | if (!copy_to_user(ptr, &ir, sizeof(ir))) { |
| 640 | ptr += sizeof(ir); |
| 641 | if (copy_to_user(ptr, buf, sizeof(struct inquiry_info) * |
| 642 | ir.num_rsp)) |
| 643 | err = -EFAULT; |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 644 | } else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 645 | err = -EFAULT; |
| 646 | |
| 647 | kfree(buf); |
| 648 | |
| 649 | done: |
| 650 | hci_dev_put(hdev); |
| 651 | return err; |
| 652 | } |
| 653 | |
| 654 | /* ---- HCI ioctl helpers ---- */ |
| 655 | |
| 656 | int hci_dev_open(__u16 dev) |
| 657 | { |
| 658 | struct hci_dev *hdev; |
| 659 | int ret = 0; |
| 660 | |
Andrei Emeltchenko | 5a08ecc | 2011-01-11 17:20:20 +0200 | [diff] [blame] | 661 | hdev = hci_dev_get(dev); |
| 662 | if (!hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | return -ENODEV; |
| 664 | |
| 665 | BT_DBG("%s %p", hdev->name, hdev); |
| 666 | |
| 667 | hci_req_lock(hdev); |
| 668 | |
Johan Hovold | 9432496 | 2012-03-15 14:48:41 +0100 | [diff] [blame] | 669 | if (test_bit(HCI_UNREGISTER, &hdev->dev_flags)) { |
| 670 | ret = -ENODEV; |
| 671 | goto done; |
| 672 | } |
| 673 | |
Marcel Holtmann | 611b30f | 2009-06-08 14:41:38 +0200 | [diff] [blame] | 674 | if (hdev->rfkill && rfkill_blocked(hdev->rfkill)) { |
| 675 | ret = -ERFKILL; |
| 676 | goto done; |
| 677 | } |
| 678 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 679 | if (test_bit(HCI_UP, &hdev->flags)) { |
| 680 | ret = -EALREADY; |
| 681 | goto done; |
| 682 | } |
| 683 | |
| 684 | if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks)) |
| 685 | set_bit(HCI_RAW, &hdev->flags); |
| 686 | |
Andrei Emeltchenko | 07e3b94 | 2011-11-11 17:02:15 +0200 | [diff] [blame] | 687 | /* Treat all non BR/EDR controllers as raw devices if |
| 688 | enable_hs is not set */ |
| 689 | if (hdev->dev_type != HCI_BREDR && !enable_hs) |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 690 | set_bit(HCI_RAW, &hdev->flags); |
| 691 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 692 | if (hdev->open(hdev)) { |
| 693 | ret = -EIO; |
| 694 | goto done; |
| 695 | } |
| 696 | |
| 697 | if (!test_bit(HCI_RAW, &hdev->flags)) { |
| 698 | atomic_set(&hdev->cmd_cnt, 1); |
| 699 | set_bit(HCI_INIT, &hdev->flags); |
Johan Hedberg | a5040ef | 2011-01-10 13:28:59 +0200 | [diff] [blame] | 700 | hdev->init_last_cmd = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 701 | |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 702 | ret = __hci_request(hdev, hci_init_req, 0, |
| 703 | msecs_to_jiffies(HCI_INIT_TIMEOUT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 704 | |
Andre Guedes | eead27d | 2011-06-30 19:20:55 -0300 | [diff] [blame] | 705 | if (lmp_host_le_capable(hdev)) |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 706 | ret = __hci_request(hdev, hci_le_init_req, 0, |
| 707 | msecs_to_jiffies(HCI_INIT_TIMEOUT)); |
| 708 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 709 | clear_bit(HCI_INIT, &hdev->flags); |
| 710 | } |
| 711 | |
| 712 | if (!ret) { |
| 713 | hci_dev_hold(hdev); |
| 714 | set_bit(HCI_UP, &hdev->flags); |
| 715 | hci_notify(hdev, HCI_DEV_UP); |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 716 | if (!test_bit(HCI_SETUP, &hdev->dev_flags)) { |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 717 | hci_dev_lock(hdev); |
Johan Hedberg | 744cf19 | 2011-11-08 20:40:14 +0200 | [diff] [blame] | 718 | mgmt_powered(hdev, 1); |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 719 | hci_dev_unlock(hdev); |
Johan Hedberg | 56e5cb8 | 2011-11-08 20:40:16 +0200 | [diff] [blame] | 720 | } |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 721 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 722 | /* Init failed, cleanup */ |
Gustavo F. Padovan | 3eff45e | 2011-12-15 00:50:02 -0200 | [diff] [blame] | 723 | flush_work(&hdev->tx_work); |
Gustavo F. Padovan | c347b76 | 2011-12-14 23:53:47 -0200 | [diff] [blame] | 724 | flush_work(&hdev->cmd_work); |
Marcel Holtmann | b78752c | 2010-08-08 23:06:53 -0400 | [diff] [blame] | 725 | flush_work(&hdev->rx_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | |
| 727 | skb_queue_purge(&hdev->cmd_q); |
| 728 | skb_queue_purge(&hdev->rx_q); |
| 729 | |
| 730 | if (hdev->flush) |
| 731 | hdev->flush(hdev); |
| 732 | |
| 733 | if (hdev->sent_cmd) { |
| 734 | kfree_skb(hdev->sent_cmd); |
| 735 | hdev->sent_cmd = NULL; |
| 736 | } |
| 737 | |
| 738 | hdev->close(hdev); |
| 739 | hdev->flags = 0; |
| 740 | } |
| 741 | |
| 742 | done: |
| 743 | hci_req_unlock(hdev); |
| 744 | hci_dev_put(hdev); |
| 745 | return ret; |
| 746 | } |
| 747 | |
| 748 | static int hci_dev_do_close(struct hci_dev *hdev) |
| 749 | { |
| 750 | BT_DBG("%s %p", hdev->name, hdev); |
| 751 | |
Andre Guedes | 28b75a8 | 2012-02-03 17:48:00 -0300 | [diff] [blame] | 752 | cancel_work_sync(&hdev->le_scan); |
| 753 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | hci_req_cancel(hdev, ENODEV); |
| 755 | hci_req_lock(hdev); |
| 756 | |
| 757 | if (!test_and_clear_bit(HCI_UP, &hdev->flags)) { |
Vinicius Costa Gomes | b79f44c | 2011-04-11 18:46:55 -0300 | [diff] [blame] | 758 | del_timer_sync(&hdev->cmd_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 759 | hci_req_unlock(hdev); |
| 760 | return 0; |
| 761 | } |
| 762 | |
Gustavo F. Padovan | 3eff45e | 2011-12-15 00:50:02 -0200 | [diff] [blame] | 763 | /* Flush RX and TX works */ |
| 764 | flush_work(&hdev->tx_work); |
Marcel Holtmann | b78752c | 2010-08-08 23:06:53 -0400 | [diff] [blame] | 765 | flush_work(&hdev->rx_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 767 | if (hdev->discov_timeout > 0) { |
Johan Hedberg | e0f9309 | 2011-11-09 01:44:22 +0200 | [diff] [blame] | 768 | cancel_delayed_work(&hdev->discov_off); |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 769 | hdev->discov_timeout = 0; |
Johan Hedberg | 5e5282b | 2012-02-21 16:01:30 +0200 | [diff] [blame] | 770 | clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags); |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 771 | } |
| 772 | |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 773 | if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) |
Johan Hedberg | 7d78525 | 2011-12-15 00:47:39 +0200 | [diff] [blame] | 774 | cancel_delayed_work(&hdev->service_cache); |
| 775 | |
Andre Guedes | 7ba8b4b | 2012-02-03 17:47:59 -0300 | [diff] [blame] | 776 | cancel_delayed_work_sync(&hdev->le_scan_disable); |
| 777 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 778 | hci_dev_lock(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 779 | inquiry_cache_flush(hdev); |
| 780 | hci_conn_hash_flush(hdev); |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 781 | hci_dev_unlock(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 782 | |
| 783 | hci_notify(hdev, HCI_DEV_DOWN); |
| 784 | |
| 785 | if (hdev->flush) |
| 786 | hdev->flush(hdev); |
| 787 | |
| 788 | /* Reset device */ |
| 789 | skb_queue_purge(&hdev->cmd_q); |
| 790 | atomic_set(&hdev->cmd_cnt, 1); |
Johan Hedberg | 8af5946 | 2012-02-03 21:29:40 +0200 | [diff] [blame] | 791 | if (!test_bit(HCI_RAW, &hdev->flags) && |
| 792 | test_bit(HCI_QUIRK_NO_RESET, &hdev->quirks)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 793 | set_bit(HCI_INIT, &hdev->flags); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 794 | __hci_request(hdev, hci_reset_req, 0, |
Gustavo F. Padovan | cad44c2 | 2011-12-23 18:59:13 -0200 | [diff] [blame] | 795 | msecs_to_jiffies(250)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 796 | clear_bit(HCI_INIT, &hdev->flags); |
| 797 | } |
| 798 | |
Gustavo F. Padovan | c347b76 | 2011-12-14 23:53:47 -0200 | [diff] [blame] | 799 | /* flush cmd work */ |
| 800 | flush_work(&hdev->cmd_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 801 | |
| 802 | /* Drop queues */ |
| 803 | skb_queue_purge(&hdev->rx_q); |
| 804 | skb_queue_purge(&hdev->cmd_q); |
| 805 | skb_queue_purge(&hdev->raw_q); |
| 806 | |
| 807 | /* Drop last sent command */ |
| 808 | if (hdev->sent_cmd) { |
Vinicius Costa Gomes | b79f44c | 2011-04-11 18:46:55 -0300 | [diff] [blame] | 809 | del_timer_sync(&hdev->cmd_timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 810 | kfree_skb(hdev->sent_cmd); |
| 811 | hdev->sent_cmd = NULL; |
| 812 | } |
| 813 | |
| 814 | /* After this point our queues are empty |
| 815 | * and no tasks are scheduled. */ |
| 816 | hdev->close(hdev); |
| 817 | |
Marcel Holtmann | 8ee5654 | 2012-02-21 12:33:48 +0100 | [diff] [blame] | 818 | if (!test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) { |
| 819 | hci_dev_lock(hdev); |
| 820 | mgmt_powered(hdev, 0); |
| 821 | hci_dev_unlock(hdev); |
| 822 | } |
Johan Hedberg | 5add6af | 2010-12-16 10:00:37 +0200 | [diff] [blame] | 823 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 824 | /* Clear flags */ |
| 825 | hdev->flags = 0; |
| 826 | |
Johan Hedberg | e59fda8 | 2012-02-22 18:11:53 +0200 | [diff] [blame] | 827 | memset(hdev->eir, 0, sizeof(hdev->eir)); |
Johan Hedberg | 09b3c3f | 2012-02-22 22:01:41 +0200 | [diff] [blame] | 828 | memset(hdev->dev_class, 0, sizeof(hdev->dev_class)); |
Johan Hedberg | e59fda8 | 2012-02-22 18:11:53 +0200 | [diff] [blame] | 829 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | hci_req_unlock(hdev); |
| 831 | |
| 832 | hci_dev_put(hdev); |
| 833 | return 0; |
| 834 | } |
| 835 | |
| 836 | int hci_dev_close(__u16 dev) |
| 837 | { |
| 838 | struct hci_dev *hdev; |
| 839 | int err; |
| 840 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 841 | hdev = hci_dev_get(dev); |
| 842 | if (!hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 843 | return -ENODEV; |
Marcel Holtmann | 8ee5654 | 2012-02-21 12:33:48 +0100 | [diff] [blame] | 844 | |
| 845 | if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) |
| 846 | cancel_delayed_work(&hdev->power_off); |
| 847 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 848 | err = hci_dev_do_close(hdev); |
Marcel Holtmann | 8ee5654 | 2012-02-21 12:33:48 +0100 | [diff] [blame] | 849 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | hci_dev_put(hdev); |
| 851 | return err; |
| 852 | } |
| 853 | |
| 854 | int hci_dev_reset(__u16 dev) |
| 855 | { |
| 856 | struct hci_dev *hdev; |
| 857 | int ret = 0; |
| 858 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 859 | hdev = hci_dev_get(dev); |
| 860 | if (!hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 861 | return -ENODEV; |
| 862 | |
| 863 | hci_req_lock(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 864 | |
| 865 | if (!test_bit(HCI_UP, &hdev->flags)) |
| 866 | goto done; |
| 867 | |
| 868 | /* Drop queues */ |
| 869 | skb_queue_purge(&hdev->rx_q); |
| 870 | skb_queue_purge(&hdev->cmd_q); |
| 871 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 872 | hci_dev_lock(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 873 | inquiry_cache_flush(hdev); |
| 874 | hci_conn_hash_flush(hdev); |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 875 | hci_dev_unlock(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | |
| 877 | if (hdev->flush) |
| 878 | hdev->flush(hdev); |
| 879 | |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 880 | atomic_set(&hdev->cmd_cnt, 1); |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 881 | hdev->acl_cnt = 0; hdev->sco_cnt = 0; hdev->le_cnt = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 882 | |
| 883 | if (!test_bit(HCI_RAW, &hdev->flags)) |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 884 | ret = __hci_request(hdev, hci_reset_req, 0, |
| 885 | msecs_to_jiffies(HCI_INIT_TIMEOUT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 886 | |
| 887 | done: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 888 | hci_req_unlock(hdev); |
| 889 | hci_dev_put(hdev); |
| 890 | return ret; |
| 891 | } |
| 892 | |
| 893 | int hci_dev_reset_stat(__u16 dev) |
| 894 | { |
| 895 | struct hci_dev *hdev; |
| 896 | int ret = 0; |
| 897 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 898 | hdev = hci_dev_get(dev); |
| 899 | if (!hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | return -ENODEV; |
| 901 | |
| 902 | memset(&hdev->stat, 0, sizeof(struct hci_dev_stats)); |
| 903 | |
| 904 | hci_dev_put(hdev); |
| 905 | |
| 906 | return ret; |
| 907 | } |
| 908 | |
| 909 | int hci_dev_cmd(unsigned int cmd, void __user *arg) |
| 910 | { |
| 911 | struct hci_dev *hdev; |
| 912 | struct hci_dev_req dr; |
| 913 | int err = 0; |
| 914 | |
| 915 | if (copy_from_user(&dr, arg, sizeof(dr))) |
| 916 | return -EFAULT; |
| 917 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 918 | hdev = hci_dev_get(dr.dev_id); |
| 919 | if (!hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 920 | return -ENODEV; |
| 921 | |
| 922 | switch (cmd) { |
| 923 | case HCISETAUTH: |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 924 | err = hci_request(hdev, hci_auth_req, dr.dev_opt, |
| 925 | msecs_to_jiffies(HCI_INIT_TIMEOUT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | break; |
| 927 | |
| 928 | case HCISETENCRYPT: |
| 929 | if (!lmp_encrypt_capable(hdev)) { |
| 930 | err = -EOPNOTSUPP; |
| 931 | break; |
| 932 | } |
| 933 | |
| 934 | if (!test_bit(HCI_AUTH, &hdev->flags)) { |
| 935 | /* Auth must be enabled first */ |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 936 | err = hci_request(hdev, hci_auth_req, dr.dev_opt, |
| 937 | msecs_to_jiffies(HCI_INIT_TIMEOUT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 938 | if (err) |
| 939 | break; |
| 940 | } |
| 941 | |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 942 | err = hci_request(hdev, hci_encrypt_req, dr.dev_opt, |
| 943 | msecs_to_jiffies(HCI_INIT_TIMEOUT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 944 | break; |
| 945 | |
| 946 | case HCISETSCAN: |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 947 | err = hci_request(hdev, hci_scan_req, dr.dev_opt, |
| 948 | msecs_to_jiffies(HCI_INIT_TIMEOUT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | break; |
| 950 | |
Marcel Holtmann | e4e8e37 | 2008-07-14 20:13:47 +0200 | [diff] [blame] | 951 | case HCISETLINKPOL: |
| 952 | err = hci_request(hdev, hci_linkpol_req, dr.dev_opt, |
| 953 | msecs_to_jiffies(HCI_INIT_TIMEOUT)); |
| 954 | break; |
| 955 | |
| 956 | case HCISETLINKMODE: |
| 957 | hdev->link_mode = ((__u16) dr.dev_opt) & |
| 958 | (HCI_LM_MASTER | HCI_LM_ACCEPT); |
| 959 | break; |
| 960 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 961 | case HCISETPTYPE: |
| 962 | hdev->pkt_type = (__u16) dr.dev_opt; |
| 963 | break; |
| 964 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 965 | case HCISETACLMTU: |
Marcel Holtmann | e4e8e37 | 2008-07-14 20:13:47 +0200 | [diff] [blame] | 966 | hdev->acl_mtu = *((__u16 *) &dr.dev_opt + 1); |
| 967 | hdev->acl_pkts = *((__u16 *) &dr.dev_opt + 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | break; |
| 969 | |
| 970 | case HCISETSCOMTU: |
Marcel Holtmann | e4e8e37 | 2008-07-14 20:13:47 +0200 | [diff] [blame] | 971 | hdev->sco_mtu = *((__u16 *) &dr.dev_opt + 1); |
| 972 | hdev->sco_pkts = *((__u16 *) &dr.dev_opt + 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 973 | break; |
| 974 | |
| 975 | default: |
| 976 | err = -EINVAL; |
| 977 | break; |
| 978 | } |
Marcel Holtmann | e4e8e37 | 2008-07-14 20:13:47 +0200 | [diff] [blame] | 979 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | hci_dev_put(hdev); |
| 981 | return err; |
| 982 | } |
| 983 | |
| 984 | int hci_get_dev_list(void __user *arg) |
| 985 | { |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 986 | struct hci_dev *hdev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | struct hci_dev_list_req *dl; |
| 988 | struct hci_dev_req *dr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 989 | int n = 0, size, err; |
| 990 | __u16 dev_num; |
| 991 | |
| 992 | if (get_user(dev_num, (__u16 __user *) arg)) |
| 993 | return -EFAULT; |
| 994 | |
| 995 | if (!dev_num || dev_num > (PAGE_SIZE * 2) / sizeof(*dr)) |
| 996 | return -EINVAL; |
| 997 | |
| 998 | size = sizeof(*dl) + dev_num * sizeof(*dr); |
| 999 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 1000 | dl = kzalloc(size, GFP_KERNEL); |
| 1001 | if (!dl) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1002 | return -ENOMEM; |
| 1003 | |
| 1004 | dr = dl->dev_req; |
| 1005 | |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 1006 | read_lock(&hci_dev_list_lock); |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 1007 | list_for_each_entry(hdev, &hci_dev_list, list) { |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 1008 | if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) |
Johan Hedberg | e0f9309 | 2011-11-09 01:44:22 +0200 | [diff] [blame] | 1009 | cancel_delayed_work(&hdev->power_off); |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 1010 | |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 1011 | if (!test_bit(HCI_MGMT, &hdev->dev_flags)) |
| 1012 | set_bit(HCI_PAIRABLE, &hdev->dev_flags); |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 1013 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | (dr + n)->dev_id = hdev->id; |
| 1015 | (dr + n)->dev_opt = hdev->flags; |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 1016 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1017 | if (++n >= dev_num) |
| 1018 | break; |
| 1019 | } |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 1020 | read_unlock(&hci_dev_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1021 | |
| 1022 | dl->dev_num = n; |
| 1023 | size = sizeof(*dl) + n * sizeof(*dr); |
| 1024 | |
| 1025 | err = copy_to_user(arg, dl, size); |
| 1026 | kfree(dl); |
| 1027 | |
| 1028 | return err ? -EFAULT : 0; |
| 1029 | } |
| 1030 | |
| 1031 | int hci_get_dev_info(void __user *arg) |
| 1032 | { |
| 1033 | struct hci_dev *hdev; |
| 1034 | struct hci_dev_info di; |
| 1035 | int err = 0; |
| 1036 | |
| 1037 | if (copy_from_user(&di, arg, sizeof(di))) |
| 1038 | return -EFAULT; |
| 1039 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 1040 | hdev = hci_dev_get(di.dev_id); |
| 1041 | if (!hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1042 | return -ENODEV; |
| 1043 | |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 1044 | if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) |
Johan Hedberg | 3243553 | 2011-11-07 22:16:04 +0200 | [diff] [blame] | 1045 | cancel_delayed_work_sync(&hdev->power_off); |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1046 | |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 1047 | if (!test_bit(HCI_MGMT, &hdev->dev_flags)) |
| 1048 | set_bit(HCI_PAIRABLE, &hdev->dev_flags); |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 1049 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1050 | strcpy(di.name, hdev->name); |
| 1051 | di.bdaddr = hdev->bdaddr; |
Marcel Holtmann | 943da25 | 2010-02-13 02:28:41 +0100 | [diff] [blame] | 1052 | di.type = (hdev->bus & 0x0f) | (hdev->dev_type << 4); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1053 | di.flags = hdev->flags; |
| 1054 | di.pkt_type = hdev->pkt_type; |
| 1055 | di.acl_mtu = hdev->acl_mtu; |
| 1056 | di.acl_pkts = hdev->acl_pkts; |
| 1057 | di.sco_mtu = hdev->sco_mtu; |
| 1058 | di.sco_pkts = hdev->sco_pkts; |
| 1059 | di.link_policy = hdev->link_policy; |
| 1060 | di.link_mode = hdev->link_mode; |
| 1061 | |
| 1062 | memcpy(&di.stat, &hdev->stat, sizeof(di.stat)); |
| 1063 | memcpy(&di.features, &hdev->features, sizeof(di.features)); |
| 1064 | |
| 1065 | if (copy_to_user(arg, &di, sizeof(di))) |
| 1066 | err = -EFAULT; |
| 1067 | |
| 1068 | hci_dev_put(hdev); |
| 1069 | |
| 1070 | return err; |
| 1071 | } |
| 1072 | |
| 1073 | /* ---- Interface to HCI drivers ---- */ |
| 1074 | |
Marcel Holtmann | 611b30f | 2009-06-08 14:41:38 +0200 | [diff] [blame] | 1075 | static int hci_rfkill_set_block(void *data, bool blocked) |
| 1076 | { |
| 1077 | struct hci_dev *hdev = data; |
| 1078 | |
| 1079 | BT_DBG("%p name %s blocked %d", hdev, hdev->name, blocked); |
| 1080 | |
| 1081 | if (!blocked) |
| 1082 | return 0; |
| 1083 | |
| 1084 | hci_dev_do_close(hdev); |
| 1085 | |
| 1086 | return 0; |
| 1087 | } |
| 1088 | |
| 1089 | static const struct rfkill_ops hci_rfkill_ops = { |
| 1090 | .set_block = hci_rfkill_set_block, |
| 1091 | }; |
| 1092 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1093 | /* Alloc HCI device */ |
| 1094 | struct hci_dev *hci_alloc_dev(void) |
| 1095 | { |
| 1096 | struct hci_dev *hdev; |
| 1097 | |
Marcel Holtmann | 25ea6db | 2006-07-06 15:40:09 +0200 | [diff] [blame] | 1098 | hdev = kzalloc(sizeof(struct hci_dev), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1099 | if (!hdev) |
| 1100 | return NULL; |
| 1101 | |
David Herrmann | 0ac7e70 | 2011-10-08 14:58:47 +0200 | [diff] [blame] | 1102 | hci_init_sysfs(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1103 | skb_queue_head_init(&hdev->driver_init); |
| 1104 | |
| 1105 | return hdev; |
| 1106 | } |
| 1107 | EXPORT_SYMBOL(hci_alloc_dev); |
| 1108 | |
| 1109 | /* Free HCI device */ |
| 1110 | void hci_free_dev(struct hci_dev *hdev) |
| 1111 | { |
| 1112 | skb_queue_purge(&hdev->driver_init); |
| 1113 | |
Marcel Holtmann | a91f2e3 | 2006-07-03 10:02:41 +0200 | [diff] [blame] | 1114 | /* will free via device release */ |
| 1115 | put_device(&hdev->dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1116 | } |
| 1117 | EXPORT_SYMBOL(hci_free_dev); |
| 1118 | |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1119 | static void hci_power_on(struct work_struct *work) |
| 1120 | { |
| 1121 | struct hci_dev *hdev = container_of(work, struct hci_dev, power_on); |
| 1122 | |
| 1123 | BT_DBG("%s", hdev->name); |
| 1124 | |
| 1125 | if (hci_dev_open(hdev->id) < 0) |
| 1126 | return; |
| 1127 | |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 1128 | if (test_bit(HCI_AUTO_OFF, &hdev->dev_flags)) |
Gustavo F. Padovan | 80b7ab3 | 2011-12-17 14:52:27 -0200 | [diff] [blame] | 1129 | schedule_delayed_work(&hdev->power_off, |
Johan Hedberg | 3243553 | 2011-11-07 22:16:04 +0200 | [diff] [blame] | 1130 | msecs_to_jiffies(AUTO_OFF_TIMEOUT)); |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1131 | |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 1132 | if (test_and_clear_bit(HCI_SETUP, &hdev->dev_flags)) |
Johan Hedberg | 744cf19 | 2011-11-08 20:40:14 +0200 | [diff] [blame] | 1133 | mgmt_index_added(hdev); |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1134 | } |
| 1135 | |
| 1136 | static void hci_power_off(struct work_struct *work) |
| 1137 | { |
Johan Hedberg | 3243553 | 2011-11-07 22:16:04 +0200 | [diff] [blame] | 1138 | struct hci_dev *hdev = container_of(work, struct hci_dev, |
| 1139 | power_off.work); |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1140 | |
| 1141 | BT_DBG("%s", hdev->name); |
| 1142 | |
Marcel Holtmann | 8ee5654 | 2012-02-21 12:33:48 +0100 | [diff] [blame] | 1143 | hci_dev_do_close(hdev); |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1144 | } |
| 1145 | |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 1146 | static void hci_discov_off(struct work_struct *work) |
| 1147 | { |
| 1148 | struct hci_dev *hdev; |
| 1149 | u8 scan = SCAN_PAGE; |
| 1150 | |
| 1151 | hdev = container_of(work, struct hci_dev, discov_off.work); |
| 1152 | |
| 1153 | BT_DBG("%s", hdev->name); |
| 1154 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 1155 | hci_dev_lock(hdev); |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 1156 | |
| 1157 | hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan); |
| 1158 | |
| 1159 | hdev->discov_timeout = 0; |
| 1160 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 1161 | hci_dev_unlock(hdev); |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 1162 | } |
| 1163 | |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 1164 | int hci_uuids_clear(struct hci_dev *hdev) |
| 1165 | { |
| 1166 | struct list_head *p, *n; |
| 1167 | |
| 1168 | list_for_each_safe(p, n, &hdev->uuids) { |
| 1169 | struct bt_uuid *uuid; |
| 1170 | |
| 1171 | uuid = list_entry(p, struct bt_uuid, list); |
| 1172 | |
| 1173 | list_del(p); |
| 1174 | kfree(uuid); |
| 1175 | } |
| 1176 | |
| 1177 | return 0; |
| 1178 | } |
| 1179 | |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1180 | int hci_link_keys_clear(struct hci_dev *hdev) |
| 1181 | { |
| 1182 | struct list_head *p, *n; |
| 1183 | |
| 1184 | list_for_each_safe(p, n, &hdev->link_keys) { |
| 1185 | struct link_key *key; |
| 1186 | |
| 1187 | key = list_entry(p, struct link_key, list); |
| 1188 | |
| 1189 | list_del(p); |
| 1190 | kfree(key); |
| 1191 | } |
| 1192 | |
| 1193 | return 0; |
| 1194 | } |
| 1195 | |
Vinicius Costa Gomes | b899efa | 2012-02-02 21:08:00 -0300 | [diff] [blame] | 1196 | int hci_smp_ltks_clear(struct hci_dev *hdev) |
| 1197 | { |
| 1198 | struct smp_ltk *k, *tmp; |
| 1199 | |
| 1200 | list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) { |
| 1201 | list_del(&k->list); |
| 1202 | kfree(k); |
| 1203 | } |
| 1204 | |
| 1205 | return 0; |
| 1206 | } |
| 1207 | |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1208 | struct link_key *hci_find_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr) |
| 1209 | { |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 1210 | struct link_key *k; |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1211 | |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 1212 | list_for_each_entry(k, &hdev->link_keys, list) |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1213 | if (bacmp(bdaddr, &k->bdaddr) == 0) |
| 1214 | return k; |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1215 | |
| 1216 | return NULL; |
| 1217 | } |
| 1218 | |
Vishal Agarwal | 745c0ce | 2012-04-13 17:43:22 +0530 | [diff] [blame^] | 1219 | static bool hci_persistent_key(struct hci_dev *hdev, struct hci_conn *conn, |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1220 | u8 key_type, u8 old_key_type) |
| 1221 | { |
| 1222 | /* Legacy key */ |
| 1223 | if (key_type < 0x03) |
Vishal Agarwal | 745c0ce | 2012-04-13 17:43:22 +0530 | [diff] [blame^] | 1224 | return true; |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1225 | |
| 1226 | /* Debug keys are insecure so don't store them persistently */ |
| 1227 | if (key_type == HCI_LK_DEBUG_COMBINATION) |
Vishal Agarwal | 745c0ce | 2012-04-13 17:43:22 +0530 | [diff] [blame^] | 1228 | return false; |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1229 | |
| 1230 | /* Changed combination key and there's no previous one */ |
| 1231 | if (key_type == HCI_LK_CHANGED_COMBINATION && old_key_type == 0xff) |
Vishal Agarwal | 745c0ce | 2012-04-13 17:43:22 +0530 | [diff] [blame^] | 1232 | return false; |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1233 | |
| 1234 | /* Security mode 3 case */ |
| 1235 | if (!conn) |
Vishal Agarwal | 745c0ce | 2012-04-13 17:43:22 +0530 | [diff] [blame^] | 1236 | return true; |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1237 | |
| 1238 | /* Neither local nor remote side had no-bonding as requirement */ |
| 1239 | if (conn->auth_type > 0x01 && conn->remote_auth > 0x01) |
Vishal Agarwal | 745c0ce | 2012-04-13 17:43:22 +0530 | [diff] [blame^] | 1240 | return true; |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1241 | |
| 1242 | /* Local side had dedicated bonding as requirement */ |
| 1243 | if (conn->auth_type == 0x02 || conn->auth_type == 0x03) |
Vishal Agarwal | 745c0ce | 2012-04-13 17:43:22 +0530 | [diff] [blame^] | 1244 | return true; |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1245 | |
| 1246 | /* Remote side had dedicated bonding as requirement */ |
| 1247 | if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03) |
Vishal Agarwal | 745c0ce | 2012-04-13 17:43:22 +0530 | [diff] [blame^] | 1248 | return true; |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1249 | |
| 1250 | /* If none of the above criteria match, then don't store the key |
| 1251 | * persistently */ |
Vishal Agarwal | 745c0ce | 2012-04-13 17:43:22 +0530 | [diff] [blame^] | 1252 | return false; |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1253 | } |
| 1254 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1255 | struct smp_ltk *hci_find_ltk(struct hci_dev *hdev, __le16 ediv, u8 rand[8]) |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1256 | { |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1257 | struct smp_ltk *k; |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1258 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1259 | list_for_each_entry(k, &hdev->long_term_keys, list) { |
| 1260 | if (k->ediv != ediv || |
| 1261 | memcmp(rand, k->rand, sizeof(k->rand))) |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1262 | continue; |
| 1263 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1264 | return k; |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1265 | } |
| 1266 | |
| 1267 | return NULL; |
| 1268 | } |
| 1269 | EXPORT_SYMBOL(hci_find_ltk); |
| 1270 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1271 | struct smp_ltk *hci_find_ltk_by_addr(struct hci_dev *hdev, bdaddr_t *bdaddr, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1272 | u8 addr_type) |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1273 | { |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1274 | struct smp_ltk *k; |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1275 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1276 | list_for_each_entry(k, &hdev->long_term_keys, list) |
| 1277 | if (addr_type == k->bdaddr_type && |
| 1278 | bacmp(bdaddr, &k->bdaddr) == 0) |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1279 | return k; |
| 1280 | |
| 1281 | return NULL; |
| 1282 | } |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1283 | EXPORT_SYMBOL(hci_find_ltk_by_addr); |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1284 | |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1285 | int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1286 | bdaddr_t *bdaddr, u8 *val, u8 type, u8 pin_len) |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1287 | { |
| 1288 | struct link_key *key, *old_key; |
Vishal Agarwal | 745c0ce | 2012-04-13 17:43:22 +0530 | [diff] [blame^] | 1289 | u8 old_key_type; |
| 1290 | bool persistent; |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1291 | |
| 1292 | old_key = hci_find_link_key(hdev, bdaddr); |
| 1293 | if (old_key) { |
| 1294 | old_key_type = old_key->type; |
| 1295 | key = old_key; |
| 1296 | } else { |
Johan Hedberg | 12adcf3 | 2011-04-28 11:29:00 -0700 | [diff] [blame] | 1297 | old_key_type = conn ? conn->key_type : 0xff; |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1298 | key = kzalloc(sizeof(*key), GFP_ATOMIC); |
| 1299 | if (!key) |
| 1300 | return -ENOMEM; |
| 1301 | list_add(&key->list, &hdev->link_keys); |
| 1302 | } |
| 1303 | |
| 1304 | BT_DBG("%s key for %s type %u", hdev->name, batostr(bdaddr), type); |
| 1305 | |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1306 | /* Some buggy controller combinations generate a changed |
| 1307 | * combination key for legacy pairing even when there's no |
| 1308 | * previous key */ |
| 1309 | if (type == HCI_LK_CHANGED_COMBINATION && |
| 1310 | (!conn || conn->remote_auth == 0xff) && |
Johan Hedberg | 655fe6e | 2011-04-28 11:29:01 -0700 | [diff] [blame] | 1311 | old_key_type == 0xff) { |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1312 | type = HCI_LK_COMBINATION; |
Johan Hedberg | 655fe6e | 2011-04-28 11:29:01 -0700 | [diff] [blame] | 1313 | if (conn) |
| 1314 | conn->key_type = type; |
| 1315 | } |
Johan Hedberg | d25e28a | 2011-04-28 11:28:59 -0700 | [diff] [blame] | 1316 | |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1317 | bacpy(&key->bdaddr, bdaddr); |
| 1318 | memcpy(key->val, val, 16); |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1319 | key->pin_len = pin_len; |
| 1320 | |
Waldemar Rymarkiewicz | b6020ba | 2011-04-28 12:07:53 +0200 | [diff] [blame] | 1321 | if (type == HCI_LK_CHANGED_COMBINATION) |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1322 | key->type = old_key_type; |
Johan Hedberg | 4748fed | 2011-04-28 11:29:02 -0700 | [diff] [blame] | 1323 | else |
| 1324 | key->type = type; |
| 1325 | |
Johan Hedberg | 4df378a | 2011-04-28 11:29:03 -0700 | [diff] [blame] | 1326 | if (!new_key) |
| 1327 | return 0; |
| 1328 | |
| 1329 | persistent = hci_persistent_key(hdev, conn, type, old_key_type); |
| 1330 | |
Johan Hedberg | 744cf19 | 2011-11-08 20:40:14 +0200 | [diff] [blame] | 1331 | mgmt_new_link_key(hdev, key, persistent); |
Johan Hedberg | 4df378a | 2011-04-28 11:29:03 -0700 | [diff] [blame] | 1332 | |
| 1333 | if (!persistent) { |
| 1334 | list_del(&key->list); |
| 1335 | kfree(key); |
| 1336 | } |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1337 | |
| 1338 | return 0; |
| 1339 | } |
| 1340 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1341 | int hci_add_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 addr_type, u8 type, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1342 | int new_key, u8 authenticated, u8 tk[16], u8 enc_size, u16 |
| 1343 | ediv, u8 rand[8]) |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1344 | { |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1345 | struct smp_ltk *key, *old_key; |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1346 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1347 | if (!(type & HCI_SMP_STK) && !(type & HCI_SMP_LTK)) |
| 1348 | return 0; |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1349 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1350 | old_key = hci_find_ltk_by_addr(hdev, bdaddr, addr_type); |
| 1351 | if (old_key) |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1352 | key = old_key; |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1353 | else { |
| 1354 | key = kzalloc(sizeof(*key), GFP_ATOMIC); |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1355 | if (!key) |
| 1356 | return -ENOMEM; |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1357 | list_add(&key->list, &hdev->long_term_keys); |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1358 | } |
| 1359 | |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1360 | bacpy(&key->bdaddr, bdaddr); |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1361 | key->bdaddr_type = addr_type; |
| 1362 | memcpy(key->val, tk, sizeof(key->val)); |
| 1363 | key->authenticated = authenticated; |
| 1364 | key->ediv = ediv; |
| 1365 | key->enc_size = enc_size; |
| 1366 | key->type = type; |
| 1367 | memcpy(key->rand, rand, sizeof(key->rand)); |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1368 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1369 | if (!new_key) |
| 1370 | return 0; |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1371 | |
Vinicius Costa Gomes | 261cc5a | 2012-02-02 21:08:05 -0300 | [diff] [blame] | 1372 | if (type & HCI_SMP_LTK) |
| 1373 | mgmt_new_ltk(hdev, key, 1); |
| 1374 | |
Vinicius Costa Gomes | 75d262c | 2011-07-07 18:59:36 -0300 | [diff] [blame] | 1375 | return 0; |
| 1376 | } |
| 1377 | |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1378 | int hci_remove_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr) |
| 1379 | { |
| 1380 | struct link_key *key; |
| 1381 | |
| 1382 | key = hci_find_link_key(hdev, bdaddr); |
| 1383 | if (!key) |
| 1384 | return -ENOENT; |
| 1385 | |
| 1386 | BT_DBG("%s removing %s", hdev->name, batostr(bdaddr)); |
| 1387 | |
| 1388 | list_del(&key->list); |
| 1389 | kfree(key); |
| 1390 | |
| 1391 | return 0; |
| 1392 | } |
| 1393 | |
Vinicius Costa Gomes | b899efa | 2012-02-02 21:08:00 -0300 | [diff] [blame] | 1394 | int hci_remove_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr) |
| 1395 | { |
| 1396 | struct smp_ltk *k, *tmp; |
| 1397 | |
| 1398 | list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) { |
| 1399 | if (bacmp(bdaddr, &k->bdaddr)) |
| 1400 | continue; |
| 1401 | |
| 1402 | BT_DBG("%s removing %s", hdev->name, batostr(bdaddr)); |
| 1403 | |
| 1404 | list_del(&k->list); |
| 1405 | kfree(k); |
| 1406 | } |
| 1407 | |
| 1408 | return 0; |
| 1409 | } |
| 1410 | |
Ville Tervo | 6bd3232 | 2011-02-16 16:32:41 +0200 | [diff] [blame] | 1411 | /* HCI command timer function */ |
| 1412 | static void hci_cmd_timer(unsigned long arg) |
| 1413 | { |
| 1414 | struct hci_dev *hdev = (void *) arg; |
| 1415 | |
| 1416 | BT_ERR("%s command tx timeout", hdev->name); |
| 1417 | atomic_set(&hdev->cmd_cnt, 1); |
Gustavo F. Padovan | c347b76 | 2011-12-14 23:53:47 -0200 | [diff] [blame] | 1418 | queue_work(hdev->workqueue, &hdev->cmd_work); |
Ville Tervo | 6bd3232 | 2011-02-16 16:32:41 +0200 | [diff] [blame] | 1419 | } |
| 1420 | |
Szymon Janc | 2763eda | 2011-03-22 13:12:22 +0100 | [diff] [blame] | 1421 | struct oob_data *hci_find_remote_oob_data(struct hci_dev *hdev, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1422 | bdaddr_t *bdaddr) |
Szymon Janc | 2763eda | 2011-03-22 13:12:22 +0100 | [diff] [blame] | 1423 | { |
| 1424 | struct oob_data *data; |
| 1425 | |
| 1426 | list_for_each_entry(data, &hdev->remote_oob_data, list) |
| 1427 | if (bacmp(bdaddr, &data->bdaddr) == 0) |
| 1428 | return data; |
| 1429 | |
| 1430 | return NULL; |
| 1431 | } |
| 1432 | |
| 1433 | int hci_remove_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr) |
| 1434 | { |
| 1435 | struct oob_data *data; |
| 1436 | |
| 1437 | data = hci_find_remote_oob_data(hdev, bdaddr); |
| 1438 | if (!data) |
| 1439 | return -ENOENT; |
| 1440 | |
| 1441 | BT_DBG("%s removing %s", hdev->name, batostr(bdaddr)); |
| 1442 | |
| 1443 | list_del(&data->list); |
| 1444 | kfree(data); |
| 1445 | |
| 1446 | return 0; |
| 1447 | } |
| 1448 | |
| 1449 | int hci_remote_oob_data_clear(struct hci_dev *hdev) |
| 1450 | { |
| 1451 | struct oob_data *data, *n; |
| 1452 | |
| 1453 | list_for_each_entry_safe(data, n, &hdev->remote_oob_data, list) { |
| 1454 | list_del(&data->list); |
| 1455 | kfree(data); |
| 1456 | } |
| 1457 | |
| 1458 | return 0; |
| 1459 | } |
| 1460 | |
| 1461 | int hci_add_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *hash, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1462 | u8 *randomizer) |
Szymon Janc | 2763eda | 2011-03-22 13:12:22 +0100 | [diff] [blame] | 1463 | { |
| 1464 | struct oob_data *data; |
| 1465 | |
| 1466 | data = hci_find_remote_oob_data(hdev, bdaddr); |
| 1467 | |
| 1468 | if (!data) { |
| 1469 | data = kmalloc(sizeof(*data), GFP_ATOMIC); |
| 1470 | if (!data) |
| 1471 | return -ENOMEM; |
| 1472 | |
| 1473 | bacpy(&data->bdaddr, bdaddr); |
| 1474 | list_add(&data->list, &hdev->remote_oob_data); |
| 1475 | } |
| 1476 | |
| 1477 | memcpy(data->hash, hash, sizeof(data->hash)); |
| 1478 | memcpy(data->randomizer, randomizer, sizeof(data->randomizer)); |
| 1479 | |
| 1480 | BT_DBG("%s for %s", hdev->name, batostr(bdaddr)); |
| 1481 | |
| 1482 | return 0; |
| 1483 | } |
| 1484 | |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1485 | struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr) |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1486 | { |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 1487 | struct bdaddr_list *b; |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1488 | |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 1489 | list_for_each_entry(b, &hdev->blacklist, list) |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1490 | if (bacmp(bdaddr, &b->bdaddr) == 0) |
| 1491 | return b; |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1492 | |
| 1493 | return NULL; |
| 1494 | } |
| 1495 | |
| 1496 | int hci_blacklist_clear(struct hci_dev *hdev) |
| 1497 | { |
| 1498 | struct list_head *p, *n; |
| 1499 | |
| 1500 | list_for_each_safe(p, n, &hdev->blacklist) { |
| 1501 | struct bdaddr_list *b; |
| 1502 | |
| 1503 | b = list_entry(p, struct bdaddr_list, list); |
| 1504 | |
| 1505 | list_del(p); |
| 1506 | kfree(b); |
| 1507 | } |
| 1508 | |
| 1509 | return 0; |
| 1510 | } |
| 1511 | |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 1512 | int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type) |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1513 | { |
| 1514 | struct bdaddr_list *entry; |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1515 | |
| 1516 | if (bacmp(bdaddr, BDADDR_ANY) == 0) |
| 1517 | return -EBADF; |
| 1518 | |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 1519 | if (hci_blacklist_lookup(hdev, bdaddr)) |
| 1520 | return -EEXIST; |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1521 | |
| 1522 | entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL); |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 1523 | if (!entry) |
| 1524 | return -ENOMEM; |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1525 | |
| 1526 | bacpy(&entry->bdaddr, bdaddr); |
| 1527 | |
| 1528 | list_add(&entry->list, &hdev->blacklist); |
| 1529 | |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 1530 | return mgmt_device_blocked(hdev, bdaddr, type); |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1531 | } |
| 1532 | |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 1533 | int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type) |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1534 | { |
| 1535 | struct bdaddr_list *entry; |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1536 | |
Szymon Janc | 1ec918c | 2011-11-16 09:32:21 +0100 | [diff] [blame] | 1537 | if (bacmp(bdaddr, BDADDR_ANY) == 0) |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 1538 | return hci_blacklist_clear(hdev); |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1539 | |
| 1540 | entry = hci_blacklist_lookup(hdev, bdaddr); |
Szymon Janc | 1ec918c | 2011-11-16 09:32:21 +0100 | [diff] [blame] | 1541 | if (!entry) |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 1542 | return -ENOENT; |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1543 | |
| 1544 | list_del(&entry->list); |
| 1545 | kfree(entry); |
| 1546 | |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 1547 | return mgmt_device_unblocked(hdev, bdaddr, type); |
Antti Julku | b2a66aa | 2011-06-15 12:01:14 +0300 | [diff] [blame] | 1548 | } |
| 1549 | |
Gustavo F. Padovan | db323f2 | 2011-06-20 16:39:29 -0300 | [diff] [blame] | 1550 | static void hci_clear_adv_cache(struct work_struct *work) |
Andre Guedes | 3581508 | 2011-05-26 16:23:53 -0300 | [diff] [blame] | 1551 | { |
Gustavo F. Padovan | db323f2 | 2011-06-20 16:39:29 -0300 | [diff] [blame] | 1552 | struct hci_dev *hdev = container_of(work, struct hci_dev, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1553 | adv_work.work); |
Andre Guedes | 3581508 | 2011-05-26 16:23:53 -0300 | [diff] [blame] | 1554 | |
| 1555 | hci_dev_lock(hdev); |
| 1556 | |
| 1557 | hci_adv_entries_clear(hdev); |
| 1558 | |
| 1559 | hci_dev_unlock(hdev); |
| 1560 | } |
| 1561 | |
Andre Guedes | 76c8686 | 2011-05-26 16:23:50 -0300 | [diff] [blame] | 1562 | int hci_adv_entries_clear(struct hci_dev *hdev) |
| 1563 | { |
| 1564 | struct adv_entry *entry, *tmp; |
| 1565 | |
| 1566 | list_for_each_entry_safe(entry, tmp, &hdev->adv_entries, list) { |
| 1567 | list_del(&entry->list); |
| 1568 | kfree(entry); |
| 1569 | } |
| 1570 | |
| 1571 | BT_DBG("%s adv cache cleared", hdev->name); |
| 1572 | |
| 1573 | return 0; |
| 1574 | } |
| 1575 | |
| 1576 | struct adv_entry *hci_find_adv_entry(struct hci_dev *hdev, bdaddr_t *bdaddr) |
| 1577 | { |
| 1578 | struct adv_entry *entry; |
| 1579 | |
| 1580 | list_for_each_entry(entry, &hdev->adv_entries, list) |
| 1581 | if (bacmp(bdaddr, &entry->bdaddr) == 0) |
| 1582 | return entry; |
| 1583 | |
| 1584 | return NULL; |
| 1585 | } |
| 1586 | |
| 1587 | static inline int is_connectable_adv(u8 evt_type) |
| 1588 | { |
| 1589 | if (evt_type == ADV_IND || evt_type == ADV_DIRECT_IND) |
| 1590 | return 1; |
| 1591 | |
| 1592 | return 0; |
| 1593 | } |
| 1594 | |
| 1595 | int hci_add_adv_entry(struct hci_dev *hdev, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1596 | struct hci_ev_le_advertising_info *ev) { struct adv_entry *entry; if (!is_connectable_adv(ev->evt_type)) |
Andre Guedes | 76c8686 | 2011-05-26 16:23:50 -0300 | [diff] [blame] | 1597 | return -EINVAL; |
| 1598 | |
| 1599 | /* Only new entries should be added to adv_entries. So, if |
| 1600 | * bdaddr was found, don't add it. */ |
| 1601 | if (hci_find_adv_entry(hdev, &ev->bdaddr)) |
| 1602 | return 0; |
| 1603 | |
Andre Guedes | 4777bfd | 2012-01-30 23:31:28 -0300 | [diff] [blame] | 1604 | entry = kzalloc(sizeof(*entry), GFP_KERNEL); |
Andre Guedes | 76c8686 | 2011-05-26 16:23:50 -0300 | [diff] [blame] | 1605 | if (!entry) |
| 1606 | return -ENOMEM; |
| 1607 | |
| 1608 | bacpy(&entry->bdaddr, &ev->bdaddr); |
| 1609 | entry->bdaddr_type = ev->bdaddr_type; |
| 1610 | |
| 1611 | list_add(&entry->list, &hdev->adv_entries); |
| 1612 | |
| 1613 | BT_DBG("%s adv entry added: address %s type %u", hdev->name, |
| 1614 | batostr(&entry->bdaddr), entry->bdaddr_type); |
| 1615 | |
| 1616 | return 0; |
| 1617 | } |
| 1618 | |
Andre Guedes | 7ba8b4b | 2012-02-03 17:47:59 -0300 | [diff] [blame] | 1619 | static void le_scan_param_req(struct hci_dev *hdev, unsigned long opt) |
| 1620 | { |
| 1621 | struct le_scan_params *param = (struct le_scan_params *) opt; |
| 1622 | struct hci_cp_le_set_scan_param cp; |
| 1623 | |
| 1624 | memset(&cp, 0, sizeof(cp)); |
| 1625 | cp.type = param->type; |
| 1626 | cp.interval = cpu_to_le16(param->interval); |
| 1627 | cp.window = cpu_to_le16(param->window); |
| 1628 | |
| 1629 | hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_PARAM, sizeof(cp), &cp); |
| 1630 | } |
| 1631 | |
| 1632 | static void le_scan_enable_req(struct hci_dev *hdev, unsigned long opt) |
| 1633 | { |
| 1634 | struct hci_cp_le_set_scan_enable cp; |
| 1635 | |
| 1636 | memset(&cp, 0, sizeof(cp)); |
| 1637 | cp.enable = 1; |
| 1638 | |
| 1639 | hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp); |
| 1640 | } |
| 1641 | |
| 1642 | static int hci_do_le_scan(struct hci_dev *hdev, u8 type, u16 interval, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1643 | u16 window, int timeout) |
Andre Guedes | 7ba8b4b | 2012-02-03 17:47:59 -0300 | [diff] [blame] | 1644 | { |
| 1645 | long timeo = msecs_to_jiffies(3000); |
| 1646 | struct le_scan_params param; |
| 1647 | int err; |
| 1648 | |
| 1649 | BT_DBG("%s", hdev->name); |
| 1650 | |
| 1651 | if (test_bit(HCI_LE_SCAN, &hdev->dev_flags)) |
| 1652 | return -EINPROGRESS; |
| 1653 | |
| 1654 | param.type = type; |
| 1655 | param.interval = interval; |
| 1656 | param.window = window; |
| 1657 | |
| 1658 | hci_req_lock(hdev); |
| 1659 | |
| 1660 | err = __hci_request(hdev, le_scan_param_req, (unsigned long) ¶m, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1661 | timeo); |
Andre Guedes | 7ba8b4b | 2012-02-03 17:47:59 -0300 | [diff] [blame] | 1662 | if (!err) |
| 1663 | err = __hci_request(hdev, le_scan_enable_req, 0, timeo); |
| 1664 | |
| 1665 | hci_req_unlock(hdev); |
| 1666 | |
| 1667 | if (err < 0) |
| 1668 | return err; |
| 1669 | |
| 1670 | schedule_delayed_work(&hdev->le_scan_disable, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1671 | msecs_to_jiffies(timeout)); |
Andre Guedes | 7ba8b4b | 2012-02-03 17:47:59 -0300 | [diff] [blame] | 1672 | |
| 1673 | return 0; |
| 1674 | } |
| 1675 | |
| 1676 | static void le_scan_disable_work(struct work_struct *work) |
| 1677 | { |
| 1678 | struct hci_dev *hdev = container_of(work, struct hci_dev, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1679 | le_scan_disable.work); |
Andre Guedes | 7ba8b4b | 2012-02-03 17:47:59 -0300 | [diff] [blame] | 1680 | struct hci_cp_le_set_scan_enable cp; |
| 1681 | |
| 1682 | BT_DBG("%s", hdev->name); |
| 1683 | |
| 1684 | memset(&cp, 0, sizeof(cp)); |
| 1685 | |
| 1686 | hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp); |
| 1687 | } |
| 1688 | |
Andre Guedes | 28b75a8 | 2012-02-03 17:48:00 -0300 | [diff] [blame] | 1689 | static void le_scan_work(struct work_struct *work) |
| 1690 | { |
| 1691 | struct hci_dev *hdev = container_of(work, struct hci_dev, le_scan); |
| 1692 | struct le_scan_params *param = &hdev->le_scan_params; |
| 1693 | |
| 1694 | BT_DBG("%s", hdev->name); |
| 1695 | |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1696 | hci_do_le_scan(hdev, param->type, param->interval, param->window, |
| 1697 | param->timeout); |
Andre Guedes | 28b75a8 | 2012-02-03 17:48:00 -0300 | [diff] [blame] | 1698 | } |
| 1699 | |
| 1700 | int hci_le_scan(struct hci_dev *hdev, u8 type, u16 interval, u16 window, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 1701 | int timeout) |
Andre Guedes | 28b75a8 | 2012-02-03 17:48:00 -0300 | [diff] [blame] | 1702 | { |
| 1703 | struct le_scan_params *param = &hdev->le_scan_params; |
| 1704 | |
| 1705 | BT_DBG("%s", hdev->name); |
| 1706 | |
| 1707 | if (work_busy(&hdev->le_scan)) |
| 1708 | return -EINPROGRESS; |
| 1709 | |
| 1710 | param->type = type; |
| 1711 | param->interval = interval; |
| 1712 | param->window = window; |
| 1713 | param->timeout = timeout; |
| 1714 | |
| 1715 | queue_work(system_long_wq, &hdev->le_scan); |
| 1716 | |
| 1717 | return 0; |
| 1718 | } |
| 1719 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1720 | /* Register HCI device */ |
| 1721 | int hci_register_dev(struct hci_dev *hdev) |
| 1722 | { |
| 1723 | struct list_head *head = &hci_dev_list, *p; |
Mat Martineau | 08add51 | 2011-11-02 16:18:36 -0700 | [diff] [blame] | 1724 | int i, id, error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1725 | |
David Herrmann | e9b9cfa | 2012-01-07 15:47:22 +0100 | [diff] [blame] | 1726 | BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1727 | |
David Herrmann | 010666a | 2012-01-07 15:47:07 +0100 | [diff] [blame] | 1728 | if (!hdev->open || !hdev->close) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1729 | return -EINVAL; |
| 1730 | |
Mat Martineau | 08add51 | 2011-11-02 16:18:36 -0700 | [diff] [blame] | 1731 | /* Do not allow HCI_AMP devices to register at index 0, |
| 1732 | * so the index can be used as the AMP controller ID. |
| 1733 | */ |
| 1734 | id = (hdev->dev_type == HCI_BREDR) ? 0 : 1; |
| 1735 | |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 1736 | write_lock(&hci_dev_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1737 | |
| 1738 | /* Find first available device id */ |
| 1739 | list_for_each(p, &hci_dev_list) { |
| 1740 | if (list_entry(p, struct hci_dev, list)->id != id) |
| 1741 | break; |
| 1742 | head = p; id++; |
| 1743 | } |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 1744 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1745 | sprintf(hdev->name, "hci%d", id); |
| 1746 | hdev->id = id; |
Andrei Emeltchenko | c6feeb2 | 2011-11-16 17:30:20 +0200 | [diff] [blame] | 1747 | list_add_tail(&hdev->list, head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1748 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 1749 | mutex_init(&hdev->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1750 | |
| 1751 | hdev->flags = 0; |
Andre Guedes | d23264a | 2011-11-25 20:53:38 -0300 | [diff] [blame] | 1752 | hdev->dev_flags = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1753 | hdev->pkt_type = (HCI_DM1 | HCI_DH1 | HCI_HV1); |
Marcel Holtmann | 5b7f9909 | 2007-07-11 09:51:55 +0200 | [diff] [blame] | 1754 | hdev->esco_type = (ESCO_HV1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1755 | hdev->link_mode = (HCI_LM_ACCEPT); |
Johan Hedberg | 17fa4b9 | 2011-01-25 13:28:33 +0200 | [diff] [blame] | 1756 | hdev->io_capability = 0x03; /* No Input No Output */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1757 | |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 1758 | hdev->idle_timeout = 0; |
| 1759 | hdev->sniff_max_interval = 800; |
| 1760 | hdev->sniff_min_interval = 80; |
| 1761 | |
Marcel Holtmann | b78752c | 2010-08-08 23:06:53 -0400 | [diff] [blame] | 1762 | INIT_WORK(&hdev->rx_work, hci_rx_work); |
Gustavo F. Padovan | c347b76 | 2011-12-14 23:53:47 -0200 | [diff] [blame] | 1763 | INIT_WORK(&hdev->cmd_work, hci_cmd_work); |
Gustavo F. Padovan | 3eff45e | 2011-12-15 00:50:02 -0200 | [diff] [blame] | 1764 | INIT_WORK(&hdev->tx_work, hci_tx_work); |
Marcel Holtmann | b78752c | 2010-08-08 23:06:53 -0400 | [diff] [blame] | 1765 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1766 | |
| 1767 | skb_queue_head_init(&hdev->rx_q); |
| 1768 | skb_queue_head_init(&hdev->cmd_q); |
| 1769 | skb_queue_head_init(&hdev->raw_q); |
| 1770 | |
Ville Tervo | 6bd3232 | 2011-02-16 16:32:41 +0200 | [diff] [blame] | 1771 | setup_timer(&hdev->cmd_timer, hci_cmd_timer, (unsigned long) hdev); |
| 1772 | |
Suraj Sumangala | cd4c539 | 2010-07-14 13:02:16 +0530 | [diff] [blame] | 1773 | for (i = 0; i < NUM_REASSEMBLY; i++) |
Marcel Holtmann | ef22201 | 2007-07-11 06:42:04 +0200 | [diff] [blame] | 1774 | hdev->reassembly[i] = NULL; |
| 1775 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1776 | init_waitqueue_head(&hdev->req_wait_q); |
Thomas Gleixner | a6a67ef | 2009-07-26 08:18:19 +0000 | [diff] [blame] | 1777 | mutex_init(&hdev->req_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1778 | |
Johan Hedberg | 3088351 | 2012-01-04 14:16:21 +0200 | [diff] [blame] | 1779 | discovery_init(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1780 | |
| 1781 | hci_conn_hash_init(hdev); |
| 1782 | |
Johan Hedberg | 2e58ef3 | 2011-11-08 20:40:15 +0200 | [diff] [blame] | 1783 | INIT_LIST_HEAD(&hdev->mgmt_pending); |
| 1784 | |
David Miller | ea4bd8b | 2010-07-30 21:54:49 -0700 | [diff] [blame] | 1785 | INIT_LIST_HEAD(&hdev->blacklist); |
Johan Hedberg | f035856 | 2010-05-18 13:20:32 +0200 | [diff] [blame] | 1786 | |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 1787 | INIT_LIST_HEAD(&hdev->uuids); |
| 1788 | |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1789 | INIT_LIST_HEAD(&hdev->link_keys); |
Vinicius Costa Gomes | b899efa | 2012-02-02 21:08:00 -0300 | [diff] [blame] | 1790 | INIT_LIST_HEAD(&hdev->long_term_keys); |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1791 | |
Szymon Janc | 2763eda | 2011-03-22 13:12:22 +0100 | [diff] [blame] | 1792 | INIT_LIST_HEAD(&hdev->remote_oob_data); |
| 1793 | |
Andre Guedes | 76c8686 | 2011-05-26 16:23:50 -0300 | [diff] [blame] | 1794 | INIT_LIST_HEAD(&hdev->adv_entries); |
| 1795 | |
Gustavo F. Padovan | db323f2 | 2011-06-20 16:39:29 -0300 | [diff] [blame] | 1796 | INIT_DELAYED_WORK(&hdev->adv_work, hci_clear_adv_cache); |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1797 | INIT_WORK(&hdev->power_on, hci_power_on); |
Johan Hedberg | 3243553 | 2011-11-07 22:16:04 +0200 | [diff] [blame] | 1798 | INIT_DELAYED_WORK(&hdev->power_off, hci_power_off); |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1799 | |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 1800 | INIT_DELAYED_WORK(&hdev->discov_off, hci_discov_off); |
| 1801 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1802 | memset(&hdev->stat, 0, sizeof(struct hci_dev_stats)); |
| 1803 | |
| 1804 | atomic_set(&hdev->promisc, 0); |
| 1805 | |
Andre Guedes | 28b75a8 | 2012-02-03 17:48:00 -0300 | [diff] [blame] | 1806 | INIT_WORK(&hdev->le_scan, le_scan_work); |
| 1807 | |
Andre Guedes | 7ba8b4b | 2012-02-03 17:47:59 -0300 | [diff] [blame] | 1808 | INIT_DELAYED_WORK(&hdev->le_scan_disable, le_scan_disable_work); |
| 1809 | |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 1810 | write_unlock(&hci_dev_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | |
Gustavo F. Padovan | 32845eb | 2011-12-17 17:47:30 -0200 | [diff] [blame] | 1812 | hdev->workqueue = alloc_workqueue(hdev->name, WQ_HIGHPRI | WQ_UNBOUND | |
| 1813 | WQ_MEM_RECLAIM, 1); |
David Herrmann | 33ca954 | 2011-10-08 14:58:49 +0200 | [diff] [blame] | 1814 | if (!hdev->workqueue) { |
| 1815 | error = -ENOMEM; |
| 1816 | goto err; |
| 1817 | } |
Marcel Holtmann | f48fd9c | 2010-03-20 15:20:04 +0100 | [diff] [blame] | 1818 | |
David Herrmann | 33ca954 | 2011-10-08 14:58:49 +0200 | [diff] [blame] | 1819 | error = hci_add_sysfs(hdev); |
| 1820 | if (error < 0) |
| 1821 | goto err_wqueue; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1822 | |
Marcel Holtmann | 611b30f | 2009-06-08 14:41:38 +0200 | [diff] [blame] | 1823 | hdev->rfkill = rfkill_alloc(hdev->name, &hdev->dev, |
| 1824 | RFKILL_TYPE_BLUETOOTH, &hci_rfkill_ops, hdev); |
| 1825 | if (hdev->rfkill) { |
| 1826 | if (rfkill_register(hdev->rfkill) < 0) { |
| 1827 | rfkill_destroy(hdev->rfkill); |
| 1828 | hdev->rfkill = NULL; |
| 1829 | } |
| 1830 | } |
| 1831 | |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 1832 | set_bit(HCI_AUTO_OFF, &hdev->dev_flags); |
| 1833 | set_bit(HCI_SETUP, &hdev->dev_flags); |
Gustavo F. Padovan | 7f97104 | 2011-12-18 12:40:32 -0200 | [diff] [blame] | 1834 | schedule_work(&hdev->power_on); |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1835 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | hci_notify(hdev, HCI_DEV_REG); |
David Herrmann | dc946bd | 2012-01-07 15:47:24 +0100 | [diff] [blame] | 1837 | hci_dev_hold(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1838 | |
| 1839 | return id; |
Marcel Holtmann | f48fd9c | 2010-03-20 15:20:04 +0100 | [diff] [blame] | 1840 | |
David Herrmann | 33ca954 | 2011-10-08 14:58:49 +0200 | [diff] [blame] | 1841 | err_wqueue: |
| 1842 | destroy_workqueue(hdev->workqueue); |
| 1843 | err: |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 1844 | write_lock(&hci_dev_list_lock); |
Marcel Holtmann | f48fd9c | 2010-03-20 15:20:04 +0100 | [diff] [blame] | 1845 | list_del(&hdev->list); |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 1846 | write_unlock(&hci_dev_list_lock); |
Marcel Holtmann | f48fd9c | 2010-03-20 15:20:04 +0100 | [diff] [blame] | 1847 | |
David Herrmann | 33ca954 | 2011-10-08 14:58:49 +0200 | [diff] [blame] | 1848 | return error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1849 | } |
| 1850 | EXPORT_SYMBOL(hci_register_dev); |
| 1851 | |
| 1852 | /* Unregister HCI device */ |
David Herrmann | 5973563 | 2011-10-26 10:43:19 +0200 | [diff] [blame] | 1853 | void hci_unregister_dev(struct hci_dev *hdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1854 | { |
Marcel Holtmann | ef22201 | 2007-07-11 06:42:04 +0200 | [diff] [blame] | 1855 | int i; |
| 1856 | |
Marcel Holtmann | c13854ce | 2010-02-08 15:27:07 +0100 | [diff] [blame] | 1857 | BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1858 | |
Johan Hovold | 9432496 | 2012-03-15 14:48:41 +0100 | [diff] [blame] | 1859 | set_bit(HCI_UNREGISTER, &hdev->dev_flags); |
| 1860 | |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 1861 | write_lock(&hci_dev_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1862 | list_del(&hdev->list); |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 1863 | write_unlock(&hci_dev_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1864 | |
| 1865 | hci_dev_do_close(hdev); |
| 1866 | |
Suraj Sumangala | cd4c539 | 2010-07-14 13:02:16 +0530 | [diff] [blame] | 1867 | for (i = 0; i < NUM_REASSEMBLY; i++) |
Marcel Holtmann | ef22201 | 2007-07-11 06:42:04 +0200 | [diff] [blame] | 1868 | kfree_skb(hdev->reassembly[i]); |
| 1869 | |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1870 | if (!test_bit(HCI_INIT, &hdev->flags) && |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 1871 | !test_bit(HCI_SETUP, &hdev->dev_flags)) { |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 1872 | hci_dev_lock(hdev); |
Johan Hedberg | 744cf19 | 2011-11-08 20:40:14 +0200 | [diff] [blame] | 1873 | mgmt_index_removed(hdev); |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 1874 | hci_dev_unlock(hdev); |
Johan Hedberg | 56e5cb8 | 2011-11-08 20:40:16 +0200 | [diff] [blame] | 1875 | } |
Johan Hedberg | ab81cbf | 2010-12-15 13:53:18 +0200 | [diff] [blame] | 1876 | |
Johan Hedberg | 2e58ef3 | 2011-11-08 20:40:15 +0200 | [diff] [blame] | 1877 | /* mgmt_index_removed should take care of emptying the |
| 1878 | * pending list */ |
| 1879 | BUG_ON(!list_empty(&hdev->mgmt_pending)); |
| 1880 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1881 | hci_notify(hdev, HCI_DEV_UNREG); |
| 1882 | |
Marcel Holtmann | 611b30f | 2009-06-08 14:41:38 +0200 | [diff] [blame] | 1883 | if (hdev->rfkill) { |
| 1884 | rfkill_unregister(hdev->rfkill); |
| 1885 | rfkill_destroy(hdev->rfkill); |
| 1886 | } |
| 1887 | |
David Herrmann | ce24297 | 2011-10-08 14:58:48 +0200 | [diff] [blame] | 1888 | hci_del_sysfs(hdev); |
Dave Young | 147e2d5 | 2008-03-05 18:45:59 -0800 | [diff] [blame] | 1889 | |
Gustavo F. Padovan | db323f2 | 2011-06-20 16:39:29 -0300 | [diff] [blame] | 1890 | cancel_delayed_work_sync(&hdev->adv_work); |
Gustavo F. Padovan | c6f3c5f | 2011-02-15 20:22:03 -0300 | [diff] [blame] | 1891 | |
Marcel Holtmann | f48fd9c | 2010-03-20 15:20:04 +0100 | [diff] [blame] | 1892 | destroy_workqueue(hdev->workqueue); |
| 1893 | |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 1894 | hci_dev_lock(hdev); |
Johan Hedberg | e2e0cac | 2011-01-04 12:08:50 +0200 | [diff] [blame] | 1895 | hci_blacklist_clear(hdev); |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 1896 | hci_uuids_clear(hdev); |
Johan Hedberg | 55ed8ca | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 1897 | hci_link_keys_clear(hdev); |
Vinicius Costa Gomes | b899efa | 2012-02-02 21:08:00 -0300 | [diff] [blame] | 1898 | hci_smp_ltks_clear(hdev); |
Szymon Janc | 2763eda | 2011-03-22 13:12:22 +0100 | [diff] [blame] | 1899 | hci_remote_oob_data_clear(hdev); |
Andre Guedes | 76c8686 | 2011-05-26 16:23:50 -0300 | [diff] [blame] | 1900 | hci_adv_entries_clear(hdev); |
Gustavo F. Padovan | 09fd0de | 2011-06-17 13:03:21 -0300 | [diff] [blame] | 1901 | hci_dev_unlock(hdev); |
Johan Hedberg | e2e0cac | 2011-01-04 12:08:50 +0200 | [diff] [blame] | 1902 | |
David Herrmann | dc946bd | 2012-01-07 15:47:24 +0100 | [diff] [blame] | 1903 | hci_dev_put(hdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1904 | } |
| 1905 | EXPORT_SYMBOL(hci_unregister_dev); |
| 1906 | |
| 1907 | /* Suspend HCI device */ |
| 1908 | int hci_suspend_dev(struct hci_dev *hdev) |
| 1909 | { |
| 1910 | hci_notify(hdev, HCI_DEV_SUSPEND); |
| 1911 | return 0; |
| 1912 | } |
| 1913 | EXPORT_SYMBOL(hci_suspend_dev); |
| 1914 | |
| 1915 | /* Resume HCI device */ |
| 1916 | int hci_resume_dev(struct hci_dev *hdev) |
| 1917 | { |
| 1918 | hci_notify(hdev, HCI_DEV_RESUME); |
| 1919 | return 0; |
| 1920 | } |
| 1921 | EXPORT_SYMBOL(hci_resume_dev); |
| 1922 | |
Marcel Holtmann | 76bca88 | 2009-11-18 00:40:39 +0100 | [diff] [blame] | 1923 | /* Receive frame from HCI drivers */ |
| 1924 | int hci_recv_frame(struct sk_buff *skb) |
| 1925 | { |
| 1926 | struct hci_dev *hdev = (struct hci_dev *) skb->dev; |
| 1927 | if (!hdev || (!test_bit(HCI_UP, &hdev->flags) |
| 1928 | && !test_bit(HCI_INIT, &hdev->flags))) { |
| 1929 | kfree_skb(skb); |
| 1930 | return -ENXIO; |
| 1931 | } |
| 1932 | |
| 1933 | /* Incomming skb */ |
| 1934 | bt_cb(skb)->incoming = 1; |
| 1935 | |
| 1936 | /* Time stamp */ |
| 1937 | __net_timestamp(skb); |
| 1938 | |
Marcel Holtmann | 76bca88 | 2009-11-18 00:40:39 +0100 | [diff] [blame] | 1939 | skb_queue_tail(&hdev->rx_q, skb); |
Marcel Holtmann | b78752c | 2010-08-08 23:06:53 -0400 | [diff] [blame] | 1940 | queue_work(hdev->workqueue, &hdev->rx_work); |
Marcel Holtmann | c78ae28 | 2009-11-18 01:02:54 +0100 | [diff] [blame] | 1941 | |
Marcel Holtmann | 76bca88 | 2009-11-18 00:40:39 +0100 | [diff] [blame] | 1942 | return 0; |
| 1943 | } |
| 1944 | EXPORT_SYMBOL(hci_recv_frame); |
| 1945 | |
Suraj Sumangala | 33e882a | 2010-07-14 13:02:17 +0530 | [diff] [blame] | 1946 | static int hci_reassembly(struct hci_dev *hdev, int type, void *data, |
Gustavo F. Padovan | 1e429f3 | 2011-04-04 18:25:14 -0300 | [diff] [blame] | 1947 | int count, __u8 index) |
Suraj Sumangala | 33e882a | 2010-07-14 13:02:17 +0530 | [diff] [blame] | 1948 | { |
| 1949 | int len = 0; |
| 1950 | int hlen = 0; |
| 1951 | int remain = count; |
| 1952 | struct sk_buff *skb; |
| 1953 | struct bt_skb_cb *scb; |
| 1954 | |
| 1955 | if ((type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT) || |
| 1956 | index >= NUM_REASSEMBLY) |
| 1957 | return -EILSEQ; |
| 1958 | |
| 1959 | skb = hdev->reassembly[index]; |
| 1960 | |
| 1961 | if (!skb) { |
| 1962 | switch (type) { |
| 1963 | case HCI_ACLDATA_PKT: |
| 1964 | len = HCI_MAX_FRAME_SIZE; |
| 1965 | hlen = HCI_ACL_HDR_SIZE; |
| 1966 | break; |
| 1967 | case HCI_EVENT_PKT: |
| 1968 | len = HCI_MAX_EVENT_SIZE; |
| 1969 | hlen = HCI_EVENT_HDR_SIZE; |
| 1970 | break; |
| 1971 | case HCI_SCODATA_PKT: |
| 1972 | len = HCI_MAX_SCO_SIZE; |
| 1973 | hlen = HCI_SCO_HDR_SIZE; |
| 1974 | break; |
| 1975 | } |
| 1976 | |
Gustavo F. Padovan | 1e429f3 | 2011-04-04 18:25:14 -0300 | [diff] [blame] | 1977 | skb = bt_skb_alloc(len, GFP_ATOMIC); |
Suraj Sumangala | 33e882a | 2010-07-14 13:02:17 +0530 | [diff] [blame] | 1978 | if (!skb) |
| 1979 | return -ENOMEM; |
| 1980 | |
| 1981 | scb = (void *) skb->cb; |
| 1982 | scb->expect = hlen; |
| 1983 | scb->pkt_type = type; |
| 1984 | |
| 1985 | skb->dev = (void *) hdev; |
| 1986 | hdev->reassembly[index] = skb; |
| 1987 | } |
| 1988 | |
| 1989 | while (count) { |
| 1990 | scb = (void *) skb->cb; |
Dan Carpenter | 89bb46d | 2012-02-28 09:57:59 +0300 | [diff] [blame] | 1991 | len = min_t(uint, scb->expect, count); |
Suraj Sumangala | 33e882a | 2010-07-14 13:02:17 +0530 | [diff] [blame] | 1992 | |
| 1993 | memcpy(skb_put(skb, len), data, len); |
| 1994 | |
| 1995 | count -= len; |
| 1996 | data += len; |
| 1997 | scb->expect -= len; |
| 1998 | remain = count; |
| 1999 | |
| 2000 | switch (type) { |
| 2001 | case HCI_EVENT_PKT: |
| 2002 | if (skb->len == HCI_EVENT_HDR_SIZE) { |
| 2003 | struct hci_event_hdr *h = hci_event_hdr(skb); |
| 2004 | scb->expect = h->plen; |
| 2005 | |
| 2006 | if (skb_tailroom(skb) < scb->expect) { |
| 2007 | kfree_skb(skb); |
| 2008 | hdev->reassembly[index] = NULL; |
| 2009 | return -ENOMEM; |
| 2010 | } |
| 2011 | } |
| 2012 | break; |
| 2013 | |
| 2014 | case HCI_ACLDATA_PKT: |
| 2015 | if (skb->len == HCI_ACL_HDR_SIZE) { |
| 2016 | struct hci_acl_hdr *h = hci_acl_hdr(skb); |
| 2017 | scb->expect = __le16_to_cpu(h->dlen); |
| 2018 | |
| 2019 | if (skb_tailroom(skb) < scb->expect) { |
| 2020 | kfree_skb(skb); |
| 2021 | hdev->reassembly[index] = NULL; |
| 2022 | return -ENOMEM; |
| 2023 | } |
| 2024 | } |
| 2025 | break; |
| 2026 | |
| 2027 | case HCI_SCODATA_PKT: |
| 2028 | if (skb->len == HCI_SCO_HDR_SIZE) { |
| 2029 | struct hci_sco_hdr *h = hci_sco_hdr(skb); |
| 2030 | scb->expect = h->dlen; |
| 2031 | |
| 2032 | if (skb_tailroom(skb) < scb->expect) { |
| 2033 | kfree_skb(skb); |
| 2034 | hdev->reassembly[index] = NULL; |
| 2035 | return -ENOMEM; |
| 2036 | } |
| 2037 | } |
| 2038 | break; |
| 2039 | } |
| 2040 | |
| 2041 | if (scb->expect == 0) { |
| 2042 | /* Complete frame */ |
| 2043 | |
| 2044 | bt_cb(skb)->pkt_type = type; |
| 2045 | hci_recv_frame(skb); |
| 2046 | |
| 2047 | hdev->reassembly[index] = NULL; |
| 2048 | return remain; |
| 2049 | } |
| 2050 | } |
| 2051 | |
| 2052 | return remain; |
| 2053 | } |
| 2054 | |
Marcel Holtmann | ef22201 | 2007-07-11 06:42:04 +0200 | [diff] [blame] | 2055 | int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count) |
| 2056 | { |
Suraj Sumangala | f39a3c0 | 2010-07-14 13:02:18 +0530 | [diff] [blame] | 2057 | int rem = 0; |
| 2058 | |
Marcel Holtmann | ef22201 | 2007-07-11 06:42:04 +0200 | [diff] [blame] | 2059 | if (type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT) |
| 2060 | return -EILSEQ; |
| 2061 | |
Gustavo F. Padovan | da5f6c3 | 2010-07-24 01:34:54 -0300 | [diff] [blame] | 2062 | while (count) { |
Gustavo F. Padovan | 1e429f3 | 2011-04-04 18:25:14 -0300 | [diff] [blame] | 2063 | rem = hci_reassembly(hdev, type, data, count, type - 1); |
Suraj Sumangala | f39a3c0 | 2010-07-14 13:02:18 +0530 | [diff] [blame] | 2064 | if (rem < 0) |
| 2065 | return rem; |
Marcel Holtmann | ef22201 | 2007-07-11 06:42:04 +0200 | [diff] [blame] | 2066 | |
Suraj Sumangala | f39a3c0 | 2010-07-14 13:02:18 +0530 | [diff] [blame] | 2067 | data += (count - rem); |
| 2068 | count = rem; |
Joe Perches | f81c622 | 2011-06-03 11:51:19 +0000 | [diff] [blame] | 2069 | } |
Marcel Holtmann | ef22201 | 2007-07-11 06:42:04 +0200 | [diff] [blame] | 2070 | |
Suraj Sumangala | f39a3c0 | 2010-07-14 13:02:18 +0530 | [diff] [blame] | 2071 | return rem; |
Marcel Holtmann | ef22201 | 2007-07-11 06:42:04 +0200 | [diff] [blame] | 2072 | } |
| 2073 | EXPORT_SYMBOL(hci_recv_fragment); |
| 2074 | |
Suraj Sumangala | 9981151 | 2010-07-14 13:02:19 +0530 | [diff] [blame] | 2075 | #define STREAM_REASSEMBLY 0 |
| 2076 | |
| 2077 | int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count) |
| 2078 | { |
| 2079 | int type; |
| 2080 | int rem = 0; |
| 2081 | |
Gustavo F. Padovan | da5f6c3 | 2010-07-24 01:34:54 -0300 | [diff] [blame] | 2082 | while (count) { |
Suraj Sumangala | 9981151 | 2010-07-14 13:02:19 +0530 | [diff] [blame] | 2083 | struct sk_buff *skb = hdev->reassembly[STREAM_REASSEMBLY]; |
| 2084 | |
| 2085 | if (!skb) { |
| 2086 | struct { char type; } *pkt; |
| 2087 | |
| 2088 | /* Start of the frame */ |
| 2089 | pkt = data; |
| 2090 | type = pkt->type; |
| 2091 | |
| 2092 | data++; |
| 2093 | count--; |
| 2094 | } else |
| 2095 | type = bt_cb(skb)->pkt_type; |
| 2096 | |
Gustavo F. Padovan | 1e429f3 | 2011-04-04 18:25:14 -0300 | [diff] [blame] | 2097 | rem = hci_reassembly(hdev, type, data, count, |
| 2098 | STREAM_REASSEMBLY); |
Suraj Sumangala | 9981151 | 2010-07-14 13:02:19 +0530 | [diff] [blame] | 2099 | if (rem < 0) |
| 2100 | return rem; |
| 2101 | |
| 2102 | data += (count - rem); |
| 2103 | count = rem; |
Joe Perches | f81c622 | 2011-06-03 11:51:19 +0000 | [diff] [blame] | 2104 | } |
Suraj Sumangala | 9981151 | 2010-07-14 13:02:19 +0530 | [diff] [blame] | 2105 | |
| 2106 | return rem; |
| 2107 | } |
| 2108 | EXPORT_SYMBOL(hci_recv_stream_fragment); |
| 2109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2110 | /* ---- Interface to upper protocols ---- */ |
| 2111 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2112 | int hci_register_cb(struct hci_cb *cb) |
| 2113 | { |
| 2114 | BT_DBG("%p name %s", cb, cb->name); |
| 2115 | |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 2116 | write_lock(&hci_cb_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | list_add(&cb->list, &hci_cb_list); |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 2118 | write_unlock(&hci_cb_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2119 | |
| 2120 | return 0; |
| 2121 | } |
| 2122 | EXPORT_SYMBOL(hci_register_cb); |
| 2123 | |
| 2124 | int hci_unregister_cb(struct hci_cb *cb) |
| 2125 | { |
| 2126 | BT_DBG("%p name %s", cb, cb->name); |
| 2127 | |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 2128 | write_lock(&hci_cb_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2129 | list_del(&cb->list); |
Gustavo F. Padovan | f20d09d | 2011-12-22 16:30:27 -0200 | [diff] [blame] | 2130 | write_unlock(&hci_cb_list_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2131 | |
| 2132 | return 0; |
| 2133 | } |
| 2134 | EXPORT_SYMBOL(hci_unregister_cb); |
| 2135 | |
| 2136 | static int hci_send_frame(struct sk_buff *skb) |
| 2137 | { |
| 2138 | struct hci_dev *hdev = (struct hci_dev *) skb->dev; |
| 2139 | |
| 2140 | if (!hdev) { |
| 2141 | kfree_skb(skb); |
| 2142 | return -ENODEV; |
| 2143 | } |
| 2144 | |
Marcel Holtmann | 0d48d93 | 2005-08-09 20:30:28 -0700 | [diff] [blame] | 2145 | BT_DBG("%s type %d len %d", hdev->name, bt_cb(skb)->pkt_type, skb->len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2146 | |
Marcel Holtmann | cd82e61 | 2012-02-20 20:34:38 +0100 | [diff] [blame] | 2147 | /* Time stamp */ |
| 2148 | __net_timestamp(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2149 | |
Marcel Holtmann | cd82e61 | 2012-02-20 20:34:38 +0100 | [diff] [blame] | 2150 | /* Send copy to monitor */ |
| 2151 | hci_send_to_monitor(hdev, skb); |
| 2152 | |
| 2153 | if (atomic_read(&hdev->promisc)) { |
| 2154 | /* Send copy to the sockets */ |
Marcel Holtmann | 470fe1b | 2012-02-20 14:50:30 +0100 | [diff] [blame] | 2155 | hci_send_to_sock(hdev, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | } |
| 2157 | |
| 2158 | /* Get rid of skb owner, prior to sending to the driver. */ |
| 2159 | skb_orphan(skb); |
| 2160 | |
| 2161 | return hdev->send(skb); |
| 2162 | } |
| 2163 | |
| 2164 | /* Send HCI command */ |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 2165 | int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, void *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2166 | { |
| 2167 | int len = HCI_COMMAND_HDR_SIZE + plen; |
| 2168 | struct hci_command_hdr *hdr; |
| 2169 | struct sk_buff *skb; |
| 2170 | |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 2171 | BT_DBG("%s opcode 0x%x plen %d", hdev->name, opcode, plen); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2172 | |
| 2173 | skb = bt_skb_alloc(len, GFP_ATOMIC); |
| 2174 | if (!skb) { |
Marcel Holtmann | ef22201 | 2007-07-11 06:42:04 +0200 | [diff] [blame] | 2175 | BT_ERR("%s no memory for command", hdev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2176 | return -ENOMEM; |
| 2177 | } |
| 2178 | |
| 2179 | hdr = (struct hci_command_hdr *) skb_put(skb, HCI_COMMAND_HDR_SIZE); |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 2180 | hdr->opcode = cpu_to_le16(opcode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2181 | hdr->plen = plen; |
| 2182 | |
| 2183 | if (plen) |
| 2184 | memcpy(skb_put(skb, plen), param, plen); |
| 2185 | |
| 2186 | BT_DBG("skb len %d", skb->len); |
| 2187 | |
Marcel Holtmann | 0d48d93 | 2005-08-09 20:30:28 -0700 | [diff] [blame] | 2188 | bt_cb(skb)->pkt_type = HCI_COMMAND_PKT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2189 | skb->dev = (void *) hdev; |
Marcel Holtmann | c78ae28 | 2009-11-18 01:02:54 +0100 | [diff] [blame] | 2190 | |
Johan Hedberg | a5040ef | 2011-01-10 13:28:59 +0200 | [diff] [blame] | 2191 | if (test_bit(HCI_INIT, &hdev->flags)) |
| 2192 | hdev->init_last_cmd = opcode; |
| 2193 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2194 | skb_queue_tail(&hdev->cmd_q, skb); |
Gustavo F. Padovan | c347b76 | 2011-12-14 23:53:47 -0200 | [diff] [blame] | 2195 | queue_work(hdev->workqueue, &hdev->cmd_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2196 | |
| 2197 | return 0; |
| 2198 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2199 | |
| 2200 | /* Get data from the previously sent command */ |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 2201 | void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2202 | { |
| 2203 | struct hci_command_hdr *hdr; |
| 2204 | |
| 2205 | if (!hdev->sent_cmd) |
| 2206 | return NULL; |
| 2207 | |
| 2208 | hdr = (void *) hdev->sent_cmd->data; |
| 2209 | |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 2210 | if (hdr->opcode != cpu_to_le16(opcode)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2211 | return NULL; |
| 2212 | |
Marcel Holtmann | a9de924 | 2007-10-20 13:33:56 +0200 | [diff] [blame] | 2213 | BT_DBG("%s opcode 0x%x", hdev->name, opcode); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2214 | |
| 2215 | return hdev->sent_cmd->data + HCI_COMMAND_HDR_SIZE; |
| 2216 | } |
| 2217 | |
| 2218 | /* Send ACL data */ |
| 2219 | static void hci_add_acl_hdr(struct sk_buff *skb, __u16 handle, __u16 flags) |
| 2220 | { |
| 2221 | struct hci_acl_hdr *hdr; |
| 2222 | int len = skb->len; |
| 2223 | |
Arnaldo Carvalho de Melo | badff6d | 2007-03-13 13:06:52 -0300 | [diff] [blame] | 2224 | skb_push(skb, HCI_ACL_HDR_SIZE); |
| 2225 | skb_reset_transport_header(skb); |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 2226 | hdr = (struct hci_acl_hdr *)skb_transport_header(skb); |
YOSHIFUJI Hideaki | aca3192 | 2007-03-25 20:12:50 -0700 | [diff] [blame] | 2227 | hdr->handle = cpu_to_le16(hci_handle_pack(handle, flags)); |
| 2228 | hdr->dlen = cpu_to_le16(len); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2229 | } |
| 2230 | |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2231 | static void hci_queue_acl(struct hci_conn *conn, struct sk_buff_head *queue, |
| 2232 | struct sk_buff *skb, __u16 flags) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2233 | { |
| 2234 | struct hci_dev *hdev = conn->hdev; |
| 2235 | struct sk_buff *list; |
| 2236 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 2237 | list = skb_shinfo(skb)->frag_list; |
| 2238 | if (!list) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2239 | /* Non fragmented */ |
| 2240 | BT_DBG("%s nonfrag skb %p len %d", hdev->name, skb, skb->len); |
| 2241 | |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2242 | skb_queue_tail(queue, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2243 | } else { |
| 2244 | /* Fragmented */ |
| 2245 | BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len); |
| 2246 | |
| 2247 | skb_shinfo(skb)->frag_list = NULL; |
| 2248 | |
| 2249 | /* Queue all fragments atomically */ |
Gustavo F. Padovan | af3e635 | 2011-12-22 16:35:05 -0200 | [diff] [blame] | 2250 | spin_lock(&queue->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2251 | |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2252 | __skb_queue_tail(queue, skb); |
Andrei Emeltchenko | e702112 | 2011-01-03 11:14:36 +0200 | [diff] [blame] | 2253 | |
| 2254 | flags &= ~ACL_START; |
| 2255 | flags |= ACL_CONT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2256 | do { |
| 2257 | skb = list; list = list->next; |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 2258 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2259 | skb->dev = (void *) hdev; |
Marcel Holtmann | 0d48d93 | 2005-08-09 20:30:28 -0700 | [diff] [blame] | 2260 | bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT; |
Andrei Emeltchenko | e702112 | 2011-01-03 11:14:36 +0200 | [diff] [blame] | 2261 | hci_add_acl_hdr(skb, conn->handle, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2262 | |
| 2263 | BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len); |
| 2264 | |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2265 | __skb_queue_tail(queue, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2266 | } while (list); |
| 2267 | |
Gustavo F. Padovan | af3e635 | 2011-12-22 16:35:05 -0200 | [diff] [blame] | 2268 | spin_unlock(&queue->lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2269 | } |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2270 | } |
| 2271 | |
| 2272 | void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags) |
| 2273 | { |
| 2274 | struct hci_conn *conn = chan->conn; |
| 2275 | struct hci_dev *hdev = conn->hdev; |
| 2276 | |
| 2277 | BT_DBG("%s chan %p flags 0x%x", hdev->name, chan, flags); |
| 2278 | |
| 2279 | skb->dev = (void *) hdev; |
| 2280 | bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT; |
| 2281 | hci_add_acl_hdr(skb, conn->handle, flags); |
| 2282 | |
| 2283 | hci_queue_acl(conn, &chan->data_q, skb, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2284 | |
Gustavo F. Padovan | 3eff45e | 2011-12-15 00:50:02 -0200 | [diff] [blame] | 2285 | queue_work(hdev->workqueue, &hdev->tx_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2286 | } |
| 2287 | EXPORT_SYMBOL(hci_send_acl); |
| 2288 | |
| 2289 | /* Send SCO data */ |
Gustavo F. Padovan | 0d861d8 | 2010-05-01 16:15:35 -0300 | [diff] [blame] | 2290 | void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2291 | { |
| 2292 | struct hci_dev *hdev = conn->hdev; |
| 2293 | struct hci_sco_hdr hdr; |
| 2294 | |
| 2295 | BT_DBG("%s len %d", hdev->name, skb->len); |
| 2296 | |
YOSHIFUJI Hideaki | aca3192 | 2007-03-25 20:12:50 -0700 | [diff] [blame] | 2297 | hdr.handle = cpu_to_le16(conn->handle); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2298 | hdr.dlen = skb->len; |
| 2299 | |
Arnaldo Carvalho de Melo | badff6d | 2007-03-13 13:06:52 -0300 | [diff] [blame] | 2300 | skb_push(skb, HCI_SCO_HDR_SIZE); |
| 2301 | skb_reset_transport_header(skb); |
Arnaldo Carvalho de Melo | 9c70220 | 2007-04-25 18:04:18 -0700 | [diff] [blame] | 2302 | memcpy(skb_transport_header(skb), &hdr, HCI_SCO_HDR_SIZE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2303 | |
| 2304 | skb->dev = (void *) hdev; |
Marcel Holtmann | 0d48d93 | 2005-08-09 20:30:28 -0700 | [diff] [blame] | 2305 | bt_cb(skb)->pkt_type = HCI_SCODATA_PKT; |
Marcel Holtmann | c78ae28 | 2009-11-18 01:02:54 +0100 | [diff] [blame] | 2306 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2307 | skb_queue_tail(&conn->data_q, skb); |
Gustavo F. Padovan | 3eff45e | 2011-12-15 00:50:02 -0200 | [diff] [blame] | 2308 | queue_work(hdev->workqueue, &hdev->tx_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2309 | } |
| 2310 | EXPORT_SYMBOL(hci_send_sco); |
| 2311 | |
| 2312 | /* ---- HCI TX task (outgoing data) ---- */ |
| 2313 | |
| 2314 | /* HCI Connection scheduler */ |
| 2315 | static inline struct hci_conn *hci_low_sent(struct hci_dev *hdev, __u8 type, int *quote) |
| 2316 | { |
| 2317 | struct hci_conn_hash *h = &hdev->conn_hash; |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 2318 | struct hci_conn *conn = NULL, *c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2319 | int num = 0, min = ~0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2320 | |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 2321 | /* We don't have to lock device here. Connections are always |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2322 | * added and removed with TX task disabled. */ |
Gustavo F. Padovan | bf4c632 | 2011-12-14 22:54:12 -0200 | [diff] [blame] | 2323 | |
| 2324 | rcu_read_lock(); |
| 2325 | |
| 2326 | list_for_each_entry_rcu(c, &h->list, list) { |
Marcel Holtmann | 769be97 | 2008-07-14 20:13:49 +0200 | [diff] [blame] | 2327 | if (c->type != type || skb_queue_empty(&c->data_q)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2328 | continue; |
Marcel Holtmann | 769be97 | 2008-07-14 20:13:49 +0200 | [diff] [blame] | 2329 | |
| 2330 | if (c->state != BT_CONNECTED && c->state != BT_CONFIG) |
| 2331 | continue; |
| 2332 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2333 | num++; |
| 2334 | |
| 2335 | if (c->sent < min) { |
| 2336 | min = c->sent; |
| 2337 | conn = c; |
| 2338 | } |
Luiz Augusto von Dentz | 52087a7 | 2011-08-17 16:23:00 +0300 | [diff] [blame] | 2339 | |
| 2340 | if (hci_conn_num(hdev, type) == num) |
| 2341 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2342 | } |
| 2343 | |
Gustavo F. Padovan | bf4c632 | 2011-12-14 22:54:12 -0200 | [diff] [blame] | 2344 | rcu_read_unlock(); |
| 2345 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2346 | if (conn) { |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2347 | int cnt, q; |
| 2348 | |
| 2349 | switch (conn->type) { |
| 2350 | case ACL_LINK: |
| 2351 | cnt = hdev->acl_cnt; |
| 2352 | break; |
| 2353 | case SCO_LINK: |
| 2354 | case ESCO_LINK: |
| 2355 | cnt = hdev->sco_cnt; |
| 2356 | break; |
| 2357 | case LE_LINK: |
| 2358 | cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt; |
| 2359 | break; |
| 2360 | default: |
| 2361 | cnt = 0; |
| 2362 | BT_ERR("Unknown link type"); |
| 2363 | } |
| 2364 | |
| 2365 | q = cnt / num; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2366 | *quote = q ? q : 1; |
| 2367 | } else |
| 2368 | *quote = 0; |
| 2369 | |
| 2370 | BT_DBG("conn %p quote %d", conn, *quote); |
| 2371 | return conn; |
| 2372 | } |
| 2373 | |
Ville Tervo | bae1f5d | 2011-02-10 22:38:53 -0300 | [diff] [blame] | 2374 | static inline void hci_link_tx_to(struct hci_dev *hdev, __u8 type) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2375 | { |
| 2376 | struct hci_conn_hash *h = &hdev->conn_hash; |
Luiz Augusto von Dentz | 8035ded | 2011-11-01 10:58:56 +0200 | [diff] [blame] | 2377 | struct hci_conn *c; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2378 | |
Ville Tervo | bae1f5d | 2011-02-10 22:38:53 -0300 | [diff] [blame] | 2379 | BT_ERR("%s link tx timeout", hdev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2380 | |
Gustavo F. Padovan | bf4c632 | 2011-12-14 22:54:12 -0200 | [diff] [blame] | 2381 | rcu_read_lock(); |
| 2382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2383 | /* Kill stalled connections */ |
Gustavo F. Padovan | bf4c632 | 2011-12-14 22:54:12 -0200 | [diff] [blame] | 2384 | list_for_each_entry_rcu(c, &h->list, list) { |
Ville Tervo | bae1f5d | 2011-02-10 22:38:53 -0300 | [diff] [blame] | 2385 | if (c->type == type && c->sent) { |
| 2386 | BT_ERR("%s killing stalled connection %s", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2387 | hdev->name, batostr(&c->dst)); |
| 2388 | hci_acl_disconn(c, 0x13); |
| 2389 | } |
| 2390 | } |
Gustavo F. Padovan | bf4c632 | 2011-12-14 22:54:12 -0200 | [diff] [blame] | 2391 | |
| 2392 | rcu_read_unlock(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2393 | } |
| 2394 | |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2395 | static inline struct hci_chan *hci_chan_sent(struct hci_dev *hdev, __u8 type, |
| 2396 | int *quote) |
| 2397 | { |
| 2398 | struct hci_conn_hash *h = &hdev->conn_hash; |
| 2399 | struct hci_chan *chan = NULL; |
| 2400 | int num = 0, min = ~0, cur_prio = 0; |
| 2401 | struct hci_conn *conn; |
| 2402 | int cnt, q, conn_num = 0; |
| 2403 | |
| 2404 | BT_DBG("%s", hdev->name); |
| 2405 | |
Gustavo F. Padovan | bf4c632 | 2011-12-14 22:54:12 -0200 | [diff] [blame] | 2406 | rcu_read_lock(); |
| 2407 | |
| 2408 | list_for_each_entry_rcu(conn, &h->list, list) { |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2409 | struct hci_chan *tmp; |
| 2410 | |
| 2411 | if (conn->type != type) |
| 2412 | continue; |
| 2413 | |
| 2414 | if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG) |
| 2415 | continue; |
| 2416 | |
| 2417 | conn_num++; |
| 2418 | |
Gustavo F. Padovan | 8192ede | 2011-12-14 15:08:48 -0200 | [diff] [blame] | 2419 | list_for_each_entry_rcu(tmp, &conn->chan_list, list) { |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2420 | struct sk_buff *skb; |
| 2421 | |
| 2422 | if (skb_queue_empty(&tmp->data_q)) |
| 2423 | continue; |
| 2424 | |
| 2425 | skb = skb_peek(&tmp->data_q); |
| 2426 | if (skb->priority < cur_prio) |
| 2427 | continue; |
| 2428 | |
| 2429 | if (skb->priority > cur_prio) { |
| 2430 | num = 0; |
| 2431 | min = ~0; |
| 2432 | cur_prio = skb->priority; |
| 2433 | } |
| 2434 | |
| 2435 | num++; |
| 2436 | |
| 2437 | if (conn->sent < min) { |
| 2438 | min = conn->sent; |
| 2439 | chan = tmp; |
| 2440 | } |
| 2441 | } |
| 2442 | |
| 2443 | if (hci_conn_num(hdev, type) == conn_num) |
| 2444 | break; |
| 2445 | } |
| 2446 | |
Gustavo F. Padovan | bf4c632 | 2011-12-14 22:54:12 -0200 | [diff] [blame] | 2447 | rcu_read_unlock(); |
| 2448 | |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2449 | if (!chan) |
| 2450 | return NULL; |
| 2451 | |
| 2452 | switch (chan->conn->type) { |
| 2453 | case ACL_LINK: |
| 2454 | cnt = hdev->acl_cnt; |
| 2455 | break; |
| 2456 | case SCO_LINK: |
| 2457 | case ESCO_LINK: |
| 2458 | cnt = hdev->sco_cnt; |
| 2459 | break; |
| 2460 | case LE_LINK: |
| 2461 | cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt; |
| 2462 | break; |
| 2463 | default: |
| 2464 | cnt = 0; |
| 2465 | BT_ERR("Unknown link type"); |
| 2466 | } |
| 2467 | |
| 2468 | q = cnt / num; |
| 2469 | *quote = q ? q : 1; |
| 2470 | BT_DBG("chan %p quote %d", chan, *quote); |
| 2471 | return chan; |
| 2472 | } |
| 2473 | |
Luiz Augusto von Dentz | 02b20f0 | 2011-11-02 15:52:03 +0200 | [diff] [blame] | 2474 | static void hci_prio_recalculate(struct hci_dev *hdev, __u8 type) |
| 2475 | { |
| 2476 | struct hci_conn_hash *h = &hdev->conn_hash; |
| 2477 | struct hci_conn *conn; |
| 2478 | int num = 0; |
| 2479 | |
| 2480 | BT_DBG("%s", hdev->name); |
| 2481 | |
Gustavo F. Padovan | bf4c632 | 2011-12-14 22:54:12 -0200 | [diff] [blame] | 2482 | rcu_read_lock(); |
| 2483 | |
| 2484 | list_for_each_entry_rcu(conn, &h->list, list) { |
Luiz Augusto von Dentz | 02b20f0 | 2011-11-02 15:52:03 +0200 | [diff] [blame] | 2485 | struct hci_chan *chan; |
| 2486 | |
| 2487 | if (conn->type != type) |
| 2488 | continue; |
| 2489 | |
| 2490 | if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG) |
| 2491 | continue; |
| 2492 | |
| 2493 | num++; |
| 2494 | |
Gustavo F. Padovan | 8192ede | 2011-12-14 15:08:48 -0200 | [diff] [blame] | 2495 | list_for_each_entry_rcu(chan, &conn->chan_list, list) { |
Luiz Augusto von Dentz | 02b20f0 | 2011-11-02 15:52:03 +0200 | [diff] [blame] | 2496 | struct sk_buff *skb; |
| 2497 | |
| 2498 | if (chan->sent) { |
| 2499 | chan->sent = 0; |
| 2500 | continue; |
| 2501 | } |
| 2502 | |
| 2503 | if (skb_queue_empty(&chan->data_q)) |
| 2504 | continue; |
| 2505 | |
| 2506 | skb = skb_peek(&chan->data_q); |
| 2507 | if (skb->priority >= HCI_PRIO_MAX - 1) |
| 2508 | continue; |
| 2509 | |
| 2510 | skb->priority = HCI_PRIO_MAX - 1; |
| 2511 | |
| 2512 | BT_DBG("chan %p skb %p promoted to %d", chan, skb, |
| 2513 | skb->priority); |
| 2514 | } |
| 2515 | |
| 2516 | if (hci_conn_num(hdev, type) == num) |
| 2517 | break; |
| 2518 | } |
Gustavo F. Padovan | bf4c632 | 2011-12-14 22:54:12 -0200 | [diff] [blame] | 2519 | |
| 2520 | rcu_read_unlock(); |
| 2521 | |
Luiz Augusto von Dentz | 02b20f0 | 2011-11-02 15:52:03 +0200 | [diff] [blame] | 2522 | } |
| 2523 | |
Andrei Emeltchenko | b71d385 | 2012-02-03 16:27:54 +0200 | [diff] [blame] | 2524 | static inline int __get_blocks(struct hci_dev *hdev, struct sk_buff *skb) |
| 2525 | { |
| 2526 | /* Calculate count of blocks used by this packet */ |
| 2527 | return DIV_ROUND_UP(skb->len - HCI_ACL_HDR_SIZE, hdev->block_len); |
| 2528 | } |
| 2529 | |
Andrei Emeltchenko | 63d2bc1 | 2012-02-03 16:27:55 +0200 | [diff] [blame] | 2530 | static inline void __check_timeout(struct hci_dev *hdev, unsigned int cnt) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2531 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2532 | if (!test_bit(HCI_RAW, &hdev->flags)) { |
| 2533 | /* ACL tx timeout must be longer than maximum |
| 2534 | * link supervision timeout (40.9 seconds) */ |
Andrei Emeltchenko | 63d2bc1 | 2012-02-03 16:27:55 +0200 | [diff] [blame] | 2535 | if (!cnt && time_after(jiffies, hdev->acl_last_tx + |
Andrei Emeltchenko | cc48dc0 | 2012-01-04 16:42:26 +0200 | [diff] [blame] | 2536 | msecs_to_jiffies(HCI_ACL_TX_TIMEOUT))) |
Ville Tervo | bae1f5d | 2011-02-10 22:38:53 -0300 | [diff] [blame] | 2537 | hci_link_tx_to(hdev, ACL_LINK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2538 | } |
Andrei Emeltchenko | 63d2bc1 | 2012-02-03 16:27:55 +0200 | [diff] [blame] | 2539 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2540 | |
Andrei Emeltchenko | 63d2bc1 | 2012-02-03 16:27:55 +0200 | [diff] [blame] | 2541 | static inline void hci_sched_acl_pkt(struct hci_dev *hdev) |
| 2542 | { |
| 2543 | unsigned int cnt = hdev->acl_cnt; |
| 2544 | struct hci_chan *chan; |
| 2545 | struct sk_buff *skb; |
| 2546 | int quote; |
| 2547 | |
| 2548 | __check_timeout(hdev, cnt); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 2549 | |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2550 | while (hdev->acl_cnt && |
| 2551 | (chan = hci_chan_sent(hdev, ACL_LINK, "e))) { |
Luiz Augusto von Dentz | ec1cce2 | 2011-11-02 15:52:02 +0200 | [diff] [blame] | 2552 | u32 priority = (skb_peek(&chan->data_q))->priority; |
| 2553 | while (quote-- && (skb = skb_peek(&chan->data_q))) { |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2554 | BT_DBG("chan %p skb %p len %d priority %u", chan, skb, |
| 2555 | skb->len, skb->priority); |
| 2556 | |
Luiz Augusto von Dentz | ec1cce2 | 2011-11-02 15:52:02 +0200 | [diff] [blame] | 2557 | /* Stop if priority has changed */ |
| 2558 | if (skb->priority < priority) |
| 2559 | break; |
| 2560 | |
| 2561 | skb = skb_dequeue(&chan->data_q); |
| 2562 | |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2563 | hci_conn_enter_active_mode(chan->conn, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 2564 | bt_cb(skb)->force_active); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 2565 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2566 | hci_send_frame(skb); |
| 2567 | hdev->acl_last_tx = jiffies; |
| 2568 | |
| 2569 | hdev->acl_cnt--; |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2570 | chan->sent++; |
| 2571 | chan->conn->sent++; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2572 | } |
| 2573 | } |
Luiz Augusto von Dentz | 02b20f0 | 2011-11-02 15:52:03 +0200 | [diff] [blame] | 2574 | |
| 2575 | if (cnt != hdev->acl_cnt) |
| 2576 | hci_prio_recalculate(hdev, ACL_LINK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2577 | } |
| 2578 | |
Andrei Emeltchenko | b71d385 | 2012-02-03 16:27:54 +0200 | [diff] [blame] | 2579 | static inline void hci_sched_acl_blk(struct hci_dev *hdev) |
| 2580 | { |
Andrei Emeltchenko | 63d2bc1 | 2012-02-03 16:27:55 +0200 | [diff] [blame] | 2581 | unsigned int cnt = hdev->block_cnt; |
Andrei Emeltchenko | b71d385 | 2012-02-03 16:27:54 +0200 | [diff] [blame] | 2582 | struct hci_chan *chan; |
| 2583 | struct sk_buff *skb; |
| 2584 | int quote; |
Andrei Emeltchenko | b71d385 | 2012-02-03 16:27:54 +0200 | [diff] [blame] | 2585 | |
Andrei Emeltchenko | 63d2bc1 | 2012-02-03 16:27:55 +0200 | [diff] [blame] | 2586 | __check_timeout(hdev, cnt); |
Andrei Emeltchenko | b71d385 | 2012-02-03 16:27:54 +0200 | [diff] [blame] | 2587 | |
| 2588 | while (hdev->block_cnt > 0 && |
| 2589 | (chan = hci_chan_sent(hdev, ACL_LINK, "e))) { |
| 2590 | u32 priority = (skb_peek(&chan->data_q))->priority; |
| 2591 | while (quote > 0 && (skb = skb_peek(&chan->data_q))) { |
| 2592 | int blocks; |
| 2593 | |
| 2594 | BT_DBG("chan %p skb %p len %d priority %u", chan, skb, |
| 2595 | skb->len, skb->priority); |
| 2596 | |
| 2597 | /* Stop if priority has changed */ |
| 2598 | if (skb->priority < priority) |
| 2599 | break; |
| 2600 | |
| 2601 | skb = skb_dequeue(&chan->data_q); |
| 2602 | |
| 2603 | blocks = __get_blocks(hdev, skb); |
| 2604 | if (blocks > hdev->block_cnt) |
| 2605 | return; |
| 2606 | |
| 2607 | hci_conn_enter_active_mode(chan->conn, |
| 2608 | bt_cb(skb)->force_active); |
| 2609 | |
| 2610 | hci_send_frame(skb); |
| 2611 | hdev->acl_last_tx = jiffies; |
| 2612 | |
| 2613 | hdev->block_cnt -= blocks; |
| 2614 | quote -= blocks; |
| 2615 | |
| 2616 | chan->sent += blocks; |
| 2617 | chan->conn->sent += blocks; |
| 2618 | } |
| 2619 | } |
| 2620 | |
| 2621 | if (cnt != hdev->block_cnt) |
| 2622 | hci_prio_recalculate(hdev, ACL_LINK); |
| 2623 | } |
| 2624 | |
| 2625 | static inline void hci_sched_acl(struct hci_dev *hdev) |
| 2626 | { |
| 2627 | BT_DBG("%s", hdev->name); |
| 2628 | |
| 2629 | if (!hci_conn_num(hdev, ACL_LINK)) |
| 2630 | return; |
| 2631 | |
| 2632 | switch (hdev->flow_ctl_mode) { |
| 2633 | case HCI_FLOW_CTL_MODE_PACKET_BASED: |
| 2634 | hci_sched_acl_pkt(hdev); |
| 2635 | break; |
| 2636 | |
| 2637 | case HCI_FLOW_CTL_MODE_BLOCK_BASED: |
| 2638 | hci_sched_acl_blk(hdev); |
| 2639 | break; |
| 2640 | } |
| 2641 | } |
| 2642 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2643 | /* Schedule SCO */ |
| 2644 | static inline void hci_sched_sco(struct hci_dev *hdev) |
| 2645 | { |
| 2646 | struct hci_conn *conn; |
| 2647 | struct sk_buff *skb; |
| 2648 | int quote; |
| 2649 | |
| 2650 | BT_DBG("%s", hdev->name); |
| 2651 | |
Luiz Augusto von Dentz | 52087a7 | 2011-08-17 16:23:00 +0300 | [diff] [blame] | 2652 | if (!hci_conn_num(hdev, SCO_LINK)) |
| 2653 | return; |
| 2654 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2655 | while (hdev->sco_cnt && (conn = hci_low_sent(hdev, SCO_LINK, "e))) { |
| 2656 | while (quote-- && (skb = skb_dequeue(&conn->data_q))) { |
| 2657 | BT_DBG("skb %p len %d", skb, skb->len); |
| 2658 | hci_send_frame(skb); |
| 2659 | |
| 2660 | conn->sent++; |
| 2661 | if (conn->sent == ~0) |
| 2662 | conn->sent = 0; |
| 2663 | } |
| 2664 | } |
| 2665 | } |
| 2666 | |
Marcel Holtmann | b6a0dc8 | 2007-10-20 14:55:10 +0200 | [diff] [blame] | 2667 | static inline void hci_sched_esco(struct hci_dev *hdev) |
| 2668 | { |
| 2669 | struct hci_conn *conn; |
| 2670 | struct sk_buff *skb; |
| 2671 | int quote; |
| 2672 | |
| 2673 | BT_DBG("%s", hdev->name); |
| 2674 | |
Luiz Augusto von Dentz | 52087a7 | 2011-08-17 16:23:00 +0300 | [diff] [blame] | 2675 | if (!hci_conn_num(hdev, ESCO_LINK)) |
| 2676 | return; |
| 2677 | |
Marcel Holtmann | b6a0dc8 | 2007-10-20 14:55:10 +0200 | [diff] [blame] | 2678 | while (hdev->sco_cnt && (conn = hci_low_sent(hdev, ESCO_LINK, "e))) { |
| 2679 | while (quote-- && (skb = skb_dequeue(&conn->data_q))) { |
| 2680 | BT_DBG("skb %p len %d", skb, skb->len); |
| 2681 | hci_send_frame(skb); |
| 2682 | |
| 2683 | conn->sent++; |
| 2684 | if (conn->sent == ~0) |
| 2685 | conn->sent = 0; |
| 2686 | } |
| 2687 | } |
| 2688 | } |
| 2689 | |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2690 | static inline void hci_sched_le(struct hci_dev *hdev) |
| 2691 | { |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2692 | struct hci_chan *chan; |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2693 | struct sk_buff *skb; |
Luiz Augusto von Dentz | 02b20f0 | 2011-11-02 15:52:03 +0200 | [diff] [blame] | 2694 | int quote, cnt, tmp; |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2695 | |
| 2696 | BT_DBG("%s", hdev->name); |
| 2697 | |
Luiz Augusto von Dentz | 52087a7 | 2011-08-17 16:23:00 +0300 | [diff] [blame] | 2698 | if (!hci_conn_num(hdev, LE_LINK)) |
| 2699 | return; |
| 2700 | |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2701 | if (!test_bit(HCI_RAW, &hdev->flags)) { |
| 2702 | /* LE tx timeout must be longer than maximum |
| 2703 | * link supervision timeout (40.9 seconds) */ |
Ville Tervo | bae1f5d | 2011-02-10 22:38:53 -0300 | [diff] [blame] | 2704 | if (!hdev->le_cnt && hdev->le_pkts && |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2705 | time_after(jiffies, hdev->le_last_tx + HZ * 45)) |
Ville Tervo | bae1f5d | 2011-02-10 22:38:53 -0300 | [diff] [blame] | 2706 | hci_link_tx_to(hdev, LE_LINK); |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2707 | } |
| 2708 | |
| 2709 | cnt = hdev->le_pkts ? hdev->le_cnt : hdev->acl_cnt; |
Luiz Augusto von Dentz | 02b20f0 | 2011-11-02 15:52:03 +0200 | [diff] [blame] | 2710 | tmp = cnt; |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2711 | while (cnt && (chan = hci_chan_sent(hdev, LE_LINK, "e))) { |
Luiz Augusto von Dentz | ec1cce2 | 2011-11-02 15:52:02 +0200 | [diff] [blame] | 2712 | u32 priority = (skb_peek(&chan->data_q))->priority; |
| 2713 | while (quote-- && (skb = skb_peek(&chan->data_q))) { |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2714 | BT_DBG("chan %p skb %p len %d priority %u", chan, skb, |
| 2715 | skb->len, skb->priority); |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2716 | |
Luiz Augusto von Dentz | ec1cce2 | 2011-11-02 15:52:02 +0200 | [diff] [blame] | 2717 | /* Stop if priority has changed */ |
| 2718 | if (skb->priority < priority) |
| 2719 | break; |
| 2720 | |
| 2721 | skb = skb_dequeue(&chan->data_q); |
| 2722 | |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2723 | hci_send_frame(skb); |
| 2724 | hdev->le_last_tx = jiffies; |
| 2725 | |
| 2726 | cnt--; |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2727 | chan->sent++; |
| 2728 | chan->conn->sent++; |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2729 | } |
| 2730 | } |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 2731 | |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2732 | if (hdev->le_pkts) |
| 2733 | hdev->le_cnt = cnt; |
| 2734 | else |
| 2735 | hdev->acl_cnt = cnt; |
Luiz Augusto von Dentz | 02b20f0 | 2011-11-02 15:52:03 +0200 | [diff] [blame] | 2736 | |
| 2737 | if (cnt != tmp) |
| 2738 | hci_prio_recalculate(hdev, LE_LINK); |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2739 | } |
| 2740 | |
Gustavo F. Padovan | 3eff45e | 2011-12-15 00:50:02 -0200 | [diff] [blame] | 2741 | static void hci_tx_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2742 | { |
Gustavo F. Padovan | 3eff45e | 2011-12-15 00:50:02 -0200 | [diff] [blame] | 2743 | struct hci_dev *hdev = container_of(work, struct hci_dev, tx_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2744 | struct sk_buff *skb; |
| 2745 | |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2746 | BT_DBG("%s acl %d sco %d le %d", hdev->name, hdev->acl_cnt, |
| 2747 | hdev->sco_cnt, hdev->le_cnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2748 | |
| 2749 | /* Schedule queues and send stuff to HCI driver */ |
| 2750 | |
| 2751 | hci_sched_acl(hdev); |
| 2752 | |
| 2753 | hci_sched_sco(hdev); |
| 2754 | |
Marcel Holtmann | b6a0dc8 | 2007-10-20 14:55:10 +0200 | [diff] [blame] | 2755 | hci_sched_esco(hdev); |
| 2756 | |
Ville Tervo | 6ed58ec | 2011-02-10 22:38:48 -0300 | [diff] [blame] | 2757 | hci_sched_le(hdev); |
| 2758 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2759 | /* Send next queued raw (unknown type) packet */ |
| 2760 | while ((skb = skb_dequeue(&hdev->raw_q))) |
| 2761 | hci_send_frame(skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2762 | } |
| 2763 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 2764 | /* ----- HCI RX task (incoming data processing) ----- */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2765 | |
| 2766 | /* ACL data packet */ |
| 2767 | static inline void hci_acldata_packet(struct hci_dev *hdev, struct sk_buff *skb) |
| 2768 | { |
| 2769 | struct hci_acl_hdr *hdr = (void *) skb->data; |
| 2770 | struct hci_conn *conn; |
| 2771 | __u16 handle, flags; |
| 2772 | |
| 2773 | skb_pull(skb, HCI_ACL_HDR_SIZE); |
| 2774 | |
| 2775 | handle = __le16_to_cpu(hdr->handle); |
| 2776 | flags = hci_flags(handle); |
| 2777 | handle = hci_handle(handle); |
| 2778 | |
| 2779 | BT_DBG("%s len %d handle 0x%x flags 0x%x", hdev->name, skb->len, handle, flags); |
| 2780 | |
| 2781 | hdev->stat.acl_rx++; |
| 2782 | |
| 2783 | hci_dev_lock(hdev); |
| 2784 | conn = hci_conn_hash_lookup_handle(hdev, handle); |
| 2785 | hci_dev_unlock(hdev); |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 2786 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2787 | if (conn) { |
Mat Martineau | 65983fc | 2011-12-13 15:06:02 -0800 | [diff] [blame] | 2788 | hci_conn_enter_active_mode(conn, BT_POWER_FORCE_ACTIVE_OFF); |
Marcel Holtmann | 04837f6 | 2006-07-03 10:02:33 +0200 | [diff] [blame] | 2789 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2790 | /* Send to upper protocol */ |
Ulisses Furquim | 686ebf2 | 2011-12-21 10:11:33 -0200 | [diff] [blame] | 2791 | l2cap_recv_acldata(conn, skb, flags); |
| 2792 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2793 | } else { |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 2794 | BT_ERR("%s ACL packet for unknown connection handle %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2795 | hdev->name, handle); |
| 2796 | } |
| 2797 | |
| 2798 | kfree_skb(skb); |
| 2799 | } |
| 2800 | |
| 2801 | /* SCO data packet */ |
| 2802 | static inline void hci_scodata_packet(struct hci_dev *hdev, struct sk_buff *skb) |
| 2803 | { |
| 2804 | struct hci_sco_hdr *hdr = (void *) skb->data; |
| 2805 | struct hci_conn *conn; |
| 2806 | __u16 handle; |
| 2807 | |
| 2808 | skb_pull(skb, HCI_SCO_HDR_SIZE); |
| 2809 | |
| 2810 | handle = __le16_to_cpu(hdr->handle); |
| 2811 | |
| 2812 | BT_DBG("%s len %d handle 0x%x", hdev->name, skb->len, handle); |
| 2813 | |
| 2814 | hdev->stat.sco_rx++; |
| 2815 | |
| 2816 | hci_dev_lock(hdev); |
| 2817 | conn = hci_conn_hash_lookup_handle(hdev, handle); |
| 2818 | hci_dev_unlock(hdev); |
| 2819 | |
| 2820 | if (conn) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2821 | /* Send to upper protocol */ |
Ulisses Furquim | 686ebf2 | 2011-12-21 10:11:33 -0200 | [diff] [blame] | 2822 | sco_recv_scodata(conn, skb); |
| 2823 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2824 | } else { |
YOSHIFUJI Hideaki | 8e87d14 | 2007-02-09 23:24:33 +0900 | [diff] [blame] | 2825 | BT_ERR("%s SCO packet for unknown connection handle %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2826 | hdev->name, handle); |
| 2827 | } |
| 2828 | |
| 2829 | kfree_skb(skb); |
| 2830 | } |
| 2831 | |
Marcel Holtmann | b78752c | 2010-08-08 23:06:53 -0400 | [diff] [blame] | 2832 | static void hci_rx_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2833 | { |
Marcel Holtmann | b78752c | 2010-08-08 23:06:53 -0400 | [diff] [blame] | 2834 | struct hci_dev *hdev = container_of(work, struct hci_dev, rx_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2835 | struct sk_buff *skb; |
| 2836 | |
| 2837 | BT_DBG("%s", hdev->name); |
| 2838 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2839 | while ((skb = skb_dequeue(&hdev->rx_q))) { |
Marcel Holtmann | cd82e61 | 2012-02-20 20:34:38 +0100 | [diff] [blame] | 2840 | /* Send copy to monitor */ |
| 2841 | hci_send_to_monitor(hdev, skb); |
| 2842 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2843 | if (atomic_read(&hdev->promisc)) { |
| 2844 | /* Send copy to the sockets */ |
Marcel Holtmann | 470fe1b | 2012-02-20 14:50:30 +0100 | [diff] [blame] | 2845 | hci_send_to_sock(hdev, skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2846 | } |
| 2847 | |
| 2848 | if (test_bit(HCI_RAW, &hdev->flags)) { |
| 2849 | kfree_skb(skb); |
| 2850 | continue; |
| 2851 | } |
| 2852 | |
| 2853 | if (test_bit(HCI_INIT, &hdev->flags)) { |
| 2854 | /* Don't process data packets in this states. */ |
Marcel Holtmann | 0d48d93 | 2005-08-09 20:30:28 -0700 | [diff] [blame] | 2855 | switch (bt_cb(skb)->pkt_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2856 | case HCI_ACLDATA_PKT: |
| 2857 | case HCI_SCODATA_PKT: |
| 2858 | kfree_skb(skb); |
| 2859 | continue; |
Stephen Hemminger | 3ff50b7 | 2007-04-20 17:09:22 -0700 | [diff] [blame] | 2860 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2861 | } |
| 2862 | |
| 2863 | /* Process frame */ |
Marcel Holtmann | 0d48d93 | 2005-08-09 20:30:28 -0700 | [diff] [blame] | 2864 | switch (bt_cb(skb)->pkt_type) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2865 | case HCI_EVENT_PKT: |
Marcel Holtmann | b78752c | 2010-08-08 23:06:53 -0400 | [diff] [blame] | 2866 | BT_DBG("%s Event packet", hdev->name); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2867 | hci_event_packet(hdev, skb); |
| 2868 | break; |
| 2869 | |
| 2870 | case HCI_ACLDATA_PKT: |
| 2871 | BT_DBG("%s ACL data packet", hdev->name); |
| 2872 | hci_acldata_packet(hdev, skb); |
| 2873 | break; |
| 2874 | |
| 2875 | case HCI_SCODATA_PKT: |
| 2876 | BT_DBG("%s SCO data packet", hdev->name); |
| 2877 | hci_scodata_packet(hdev, skb); |
| 2878 | break; |
| 2879 | |
| 2880 | default: |
| 2881 | kfree_skb(skb); |
| 2882 | break; |
| 2883 | } |
| 2884 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2885 | } |
| 2886 | |
Gustavo F. Padovan | c347b76 | 2011-12-14 23:53:47 -0200 | [diff] [blame] | 2887 | static void hci_cmd_work(struct work_struct *work) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2888 | { |
Gustavo F. Padovan | c347b76 | 2011-12-14 23:53:47 -0200 | [diff] [blame] | 2889 | struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2890 | struct sk_buff *skb; |
| 2891 | |
| 2892 | BT_DBG("%s cmd %d", hdev->name, atomic_read(&hdev->cmd_cnt)); |
| 2893 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2894 | /* Send queued commands */ |
Andrei Emeltchenko | 5a08ecc | 2011-01-11 17:20:20 +0200 | [diff] [blame] | 2895 | if (atomic_read(&hdev->cmd_cnt)) { |
| 2896 | skb = skb_dequeue(&hdev->cmd_q); |
| 2897 | if (!skb) |
| 2898 | return; |
| 2899 | |
Wei Yongjun | 7585b97 | 2009-02-25 18:29:52 +0800 | [diff] [blame] | 2900 | kfree_skb(hdev->sent_cmd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2901 | |
Andrei Emeltchenko | 70f23020 | 2010-12-01 16:58:25 +0200 | [diff] [blame] | 2902 | hdev->sent_cmd = skb_clone(skb, GFP_ATOMIC); |
| 2903 | if (hdev->sent_cmd) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2904 | atomic_dec(&hdev->cmd_cnt); |
| 2905 | hci_send_frame(skb); |
Szymon Janc | 7bdb8a5 | 2011-07-26 22:46:54 +0200 | [diff] [blame] | 2906 | if (test_bit(HCI_RESET, &hdev->flags)) |
| 2907 | del_timer(&hdev->cmd_timer); |
| 2908 | else |
| 2909 | mod_timer(&hdev->cmd_timer, |
Ville Tervo | 6bd3232 | 2011-02-16 16:32:41 +0200 | [diff] [blame] | 2910 | jiffies + msecs_to_jiffies(HCI_CMD_TIMEOUT)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2911 | } else { |
| 2912 | skb_queue_head(&hdev->cmd_q, skb); |
Gustavo F. Padovan | c347b76 | 2011-12-14 23:53:47 -0200 | [diff] [blame] | 2913 | queue_work(hdev->workqueue, &hdev->cmd_work); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2914 | } |
| 2915 | } |
| 2916 | } |
Andre Guedes | 2519a1f | 2011-11-07 11:45:24 -0300 | [diff] [blame] | 2917 | |
| 2918 | int hci_do_inquiry(struct hci_dev *hdev, u8 length) |
| 2919 | { |
| 2920 | /* General inquiry access code (GIAC) */ |
| 2921 | u8 lap[3] = { 0x33, 0x8b, 0x9e }; |
| 2922 | struct hci_cp_inquiry cp; |
| 2923 | |
| 2924 | BT_DBG("%s", hdev->name); |
| 2925 | |
| 2926 | if (test_bit(HCI_INQUIRY, &hdev->flags)) |
| 2927 | return -EINPROGRESS; |
| 2928 | |
Johan Hedberg | 4663262 | 2012-01-02 16:06:08 +0200 | [diff] [blame] | 2929 | inquiry_cache_flush(hdev); |
| 2930 | |
Andre Guedes | 2519a1f | 2011-11-07 11:45:24 -0300 | [diff] [blame] | 2931 | memset(&cp, 0, sizeof(cp)); |
| 2932 | memcpy(&cp.lap, lap, sizeof(cp.lap)); |
| 2933 | cp.length = length; |
| 2934 | |
| 2935 | return hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp); |
| 2936 | } |
Andre Guedes | 023d504 | 2011-11-04 14:16:52 -0300 | [diff] [blame] | 2937 | |
| 2938 | int hci_cancel_inquiry(struct hci_dev *hdev) |
| 2939 | { |
| 2940 | BT_DBG("%s", hdev->name); |
| 2941 | |
| 2942 | if (!test_bit(HCI_INQUIRY, &hdev->flags)) |
| 2943 | return -EPERM; |
| 2944 | |
| 2945 | return hci_send_cmd(hdev, HCI_OP_INQUIRY_CANCEL, 0, NULL); |
| 2946 | } |