blob: a3113f8c1f93b92a586cf379eef6ea0e99957db0 [file] [log] [blame]
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2000-2001 Qualcomm Incorporated
Gustavo F. Padovan590051d2011-12-18 13:39:33 -02004 Copyright (C) 2011 ProFUSION Embedded Systems
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
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 Hideaki8e87d142007-02-09 23:24:33 +090016 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 Torvalds1da177e2005-04-16 15:20:36 -070019 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
20
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090021 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
22 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 SOFTWARE IS DISCLAIMED.
24*/
25
26/* Bluetooth HCI core. */
27
S.Çağlar Onur824530212008-02-17 23:25:57 -080028#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#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 Torvalds1da177e2005-04-16 15:20:36 -070035#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 Holtmannf48fd9c2010-03-20 15:20:04 +010041#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <linux/interrupt.h>
43#include <linux/notifier.h>
Marcel Holtmann611b30f2009-06-08 14:41:38 +020044#include <linux/rfkill.h>
Ville Tervo6bd32322011-02-16 16:32:41 +020045#include <linux/timer.h>
Vinicius Costa Gomes3a0259b2011-06-09 18:50:43 -030046#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#include <net/sock.h>
48
49#include <asm/system.h>
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020050#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051#include <asm/unaligned.h>
52
53#include <net/bluetooth/bluetooth.h>
54#include <net/bluetooth/hci_core.h>
55
Johan Hedbergab81cbf2010-12-15 13:53:18 +020056#define AUTO_OFF_TIMEOUT 2000
57
Andrei Emeltchenko7784d782011-11-18 13:35:42 +020058int enable_hs;
59
Marcel Holtmannb78752c2010-08-08 23:06:53 -040060static void hci_rx_work(struct work_struct *work);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -020061static void hci_cmd_work(struct work_struct *work);
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -020062static void hci_tx_work(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064/* HCI device list */
65LIST_HEAD(hci_dev_list);
66DEFINE_RWLOCK(hci_dev_list_lock);
67
68/* HCI callback list */
69LIST_HEAD(hci_cb_list);
70DEFINE_RWLOCK(hci_cb_list_lock);
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072/* HCI notifiers list */
Alan Sterne041c682006-03-27 01:16:30 -080073static ATOMIC_NOTIFIER_HEAD(hci_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/* ---- HCI notifications ---- */
76
77int hci_register_notifier(struct notifier_block *nb)
78{
Alan Sterne041c682006-03-27 01:16:30 -080079 return atomic_notifier_chain_register(&hci_notifier, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82int hci_unregister_notifier(struct notifier_block *nb)
83{
Alan Sterne041c682006-03-27 01:16:30 -080084 return atomic_notifier_chain_unregister(&hci_notifier, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Marcel Holtmann65164552005-10-28 19:20:48 +020087static void hci_notify(struct hci_dev *hdev, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088{
Alan Sterne041c682006-03-27 01:16:30 -080089 atomic_notifier_call_chain(&hci_notifier, event, hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090}
91
92/* ---- HCI requests ---- */
93
Johan Hedberg23bb5762010-12-21 23:01:27 +020094void hci_req_complete(struct hci_dev *hdev, __u16 cmd, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095{
Johan Hedberg23bb5762010-12-21 23:01:27 +020096 BT_DBG("%s command 0x%04x result 0x%2.2x", hdev->name, cmd, result);
97
Johan Hedberga5040ef2011-01-10 13:28:59 +020098 /* If this is the init phase check if the completed command matches
99 * the last init command, and if not just return.
100 */
101 if (test_bit(HCI_INIT, &hdev->flags) && hdev->init_last_cmd != cmd)
Johan Hedberg23bb5762010-12-21 23:01:27 +0200102 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
104 if (hdev->req_status == HCI_REQ_PEND) {
105 hdev->req_result = result;
106 hdev->req_status = HCI_REQ_DONE;
107 wake_up_interruptible(&hdev->req_wait_q);
108 }
109}
110
111static void hci_req_cancel(struct hci_dev *hdev, int err)
112{
113 BT_DBG("%s err 0x%2.2x", hdev->name, err);
114
115 if (hdev->req_status == HCI_REQ_PEND) {
116 hdev->req_result = err;
117 hdev->req_status = HCI_REQ_CANCELED;
118 wake_up_interruptible(&hdev->req_wait_q);
119 }
120}
121
122/* Execute request and wait for completion. */
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900123static int __hci_request(struct hci_dev *hdev, void (*req)(struct hci_dev *hdev, unsigned long opt),
Szymon Janc01df8c32011-02-17 16:46:47 +0100124 unsigned long opt, __u32 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125{
126 DECLARE_WAITQUEUE(wait, current);
127 int err = 0;
128
129 BT_DBG("%s start", hdev->name);
130
131 hdev->req_status = HCI_REQ_PEND;
132
133 add_wait_queue(&hdev->req_wait_q, &wait);
134 set_current_state(TASK_INTERRUPTIBLE);
135
136 req(hdev, opt);
137 schedule_timeout(timeout);
138
139 remove_wait_queue(&hdev->req_wait_q, &wait);
140
141 if (signal_pending(current))
142 return -EINTR;
143
144 switch (hdev->req_status) {
145 case HCI_REQ_DONE:
Joe Perchese1750722011-06-29 18:18:29 -0700146 err = -bt_to_errno(hdev->req_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 break;
148
149 case HCI_REQ_CANCELED:
150 err = -hdev->req_result;
151 break;
152
153 default:
154 err = -ETIMEDOUT;
155 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700156 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Johan Hedberga5040ef2011-01-10 13:28:59 +0200158 hdev->req_status = hdev->req_result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160 BT_DBG("%s end: err %d", hdev->name, err);
161
162 return err;
163}
164
165static inline int hci_request(struct hci_dev *hdev, void (*req)(struct hci_dev *hdev, unsigned long opt),
Szymon Janc01df8c32011-02-17 16:46:47 +0100166 unsigned long opt, __u32 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167{
168 int ret;
169
Marcel Holtmann7c6a3292008-09-12 03:11:54 +0200170 if (!test_bit(HCI_UP, &hdev->flags))
171 return -ENETDOWN;
172
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 /* Serialize all requests */
174 hci_req_lock(hdev);
175 ret = __hci_request(hdev, req, opt, timeout);
176 hci_req_unlock(hdev);
177
178 return ret;
179}
180
181static void hci_reset_req(struct hci_dev *hdev, unsigned long opt)
182{
183 BT_DBG("%s %ld", hdev->name, opt);
184
185 /* Reset device */
Gustavo F. Padovanf630cf02011-03-16 15:36:29 -0300186 set_bit(HCI_RESET, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200187 hci_send_cmd(hdev, HCI_OP_RESET, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
189
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200190static void bredr_init(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200192 struct hci_cp_delete_stored_link_key cp;
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800193 __le16 param;
Marcel Holtmann89f27832007-09-09 08:39:49 +0200194 __u8 flt_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Andrei Emeltchenko2455a3e2011-12-19 16:31:28 +0200196 hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_PACKET_BASED;
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 /* Mandatory initialization */
199
200 /* Reset */
Gustavo F. Padovanf630cf02011-03-16 15:36:29 -0300201 if (!test_bit(HCI_QUIRK_NO_RESET, &hdev->quirks)) {
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200202 set_bit(HCI_RESET, &hdev->flags);
203 hci_send_cmd(hdev, HCI_OP_RESET, 0, NULL);
Gustavo F. Padovanf630cf02011-03-16 15:36:29 -0300204 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206 /* Read Local Supported Features */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200207 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_FEATURES, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200209 /* Read Local Version */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200210 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 /* Read Buffer Size (ACL mtu, max pkt, etc.) */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200213 hci_send_cmd(hdev, HCI_OP_READ_BUFFER_SIZE, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 /* Read BD Address */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200216 hci_send_cmd(hdev, HCI_OP_READ_BD_ADDR, 0, NULL);
217
218 /* Read Class of Device */
219 hci_send_cmd(hdev, HCI_OP_READ_CLASS_OF_DEV, 0, NULL);
220
221 /* Read Local Name */
222 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_NAME, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
224 /* Read Voice Setting */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200225 hci_send_cmd(hdev, HCI_OP_READ_VOICE_SETTING, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
227 /* Optional initialization */
228
229 /* Clear Event Filters */
Marcel Holtmann89f27832007-09-09 08:39:49 +0200230 flt_type = HCI_FLT_CLEAR_ALL;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200231 hci_send_cmd(hdev, HCI_OP_SET_EVENT_FLT, 1, &flt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 /* Connection accept timeout ~20 secs */
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700234 param = cpu_to_le16(0x7d00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200235 hci_send_cmd(hdev, HCI_OP_WRITE_CA_TIMEOUT, 2, &param);
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200236
237 bacpy(&cp.bdaddr, BDADDR_ANY);
238 cp.delete_all = 1;
239 hci_send_cmd(hdev, HCI_OP_DELETE_STORED_LINK_KEY, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200242static void amp_init(struct hci_dev *hdev)
243{
Andrei Emeltchenko2455a3e2011-12-19 16:31:28 +0200244 hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_BLOCK_BASED;
245
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +0200246 /* Reset */
247 hci_send_cmd(hdev, HCI_OP_RESET, 0, NULL);
248
249 /* Read Local Version */
250 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
251}
252
253static void hci_init_req(struct hci_dev *hdev, unsigned long opt)
254{
255 struct sk_buff *skb;
256
257 BT_DBG("%s %ld", hdev->name, opt);
258
259 /* Driver initialization */
260
261 /* Special commands */
262 while ((skb = skb_dequeue(&hdev->driver_init))) {
263 bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
264 skb->dev = (void *) hdev;
265
266 skb_queue_tail(&hdev->cmd_q, skb);
267 queue_work(hdev->workqueue, &hdev->cmd_work);
268 }
269 skb_queue_purge(&hdev->driver_init);
270
271 switch (hdev->dev_type) {
272 case HCI_BREDR:
273 bredr_init(hdev);
274 break;
275
276 case HCI_AMP:
277 amp_init(hdev);
278 break;
279
280 default:
281 BT_ERR("Unknown device type %d", hdev->dev_type);
282 break;
283 }
284
285}
286
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300287static void hci_le_init_req(struct hci_dev *hdev, unsigned long opt)
288{
289 BT_DBG("%s", hdev->name);
290
291 /* Read LE buffer size */
292 hci_send_cmd(hdev, HCI_OP_LE_READ_BUFFER_SIZE, 0, NULL);
293}
294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295static void hci_scan_req(struct hci_dev *hdev, unsigned long opt)
296{
297 __u8 scan = opt;
298
299 BT_DBG("%s %x", hdev->name, scan);
300
301 /* Inquiry and Page scans */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200302 hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303}
304
305static void hci_auth_req(struct hci_dev *hdev, unsigned long opt)
306{
307 __u8 auth = opt;
308
309 BT_DBG("%s %x", hdev->name, auth);
310
311 /* Authentication */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200312 hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, 1, &auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313}
314
315static void hci_encrypt_req(struct hci_dev *hdev, unsigned long opt)
316{
317 __u8 encrypt = opt;
318
319 BT_DBG("%s %x", hdev->name, encrypt);
320
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200321 /* Encryption */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200322 hci_send_cmd(hdev, HCI_OP_WRITE_ENCRYPT_MODE, 1, &encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323}
324
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200325static void hci_linkpol_req(struct hci_dev *hdev, unsigned long opt)
326{
327 __le16 policy = cpu_to_le16(opt);
328
Marcel Holtmanna418b892008-11-30 12:17:28 +0100329 BT_DBG("%s %x", hdev->name, policy);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200330
331 /* Default link policy */
332 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, 2, &policy);
333}
334
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900335/* Get HCI device by index.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 * Device is held on return. */
337struct hci_dev *hci_dev_get(int index)
338{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200339 struct hci_dev *hdev = NULL, *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341 BT_DBG("%d", index);
342
343 if (index < 0)
344 return NULL;
345
346 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200347 list_for_each_entry(d, &hci_dev_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 if (d->id == index) {
349 hdev = hci_dev_hold(d);
350 break;
351 }
352 }
353 read_unlock(&hci_dev_list_lock);
354 return hdev;
355}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357/* ---- Inquiry support ---- */
Johan Hedbergff9ef572012-01-04 14:23:45 +0200358
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200359bool hci_discovery_active(struct hci_dev *hdev)
360{
361 struct discovery_state *discov = &hdev->discovery;
362
363 if (discov->state == DISCOVERY_INQUIRY ||
364 discov->state == DISCOVERY_RESOLVING)
365 return true;
366
367 return false;
368}
369
Johan Hedbergff9ef572012-01-04 14:23:45 +0200370void hci_discovery_set_state(struct hci_dev *hdev, int state)
371{
372 BT_DBG("%s state %u -> %u", hdev->name, hdev->discovery.state, state);
373
374 if (hdev->discovery.state == state)
375 return;
376
377 switch (state) {
378 case DISCOVERY_STOPPED:
379 mgmt_discovering(hdev, 0);
380 break;
381 case DISCOVERY_STARTING:
382 break;
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200383 case DISCOVERY_INQUIRY:
Johan Hedbergff9ef572012-01-04 14:23:45 +0200384 mgmt_discovering(hdev, 1);
385 break;
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200386 case DISCOVERY_RESOLVING:
387 break;
Johan Hedbergff9ef572012-01-04 14:23:45 +0200388 case DISCOVERY_STOPPING:
389 break;
390 }
391
392 hdev->discovery.state = state;
393}
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static void inquiry_cache_flush(struct hci_dev *hdev)
396{
Johan Hedberg30883512012-01-04 14:16:21 +0200397 struct discovery_state *cache = &hdev->discovery;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200398 struct inquiry_entry *p, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
Johan Hedberg561aafb2012-01-04 13:31:59 +0200400 list_for_each_entry_safe(p, n, &cache->all, all) {
401 list_del(&p->all);
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200402 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 }
Johan Hedberg561aafb2012-01-04 13:31:59 +0200404
405 INIT_LIST_HEAD(&cache->unknown);
406 INIT_LIST_HEAD(&cache->resolve);
Johan Hedbergff9ef572012-01-04 14:23:45 +0200407 cache->state = DISCOVERY_STOPPED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
409
410struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr)
411{
Johan Hedberg30883512012-01-04 14:16:21 +0200412 struct discovery_state *cache = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 struct inquiry_entry *e;
414
415 BT_DBG("cache %p, %s", cache, batostr(bdaddr));
416
Johan Hedberg561aafb2012-01-04 13:31:59 +0200417 list_for_each_entry(e, &cache->all, all) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (!bacmp(&e->data.bdaddr, bdaddr))
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200419 return e;
420 }
421
422 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
Johan Hedberg561aafb2012-01-04 13:31:59 +0200425struct inquiry_entry *hci_inquiry_cache_lookup_unknown(struct hci_dev *hdev,
426 bdaddr_t *bdaddr)
427{
Johan Hedberg30883512012-01-04 14:16:21 +0200428 struct discovery_state *cache = &hdev->discovery;
Johan Hedberg561aafb2012-01-04 13:31:59 +0200429 struct inquiry_entry *e;
430
431 BT_DBG("cache %p, %s", cache, batostr(bdaddr));
432
433 list_for_each_entry(e, &cache->unknown, list) {
434 if (!bacmp(&e->data.bdaddr, bdaddr))
435 return e;
436 }
437
438 return NULL;
439}
440
Johan Hedberg30dc78e2012-01-04 15:44:20 +0200441struct inquiry_entry *hci_inquiry_cache_lookup_resolve(struct hci_dev *hdev,
442 bdaddr_t *bdaddr,
443 int state)
444{
445 struct discovery_state *cache = &hdev->discovery;
446 struct inquiry_entry *e;
447
448 BT_DBG("cache %p bdaddr %s state %d", cache, batostr(bdaddr), state);
449
450 list_for_each_entry(e, &cache->resolve, list) {
451 if (!bacmp(bdaddr, BDADDR_ANY) && e->name_state == state)
452 return e;
453 if (!bacmp(&e->data.bdaddr, bdaddr))
454 return e;
455 }
456
457 return NULL;
458}
459
Johan Hedberg31754052012-01-04 13:39:52 +0200460bool hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data,
Johan Hedberg561aafb2012-01-04 13:31:59 +0200461 bool name_known)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Johan Hedberg30883512012-01-04 14:16:21 +0200463 struct discovery_state *cache = &hdev->discovery;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200464 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
466 BT_DBG("cache %p, %s", cache, batostr(&data->bdaddr));
467
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200468 ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +0200469 if (ie)
470 goto update;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200471
Johan Hedberg561aafb2012-01-04 13:31:59 +0200472 /* Entry not in the cache. Add new one. */
473 ie = kzalloc(sizeof(struct inquiry_entry), GFP_ATOMIC);
474 if (!ie)
Johan Hedberg31754052012-01-04 13:39:52 +0200475 return false;
Johan Hedberg561aafb2012-01-04 13:31:59 +0200476
477 list_add(&ie->all, &cache->all);
478
479 if (name_known) {
480 ie->name_state = NAME_KNOWN;
481 } else {
482 ie->name_state = NAME_NOT_KNOWN;
483 list_add(&ie->list, &cache->unknown);
484 }
485
486update:
487 if (name_known && ie->name_state != NAME_KNOWN &&
488 ie->name_state != NAME_PENDING) {
489 ie->name_state = NAME_KNOWN;
490 list_del(&ie->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 }
492
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200493 memcpy(&ie->data, data, sizeof(*data));
494 ie->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 cache->timestamp = jiffies;
Johan Hedberg31754052012-01-04 13:39:52 +0200496
497 if (ie->name_state == NAME_NOT_KNOWN)
498 return false;
499
500 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
503static int inquiry_cache_dump(struct hci_dev *hdev, int num, __u8 *buf)
504{
Johan Hedberg30883512012-01-04 14:16:21 +0200505 struct discovery_state *cache = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 struct inquiry_info *info = (struct inquiry_info *) buf;
507 struct inquiry_entry *e;
508 int copied = 0;
509
Johan Hedberg561aafb2012-01-04 13:31:59 +0200510 list_for_each_entry(e, &cache->all, all) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 struct inquiry_data *data = &e->data;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200512
513 if (copied >= num)
514 break;
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 bacpy(&info->bdaddr, &data->bdaddr);
517 info->pscan_rep_mode = data->pscan_rep_mode;
518 info->pscan_period_mode = data->pscan_period_mode;
519 info->pscan_mode = data->pscan_mode;
520 memcpy(info->dev_class, data->dev_class, 3);
521 info->clock_offset = data->clock_offset;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200522
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 info++;
Johan Hedbergb57c1a52012-01-03 16:03:00 +0200524 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 }
526
527 BT_DBG("cache %p, copied %d", cache, copied);
528 return copied;
529}
530
531static void hci_inq_req(struct hci_dev *hdev, unsigned long opt)
532{
533 struct hci_inquiry_req *ir = (struct hci_inquiry_req *) opt;
534 struct hci_cp_inquiry cp;
535
536 BT_DBG("%s", hdev->name);
537
538 if (test_bit(HCI_INQUIRY, &hdev->flags))
539 return;
540
541 /* Start Inquiry */
542 memcpy(&cp.lap, &ir->lap, 3);
543 cp.length = ir->length;
544 cp.num_rsp = ir->num_rsp;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200545 hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546}
547
548int hci_inquiry(void __user *arg)
549{
550 __u8 __user *ptr = arg;
551 struct hci_inquiry_req ir;
552 struct hci_dev *hdev;
553 int err = 0, do_inquiry = 0, max_rsp;
554 long timeo;
555 __u8 *buf;
556
557 if (copy_from_user(&ir, ptr, sizeof(ir)))
558 return -EFAULT;
559
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200560 hdev = hci_dev_get(ir.dev_id);
561 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return -ENODEV;
563
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300564 hci_dev_lock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900565 if (inquiry_cache_age(hdev) > INQUIRY_CACHE_AGE_MAX ||
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200566 inquiry_cache_empty(hdev) ||
567 ir.flags & IREQ_CACHE_FLUSH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 inquiry_cache_flush(hdev);
569 do_inquiry = 1;
570 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300571 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Marcel Holtmann04837f62006-07-03 10:02:33 +0200573 timeo = ir.length * msecs_to_jiffies(2000);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200574
575 if (do_inquiry) {
576 err = hci_request(hdev, hci_inq_req, (unsigned long)&ir, timeo);
577 if (err < 0)
578 goto done;
579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 /* for unlimited number of responses we will use buffer with 255 entries */
582 max_rsp = (ir.num_rsp == 0) ? 255 : ir.num_rsp;
583
584 /* cache_dump can't sleep. Therefore we allocate temp buffer and then
585 * copy it to the user space.
586 */
Szymon Janc01df8c32011-02-17 16:46:47 +0100587 buf = kmalloc(sizeof(struct inquiry_info) * max_rsp, GFP_KERNEL);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200588 if (!buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 err = -ENOMEM;
590 goto done;
591 }
592
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300593 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 ir.num_rsp = inquiry_cache_dump(hdev, max_rsp, buf);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300595 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 BT_DBG("num_rsp %d", ir.num_rsp);
598
599 if (!copy_to_user(ptr, &ir, sizeof(ir))) {
600 ptr += sizeof(ir);
601 if (copy_to_user(ptr, buf, sizeof(struct inquiry_info) *
602 ir.num_rsp))
603 err = -EFAULT;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900604 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 err = -EFAULT;
606
607 kfree(buf);
608
609done:
610 hci_dev_put(hdev);
611 return err;
612}
613
614/* ---- HCI ioctl helpers ---- */
615
616int hci_dev_open(__u16 dev)
617{
618 struct hci_dev *hdev;
619 int ret = 0;
620
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200621 hdev = hci_dev_get(dev);
622 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 return -ENODEV;
624
625 BT_DBG("%s %p", hdev->name, hdev);
626
627 hci_req_lock(hdev);
628
Marcel Holtmann611b30f2009-06-08 14:41:38 +0200629 if (hdev->rfkill && rfkill_blocked(hdev->rfkill)) {
630 ret = -ERFKILL;
631 goto done;
632 }
633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 if (test_bit(HCI_UP, &hdev->flags)) {
635 ret = -EALREADY;
636 goto done;
637 }
638
639 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
640 set_bit(HCI_RAW, &hdev->flags);
641
Andrei Emeltchenko07e3b942011-11-11 17:02:15 +0200642 /* Treat all non BR/EDR controllers as raw devices if
643 enable_hs is not set */
644 if (hdev->dev_type != HCI_BREDR && !enable_hs)
Marcel Holtmann943da252010-02-13 02:28:41 +0100645 set_bit(HCI_RAW, &hdev->flags);
646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (hdev->open(hdev)) {
648 ret = -EIO;
649 goto done;
650 }
651
652 if (!test_bit(HCI_RAW, &hdev->flags)) {
653 atomic_set(&hdev->cmd_cnt, 1);
654 set_bit(HCI_INIT, &hdev->flags);
Johan Hedberga5040ef2011-01-10 13:28:59 +0200655 hdev->init_last_cmd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Marcel Holtmann04837f62006-07-03 10:02:33 +0200657 ret = __hci_request(hdev, hci_init_req, 0,
658 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659
Andre Guedeseead27d2011-06-30 19:20:55 -0300660 if (lmp_host_le_capable(hdev))
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300661 ret = __hci_request(hdev, hci_le_init_req, 0,
662 msecs_to_jiffies(HCI_INIT_TIMEOUT));
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 clear_bit(HCI_INIT, &hdev->flags);
665 }
666
667 if (!ret) {
668 hci_dev_hold(hdev);
669 set_bit(HCI_UP, &hdev->flags);
670 hci_notify(hdev, HCI_DEV_UP);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200671 if (!test_bit(HCI_SETUP, &hdev->flags)) {
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300672 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +0200673 mgmt_powered(hdev, 1);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300674 hci_dev_unlock(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +0200675 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900676 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 /* Init failed, cleanup */
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -0200678 flush_work(&hdev->tx_work);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -0200679 flush_work(&hdev->cmd_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -0400680 flush_work(&hdev->rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 skb_queue_purge(&hdev->cmd_q);
683 skb_queue_purge(&hdev->rx_q);
684
685 if (hdev->flush)
686 hdev->flush(hdev);
687
688 if (hdev->sent_cmd) {
689 kfree_skb(hdev->sent_cmd);
690 hdev->sent_cmd = NULL;
691 }
692
693 hdev->close(hdev);
694 hdev->flags = 0;
695 }
696
697done:
698 hci_req_unlock(hdev);
699 hci_dev_put(hdev);
700 return ret;
701}
702
703static int hci_dev_do_close(struct hci_dev *hdev)
704{
705 BT_DBG("%s %p", hdev->name, hdev);
706
707 hci_req_cancel(hdev, ENODEV);
708 hci_req_lock(hdev);
709
710 if (!test_and_clear_bit(HCI_UP, &hdev->flags)) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -0300711 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 hci_req_unlock(hdev);
713 return 0;
714 }
715
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -0200716 /* Flush RX and TX works */
717 flush_work(&hdev->tx_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -0400718 flush_work(&hdev->rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200720 if (hdev->discov_timeout > 0) {
Johan Hedberge0f93092011-11-09 01:44:22 +0200721 cancel_delayed_work(&hdev->discov_off);
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200722 hdev->discov_timeout = 0;
723 }
724
Johan Hedberg32435532011-11-07 22:16:04 +0200725 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->flags))
Johan Hedberge0f93092011-11-09 01:44:22 +0200726 cancel_delayed_work(&hdev->power_off);
Johan Hedberg32435532011-11-07 22:16:04 +0200727
Johan Hedberg7d785252011-12-15 00:47:39 +0200728 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->flags))
729 cancel_delayed_work(&hdev->service_cache);
730
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300731 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 inquiry_cache_flush(hdev);
733 hci_conn_hash_flush(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300734 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
736 hci_notify(hdev, HCI_DEV_DOWN);
737
738 if (hdev->flush)
739 hdev->flush(hdev);
740
741 /* Reset device */
742 skb_queue_purge(&hdev->cmd_q);
743 atomic_set(&hdev->cmd_cnt, 1);
744 if (!test_bit(HCI_RAW, &hdev->flags)) {
745 set_bit(HCI_INIT, &hdev->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200746 __hci_request(hdev, hci_reset_req, 0,
Gustavo F. Padovancad44c22011-12-23 18:59:13 -0200747 msecs_to_jiffies(250));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 clear_bit(HCI_INIT, &hdev->flags);
749 }
750
Gustavo F. Padovanc347b762011-12-14 23:53:47 -0200751 /* flush cmd work */
752 flush_work(&hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 /* Drop queues */
755 skb_queue_purge(&hdev->rx_q);
756 skb_queue_purge(&hdev->cmd_q);
757 skb_queue_purge(&hdev->raw_q);
758
759 /* Drop last sent command */
760 if (hdev->sent_cmd) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -0300761 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 kfree_skb(hdev->sent_cmd);
763 hdev->sent_cmd = NULL;
764 }
765
766 /* After this point our queues are empty
767 * and no tasks are scheduled. */
768 hdev->close(hdev);
769
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300770 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +0200771 mgmt_powered(hdev, 0);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300772 hci_dev_unlock(hdev);
Johan Hedberg5add6af2010-12-16 10:00:37 +0200773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 /* Clear flags */
775 hdev->flags = 0;
776
777 hci_req_unlock(hdev);
778
779 hci_dev_put(hdev);
780 return 0;
781}
782
783int hci_dev_close(__u16 dev)
784{
785 struct hci_dev *hdev;
786 int err;
787
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200788 hdev = hci_dev_get(dev);
789 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 return -ENODEV;
791 err = hci_dev_do_close(hdev);
792 hci_dev_put(hdev);
793 return err;
794}
795
796int hci_dev_reset(__u16 dev)
797{
798 struct hci_dev *hdev;
799 int ret = 0;
800
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200801 hdev = hci_dev_get(dev);
802 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return -ENODEV;
804
805 hci_req_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807 if (!test_bit(HCI_UP, &hdev->flags))
808 goto done;
809
810 /* Drop queues */
811 skb_queue_purge(&hdev->rx_q);
812 skb_queue_purge(&hdev->cmd_q);
813
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300814 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 inquiry_cache_flush(hdev);
816 hci_conn_hash_flush(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300817 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818
819 if (hdev->flush)
820 hdev->flush(hdev);
821
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900822 atomic_set(&hdev->cmd_cnt, 1);
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300823 hdev->acl_cnt = 0; hdev->sco_cnt = 0; hdev->le_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824
825 if (!test_bit(HCI_RAW, &hdev->flags))
Marcel Holtmann04837f62006-07-03 10:02:33 +0200826 ret = __hci_request(hdev, hci_reset_req, 0,
827 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828
829done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 hci_req_unlock(hdev);
831 hci_dev_put(hdev);
832 return ret;
833}
834
835int hci_dev_reset_stat(__u16 dev)
836{
837 struct hci_dev *hdev;
838 int ret = 0;
839
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200840 hdev = hci_dev_get(dev);
841 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return -ENODEV;
843
844 memset(&hdev->stat, 0, sizeof(struct hci_dev_stats));
845
846 hci_dev_put(hdev);
847
848 return ret;
849}
850
851int hci_dev_cmd(unsigned int cmd, void __user *arg)
852{
853 struct hci_dev *hdev;
854 struct hci_dev_req dr;
855 int err = 0;
856
857 if (copy_from_user(&dr, arg, sizeof(dr)))
858 return -EFAULT;
859
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200860 hdev = hci_dev_get(dr.dev_id);
861 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return -ENODEV;
863
864 switch (cmd) {
865 case HCISETAUTH:
Marcel Holtmann04837f62006-07-03 10:02:33 +0200866 err = hci_request(hdev, hci_auth_req, dr.dev_opt,
867 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 break;
869
870 case HCISETENCRYPT:
871 if (!lmp_encrypt_capable(hdev)) {
872 err = -EOPNOTSUPP;
873 break;
874 }
875
876 if (!test_bit(HCI_AUTH, &hdev->flags)) {
877 /* Auth must be enabled first */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200878 err = hci_request(hdev, hci_auth_req, dr.dev_opt,
879 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 if (err)
881 break;
882 }
883
Marcel Holtmann04837f62006-07-03 10:02:33 +0200884 err = hci_request(hdev, hci_encrypt_req, dr.dev_opt,
885 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 break;
887
888 case HCISETSCAN:
Marcel Holtmann04837f62006-07-03 10:02:33 +0200889 err = hci_request(hdev, hci_scan_req, dr.dev_opt,
890 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 break;
892
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200893 case HCISETLINKPOL:
894 err = hci_request(hdev, hci_linkpol_req, dr.dev_opt,
895 msecs_to_jiffies(HCI_INIT_TIMEOUT));
896 break;
897
898 case HCISETLINKMODE:
899 hdev->link_mode = ((__u16) dr.dev_opt) &
900 (HCI_LM_MASTER | HCI_LM_ACCEPT);
901 break;
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 case HCISETPTYPE:
904 hdev->pkt_type = (__u16) dr.dev_opt;
905 break;
906
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 case HCISETACLMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200908 hdev->acl_mtu = *((__u16 *) &dr.dev_opt + 1);
909 hdev->acl_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 break;
911
912 case HCISETSCOMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200913 hdev->sco_mtu = *((__u16 *) &dr.dev_opt + 1);
914 hdev->sco_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 break;
916
917 default:
918 err = -EINVAL;
919 break;
920 }
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200921
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 hci_dev_put(hdev);
923 return err;
924}
925
926int hci_get_dev_list(void __user *arg)
927{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200928 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 struct hci_dev_list_req *dl;
930 struct hci_dev_req *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 int n = 0, size, err;
932 __u16 dev_num;
933
934 if (get_user(dev_num, (__u16 __user *) arg))
935 return -EFAULT;
936
937 if (!dev_num || dev_num > (PAGE_SIZE * 2) / sizeof(*dr))
938 return -EINVAL;
939
940 size = sizeof(*dl) + dev_num * sizeof(*dr);
941
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200942 dl = kzalloc(size, GFP_KERNEL);
943 if (!dl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 return -ENOMEM;
945
946 dr = dl->dev_req;
947
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200948 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200949 list_for_each_entry(hdev, &hci_dev_list, list) {
Johan Hedberg32435532011-11-07 22:16:04 +0200950 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->flags))
Johan Hedberge0f93092011-11-09 01:44:22 +0200951 cancel_delayed_work(&hdev->power_off);
Johan Hedbergc542a062011-01-26 13:11:03 +0200952
953 if (!test_bit(HCI_MGMT, &hdev->flags))
954 set_bit(HCI_PAIRABLE, &hdev->flags);
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 (dr + n)->dev_id = hdev->id;
957 (dr + n)->dev_opt = hdev->flags;
Johan Hedbergc542a062011-01-26 13:11:03 +0200958
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 if (++n >= dev_num)
960 break;
961 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -0200962 read_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 dl->dev_num = n;
965 size = sizeof(*dl) + n * sizeof(*dr);
966
967 err = copy_to_user(arg, dl, size);
968 kfree(dl);
969
970 return err ? -EFAULT : 0;
971}
972
973int hci_get_dev_info(void __user *arg)
974{
975 struct hci_dev *hdev;
976 struct hci_dev_info di;
977 int err = 0;
978
979 if (copy_from_user(&di, arg, sizeof(di)))
980 return -EFAULT;
981
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200982 hdev = hci_dev_get(di.dev_id);
983 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 return -ENODEV;
985
Johan Hedberg32435532011-11-07 22:16:04 +0200986 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->flags))
987 cancel_delayed_work_sync(&hdev->power_off);
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200988
Johan Hedbergc542a062011-01-26 13:11:03 +0200989 if (!test_bit(HCI_MGMT, &hdev->flags))
990 set_bit(HCI_PAIRABLE, &hdev->flags);
991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 strcpy(di.name, hdev->name);
993 di.bdaddr = hdev->bdaddr;
Marcel Holtmann943da252010-02-13 02:28:41 +0100994 di.type = (hdev->bus & 0x0f) | (hdev->dev_type << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 di.flags = hdev->flags;
996 di.pkt_type = hdev->pkt_type;
997 di.acl_mtu = hdev->acl_mtu;
998 di.acl_pkts = hdev->acl_pkts;
999 di.sco_mtu = hdev->sco_mtu;
1000 di.sco_pkts = hdev->sco_pkts;
1001 di.link_policy = hdev->link_policy;
1002 di.link_mode = hdev->link_mode;
1003
1004 memcpy(&di.stat, &hdev->stat, sizeof(di.stat));
1005 memcpy(&di.features, &hdev->features, sizeof(di.features));
1006
1007 if (copy_to_user(arg, &di, sizeof(di)))
1008 err = -EFAULT;
1009
1010 hci_dev_put(hdev);
1011
1012 return err;
1013}
1014
1015/* ---- Interface to HCI drivers ---- */
1016
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001017static int hci_rfkill_set_block(void *data, bool blocked)
1018{
1019 struct hci_dev *hdev = data;
1020
1021 BT_DBG("%p name %s blocked %d", hdev, hdev->name, blocked);
1022
1023 if (!blocked)
1024 return 0;
1025
1026 hci_dev_do_close(hdev);
1027
1028 return 0;
1029}
1030
1031static const struct rfkill_ops hci_rfkill_ops = {
1032 .set_block = hci_rfkill_set_block,
1033};
1034
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035/* Alloc HCI device */
1036struct hci_dev *hci_alloc_dev(void)
1037{
1038 struct hci_dev *hdev;
1039
Marcel Holtmann25ea6db2006-07-06 15:40:09 +02001040 hdev = kzalloc(sizeof(struct hci_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (!hdev)
1042 return NULL;
1043
David Herrmann0ac7e702011-10-08 14:58:47 +02001044 hci_init_sysfs(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045 skb_queue_head_init(&hdev->driver_init);
1046
1047 return hdev;
1048}
1049EXPORT_SYMBOL(hci_alloc_dev);
1050
1051/* Free HCI device */
1052void hci_free_dev(struct hci_dev *hdev)
1053{
1054 skb_queue_purge(&hdev->driver_init);
1055
Marcel Holtmanna91f2e32006-07-03 10:02:41 +02001056 /* will free via device release */
1057 put_device(&hdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058}
1059EXPORT_SYMBOL(hci_free_dev);
1060
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001061static void hci_power_on(struct work_struct *work)
1062{
1063 struct hci_dev *hdev = container_of(work, struct hci_dev, power_on);
1064
1065 BT_DBG("%s", hdev->name);
1066
1067 if (hci_dev_open(hdev->id) < 0)
1068 return;
1069
1070 if (test_bit(HCI_AUTO_OFF, &hdev->flags))
Gustavo F. Padovan80b7ab32011-12-17 14:52:27 -02001071 schedule_delayed_work(&hdev->power_off,
Johan Hedberg32435532011-11-07 22:16:04 +02001072 msecs_to_jiffies(AUTO_OFF_TIMEOUT));
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001073
1074 if (test_and_clear_bit(HCI_SETUP, &hdev->flags))
Johan Hedberg744cf192011-11-08 20:40:14 +02001075 mgmt_index_added(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001076}
1077
1078static void hci_power_off(struct work_struct *work)
1079{
Johan Hedberg32435532011-11-07 22:16:04 +02001080 struct hci_dev *hdev = container_of(work, struct hci_dev,
1081 power_off.work);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001082
1083 BT_DBG("%s", hdev->name);
1084
Johan Hedberg32435532011-11-07 22:16:04 +02001085 clear_bit(HCI_AUTO_OFF, &hdev->flags);
1086
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001087 hci_dev_close(hdev->id);
1088}
1089
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001090static void hci_discov_off(struct work_struct *work)
1091{
1092 struct hci_dev *hdev;
1093 u8 scan = SCAN_PAGE;
1094
1095 hdev = container_of(work, struct hci_dev, discov_off.work);
1096
1097 BT_DBG("%s", hdev->name);
1098
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001099 hci_dev_lock(hdev);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001100
1101 hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
1102
1103 hdev->discov_timeout = 0;
1104
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001105 hci_dev_unlock(hdev);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001106}
1107
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001108int hci_uuids_clear(struct hci_dev *hdev)
1109{
1110 struct list_head *p, *n;
1111
1112 list_for_each_safe(p, n, &hdev->uuids) {
1113 struct bt_uuid *uuid;
1114
1115 uuid = list_entry(p, struct bt_uuid, list);
1116
1117 list_del(p);
1118 kfree(uuid);
1119 }
1120
1121 return 0;
1122}
1123
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001124int hci_link_keys_clear(struct hci_dev *hdev)
1125{
1126 struct list_head *p, *n;
1127
1128 list_for_each_safe(p, n, &hdev->link_keys) {
1129 struct link_key *key;
1130
1131 key = list_entry(p, struct link_key, list);
1132
1133 list_del(p);
1134 kfree(key);
1135 }
1136
1137 return 0;
1138}
1139
1140struct link_key *hci_find_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
1141{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001142 struct link_key *k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001143
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001144 list_for_each_entry(k, &hdev->link_keys, list)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001145 if (bacmp(bdaddr, &k->bdaddr) == 0)
1146 return k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001147
1148 return NULL;
1149}
1150
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001151static int hci_persistent_key(struct hci_dev *hdev, struct hci_conn *conn,
1152 u8 key_type, u8 old_key_type)
1153{
1154 /* Legacy key */
1155 if (key_type < 0x03)
1156 return 1;
1157
1158 /* Debug keys are insecure so don't store them persistently */
1159 if (key_type == HCI_LK_DEBUG_COMBINATION)
1160 return 0;
1161
1162 /* Changed combination key and there's no previous one */
1163 if (key_type == HCI_LK_CHANGED_COMBINATION && old_key_type == 0xff)
1164 return 0;
1165
1166 /* Security mode 3 case */
1167 if (!conn)
1168 return 1;
1169
1170 /* Neither local nor remote side had no-bonding as requirement */
1171 if (conn->auth_type > 0x01 && conn->remote_auth > 0x01)
1172 return 1;
1173
1174 /* Local side had dedicated bonding as requirement */
1175 if (conn->auth_type == 0x02 || conn->auth_type == 0x03)
1176 return 1;
1177
1178 /* Remote side had dedicated bonding as requirement */
1179 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03)
1180 return 1;
1181
1182 /* If none of the above criteria match, then don't store the key
1183 * persistently */
1184 return 0;
1185}
1186
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001187struct link_key *hci_find_ltk(struct hci_dev *hdev, __le16 ediv, u8 rand[8])
1188{
1189 struct link_key *k;
1190
1191 list_for_each_entry(k, &hdev->link_keys, list) {
1192 struct key_master_id *id;
1193
1194 if (k->type != HCI_LK_SMP_LTK)
1195 continue;
1196
1197 if (k->dlen != sizeof(*id))
1198 continue;
1199
1200 id = (void *) &k->data;
1201 if (id->ediv == ediv &&
1202 (memcmp(rand, id->rand, sizeof(id->rand)) == 0))
1203 return k;
1204 }
1205
1206 return NULL;
1207}
1208EXPORT_SYMBOL(hci_find_ltk);
1209
1210struct link_key *hci_find_link_key_type(struct hci_dev *hdev,
1211 bdaddr_t *bdaddr, u8 type)
1212{
1213 struct link_key *k;
1214
1215 list_for_each_entry(k, &hdev->link_keys, list)
1216 if (k->type == type && bacmp(bdaddr, &k->bdaddr) == 0)
1217 return k;
1218
1219 return NULL;
1220}
1221EXPORT_SYMBOL(hci_find_link_key_type);
1222
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001223int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key,
1224 bdaddr_t *bdaddr, u8 *val, u8 type, u8 pin_len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001225{
1226 struct link_key *key, *old_key;
Johan Hedberg4df378a2011-04-28 11:29:03 -07001227 u8 old_key_type, persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001228
1229 old_key = hci_find_link_key(hdev, bdaddr);
1230 if (old_key) {
1231 old_key_type = old_key->type;
1232 key = old_key;
1233 } else {
Johan Hedberg12adcf32011-04-28 11:29:00 -07001234 old_key_type = conn ? conn->key_type : 0xff;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001235 key = kzalloc(sizeof(*key), GFP_ATOMIC);
1236 if (!key)
1237 return -ENOMEM;
1238 list_add(&key->list, &hdev->link_keys);
1239 }
1240
1241 BT_DBG("%s key for %s type %u", hdev->name, batostr(bdaddr), type);
1242
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001243 /* Some buggy controller combinations generate a changed
1244 * combination key for legacy pairing even when there's no
1245 * previous key */
1246 if (type == HCI_LK_CHANGED_COMBINATION &&
1247 (!conn || conn->remote_auth == 0xff) &&
Johan Hedberg655fe6e2011-04-28 11:29:01 -07001248 old_key_type == 0xff) {
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001249 type = HCI_LK_COMBINATION;
Johan Hedberg655fe6e2011-04-28 11:29:01 -07001250 if (conn)
1251 conn->key_type = type;
1252 }
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001253
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001254 bacpy(&key->bdaddr, bdaddr);
1255 memcpy(key->val, val, 16);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001256 key->pin_len = pin_len;
1257
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +02001258 if (type == HCI_LK_CHANGED_COMBINATION)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001259 key->type = old_key_type;
Johan Hedberg4748fed2011-04-28 11:29:02 -07001260 else
1261 key->type = type;
1262
Johan Hedberg4df378a2011-04-28 11:29:03 -07001263 if (!new_key)
1264 return 0;
1265
1266 persistent = hci_persistent_key(hdev, conn, type, old_key_type);
1267
Johan Hedberg744cf192011-11-08 20:40:14 +02001268 mgmt_new_link_key(hdev, key, persistent);
Johan Hedberg4df378a2011-04-28 11:29:03 -07001269
1270 if (!persistent) {
1271 list_del(&key->list);
1272 kfree(key);
1273 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001274
1275 return 0;
1276}
1277
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001278int hci_add_ltk(struct hci_dev *hdev, int new_key, bdaddr_t *bdaddr,
Vinicius Costa Gomes726b4ff2011-07-08 18:31:45 -03001279 u8 key_size, __le16 ediv, u8 rand[8], u8 ltk[16])
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001280{
1281 struct link_key *key, *old_key;
1282 struct key_master_id *id;
1283 u8 old_key_type;
1284
1285 BT_DBG("%s addr %s", hdev->name, batostr(bdaddr));
1286
1287 old_key = hci_find_link_key_type(hdev, bdaddr, HCI_LK_SMP_LTK);
1288 if (old_key) {
1289 key = old_key;
1290 old_key_type = old_key->type;
1291 } else {
1292 key = kzalloc(sizeof(*key) + sizeof(*id), GFP_ATOMIC);
1293 if (!key)
1294 return -ENOMEM;
1295 list_add(&key->list, &hdev->link_keys);
1296 old_key_type = 0xff;
1297 }
1298
1299 key->dlen = sizeof(*id);
1300
1301 bacpy(&key->bdaddr, bdaddr);
1302 memcpy(key->val, ltk, sizeof(key->val));
1303 key->type = HCI_LK_SMP_LTK;
Vinicius Costa Gomes726b4ff2011-07-08 18:31:45 -03001304 key->pin_len = key_size;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001305
1306 id = (void *) &key->data;
1307 id->ediv = ediv;
1308 memcpy(id->rand, rand, sizeof(id->rand));
1309
1310 if (new_key)
Johan Hedberg744cf192011-11-08 20:40:14 +02001311 mgmt_new_link_key(hdev, key, old_key_type);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001312
1313 return 0;
1314}
1315
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001316int hci_remove_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
1317{
1318 struct link_key *key;
1319
1320 key = hci_find_link_key(hdev, bdaddr);
1321 if (!key)
1322 return -ENOENT;
1323
1324 BT_DBG("%s removing %s", hdev->name, batostr(bdaddr));
1325
1326 list_del(&key->list);
1327 kfree(key);
1328
1329 return 0;
1330}
1331
Ville Tervo6bd32322011-02-16 16:32:41 +02001332/* HCI command timer function */
1333static void hci_cmd_timer(unsigned long arg)
1334{
1335 struct hci_dev *hdev = (void *) arg;
1336
1337 BT_ERR("%s command tx timeout", hdev->name);
1338 atomic_set(&hdev->cmd_cnt, 1);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02001339 queue_work(hdev->workqueue, &hdev->cmd_work);
Ville Tervo6bd32322011-02-16 16:32:41 +02001340}
1341
Szymon Janc2763eda2011-03-22 13:12:22 +01001342struct oob_data *hci_find_remote_oob_data(struct hci_dev *hdev,
1343 bdaddr_t *bdaddr)
1344{
1345 struct oob_data *data;
1346
1347 list_for_each_entry(data, &hdev->remote_oob_data, list)
1348 if (bacmp(bdaddr, &data->bdaddr) == 0)
1349 return data;
1350
1351 return NULL;
1352}
1353
1354int hci_remove_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr)
1355{
1356 struct oob_data *data;
1357
1358 data = hci_find_remote_oob_data(hdev, bdaddr);
1359 if (!data)
1360 return -ENOENT;
1361
1362 BT_DBG("%s removing %s", hdev->name, batostr(bdaddr));
1363
1364 list_del(&data->list);
1365 kfree(data);
1366
1367 return 0;
1368}
1369
1370int hci_remote_oob_data_clear(struct hci_dev *hdev)
1371{
1372 struct oob_data *data, *n;
1373
1374 list_for_each_entry_safe(data, n, &hdev->remote_oob_data, list) {
1375 list_del(&data->list);
1376 kfree(data);
1377 }
1378
1379 return 0;
1380}
1381
1382int hci_add_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *hash,
1383 u8 *randomizer)
1384{
1385 struct oob_data *data;
1386
1387 data = hci_find_remote_oob_data(hdev, bdaddr);
1388
1389 if (!data) {
1390 data = kmalloc(sizeof(*data), GFP_ATOMIC);
1391 if (!data)
1392 return -ENOMEM;
1393
1394 bacpy(&data->bdaddr, bdaddr);
1395 list_add(&data->list, &hdev->remote_oob_data);
1396 }
1397
1398 memcpy(data->hash, hash, sizeof(data->hash));
1399 memcpy(data->randomizer, randomizer, sizeof(data->randomizer));
1400
1401 BT_DBG("%s for %s", hdev->name, batostr(bdaddr));
1402
1403 return 0;
1404}
1405
Antti Julkub2a66aa2011-06-15 12:01:14 +03001406struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev,
1407 bdaddr_t *bdaddr)
1408{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001409 struct bdaddr_list *b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001410
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001411 list_for_each_entry(b, &hdev->blacklist, list)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001412 if (bacmp(bdaddr, &b->bdaddr) == 0)
1413 return b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001414
1415 return NULL;
1416}
1417
1418int hci_blacklist_clear(struct hci_dev *hdev)
1419{
1420 struct list_head *p, *n;
1421
1422 list_for_each_safe(p, n, &hdev->blacklist) {
1423 struct bdaddr_list *b;
1424
1425 b = list_entry(p, struct bdaddr_list, list);
1426
1427 list_del(p);
1428 kfree(b);
1429 }
1430
1431 return 0;
1432}
1433
1434int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr)
1435{
1436 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001437
1438 if (bacmp(bdaddr, BDADDR_ANY) == 0)
1439 return -EBADF;
1440
Antti Julku5e762442011-08-25 16:48:02 +03001441 if (hci_blacklist_lookup(hdev, bdaddr))
1442 return -EEXIST;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001443
1444 entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL);
Antti Julku5e762442011-08-25 16:48:02 +03001445 if (!entry)
1446 return -ENOMEM;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001447
1448 bacpy(&entry->bdaddr, bdaddr);
1449
1450 list_add(&entry->list, &hdev->blacklist);
1451
Johan Hedberg744cf192011-11-08 20:40:14 +02001452 return mgmt_device_blocked(hdev, bdaddr);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001453}
1454
1455int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr)
1456{
1457 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001458
Szymon Janc1ec918c2011-11-16 09:32:21 +01001459 if (bacmp(bdaddr, BDADDR_ANY) == 0)
Antti Julku5e762442011-08-25 16:48:02 +03001460 return hci_blacklist_clear(hdev);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001461
1462 entry = hci_blacklist_lookup(hdev, bdaddr);
Szymon Janc1ec918c2011-11-16 09:32:21 +01001463 if (!entry)
Antti Julku5e762442011-08-25 16:48:02 +03001464 return -ENOENT;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001465
1466 list_del(&entry->list);
1467 kfree(entry);
1468
Johan Hedberg744cf192011-11-08 20:40:14 +02001469 return mgmt_device_unblocked(hdev, bdaddr);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001470}
1471
Gustavo F. Padovandb323f22011-06-20 16:39:29 -03001472static void hci_clear_adv_cache(struct work_struct *work)
Andre Guedes35815082011-05-26 16:23:53 -03001473{
Gustavo F. Padovandb323f22011-06-20 16:39:29 -03001474 struct hci_dev *hdev = container_of(work, struct hci_dev,
1475 adv_work.work);
Andre Guedes35815082011-05-26 16:23:53 -03001476
1477 hci_dev_lock(hdev);
1478
1479 hci_adv_entries_clear(hdev);
1480
1481 hci_dev_unlock(hdev);
1482}
1483
Andre Guedes76c86862011-05-26 16:23:50 -03001484int hci_adv_entries_clear(struct hci_dev *hdev)
1485{
1486 struct adv_entry *entry, *tmp;
1487
1488 list_for_each_entry_safe(entry, tmp, &hdev->adv_entries, list) {
1489 list_del(&entry->list);
1490 kfree(entry);
1491 }
1492
1493 BT_DBG("%s adv cache cleared", hdev->name);
1494
1495 return 0;
1496}
1497
1498struct adv_entry *hci_find_adv_entry(struct hci_dev *hdev, bdaddr_t *bdaddr)
1499{
1500 struct adv_entry *entry;
1501
1502 list_for_each_entry(entry, &hdev->adv_entries, list)
1503 if (bacmp(bdaddr, &entry->bdaddr) == 0)
1504 return entry;
1505
1506 return NULL;
1507}
1508
1509static inline int is_connectable_adv(u8 evt_type)
1510{
1511 if (evt_type == ADV_IND || evt_type == ADV_DIRECT_IND)
1512 return 1;
1513
1514 return 0;
1515}
1516
1517int hci_add_adv_entry(struct hci_dev *hdev,
1518 struct hci_ev_le_advertising_info *ev)
1519{
1520 struct adv_entry *entry;
1521
1522 if (!is_connectable_adv(ev->evt_type))
1523 return -EINVAL;
1524
1525 /* Only new entries should be added to adv_entries. So, if
1526 * bdaddr was found, don't add it. */
1527 if (hci_find_adv_entry(hdev, &ev->bdaddr))
1528 return 0;
1529
1530 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
1531 if (!entry)
1532 return -ENOMEM;
1533
1534 bacpy(&entry->bdaddr, &ev->bdaddr);
1535 entry->bdaddr_type = ev->bdaddr_type;
1536
1537 list_add(&entry->list, &hdev->adv_entries);
1538
1539 BT_DBG("%s adv entry added: address %s type %u", hdev->name,
1540 batostr(&entry->bdaddr), entry->bdaddr_type);
1541
1542 return 0;
1543}
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545/* Register HCI device */
1546int hci_register_dev(struct hci_dev *hdev)
1547{
1548 struct list_head *head = &hci_dev_list, *p;
Mat Martineau08add512011-11-02 16:18:36 -07001549 int i, id, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
David Herrmanne9b9cfa2012-01-07 15:47:22 +01001551 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552
David Herrmann010666a2012-01-07 15:47:07 +01001553 if (!hdev->open || !hdev->close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 return -EINVAL;
1555
Mat Martineau08add512011-11-02 16:18:36 -07001556 /* Do not allow HCI_AMP devices to register at index 0,
1557 * so the index can be used as the AMP controller ID.
1558 */
1559 id = (hdev->dev_type == HCI_BREDR) ? 0 : 1;
1560
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001561 write_lock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 /* Find first available device id */
1564 list_for_each(p, &hci_dev_list) {
1565 if (list_entry(p, struct hci_dev, list)->id != id)
1566 break;
1567 head = p; id++;
1568 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001569
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 sprintf(hdev->name, "hci%d", id);
1571 hdev->id = id;
Andrei Emeltchenkoc6feeb22011-11-16 17:30:20 +02001572 list_add_tail(&hdev->list, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001574 mutex_init(&hdev->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 hdev->flags = 0;
Andre Guedesd23264a2011-11-25 20:53:38 -03001577 hdev->dev_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 hdev->pkt_type = (HCI_DM1 | HCI_DH1 | HCI_HV1);
Marcel Holtmann5b7f9902007-07-11 09:51:55 +02001579 hdev->esco_type = (ESCO_HV1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 hdev->link_mode = (HCI_LM_ACCEPT);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001581 hdev->io_capability = 0x03; /* No Input No Output */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Marcel Holtmann04837f62006-07-03 10:02:33 +02001583 hdev->idle_timeout = 0;
1584 hdev->sniff_max_interval = 800;
1585 hdev->sniff_min_interval = 80;
1586
Marcel Holtmannb78752c2010-08-08 23:06:53 -04001587 INIT_WORK(&hdev->rx_work, hci_rx_work);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02001588 INIT_WORK(&hdev->cmd_work, hci_cmd_work);
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02001589 INIT_WORK(&hdev->tx_work, hci_tx_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04001590
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592 skb_queue_head_init(&hdev->rx_q);
1593 skb_queue_head_init(&hdev->cmd_q);
1594 skb_queue_head_init(&hdev->raw_q);
1595
Ville Tervo6bd32322011-02-16 16:32:41 +02001596 setup_timer(&hdev->cmd_timer, hci_cmd_timer, (unsigned long) hdev);
1597
Suraj Sumangalacd4c5392010-07-14 13:02:16 +05301598 for (i = 0; i < NUM_REASSEMBLY; i++)
Marcel Holtmannef222012007-07-11 06:42:04 +02001599 hdev->reassembly[i] = NULL;
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 init_waitqueue_head(&hdev->req_wait_q);
Thomas Gleixnera6a67ef2009-07-26 08:18:19 +00001602 mutex_init(&hdev->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Johan Hedberg30883512012-01-04 14:16:21 +02001604 discovery_init(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
1606 hci_conn_hash_init(hdev);
1607
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001608 INIT_LIST_HEAD(&hdev->mgmt_pending);
1609
David Millerea4bd8b2010-07-30 21:54:49 -07001610 INIT_LIST_HEAD(&hdev->blacklist);
Johan Hedbergf0358562010-05-18 13:20:32 +02001611
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001612 INIT_LIST_HEAD(&hdev->uuids);
1613
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001614 INIT_LIST_HEAD(&hdev->link_keys);
1615
Szymon Janc2763eda2011-03-22 13:12:22 +01001616 INIT_LIST_HEAD(&hdev->remote_oob_data);
1617
Andre Guedes76c86862011-05-26 16:23:50 -03001618 INIT_LIST_HEAD(&hdev->adv_entries);
1619
Gustavo F. Padovandb323f22011-06-20 16:39:29 -03001620 INIT_DELAYED_WORK(&hdev->adv_work, hci_clear_adv_cache);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001621 INIT_WORK(&hdev->power_on, hci_power_on);
Johan Hedberg32435532011-11-07 22:16:04 +02001622 INIT_DELAYED_WORK(&hdev->power_off, hci_power_off);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001623
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001624 INIT_DELAYED_WORK(&hdev->discov_off, hci_discov_off);
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 memset(&hdev->stat, 0, sizeof(struct hci_dev_stats));
1627
1628 atomic_set(&hdev->promisc, 0);
1629
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001630 write_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Gustavo F. Padovan32845eb2011-12-17 17:47:30 -02001632 hdev->workqueue = alloc_workqueue(hdev->name, WQ_HIGHPRI | WQ_UNBOUND |
1633 WQ_MEM_RECLAIM, 1);
David Herrmann33ca9542011-10-08 14:58:49 +02001634 if (!hdev->workqueue) {
1635 error = -ENOMEM;
1636 goto err;
1637 }
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001638
David Herrmann33ca9542011-10-08 14:58:49 +02001639 error = hci_add_sysfs(hdev);
1640 if (error < 0)
1641 goto err_wqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001643 hdev->rfkill = rfkill_alloc(hdev->name, &hdev->dev,
1644 RFKILL_TYPE_BLUETOOTH, &hci_rfkill_ops, hdev);
1645 if (hdev->rfkill) {
1646 if (rfkill_register(hdev->rfkill) < 0) {
1647 rfkill_destroy(hdev->rfkill);
1648 hdev->rfkill = NULL;
1649 }
1650 }
1651
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001652 set_bit(HCI_AUTO_OFF, &hdev->flags);
1653 set_bit(HCI_SETUP, &hdev->flags);
Gustavo F. Padovan7f971042011-12-18 12:40:32 -02001654 schedule_work(&hdev->power_on);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 hci_notify(hdev, HCI_DEV_REG);
David Herrmanndc946bd2012-01-07 15:47:24 +01001657 hci_dev_hold(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
1659 return id;
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001660
David Herrmann33ca9542011-10-08 14:58:49 +02001661err_wqueue:
1662 destroy_workqueue(hdev->workqueue);
1663err:
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001664 write_lock(&hci_dev_list_lock);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001665 list_del(&hdev->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001666 write_unlock(&hci_dev_list_lock);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001667
David Herrmann33ca9542011-10-08 14:58:49 +02001668 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669}
1670EXPORT_SYMBOL(hci_register_dev);
1671
1672/* Unregister HCI device */
David Herrmann59735632011-10-26 10:43:19 +02001673void hci_unregister_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674{
Marcel Holtmannef222012007-07-11 06:42:04 +02001675 int i;
1676
Marcel Holtmannc13854c2010-02-08 15:27:07 +01001677 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001679 write_lock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 list_del(&hdev->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001681 write_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682
1683 hci_dev_do_close(hdev);
1684
Suraj Sumangalacd4c5392010-07-14 13:02:16 +05301685 for (i = 0; i < NUM_REASSEMBLY; i++)
Marcel Holtmannef222012007-07-11 06:42:04 +02001686 kfree_skb(hdev->reassembly[i]);
1687
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001688 if (!test_bit(HCI_INIT, &hdev->flags) &&
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001689 !test_bit(HCI_SETUP, &hdev->flags)) {
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001690 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02001691 mgmt_index_removed(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001692 hci_dev_unlock(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02001693 }
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001694
Johan Hedberg2e58ef32011-11-08 20:40:15 +02001695 /* mgmt_index_removed should take care of emptying the
1696 * pending list */
1697 BUG_ON(!list_empty(&hdev->mgmt_pending));
1698
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 hci_notify(hdev, HCI_DEV_UNREG);
1700
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001701 if (hdev->rfkill) {
1702 rfkill_unregister(hdev->rfkill);
1703 rfkill_destroy(hdev->rfkill);
1704 }
1705
David Herrmannce242972011-10-08 14:58:48 +02001706 hci_del_sysfs(hdev);
Dave Young147e2d52008-03-05 18:45:59 -08001707
Gustavo F. Padovandb323f22011-06-20 16:39:29 -03001708 cancel_delayed_work_sync(&hdev->adv_work);
Gustavo F. Padovanc6f3c5f2011-02-15 20:22:03 -03001709
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001710 destroy_workqueue(hdev->workqueue);
1711
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001712 hci_dev_lock(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02001713 hci_blacklist_clear(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001714 hci_uuids_clear(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001715 hci_link_keys_clear(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01001716 hci_remote_oob_data_clear(hdev);
Andre Guedes76c86862011-05-26 16:23:50 -03001717 hci_adv_entries_clear(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001718 hci_dev_unlock(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02001719
David Herrmanndc946bd2012-01-07 15:47:24 +01001720 hci_dev_put(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722EXPORT_SYMBOL(hci_unregister_dev);
1723
1724/* Suspend HCI device */
1725int hci_suspend_dev(struct hci_dev *hdev)
1726{
1727 hci_notify(hdev, HCI_DEV_SUSPEND);
1728 return 0;
1729}
1730EXPORT_SYMBOL(hci_suspend_dev);
1731
1732/* Resume HCI device */
1733int hci_resume_dev(struct hci_dev *hdev)
1734{
1735 hci_notify(hdev, HCI_DEV_RESUME);
1736 return 0;
1737}
1738EXPORT_SYMBOL(hci_resume_dev);
1739
Marcel Holtmann76bca882009-11-18 00:40:39 +01001740/* Receive frame from HCI drivers */
1741int hci_recv_frame(struct sk_buff *skb)
1742{
1743 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
1744 if (!hdev || (!test_bit(HCI_UP, &hdev->flags)
1745 && !test_bit(HCI_INIT, &hdev->flags))) {
1746 kfree_skb(skb);
1747 return -ENXIO;
1748 }
1749
1750 /* Incomming skb */
1751 bt_cb(skb)->incoming = 1;
1752
1753 /* Time stamp */
1754 __net_timestamp(skb);
1755
Marcel Holtmann76bca882009-11-18 00:40:39 +01001756 skb_queue_tail(&hdev->rx_q, skb);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04001757 queue_work(hdev->workqueue, &hdev->rx_work);
Marcel Holtmannc78ae282009-11-18 01:02:54 +01001758
Marcel Holtmann76bca882009-11-18 00:40:39 +01001759 return 0;
1760}
1761EXPORT_SYMBOL(hci_recv_frame);
1762
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301763static int hci_reassembly(struct hci_dev *hdev, int type, void *data,
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03001764 int count, __u8 index)
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301765{
1766 int len = 0;
1767 int hlen = 0;
1768 int remain = count;
1769 struct sk_buff *skb;
1770 struct bt_skb_cb *scb;
1771
1772 if ((type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT) ||
1773 index >= NUM_REASSEMBLY)
1774 return -EILSEQ;
1775
1776 skb = hdev->reassembly[index];
1777
1778 if (!skb) {
1779 switch (type) {
1780 case HCI_ACLDATA_PKT:
1781 len = HCI_MAX_FRAME_SIZE;
1782 hlen = HCI_ACL_HDR_SIZE;
1783 break;
1784 case HCI_EVENT_PKT:
1785 len = HCI_MAX_EVENT_SIZE;
1786 hlen = HCI_EVENT_HDR_SIZE;
1787 break;
1788 case HCI_SCODATA_PKT:
1789 len = HCI_MAX_SCO_SIZE;
1790 hlen = HCI_SCO_HDR_SIZE;
1791 break;
1792 }
1793
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03001794 skb = bt_skb_alloc(len, GFP_ATOMIC);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301795 if (!skb)
1796 return -ENOMEM;
1797
1798 scb = (void *) skb->cb;
1799 scb->expect = hlen;
1800 scb->pkt_type = type;
1801
1802 skb->dev = (void *) hdev;
1803 hdev->reassembly[index] = skb;
1804 }
1805
1806 while (count) {
1807 scb = (void *) skb->cb;
1808 len = min(scb->expect, (__u16)count);
1809
1810 memcpy(skb_put(skb, len), data, len);
1811
1812 count -= len;
1813 data += len;
1814 scb->expect -= len;
1815 remain = count;
1816
1817 switch (type) {
1818 case HCI_EVENT_PKT:
1819 if (skb->len == HCI_EVENT_HDR_SIZE) {
1820 struct hci_event_hdr *h = hci_event_hdr(skb);
1821 scb->expect = h->plen;
1822
1823 if (skb_tailroom(skb) < scb->expect) {
1824 kfree_skb(skb);
1825 hdev->reassembly[index] = NULL;
1826 return -ENOMEM;
1827 }
1828 }
1829 break;
1830
1831 case HCI_ACLDATA_PKT:
1832 if (skb->len == HCI_ACL_HDR_SIZE) {
1833 struct hci_acl_hdr *h = hci_acl_hdr(skb);
1834 scb->expect = __le16_to_cpu(h->dlen);
1835
1836 if (skb_tailroom(skb) < scb->expect) {
1837 kfree_skb(skb);
1838 hdev->reassembly[index] = NULL;
1839 return -ENOMEM;
1840 }
1841 }
1842 break;
1843
1844 case HCI_SCODATA_PKT:
1845 if (skb->len == HCI_SCO_HDR_SIZE) {
1846 struct hci_sco_hdr *h = hci_sco_hdr(skb);
1847 scb->expect = h->dlen;
1848
1849 if (skb_tailroom(skb) < scb->expect) {
1850 kfree_skb(skb);
1851 hdev->reassembly[index] = NULL;
1852 return -ENOMEM;
1853 }
1854 }
1855 break;
1856 }
1857
1858 if (scb->expect == 0) {
1859 /* Complete frame */
1860
1861 bt_cb(skb)->pkt_type = type;
1862 hci_recv_frame(skb);
1863
1864 hdev->reassembly[index] = NULL;
1865 return remain;
1866 }
1867 }
1868
1869 return remain;
1870}
1871
Marcel Holtmannef222012007-07-11 06:42:04 +02001872int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count)
1873{
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05301874 int rem = 0;
1875
Marcel Holtmannef222012007-07-11 06:42:04 +02001876 if (type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT)
1877 return -EILSEQ;
1878
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03001879 while (count) {
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03001880 rem = hci_reassembly(hdev, type, data, count, type - 1);
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05301881 if (rem < 0)
1882 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02001883
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05301884 data += (count - rem);
1885 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00001886 }
Marcel Holtmannef222012007-07-11 06:42:04 +02001887
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05301888 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02001889}
1890EXPORT_SYMBOL(hci_recv_fragment);
1891
Suraj Sumangala99811512010-07-14 13:02:19 +05301892#define STREAM_REASSEMBLY 0
1893
1894int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count)
1895{
1896 int type;
1897 int rem = 0;
1898
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03001899 while (count) {
Suraj Sumangala99811512010-07-14 13:02:19 +05301900 struct sk_buff *skb = hdev->reassembly[STREAM_REASSEMBLY];
1901
1902 if (!skb) {
1903 struct { char type; } *pkt;
1904
1905 /* Start of the frame */
1906 pkt = data;
1907 type = pkt->type;
1908
1909 data++;
1910 count--;
1911 } else
1912 type = bt_cb(skb)->pkt_type;
1913
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03001914 rem = hci_reassembly(hdev, type, data, count,
1915 STREAM_REASSEMBLY);
Suraj Sumangala99811512010-07-14 13:02:19 +05301916 if (rem < 0)
1917 return rem;
1918
1919 data += (count - rem);
1920 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00001921 }
Suraj Sumangala99811512010-07-14 13:02:19 +05301922
1923 return rem;
1924}
1925EXPORT_SYMBOL(hci_recv_stream_fragment);
1926
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927/* ---- Interface to upper protocols ---- */
1928
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929int hci_register_cb(struct hci_cb *cb)
1930{
1931 BT_DBG("%p name %s", cb, cb->name);
1932
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001933 write_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 list_add(&cb->list, &hci_cb_list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001935 write_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
1937 return 0;
1938}
1939EXPORT_SYMBOL(hci_register_cb);
1940
1941int hci_unregister_cb(struct hci_cb *cb)
1942{
1943 BT_DBG("%p name %s", cb, cb->name);
1944
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001945 write_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 list_del(&cb->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02001947 write_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948
1949 return 0;
1950}
1951EXPORT_SYMBOL(hci_unregister_cb);
1952
1953static int hci_send_frame(struct sk_buff *skb)
1954{
1955 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
1956
1957 if (!hdev) {
1958 kfree_skb(skb);
1959 return -ENODEV;
1960 }
1961
Marcel Holtmann0d48d932005-08-09 20:30:28 -07001962 BT_DBG("%s type %d len %d", hdev->name, bt_cb(skb)->pkt_type, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 if (atomic_read(&hdev->promisc)) {
1965 /* Time stamp */
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001966 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001968 hci_send_to_sock(hdev, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
1970
1971 /* Get rid of skb owner, prior to sending to the driver. */
1972 skb_orphan(skb);
1973
1974 return hdev->send(skb);
1975}
1976
1977/* Send HCI command */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001978int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, void *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979{
1980 int len = HCI_COMMAND_HDR_SIZE + plen;
1981 struct hci_command_hdr *hdr;
1982 struct sk_buff *skb;
1983
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001984 BT_DBG("%s opcode 0x%x plen %d", hdev->name, opcode, plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985
1986 skb = bt_skb_alloc(len, GFP_ATOMIC);
1987 if (!skb) {
Marcel Holtmannef222012007-07-11 06:42:04 +02001988 BT_ERR("%s no memory for command", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001989 return -ENOMEM;
1990 }
1991
1992 hdr = (struct hci_command_hdr *) skb_put(skb, HCI_COMMAND_HDR_SIZE);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001993 hdr->opcode = cpu_to_le16(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 hdr->plen = plen;
1995
1996 if (plen)
1997 memcpy(skb_put(skb, plen), param, plen);
1998
1999 BT_DBG("skb len %d", skb->len);
2000
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002001 bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002 skb->dev = (void *) hdev;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002003
Johan Hedberga5040ef2011-01-10 13:28:59 +02002004 if (test_bit(HCI_INIT, &hdev->flags))
2005 hdev->init_last_cmd = opcode;
2006
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 skb_queue_tail(&hdev->cmd_q, skb);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002008 queue_work(hdev->workqueue, &hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002009
2010 return 0;
2011}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012
2013/* Get data from the previously sent command */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002014void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015{
2016 struct hci_command_hdr *hdr;
2017
2018 if (!hdev->sent_cmd)
2019 return NULL;
2020
2021 hdr = (void *) hdev->sent_cmd->data;
2022
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002023 if (hdr->opcode != cpu_to_le16(opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 return NULL;
2025
Marcel Holtmanna9de9242007-10-20 13:33:56 +02002026 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027
2028 return hdev->sent_cmd->data + HCI_COMMAND_HDR_SIZE;
2029}
2030
2031/* Send ACL data */
2032static void hci_add_acl_hdr(struct sk_buff *skb, __u16 handle, __u16 flags)
2033{
2034 struct hci_acl_hdr *hdr;
2035 int len = skb->len;
2036
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002037 skb_push(skb, HCI_ACL_HDR_SIZE);
2038 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002039 hdr = (struct hci_acl_hdr *)skb_transport_header(skb);
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07002040 hdr->handle = cpu_to_le16(hci_handle_pack(handle, flags));
2041 hdr->dlen = cpu_to_le16(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042}
2043
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002044static void hci_queue_acl(struct hci_conn *conn, struct sk_buff_head *queue,
2045 struct sk_buff *skb, __u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046{
2047 struct hci_dev *hdev = conn->hdev;
2048 struct sk_buff *list;
2049
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002050 list = skb_shinfo(skb)->frag_list;
2051 if (!list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 /* Non fragmented */
2053 BT_DBG("%s nonfrag skb %p len %d", hdev->name, skb, skb->len);
2054
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002055 skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 } else {
2057 /* Fragmented */
2058 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
2059
2060 skb_shinfo(skb)->frag_list = NULL;
2061
2062 /* Queue all fragments atomically */
Gustavo F. Padovanaf3e6352011-12-22 16:35:05 -02002063 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002065 __skb_queue_tail(queue, skb);
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02002066
2067 flags &= ~ACL_START;
2068 flags |= ACL_CONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 do {
2070 skb = list; list = list->next;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002071
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 skb->dev = (void *) hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002073 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02002074 hci_add_acl_hdr(skb, conn->handle, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
2076 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
2077
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002078 __skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 } while (list);
2080
Gustavo F. Padovanaf3e6352011-12-22 16:35:05 -02002081 spin_unlock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002083}
2084
2085void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags)
2086{
2087 struct hci_conn *conn = chan->conn;
2088 struct hci_dev *hdev = conn->hdev;
2089
2090 BT_DBG("%s chan %p flags 0x%x", hdev->name, chan, flags);
2091
2092 skb->dev = (void *) hdev;
2093 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
2094 hci_add_acl_hdr(skb, conn->handle, flags);
2095
2096 hci_queue_acl(conn, &chan->data_q, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002098 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099}
2100EXPORT_SYMBOL(hci_send_acl);
2101
2102/* Send SCO data */
Gustavo F. Padovan0d861d82010-05-01 16:15:35 -03002103void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
2105 struct hci_dev *hdev = conn->hdev;
2106 struct hci_sco_hdr hdr;
2107
2108 BT_DBG("%s len %d", hdev->name, skb->len);
2109
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07002110 hdr.handle = cpu_to_le16(conn->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 hdr.dlen = skb->len;
2112
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002113 skb_push(skb, HCI_SCO_HDR_SIZE);
2114 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002115 memcpy(skb_transport_header(skb), &hdr, HCI_SCO_HDR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 skb->dev = (void *) hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002118 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002119
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 skb_queue_tail(&conn->data_q, skb);
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002121 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122}
2123EXPORT_SYMBOL(hci_send_sco);
2124
2125/* ---- HCI TX task (outgoing data) ---- */
2126
2127/* HCI Connection scheduler */
2128static inline struct hci_conn *hci_low_sent(struct hci_dev *hdev, __u8 type, int *quote)
2129{
2130 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002131 struct hci_conn *conn = NULL, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 int num = 0, min = ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002134 /* We don't have to lock device here. Connections are always
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 * added and removed with TX task disabled. */
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002136
2137 rcu_read_lock();
2138
2139 list_for_each_entry_rcu(c, &h->list, list) {
Marcel Holtmann769be972008-07-14 20:13:49 +02002140 if (c->type != type || skb_queue_empty(&c->data_q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 continue;
Marcel Holtmann769be972008-07-14 20:13:49 +02002142
2143 if (c->state != BT_CONNECTED && c->state != BT_CONFIG)
2144 continue;
2145
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 num++;
2147
2148 if (c->sent < min) {
2149 min = c->sent;
2150 conn = c;
2151 }
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002152
2153 if (hci_conn_num(hdev, type) == num)
2154 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 }
2156
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002157 rcu_read_unlock();
2158
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if (conn) {
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002160 int cnt, q;
2161
2162 switch (conn->type) {
2163 case ACL_LINK:
2164 cnt = hdev->acl_cnt;
2165 break;
2166 case SCO_LINK:
2167 case ESCO_LINK:
2168 cnt = hdev->sco_cnt;
2169 break;
2170 case LE_LINK:
2171 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
2172 break;
2173 default:
2174 cnt = 0;
2175 BT_ERR("Unknown link type");
2176 }
2177
2178 q = cnt / num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 *quote = q ? q : 1;
2180 } else
2181 *quote = 0;
2182
2183 BT_DBG("conn %p quote %d", conn, *quote);
2184 return conn;
2185}
2186
Ville Tervobae1f5d92011-02-10 22:38:53 -03002187static inline void hci_link_tx_to(struct hci_dev *hdev, __u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188{
2189 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002190 struct hci_conn *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191
Ville Tervobae1f5d92011-02-10 22:38:53 -03002192 BT_ERR("%s link tx timeout", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002194 rcu_read_lock();
2195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 /* Kill stalled connections */
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002197 list_for_each_entry_rcu(c, &h->list, list) {
Ville Tervobae1f5d92011-02-10 22:38:53 -03002198 if (c->type == type && c->sent) {
2199 BT_ERR("%s killing stalled connection %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 hdev->name, batostr(&c->dst));
2201 hci_acl_disconn(c, 0x13);
2202 }
2203 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002204
2205 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206}
2207
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002208static inline struct hci_chan *hci_chan_sent(struct hci_dev *hdev, __u8 type,
2209 int *quote)
2210{
2211 struct hci_conn_hash *h = &hdev->conn_hash;
2212 struct hci_chan *chan = NULL;
2213 int num = 0, min = ~0, cur_prio = 0;
2214 struct hci_conn *conn;
2215 int cnt, q, conn_num = 0;
2216
2217 BT_DBG("%s", hdev->name);
2218
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002219 rcu_read_lock();
2220
2221 list_for_each_entry_rcu(conn, &h->list, list) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002222 struct hci_chan *tmp;
2223
2224 if (conn->type != type)
2225 continue;
2226
2227 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
2228 continue;
2229
2230 conn_num++;
2231
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -02002232 list_for_each_entry_rcu(tmp, &conn->chan_list, list) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002233 struct sk_buff *skb;
2234
2235 if (skb_queue_empty(&tmp->data_q))
2236 continue;
2237
2238 skb = skb_peek(&tmp->data_q);
2239 if (skb->priority < cur_prio)
2240 continue;
2241
2242 if (skb->priority > cur_prio) {
2243 num = 0;
2244 min = ~0;
2245 cur_prio = skb->priority;
2246 }
2247
2248 num++;
2249
2250 if (conn->sent < min) {
2251 min = conn->sent;
2252 chan = tmp;
2253 }
2254 }
2255
2256 if (hci_conn_num(hdev, type) == conn_num)
2257 break;
2258 }
2259
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002260 rcu_read_unlock();
2261
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002262 if (!chan)
2263 return NULL;
2264
2265 switch (chan->conn->type) {
2266 case ACL_LINK:
2267 cnt = hdev->acl_cnt;
2268 break;
2269 case SCO_LINK:
2270 case ESCO_LINK:
2271 cnt = hdev->sco_cnt;
2272 break;
2273 case LE_LINK:
2274 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
2275 break;
2276 default:
2277 cnt = 0;
2278 BT_ERR("Unknown link type");
2279 }
2280
2281 q = cnt / num;
2282 *quote = q ? q : 1;
2283 BT_DBG("chan %p quote %d", chan, *quote);
2284 return chan;
2285}
2286
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002287static void hci_prio_recalculate(struct hci_dev *hdev, __u8 type)
2288{
2289 struct hci_conn_hash *h = &hdev->conn_hash;
2290 struct hci_conn *conn;
2291 int num = 0;
2292
2293 BT_DBG("%s", hdev->name);
2294
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002295 rcu_read_lock();
2296
2297 list_for_each_entry_rcu(conn, &h->list, list) {
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002298 struct hci_chan *chan;
2299
2300 if (conn->type != type)
2301 continue;
2302
2303 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
2304 continue;
2305
2306 num++;
2307
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -02002308 list_for_each_entry_rcu(chan, &conn->chan_list, list) {
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002309 struct sk_buff *skb;
2310
2311 if (chan->sent) {
2312 chan->sent = 0;
2313 continue;
2314 }
2315
2316 if (skb_queue_empty(&chan->data_q))
2317 continue;
2318
2319 skb = skb_peek(&chan->data_q);
2320 if (skb->priority >= HCI_PRIO_MAX - 1)
2321 continue;
2322
2323 skb->priority = HCI_PRIO_MAX - 1;
2324
2325 BT_DBG("chan %p skb %p promoted to %d", chan, skb,
2326 skb->priority);
2327 }
2328
2329 if (hci_conn_num(hdev, type) == num)
2330 break;
2331 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02002332
2333 rcu_read_unlock();
2334
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002335}
2336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337static inline void hci_sched_acl(struct hci_dev *hdev)
2338{
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002339 struct hci_chan *chan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 struct sk_buff *skb;
2341 int quote;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002342 unsigned int cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
2344 BT_DBG("%s", hdev->name);
2345
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002346 if (!hci_conn_num(hdev, ACL_LINK))
2347 return;
2348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 if (!test_bit(HCI_RAW, &hdev->flags)) {
2350 /* ACL tx timeout must be longer than maximum
2351 * link supervision timeout (40.9 seconds) */
Andrei Emeltchenkocc48dc02012-01-04 16:42:26 +02002352 if (!hdev->acl_cnt && time_after(jiffies, hdev->acl_last_tx +
2353 msecs_to_jiffies(HCI_ACL_TX_TIMEOUT)))
Ville Tervobae1f5d92011-02-10 22:38:53 -03002354 hci_link_tx_to(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 }
2356
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002357 cnt = hdev->acl_cnt;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002358
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002359 while (hdev->acl_cnt &&
2360 (chan = hci_chan_sent(hdev, ACL_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002361 u32 priority = (skb_peek(&chan->data_q))->priority;
2362 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002363 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
2364 skb->len, skb->priority);
2365
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002366 /* Stop if priority has changed */
2367 if (skb->priority < priority)
2368 break;
2369
2370 skb = skb_dequeue(&chan->data_q);
2371
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002372 hci_conn_enter_active_mode(chan->conn,
2373 bt_cb(skb)->force_active);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 hci_send_frame(skb);
2376 hdev->acl_last_tx = jiffies;
2377
2378 hdev->acl_cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002379 chan->sent++;
2380 chan->conn->sent++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 }
2382 }
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002383
2384 if (cnt != hdev->acl_cnt)
2385 hci_prio_recalculate(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
2387
2388/* Schedule SCO */
2389static inline void hci_sched_sco(struct hci_dev *hdev)
2390{
2391 struct hci_conn *conn;
2392 struct sk_buff *skb;
2393 int quote;
2394
2395 BT_DBG("%s", hdev->name);
2396
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002397 if (!hci_conn_num(hdev, SCO_LINK))
2398 return;
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, SCO_LINK, &quote))) {
2401 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
2402 BT_DBG("skb %p len %d", skb, skb->len);
2403 hci_send_frame(skb);
2404
2405 conn->sent++;
2406 if (conn->sent == ~0)
2407 conn->sent = 0;
2408 }
2409 }
2410}
2411
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002412static inline void hci_sched_esco(struct hci_dev *hdev)
2413{
2414 struct hci_conn *conn;
2415 struct sk_buff *skb;
2416 int quote;
2417
2418 BT_DBG("%s", hdev->name);
2419
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002420 if (!hci_conn_num(hdev, ESCO_LINK))
2421 return;
2422
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002423 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, ESCO_LINK, &quote))) {
2424 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
2425 BT_DBG("skb %p len %d", skb, skb->len);
2426 hci_send_frame(skb);
2427
2428 conn->sent++;
2429 if (conn->sent == ~0)
2430 conn->sent = 0;
2431 }
2432 }
2433}
2434
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002435static inline void hci_sched_le(struct hci_dev *hdev)
2436{
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002437 struct hci_chan *chan;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002438 struct sk_buff *skb;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002439 int quote, cnt, tmp;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002440
2441 BT_DBG("%s", hdev->name);
2442
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002443 if (!hci_conn_num(hdev, LE_LINK))
2444 return;
2445
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002446 if (!test_bit(HCI_RAW, &hdev->flags)) {
2447 /* LE tx timeout must be longer than maximum
2448 * link supervision timeout (40.9 seconds) */
Ville Tervobae1f5d92011-02-10 22:38:53 -03002449 if (!hdev->le_cnt && hdev->le_pkts &&
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002450 time_after(jiffies, hdev->le_last_tx + HZ * 45))
Ville Tervobae1f5d92011-02-10 22:38:53 -03002451 hci_link_tx_to(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002452 }
2453
2454 cnt = hdev->le_pkts ? hdev->le_cnt : hdev->acl_cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002455 tmp = cnt;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002456 while (cnt && (chan = hci_chan_sent(hdev, LE_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002457 u32 priority = (skb_peek(&chan->data_q))->priority;
2458 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002459 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
2460 skb->len, skb->priority);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002461
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002462 /* Stop if priority has changed */
2463 if (skb->priority < priority)
2464 break;
2465
2466 skb = skb_dequeue(&chan->data_q);
2467
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002468 hci_send_frame(skb);
2469 hdev->le_last_tx = jiffies;
2470
2471 cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002472 chan->sent++;
2473 chan->conn->sent++;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002474 }
2475 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002476
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002477 if (hdev->le_pkts)
2478 hdev->le_cnt = cnt;
2479 else
2480 hdev->acl_cnt = cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002481
2482 if (cnt != tmp)
2483 hci_prio_recalculate(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002484}
2485
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002486static void hci_tx_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002488 struct hci_dev *hdev = container_of(work, struct hci_dev, tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 struct sk_buff *skb;
2490
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002491 BT_DBG("%s acl %d sco %d le %d", hdev->name, hdev->acl_cnt,
2492 hdev->sco_cnt, hdev->le_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
2494 /* Schedule queues and send stuff to HCI driver */
2495
2496 hci_sched_acl(hdev);
2497
2498 hci_sched_sco(hdev);
2499
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002500 hci_sched_esco(hdev);
2501
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002502 hci_sched_le(hdev);
2503
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 /* Send next queued raw (unknown type) packet */
2505 while ((skb = skb_dequeue(&hdev->raw_q)))
2506 hci_send_frame(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507}
2508
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002509/* ----- HCI RX task (incoming data processing) ----- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
2511/* ACL data packet */
2512static inline void hci_acldata_packet(struct hci_dev *hdev, struct sk_buff *skb)
2513{
2514 struct hci_acl_hdr *hdr = (void *) skb->data;
2515 struct hci_conn *conn;
2516 __u16 handle, flags;
2517
2518 skb_pull(skb, HCI_ACL_HDR_SIZE);
2519
2520 handle = __le16_to_cpu(hdr->handle);
2521 flags = hci_flags(handle);
2522 handle = hci_handle(handle);
2523
2524 BT_DBG("%s len %d handle 0x%x flags 0x%x", hdev->name, skb->len, handle, flags);
2525
2526 hdev->stat.acl_rx++;
2527
2528 hci_dev_lock(hdev);
2529 conn = hci_conn_hash_lookup_handle(hdev, handle);
2530 hci_dev_unlock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002531
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 if (conn) {
Mat Martineau65983fc2011-12-13 15:06:02 -08002533 hci_conn_enter_active_mode(conn, BT_POWER_FORCE_ACTIVE_OFF);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 /* Send to upper protocol */
Ulisses Furquim686ebf22011-12-21 10:11:33 -02002536 l2cap_recv_acldata(conn, skb, flags);
2537 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002539 BT_ERR("%s ACL packet for unknown connection handle %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 hdev->name, handle);
2541 }
2542
2543 kfree_skb(skb);
2544}
2545
2546/* SCO data packet */
2547static inline void hci_scodata_packet(struct hci_dev *hdev, struct sk_buff *skb)
2548{
2549 struct hci_sco_hdr *hdr = (void *) skb->data;
2550 struct hci_conn *conn;
2551 __u16 handle;
2552
2553 skb_pull(skb, HCI_SCO_HDR_SIZE);
2554
2555 handle = __le16_to_cpu(hdr->handle);
2556
2557 BT_DBG("%s len %d handle 0x%x", hdev->name, skb->len, handle);
2558
2559 hdev->stat.sco_rx++;
2560
2561 hci_dev_lock(hdev);
2562 conn = hci_conn_hash_lookup_handle(hdev, handle);
2563 hci_dev_unlock(hdev);
2564
2565 if (conn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566 /* Send to upper protocol */
Ulisses Furquim686ebf22011-12-21 10:11:33 -02002567 sco_recv_scodata(conn, skb);
2568 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002570 BT_ERR("%s SCO packet for unknown connection handle %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 hdev->name, handle);
2572 }
2573
2574 kfree_skb(skb);
2575}
2576
Marcel Holtmannb78752c2010-08-08 23:06:53 -04002577static void hci_rx_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578{
Marcel Holtmannb78752c2010-08-08 23:06:53 -04002579 struct hci_dev *hdev = container_of(work, struct hci_dev, rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 struct sk_buff *skb;
2581
2582 BT_DBG("%s", hdev->name);
2583
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 while ((skb = skb_dequeue(&hdev->rx_q))) {
2585 if (atomic_read(&hdev->promisc)) {
2586 /* Send copy to the sockets */
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002587 hci_send_to_sock(hdev, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 }
2589
2590 if (test_bit(HCI_RAW, &hdev->flags)) {
2591 kfree_skb(skb);
2592 continue;
2593 }
2594
2595 if (test_bit(HCI_INIT, &hdev->flags)) {
2596 /* Don't process data packets in this states. */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002597 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 case HCI_ACLDATA_PKT:
2599 case HCI_SCODATA_PKT:
2600 kfree_skb(skb);
2601 continue;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 }
2604
2605 /* Process frame */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002606 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 case HCI_EVENT_PKT:
Marcel Holtmannb78752c2010-08-08 23:06:53 -04002608 BT_DBG("%s Event packet", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 hci_event_packet(hdev, skb);
2610 break;
2611
2612 case HCI_ACLDATA_PKT:
2613 BT_DBG("%s ACL data packet", hdev->name);
2614 hci_acldata_packet(hdev, skb);
2615 break;
2616
2617 case HCI_SCODATA_PKT:
2618 BT_DBG("%s SCO data packet", hdev->name);
2619 hci_scodata_packet(hdev, skb);
2620 break;
2621
2622 default:
2623 kfree_skb(skb);
2624 break;
2625 }
2626 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627}
2628
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002629static void hci_cmd_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630{
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002631 struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 struct sk_buff *skb;
2633
2634 BT_DBG("%s cmd %d", hdev->name, atomic_read(&hdev->cmd_cnt));
2635
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 /* Send queued commands */
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02002637 if (atomic_read(&hdev->cmd_cnt)) {
2638 skb = skb_dequeue(&hdev->cmd_q);
2639 if (!skb)
2640 return;
2641
Wei Yongjun7585b972009-02-25 18:29:52 +08002642 kfree_skb(hdev->sent_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002644 hdev->sent_cmd = skb_clone(skb, GFP_ATOMIC);
2645 if (hdev->sent_cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 atomic_dec(&hdev->cmd_cnt);
2647 hci_send_frame(skb);
Szymon Janc7bdb8a52011-07-26 22:46:54 +02002648 if (test_bit(HCI_RESET, &hdev->flags))
2649 del_timer(&hdev->cmd_timer);
2650 else
2651 mod_timer(&hdev->cmd_timer,
Ville Tervo6bd32322011-02-16 16:32:41 +02002652 jiffies + msecs_to_jiffies(HCI_CMD_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 } else {
2654 skb_queue_head(&hdev->cmd_q, skb);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002655 queue_work(hdev->workqueue, &hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 }
2657 }
2658}
Andre Guedes2519a1f2011-11-07 11:45:24 -03002659
2660int hci_do_inquiry(struct hci_dev *hdev, u8 length)
2661{
2662 /* General inquiry access code (GIAC) */
2663 u8 lap[3] = { 0x33, 0x8b, 0x9e };
2664 struct hci_cp_inquiry cp;
2665
2666 BT_DBG("%s", hdev->name);
2667
2668 if (test_bit(HCI_INQUIRY, &hdev->flags))
2669 return -EINPROGRESS;
2670
Johan Hedberg46632622012-01-02 16:06:08 +02002671 inquiry_cache_flush(hdev);
2672
Andre Guedes2519a1f2011-11-07 11:45:24 -03002673 memset(&cp, 0, sizeof(cp));
2674 memcpy(&cp.lap, lap, sizeof(cp.lap));
2675 cp.length = length;
2676
2677 return hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp);
2678}
Andre Guedes023d50492011-11-04 14:16:52 -03002679
2680int hci_cancel_inquiry(struct hci_dev *hdev)
2681{
2682 BT_DBG("%s", hdev->name);
2683
2684 if (!test_bit(HCI_INQUIRY, &hdev->flags))
2685 return -EPERM;
2686
2687 return hci_send_cmd(hdev, HCI_OP_INQUIRY_CANCEL, 0, NULL);
2688}
Andrei Emeltchenko7784d782011-11-18 13:35:42 +02002689
2690module_param(enable_hs, bool, 0644);
2691MODULE_PARM_DESC(enable_hs, "Enable High Speed");