blob: e4b5c634509559f14cf5b4b75adb17d11e6518e7 [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
4
5 Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation;
10
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090015 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
16 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +090020 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 SOFTWARE IS DISCLAIMED.
23*/
24
25/* Bluetooth HCI core. */
26
S.Çağlar Onur824530212008-02-17 23:25:57 -080027#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/module.h>
29#include <linux/kmod.h>
30
31#include <linux/types.h>
32#include <linux/errno.h>
33#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/sched.h>
35#include <linux/slab.h>
36#include <linux/poll.h>
37#include <linux/fcntl.h>
38#include <linux/init.h>
39#include <linux/skbuff.h>
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +010040#include <linux/workqueue.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <linux/interrupt.h>
42#include <linux/notifier.h>
Marcel Holtmann611b30f2009-06-08 14:41:38 +020043#include <linux/rfkill.h>
Ville Tervo6bd32322011-02-16 16:32:41 +020044#include <linux/timer.h>
Vinicius Costa Gomes3a0259b2011-06-09 18:50:43 -030045#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include <net/sock.h>
47
48#include <asm/system.h>
Andrei Emeltchenko70f230202010-12-01 16:58:25 +020049#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#include <asm/unaligned.h>
51
52#include <net/bluetooth/bluetooth.h>
53#include <net/bluetooth/hci_core.h>
54
Johan Hedbergab81cbf2010-12-15 13:53:18 +020055#define AUTO_OFF_TIMEOUT 2000
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057static void hci_cmd_task(unsigned long arg);
58static void hci_rx_task(unsigned long arg);
59static void hci_tx_task(unsigned long arg);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61static DEFINE_RWLOCK(hci_task_lock);
62
63/* HCI device list */
64LIST_HEAD(hci_dev_list);
65DEFINE_RWLOCK(hci_dev_list_lock);
66
67/* HCI callback list */
68LIST_HEAD(hci_cb_list);
69DEFINE_RWLOCK(hci_cb_list_lock);
70
71/* HCI protocols */
72#define HCI_MAX_PROTO 2
73struct hci_proto *hci_proto[HCI_MAX_PROTO];
74
75/* HCI notifiers list */
Alan Sterne041c682006-03-27 01:16:30 -080076static ATOMIC_NOTIFIER_HEAD(hci_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/* ---- HCI notifications ---- */
79
80int hci_register_notifier(struct notifier_block *nb)
81{
Alan Sterne041c682006-03-27 01:16:30 -080082 return atomic_notifier_chain_register(&hci_notifier, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070083}
84
85int hci_unregister_notifier(struct notifier_block *nb)
86{
Alan Sterne041c682006-03-27 01:16:30 -080087 return atomic_notifier_chain_unregister(&hci_notifier, nb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088}
89
Marcel Holtmann65164552005-10-28 19:20:48 +020090static void hci_notify(struct hci_dev *hdev, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091{
Alan Sterne041c682006-03-27 01:16:30 -080092 atomic_notifier_call_chain(&hci_notifier, event, hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070093}
94
95/* ---- HCI requests ---- */
96
Johan Hedberg23bb5762010-12-21 23:01:27 +020097void hci_req_complete(struct hci_dev *hdev, __u16 cmd, int result)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Johan Hedberg23bb5762010-12-21 23:01:27 +020099 BT_DBG("%s command 0x%04x result 0x%2.2x", hdev->name, cmd, result);
100
Johan Hedberga5040ef2011-01-10 13:28:59 +0200101 /* If this is the init phase check if the completed command matches
102 * the last init command, and if not just return.
103 */
104 if (test_bit(HCI_INIT, &hdev->flags) && hdev->init_last_cmd != cmd)
Johan Hedberg23bb5762010-12-21 23:01:27 +0200105 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107 if (hdev->req_status == HCI_REQ_PEND) {
108 hdev->req_result = result;
109 hdev->req_status = HCI_REQ_DONE;
110 wake_up_interruptible(&hdev->req_wait_q);
111 }
112}
113
114static void hci_req_cancel(struct hci_dev *hdev, int err)
115{
116 BT_DBG("%s err 0x%2.2x", hdev->name, err);
117
118 if (hdev->req_status == HCI_REQ_PEND) {
119 hdev->req_result = err;
120 hdev->req_status = HCI_REQ_CANCELED;
121 wake_up_interruptible(&hdev->req_wait_q);
122 }
123}
124
125/* Execute request and wait for completion. */
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900126static int __hci_request(struct hci_dev *hdev, void (*req)(struct hci_dev *hdev, unsigned long opt),
Szymon Janc01df8c32011-02-17 16:46:47 +0100127 unsigned long opt, __u32 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 DECLARE_WAITQUEUE(wait, current);
130 int err = 0;
131
132 BT_DBG("%s start", hdev->name);
133
134 hdev->req_status = HCI_REQ_PEND;
135
136 add_wait_queue(&hdev->req_wait_q, &wait);
137 set_current_state(TASK_INTERRUPTIBLE);
138
139 req(hdev, opt);
140 schedule_timeout(timeout);
141
142 remove_wait_queue(&hdev->req_wait_q, &wait);
143
144 if (signal_pending(current))
145 return -EINTR;
146
147 switch (hdev->req_status) {
148 case HCI_REQ_DONE:
Joe Perchese1750722011-06-29 18:18:29 -0700149 err = -bt_to_errno(hdev->req_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 break;
151
152 case HCI_REQ_CANCELED:
153 err = -hdev->req_result;
154 break;
155
156 default:
157 err = -ETIMEDOUT;
158 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Johan Hedberga5040ef2011-01-10 13:28:59 +0200161 hdev->req_status = hdev->req_result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
163 BT_DBG("%s end: err %d", hdev->name, err);
164
165 return err;
166}
167
168static inline int hci_request(struct hci_dev *hdev, void (*req)(struct hci_dev *hdev, unsigned long opt),
Szymon Janc01df8c32011-02-17 16:46:47 +0100169 unsigned long opt, __u32 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170{
171 int ret;
172
Marcel Holtmann7c6a3292008-09-12 03:11:54 +0200173 if (!test_bit(HCI_UP, &hdev->flags))
174 return -ENETDOWN;
175
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 /* Serialize all requests */
177 hci_req_lock(hdev);
178 ret = __hci_request(hdev, req, opt, timeout);
179 hci_req_unlock(hdev);
180
181 return ret;
182}
183
184static void hci_reset_req(struct hci_dev *hdev, unsigned long opt)
185{
186 BT_DBG("%s %ld", hdev->name, opt);
187
188 /* Reset device */
Gustavo F. Padovanf630cf02011-03-16 15:36:29 -0300189 set_bit(HCI_RESET, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200190 hci_send_cmd(hdev, HCI_OP_RESET, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
193static void hci_init_req(struct hci_dev *hdev, unsigned long opt)
194{
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200195 struct hci_cp_delete_stored_link_key cp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 struct sk_buff *skb;
Marcel Holtmann1ebb9252005-11-08 09:57:21 -0800197 __le16 param;
Marcel Holtmann89f27832007-09-09 08:39:49 +0200198 __u8 flt_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199
200 BT_DBG("%s %ld", hdev->name, opt);
201
202 /* Driver initialization */
203
204 /* Special commands */
205 while ((skb = skb_dequeue(&hdev->driver_init))) {
Marcel Holtmann0d48d932005-08-09 20:30:28 -0700206 bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 skb->dev = (void *) hdev;
Marcel Holtmannc78ae282009-11-18 01:02:54 +0100208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 skb_queue_tail(&hdev->cmd_q, skb);
Marcel Holtmannc78ae282009-11-18 01:02:54 +0100210 tasklet_schedule(&hdev->cmd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 }
212 skb_queue_purge(&hdev->driver_init);
213
214 /* Mandatory initialization */
215
216 /* Reset */
Gustavo F. Padovanf630cf02011-03-16 15:36:29 -0300217 if (!test_bit(HCI_QUIRK_NO_RESET, &hdev->quirks)) {
218 set_bit(HCI_RESET, &hdev->flags);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200219 hci_send_cmd(hdev, HCI_OP_RESET, 0, NULL);
Gustavo F. Padovanf630cf02011-03-16 15:36:29 -0300220 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
222 /* Read Local Supported Features */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200223 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_FEATURES, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200225 /* Read Local Version */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200226 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
Marcel Holtmann1143e5a2006-09-23 09:57:20 +0200227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 /* Read Buffer Size (ACL mtu, max pkt, etc.) */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200229 hci_send_cmd(hdev, HCI_OP_READ_BUFFER_SIZE, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231#if 0
232 /* Host buffer size */
233 {
234 struct hci_cp_host_buffer_size cp;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700235 cp.acl_mtu = cpu_to_le16(HCI_MAX_ACL_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 cp.sco_mtu = HCI_MAX_SCO_SIZE;
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700237 cp.acl_max_pkt = cpu_to_le16(0xffff);
238 cp.sco_max_pkt = cpu_to_le16(0xffff);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200239 hci_send_cmd(hdev, HCI_OP_HOST_BUFFER_SIZE, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 }
241#endif
242
243 /* Read BD Address */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200244 hci_send_cmd(hdev, HCI_OP_READ_BD_ADDR, 0, NULL);
245
246 /* Read Class of Device */
247 hci_send_cmd(hdev, HCI_OP_READ_CLASS_OF_DEV, 0, NULL);
248
249 /* Read Local Name */
250 hci_send_cmd(hdev, HCI_OP_READ_LOCAL_NAME, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
252 /* Read Voice Setting */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200253 hci_send_cmd(hdev, HCI_OP_READ_VOICE_SETTING, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
255 /* Optional initialization */
256
257 /* Clear Event Filters */
Marcel Holtmann89f27832007-09-09 08:39:49 +0200258 flt_type = HCI_FLT_CLEAR_ALL;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200259 hci_send_cmd(hdev, HCI_OP_SET_EVENT_FLT, 1, &flt_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 /* Connection accept timeout ~20 secs */
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -0700262 param = cpu_to_le16(0x7d00);
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200263 hci_send_cmd(hdev, HCI_OP_WRITE_CA_TIMEOUT, 2, &param);
Johan Hedbergb0916ea2011-01-10 13:44:55 +0200264
265 bacpy(&cp.bdaddr, BDADDR_ANY);
266 cp.delete_all = 1;
267 hci_send_cmd(hdev, HCI_OP_DELETE_STORED_LINK_KEY, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
269
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300270static void hci_le_init_req(struct hci_dev *hdev, unsigned long opt)
271{
272 BT_DBG("%s", hdev->name);
273
274 /* Read LE buffer size */
275 hci_send_cmd(hdev, HCI_OP_LE_READ_BUFFER_SIZE, 0, NULL);
276}
277
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278static void hci_scan_req(struct hci_dev *hdev, unsigned long opt)
279{
280 __u8 scan = opt;
281
282 BT_DBG("%s %x", hdev->name, scan);
283
284 /* Inquiry and Page scans */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200285 hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286}
287
288static void hci_auth_req(struct hci_dev *hdev, unsigned long opt)
289{
290 __u8 auth = opt;
291
292 BT_DBG("%s %x", hdev->name, auth);
293
294 /* Authentication */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200295 hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, 1, &auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
298static void hci_encrypt_req(struct hci_dev *hdev, unsigned long opt)
299{
300 __u8 encrypt = opt;
301
302 BT_DBG("%s %x", hdev->name, encrypt);
303
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200304 /* Encryption */
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200305 hci_send_cmd(hdev, HCI_OP_WRITE_ENCRYPT_MODE, 1, &encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306}
307
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200308static void hci_linkpol_req(struct hci_dev *hdev, unsigned long opt)
309{
310 __le16 policy = cpu_to_le16(opt);
311
Marcel Holtmanna418b892008-11-30 12:17:28 +0100312 BT_DBG("%s %x", hdev->name, policy);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200313
314 /* Default link policy */
315 hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, 2, &policy);
316}
317
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900318/* Get HCI device by index.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 * Device is held on return. */
320struct hci_dev *hci_dev_get(int index)
321{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200322 struct hci_dev *hdev = NULL, *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
324 BT_DBG("%d", index);
325
326 if (index < 0)
327 return NULL;
328
329 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200330 list_for_each_entry(d, &hci_dev_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 if (d->id == index) {
332 hdev = hci_dev_hold(d);
333 break;
334 }
335 }
336 read_unlock(&hci_dev_list_lock);
337 return hdev;
338}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339
340/* ---- Inquiry support ---- */
341static void inquiry_cache_flush(struct hci_dev *hdev)
342{
343 struct inquiry_cache *cache = &hdev->inq_cache;
344 struct inquiry_entry *next = cache->list, *e;
345
346 BT_DBG("cache %p", cache);
347
348 cache->list = NULL;
349 while ((e = next)) {
350 next = e->next;
351 kfree(e);
352 }
353}
354
355struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr)
356{
357 struct inquiry_cache *cache = &hdev->inq_cache;
358 struct inquiry_entry *e;
359
360 BT_DBG("cache %p, %s", cache, batostr(bdaddr));
361
362 for (e = cache->list; e; e = e->next)
363 if (!bacmp(&e->data.bdaddr, bdaddr))
364 break;
365 return e;
366}
367
368void hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data)
369{
370 struct inquiry_cache *cache = &hdev->inq_cache;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200371 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
373 BT_DBG("cache %p, %s", cache, batostr(&data->bdaddr));
374
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200375 ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr);
376 if (!ie) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* Entry not in the cache. Add new one. */
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200378 ie = kzalloc(sizeof(struct inquiry_entry), GFP_ATOMIC);
379 if (!ie)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 return;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200381
382 ie->next = cache->list;
383 cache->list = ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 }
385
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200386 memcpy(&ie->data, data, sizeof(*data));
387 ie->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 cache->timestamp = jiffies;
389}
390
391static int inquiry_cache_dump(struct hci_dev *hdev, int num, __u8 *buf)
392{
393 struct inquiry_cache *cache = &hdev->inq_cache;
394 struct inquiry_info *info = (struct inquiry_info *) buf;
395 struct inquiry_entry *e;
396 int copied = 0;
397
398 for (e = cache->list; e && copied < num; e = e->next, copied++) {
399 struct inquiry_data *data = &e->data;
400 bacpy(&info->bdaddr, &data->bdaddr);
401 info->pscan_rep_mode = data->pscan_rep_mode;
402 info->pscan_period_mode = data->pscan_period_mode;
403 info->pscan_mode = data->pscan_mode;
404 memcpy(info->dev_class, data->dev_class, 3);
405 info->clock_offset = data->clock_offset;
406 info++;
407 }
408
409 BT_DBG("cache %p, copied %d", cache, copied);
410 return copied;
411}
412
413static void hci_inq_req(struct hci_dev *hdev, unsigned long opt)
414{
415 struct hci_inquiry_req *ir = (struct hci_inquiry_req *) opt;
416 struct hci_cp_inquiry cp;
417
418 BT_DBG("%s", hdev->name);
419
420 if (test_bit(HCI_INQUIRY, &hdev->flags))
421 return;
422
423 /* Start Inquiry */
424 memcpy(&cp.lap, &ir->lap, 3);
425 cp.length = ir->length;
426 cp.num_rsp = ir->num_rsp;
Marcel Holtmanna9de9242007-10-20 13:33:56 +0200427 hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
430int hci_inquiry(void __user *arg)
431{
432 __u8 __user *ptr = arg;
433 struct hci_inquiry_req ir;
434 struct hci_dev *hdev;
435 int err = 0, do_inquiry = 0, max_rsp;
436 long timeo;
437 __u8 *buf;
438
439 if (copy_from_user(&ir, ptr, sizeof(ir)))
440 return -EFAULT;
441
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200442 hdev = hci_dev_get(ir.dev_id);
443 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return -ENODEV;
445
446 hci_dev_lock_bh(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900447 if (inquiry_cache_age(hdev) > INQUIRY_CACHE_AGE_MAX ||
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200448 inquiry_cache_empty(hdev) ||
449 ir.flags & IREQ_CACHE_FLUSH) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 inquiry_cache_flush(hdev);
451 do_inquiry = 1;
452 }
453 hci_dev_unlock_bh(hdev);
454
Marcel Holtmann04837f62006-07-03 10:02:33 +0200455 timeo = ir.length * msecs_to_jiffies(2000);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200456
457 if (do_inquiry) {
458 err = hci_request(hdev, hci_inq_req, (unsigned long)&ir, timeo);
459 if (err < 0)
460 goto done;
461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
463 /* for unlimited number of responses we will use buffer with 255 entries */
464 max_rsp = (ir.num_rsp == 0) ? 255 : ir.num_rsp;
465
466 /* cache_dump can't sleep. Therefore we allocate temp buffer and then
467 * copy it to the user space.
468 */
Szymon Janc01df8c32011-02-17 16:46:47 +0100469 buf = kmalloc(sizeof(struct inquiry_info) * max_rsp, GFP_KERNEL);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200470 if (!buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 err = -ENOMEM;
472 goto done;
473 }
474
475 hci_dev_lock_bh(hdev);
476 ir.num_rsp = inquiry_cache_dump(hdev, max_rsp, buf);
477 hci_dev_unlock_bh(hdev);
478
479 BT_DBG("num_rsp %d", ir.num_rsp);
480
481 if (!copy_to_user(ptr, &ir, sizeof(ir))) {
482 ptr += sizeof(ir);
483 if (copy_to_user(ptr, buf, sizeof(struct inquiry_info) *
484 ir.num_rsp))
485 err = -EFAULT;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900486 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 err = -EFAULT;
488
489 kfree(buf);
490
491done:
492 hci_dev_put(hdev);
493 return err;
494}
495
496/* ---- HCI ioctl helpers ---- */
497
498int hci_dev_open(__u16 dev)
499{
500 struct hci_dev *hdev;
501 int ret = 0;
502
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +0200503 hdev = hci_dev_get(dev);
504 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return -ENODEV;
506
507 BT_DBG("%s %p", hdev->name, hdev);
508
509 hci_req_lock(hdev);
510
Marcel Holtmann611b30f2009-06-08 14:41:38 +0200511 if (hdev->rfkill && rfkill_blocked(hdev->rfkill)) {
512 ret = -ERFKILL;
513 goto done;
514 }
515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 if (test_bit(HCI_UP, &hdev->flags)) {
517 ret = -EALREADY;
518 goto done;
519 }
520
521 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
522 set_bit(HCI_RAW, &hdev->flags);
523
Marcel Holtmann943da252010-02-13 02:28:41 +0100524 /* Treat all non BR/EDR controllers as raw devices for now */
525 if (hdev->dev_type != HCI_BREDR)
526 set_bit(HCI_RAW, &hdev->flags);
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 if (hdev->open(hdev)) {
529 ret = -EIO;
530 goto done;
531 }
532
533 if (!test_bit(HCI_RAW, &hdev->flags)) {
534 atomic_set(&hdev->cmd_cnt, 1);
535 set_bit(HCI_INIT, &hdev->flags);
Johan Hedberga5040ef2011-01-10 13:28:59 +0200536 hdev->init_last_cmd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Marcel Holtmann04837f62006-07-03 10:02:33 +0200538 ret = __hci_request(hdev, hci_init_req, 0,
539 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Andre Guedeseead27d2011-06-30 19:20:55 -0300541 if (lmp_host_le_capable(hdev))
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300542 ret = __hci_request(hdev, hci_le_init_req, 0,
543 msecs_to_jiffies(HCI_INIT_TIMEOUT));
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 clear_bit(HCI_INIT, &hdev->flags);
546 }
547
548 if (!ret) {
549 hci_dev_hold(hdev);
550 set_bit(HCI_UP, &hdev->flags);
551 hci_notify(hdev, HCI_DEV_UP);
Johan Hedberg5add6af2010-12-16 10:00:37 +0200552 if (!test_bit(HCI_SETUP, &hdev->flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200553 mgmt_powered(hdev, 1);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900554 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 /* Init failed, cleanup */
556 tasklet_kill(&hdev->rx_task);
557 tasklet_kill(&hdev->tx_task);
558 tasklet_kill(&hdev->cmd_task);
559
560 skb_queue_purge(&hdev->cmd_q);
561 skb_queue_purge(&hdev->rx_q);
562
563 if (hdev->flush)
564 hdev->flush(hdev);
565
566 if (hdev->sent_cmd) {
567 kfree_skb(hdev->sent_cmd);
568 hdev->sent_cmd = NULL;
569 }
570
571 hdev->close(hdev);
572 hdev->flags = 0;
573 }
574
575done:
576 hci_req_unlock(hdev);
577 hci_dev_put(hdev);
578 return ret;
579}
580
581static int hci_dev_do_close(struct hci_dev *hdev)
582{
583 BT_DBG("%s %p", hdev->name, hdev);
584
585 hci_req_cancel(hdev, ENODEV);
586 hci_req_lock(hdev);
587
588 if (!test_and_clear_bit(HCI_UP, &hdev->flags)) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -0300589 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 hci_req_unlock(hdev);
591 return 0;
592 }
593
594 /* Kill RX and TX tasks */
595 tasklet_kill(&hdev->rx_task);
596 tasklet_kill(&hdev->tx_task);
597
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200598 if (hdev->discov_timeout > 0) {
599 cancel_delayed_work_sync(&hdev->discov_off);
600 hdev->discov_timeout = 0;
601 }
602
Johan Hedberg32435532011-11-07 22:16:04 +0200603 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->flags))
604 cancel_delayed_work_sync(&hdev->power_off);
605
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 hci_dev_lock_bh(hdev);
607 inquiry_cache_flush(hdev);
608 hci_conn_hash_flush(hdev);
609 hci_dev_unlock_bh(hdev);
610
611 hci_notify(hdev, HCI_DEV_DOWN);
612
613 if (hdev->flush)
614 hdev->flush(hdev);
615
616 /* Reset device */
617 skb_queue_purge(&hdev->cmd_q);
618 atomic_set(&hdev->cmd_cnt, 1);
619 if (!test_bit(HCI_RAW, &hdev->flags)) {
620 set_bit(HCI_INIT, &hdev->flags);
Marcel Holtmann04837f62006-07-03 10:02:33 +0200621 __hci_request(hdev, hci_reset_req, 0,
Szymon Janc43611a72011-10-17 23:05:49 +0200622 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 clear_bit(HCI_INIT, &hdev->flags);
624 }
625
626 /* Kill cmd task */
627 tasklet_kill(&hdev->cmd_task);
628
629 /* Drop queues */
630 skb_queue_purge(&hdev->rx_q);
631 skb_queue_purge(&hdev->cmd_q);
632 skb_queue_purge(&hdev->raw_q);
633
634 /* Drop last sent command */
635 if (hdev->sent_cmd) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -0300636 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 kfree_skb(hdev->sent_cmd);
638 hdev->sent_cmd = NULL;
639 }
640
641 /* After this point our queues are empty
642 * and no tasks are scheduled. */
643 hdev->close(hdev);
644
Johan Hedberg744cf192011-11-08 20:40:14 +0200645 mgmt_powered(hdev, 0);
Johan Hedberg5add6af2010-12-16 10:00:37 +0200646
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 /* Clear flags */
648 hdev->flags = 0;
649
650 hci_req_unlock(hdev);
651
652 hci_dev_put(hdev);
653 return 0;
654}
655
656int hci_dev_close(__u16 dev)
657{
658 struct hci_dev *hdev;
659 int err;
660
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200661 hdev = hci_dev_get(dev);
662 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return -ENODEV;
664 err = hci_dev_do_close(hdev);
665 hci_dev_put(hdev);
666 return err;
667}
668
669int hci_dev_reset(__u16 dev)
670{
671 struct hci_dev *hdev;
672 int ret = 0;
673
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200674 hdev = hci_dev_get(dev);
675 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return -ENODEV;
677
678 hci_req_lock(hdev);
679 tasklet_disable(&hdev->tx_task);
680
681 if (!test_bit(HCI_UP, &hdev->flags))
682 goto done;
683
684 /* Drop queues */
685 skb_queue_purge(&hdev->rx_q);
686 skb_queue_purge(&hdev->cmd_q);
687
688 hci_dev_lock_bh(hdev);
689 inquiry_cache_flush(hdev);
690 hci_conn_hash_flush(hdev);
691 hci_dev_unlock_bh(hdev);
692
693 if (hdev->flush)
694 hdev->flush(hdev);
695
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +0900696 atomic_set(&hdev->cmd_cnt, 1);
Ville Tervo6ed58ec2011-02-10 22:38:48 -0300697 hdev->acl_cnt = 0; hdev->sco_cnt = 0; hdev->le_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
699 if (!test_bit(HCI_RAW, &hdev->flags))
Marcel Holtmann04837f62006-07-03 10:02:33 +0200700 ret = __hci_request(hdev, hci_reset_req, 0,
701 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
703done:
704 tasklet_enable(&hdev->tx_task);
705 hci_req_unlock(hdev);
706 hci_dev_put(hdev);
707 return ret;
708}
709
710int hci_dev_reset_stat(__u16 dev)
711{
712 struct hci_dev *hdev;
713 int ret = 0;
714
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200715 hdev = hci_dev_get(dev);
716 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 return -ENODEV;
718
719 memset(&hdev->stat, 0, sizeof(struct hci_dev_stats));
720
721 hci_dev_put(hdev);
722
723 return ret;
724}
725
726int hci_dev_cmd(unsigned int cmd, void __user *arg)
727{
728 struct hci_dev *hdev;
729 struct hci_dev_req dr;
730 int err = 0;
731
732 if (copy_from_user(&dr, arg, sizeof(dr)))
733 return -EFAULT;
734
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200735 hdev = hci_dev_get(dr.dev_id);
736 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return -ENODEV;
738
739 switch (cmd) {
740 case HCISETAUTH:
Marcel Holtmann04837f62006-07-03 10:02:33 +0200741 err = hci_request(hdev, hci_auth_req, dr.dev_opt,
742 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 break;
744
745 case HCISETENCRYPT:
746 if (!lmp_encrypt_capable(hdev)) {
747 err = -EOPNOTSUPP;
748 break;
749 }
750
751 if (!test_bit(HCI_AUTH, &hdev->flags)) {
752 /* Auth must be enabled first */
Marcel Holtmann04837f62006-07-03 10:02:33 +0200753 err = hci_request(hdev, hci_auth_req, dr.dev_opt,
754 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 if (err)
756 break;
757 }
758
Marcel Holtmann04837f62006-07-03 10:02:33 +0200759 err = hci_request(hdev, hci_encrypt_req, dr.dev_opt,
760 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 break;
762
763 case HCISETSCAN:
Marcel Holtmann04837f62006-07-03 10:02:33 +0200764 err = hci_request(hdev, hci_scan_req, dr.dev_opt,
765 msecs_to_jiffies(HCI_INIT_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 break;
767
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200768 case HCISETLINKPOL:
769 err = hci_request(hdev, hci_linkpol_req, dr.dev_opt,
770 msecs_to_jiffies(HCI_INIT_TIMEOUT));
771 break;
772
773 case HCISETLINKMODE:
774 hdev->link_mode = ((__u16) dr.dev_opt) &
775 (HCI_LM_MASTER | HCI_LM_ACCEPT);
776 break;
777
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 case HCISETPTYPE:
779 hdev->pkt_type = (__u16) dr.dev_opt;
780 break;
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 case HCISETACLMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200783 hdev->acl_mtu = *((__u16 *) &dr.dev_opt + 1);
784 hdev->acl_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 break;
786
787 case HCISETSCOMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200788 hdev->sco_mtu = *((__u16 *) &dr.dev_opt + 1);
789 hdev->sco_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 break;
791
792 default:
793 err = -EINVAL;
794 break;
795 }
Marcel Holtmanne4e8e372008-07-14 20:13:47 +0200796
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 hci_dev_put(hdev);
798 return err;
799}
800
801int hci_get_dev_list(void __user *arg)
802{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200803 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 struct hci_dev_list_req *dl;
805 struct hci_dev_req *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 int n = 0, size, err;
807 __u16 dev_num;
808
809 if (get_user(dev_num, (__u16 __user *) arg))
810 return -EFAULT;
811
812 if (!dev_num || dev_num > (PAGE_SIZE * 2) / sizeof(*dr))
813 return -EINVAL;
814
815 size = sizeof(*dl) + dev_num * sizeof(*dr);
816
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200817 dl = kzalloc(size, GFP_KERNEL);
818 if (!dl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return -ENOMEM;
820
821 dr = dl->dev_req;
822
823 read_lock_bh(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200824 list_for_each_entry(hdev, &hci_dev_list, list) {
Johan Hedberg32435532011-11-07 22:16:04 +0200825 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->flags))
826 cancel_delayed_work_sync(&hdev->power_off);
Johan Hedbergc542a062011-01-26 13:11:03 +0200827
828 if (!test_bit(HCI_MGMT, &hdev->flags))
829 set_bit(HCI_PAIRABLE, &hdev->flags);
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 (dr + n)->dev_id = hdev->id;
832 (dr + n)->dev_opt = hdev->flags;
Johan Hedbergc542a062011-01-26 13:11:03 +0200833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 if (++n >= dev_num)
835 break;
836 }
837 read_unlock_bh(&hci_dev_list_lock);
838
839 dl->dev_num = n;
840 size = sizeof(*dl) + n * sizeof(*dr);
841
842 err = copy_to_user(arg, dl, size);
843 kfree(dl);
844
845 return err ? -EFAULT : 0;
846}
847
848int hci_get_dev_info(void __user *arg)
849{
850 struct hci_dev *hdev;
851 struct hci_dev_info di;
852 int err = 0;
853
854 if (copy_from_user(&di, arg, sizeof(di)))
855 return -EFAULT;
856
Andrei Emeltchenko70f230202010-12-01 16:58:25 +0200857 hdev = hci_dev_get(di.dev_id);
858 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 return -ENODEV;
860
Johan Hedberg32435532011-11-07 22:16:04 +0200861 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->flags))
862 cancel_delayed_work_sync(&hdev->power_off);
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200863
Johan Hedbergc542a062011-01-26 13:11:03 +0200864 if (!test_bit(HCI_MGMT, &hdev->flags))
865 set_bit(HCI_PAIRABLE, &hdev->flags);
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 strcpy(di.name, hdev->name);
868 di.bdaddr = hdev->bdaddr;
Marcel Holtmann943da252010-02-13 02:28:41 +0100869 di.type = (hdev->bus & 0x0f) | (hdev->dev_type << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 di.flags = hdev->flags;
871 di.pkt_type = hdev->pkt_type;
872 di.acl_mtu = hdev->acl_mtu;
873 di.acl_pkts = hdev->acl_pkts;
874 di.sco_mtu = hdev->sco_mtu;
875 di.sco_pkts = hdev->sco_pkts;
876 di.link_policy = hdev->link_policy;
877 di.link_mode = hdev->link_mode;
878
879 memcpy(&di.stat, &hdev->stat, sizeof(di.stat));
880 memcpy(&di.features, &hdev->features, sizeof(di.features));
881
882 if (copy_to_user(arg, &di, sizeof(di)))
883 err = -EFAULT;
884
885 hci_dev_put(hdev);
886
887 return err;
888}
889
890/* ---- Interface to HCI drivers ---- */
891
Marcel Holtmann611b30f2009-06-08 14:41:38 +0200892static int hci_rfkill_set_block(void *data, bool blocked)
893{
894 struct hci_dev *hdev = data;
895
896 BT_DBG("%p name %s blocked %d", hdev, hdev->name, blocked);
897
898 if (!blocked)
899 return 0;
900
901 hci_dev_do_close(hdev);
902
903 return 0;
904}
905
906static const struct rfkill_ops hci_rfkill_ops = {
907 .set_block = hci_rfkill_set_block,
908};
909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910/* Alloc HCI device */
911struct hci_dev *hci_alloc_dev(void)
912{
913 struct hci_dev *hdev;
914
Marcel Holtmann25ea6db2006-07-06 15:40:09 +0200915 hdev = kzalloc(sizeof(struct hci_dev), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (!hdev)
917 return NULL;
918
David Herrmann0ac7e702011-10-08 14:58:47 +0200919 hci_init_sysfs(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 skb_queue_head_init(&hdev->driver_init);
921
922 return hdev;
923}
924EXPORT_SYMBOL(hci_alloc_dev);
925
926/* Free HCI device */
927void hci_free_dev(struct hci_dev *hdev)
928{
929 skb_queue_purge(&hdev->driver_init);
930
Marcel Holtmanna91f2e32006-07-03 10:02:41 +0200931 /* will free via device release */
932 put_device(&hdev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933}
934EXPORT_SYMBOL(hci_free_dev);
935
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200936static void hci_power_on(struct work_struct *work)
937{
938 struct hci_dev *hdev = container_of(work, struct hci_dev, power_on);
939
940 BT_DBG("%s", hdev->name);
941
942 if (hci_dev_open(hdev->id) < 0)
943 return;
944
945 if (test_bit(HCI_AUTO_OFF, &hdev->flags))
Johan Hedberg32435532011-11-07 22:16:04 +0200946 queue_delayed_work(hdev->workqueue, &hdev->power_off,
947 msecs_to_jiffies(AUTO_OFF_TIMEOUT));
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200948
949 if (test_and_clear_bit(HCI_SETUP, &hdev->flags))
Johan Hedberg744cf192011-11-08 20:40:14 +0200950 mgmt_index_added(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200951}
952
953static void hci_power_off(struct work_struct *work)
954{
Johan Hedberg32435532011-11-07 22:16:04 +0200955 struct hci_dev *hdev = container_of(work, struct hci_dev,
956 power_off.work);
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200957
958 BT_DBG("%s", hdev->name);
959
Johan Hedberg32435532011-11-07 22:16:04 +0200960 clear_bit(HCI_AUTO_OFF, &hdev->flags);
961
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200962 hci_dev_close(hdev->id);
963}
964
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200965static void hci_discov_off(struct work_struct *work)
966{
967 struct hci_dev *hdev;
968 u8 scan = SCAN_PAGE;
969
970 hdev = container_of(work, struct hci_dev, discov_off.work);
971
972 BT_DBG("%s", hdev->name);
973
974 hci_dev_lock_bh(hdev);
975
976 hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
977
978 hdev->discov_timeout = 0;
979
980 hci_dev_unlock_bh(hdev);
981}
982
Johan Hedberg2aeb9a12011-01-04 12:08:51 +0200983int hci_uuids_clear(struct hci_dev *hdev)
984{
985 struct list_head *p, *n;
986
987 list_for_each_safe(p, n, &hdev->uuids) {
988 struct bt_uuid *uuid;
989
990 uuid = list_entry(p, struct bt_uuid, list);
991
992 list_del(p);
993 kfree(uuid);
994 }
995
996 return 0;
997}
998
Johan Hedberg55ed8ca12011-01-17 14:41:05 +0200999int hci_link_keys_clear(struct hci_dev *hdev)
1000{
1001 struct list_head *p, *n;
1002
1003 list_for_each_safe(p, n, &hdev->link_keys) {
1004 struct link_key *key;
1005
1006 key = list_entry(p, struct link_key, list);
1007
1008 list_del(p);
1009 kfree(key);
1010 }
1011
1012 return 0;
1013}
1014
1015struct link_key *hci_find_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
1016{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001017 struct link_key *k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001018
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001019 list_for_each_entry(k, &hdev->link_keys, list)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001020 if (bacmp(bdaddr, &k->bdaddr) == 0)
1021 return k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001022
1023 return NULL;
1024}
1025
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001026static int hci_persistent_key(struct hci_dev *hdev, struct hci_conn *conn,
1027 u8 key_type, u8 old_key_type)
1028{
1029 /* Legacy key */
1030 if (key_type < 0x03)
1031 return 1;
1032
1033 /* Debug keys are insecure so don't store them persistently */
1034 if (key_type == HCI_LK_DEBUG_COMBINATION)
1035 return 0;
1036
1037 /* Changed combination key and there's no previous one */
1038 if (key_type == HCI_LK_CHANGED_COMBINATION && old_key_type == 0xff)
1039 return 0;
1040
1041 /* Security mode 3 case */
1042 if (!conn)
1043 return 1;
1044
1045 /* Neither local nor remote side had no-bonding as requirement */
1046 if (conn->auth_type > 0x01 && conn->remote_auth > 0x01)
1047 return 1;
1048
1049 /* Local side had dedicated bonding as requirement */
1050 if (conn->auth_type == 0x02 || conn->auth_type == 0x03)
1051 return 1;
1052
1053 /* Remote side had dedicated bonding as requirement */
1054 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03)
1055 return 1;
1056
1057 /* If none of the above criteria match, then don't store the key
1058 * persistently */
1059 return 0;
1060}
1061
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001062struct link_key *hci_find_ltk(struct hci_dev *hdev, __le16 ediv, u8 rand[8])
1063{
1064 struct link_key *k;
1065
1066 list_for_each_entry(k, &hdev->link_keys, list) {
1067 struct key_master_id *id;
1068
1069 if (k->type != HCI_LK_SMP_LTK)
1070 continue;
1071
1072 if (k->dlen != sizeof(*id))
1073 continue;
1074
1075 id = (void *) &k->data;
1076 if (id->ediv == ediv &&
1077 (memcmp(rand, id->rand, sizeof(id->rand)) == 0))
1078 return k;
1079 }
1080
1081 return NULL;
1082}
1083EXPORT_SYMBOL(hci_find_ltk);
1084
1085struct link_key *hci_find_link_key_type(struct hci_dev *hdev,
1086 bdaddr_t *bdaddr, u8 type)
1087{
1088 struct link_key *k;
1089
1090 list_for_each_entry(k, &hdev->link_keys, list)
1091 if (k->type == type && bacmp(bdaddr, &k->bdaddr) == 0)
1092 return k;
1093
1094 return NULL;
1095}
1096EXPORT_SYMBOL(hci_find_link_key_type);
1097
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001098int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key,
1099 bdaddr_t *bdaddr, u8 *val, u8 type, u8 pin_len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001100{
1101 struct link_key *key, *old_key;
Johan Hedberg4df378a2011-04-28 11:29:03 -07001102 u8 old_key_type, persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001103
1104 old_key = hci_find_link_key(hdev, bdaddr);
1105 if (old_key) {
1106 old_key_type = old_key->type;
1107 key = old_key;
1108 } else {
Johan Hedberg12adcf32011-04-28 11:29:00 -07001109 old_key_type = conn ? conn->key_type : 0xff;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001110 key = kzalloc(sizeof(*key), GFP_ATOMIC);
1111 if (!key)
1112 return -ENOMEM;
1113 list_add(&key->list, &hdev->link_keys);
1114 }
1115
1116 BT_DBG("%s key for %s type %u", hdev->name, batostr(bdaddr), type);
1117
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001118 /* Some buggy controller combinations generate a changed
1119 * combination key for legacy pairing even when there's no
1120 * previous key */
1121 if (type == HCI_LK_CHANGED_COMBINATION &&
1122 (!conn || conn->remote_auth == 0xff) &&
Johan Hedberg655fe6e2011-04-28 11:29:01 -07001123 old_key_type == 0xff) {
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001124 type = HCI_LK_COMBINATION;
Johan Hedberg655fe6e2011-04-28 11:29:01 -07001125 if (conn)
1126 conn->key_type = type;
1127 }
Johan Hedbergd25e28a2011-04-28 11:28:59 -07001128
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001129 bacpy(&key->bdaddr, bdaddr);
1130 memcpy(key->val, val, 16);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001131 key->pin_len = pin_len;
1132
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +02001133 if (type == HCI_LK_CHANGED_COMBINATION)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001134 key->type = old_key_type;
Johan Hedberg4748fed2011-04-28 11:29:02 -07001135 else
1136 key->type = type;
1137
Johan Hedberg4df378a2011-04-28 11:29:03 -07001138 if (!new_key)
1139 return 0;
1140
1141 persistent = hci_persistent_key(hdev, conn, type, old_key_type);
1142
Johan Hedberg744cf192011-11-08 20:40:14 +02001143 mgmt_new_link_key(hdev, key, persistent);
Johan Hedberg4df378a2011-04-28 11:29:03 -07001144
1145 if (!persistent) {
1146 list_del(&key->list);
1147 kfree(key);
1148 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001149
1150 return 0;
1151}
1152
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001153int hci_add_ltk(struct hci_dev *hdev, int new_key, bdaddr_t *bdaddr,
Vinicius Costa Gomes726b4ff2011-07-08 18:31:45 -03001154 u8 key_size, __le16 ediv, u8 rand[8], u8 ltk[16])
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001155{
1156 struct link_key *key, *old_key;
1157 struct key_master_id *id;
1158 u8 old_key_type;
1159
1160 BT_DBG("%s addr %s", hdev->name, batostr(bdaddr));
1161
1162 old_key = hci_find_link_key_type(hdev, bdaddr, HCI_LK_SMP_LTK);
1163 if (old_key) {
1164 key = old_key;
1165 old_key_type = old_key->type;
1166 } else {
1167 key = kzalloc(sizeof(*key) + sizeof(*id), GFP_ATOMIC);
1168 if (!key)
1169 return -ENOMEM;
1170 list_add(&key->list, &hdev->link_keys);
1171 old_key_type = 0xff;
1172 }
1173
1174 key->dlen = sizeof(*id);
1175
1176 bacpy(&key->bdaddr, bdaddr);
1177 memcpy(key->val, ltk, sizeof(key->val));
1178 key->type = HCI_LK_SMP_LTK;
Vinicius Costa Gomes726b4ff2011-07-08 18:31:45 -03001179 key->pin_len = key_size;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001180
1181 id = (void *) &key->data;
1182 id->ediv = ediv;
1183 memcpy(id->rand, rand, sizeof(id->rand));
1184
1185 if (new_key)
Johan Hedberg744cf192011-11-08 20:40:14 +02001186 mgmt_new_link_key(hdev, key, old_key_type);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03001187
1188 return 0;
1189}
1190
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001191int hci_remove_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
1192{
1193 struct link_key *key;
1194
1195 key = hci_find_link_key(hdev, bdaddr);
1196 if (!key)
1197 return -ENOENT;
1198
1199 BT_DBG("%s removing %s", hdev->name, batostr(bdaddr));
1200
1201 list_del(&key->list);
1202 kfree(key);
1203
1204 return 0;
1205}
1206
Ville Tervo6bd32322011-02-16 16:32:41 +02001207/* HCI command timer function */
1208static void hci_cmd_timer(unsigned long arg)
1209{
1210 struct hci_dev *hdev = (void *) arg;
1211
1212 BT_ERR("%s command tx timeout", hdev->name);
1213 atomic_set(&hdev->cmd_cnt, 1);
1214 tasklet_schedule(&hdev->cmd_task);
1215}
1216
Szymon Janc2763eda2011-03-22 13:12:22 +01001217struct oob_data *hci_find_remote_oob_data(struct hci_dev *hdev,
1218 bdaddr_t *bdaddr)
1219{
1220 struct oob_data *data;
1221
1222 list_for_each_entry(data, &hdev->remote_oob_data, list)
1223 if (bacmp(bdaddr, &data->bdaddr) == 0)
1224 return data;
1225
1226 return NULL;
1227}
1228
1229int hci_remove_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr)
1230{
1231 struct oob_data *data;
1232
1233 data = hci_find_remote_oob_data(hdev, bdaddr);
1234 if (!data)
1235 return -ENOENT;
1236
1237 BT_DBG("%s removing %s", hdev->name, batostr(bdaddr));
1238
1239 list_del(&data->list);
1240 kfree(data);
1241
1242 return 0;
1243}
1244
1245int hci_remote_oob_data_clear(struct hci_dev *hdev)
1246{
1247 struct oob_data *data, *n;
1248
1249 list_for_each_entry_safe(data, n, &hdev->remote_oob_data, list) {
1250 list_del(&data->list);
1251 kfree(data);
1252 }
1253
1254 return 0;
1255}
1256
1257int hci_add_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *hash,
1258 u8 *randomizer)
1259{
1260 struct oob_data *data;
1261
1262 data = hci_find_remote_oob_data(hdev, bdaddr);
1263
1264 if (!data) {
1265 data = kmalloc(sizeof(*data), GFP_ATOMIC);
1266 if (!data)
1267 return -ENOMEM;
1268
1269 bacpy(&data->bdaddr, bdaddr);
1270 list_add(&data->list, &hdev->remote_oob_data);
1271 }
1272
1273 memcpy(data->hash, hash, sizeof(data->hash));
1274 memcpy(data->randomizer, randomizer, sizeof(data->randomizer));
1275
1276 BT_DBG("%s for %s", hdev->name, batostr(bdaddr));
1277
1278 return 0;
1279}
1280
Antti Julkub2a66aa2011-06-15 12:01:14 +03001281struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev,
1282 bdaddr_t *bdaddr)
1283{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001284 struct bdaddr_list *b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001285
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001286 list_for_each_entry(b, &hdev->blacklist, list)
Antti Julkub2a66aa2011-06-15 12:01:14 +03001287 if (bacmp(bdaddr, &b->bdaddr) == 0)
1288 return b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001289
1290 return NULL;
1291}
1292
1293int hci_blacklist_clear(struct hci_dev *hdev)
1294{
1295 struct list_head *p, *n;
1296
1297 list_for_each_safe(p, n, &hdev->blacklist) {
1298 struct bdaddr_list *b;
1299
1300 b = list_entry(p, struct bdaddr_list, list);
1301
1302 list_del(p);
1303 kfree(b);
1304 }
1305
1306 return 0;
1307}
1308
1309int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr)
1310{
1311 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001312
1313 if (bacmp(bdaddr, BDADDR_ANY) == 0)
1314 return -EBADF;
1315
Antti Julku5e762442011-08-25 16:48:02 +03001316 if (hci_blacklist_lookup(hdev, bdaddr))
1317 return -EEXIST;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001318
1319 entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL);
Antti Julku5e762442011-08-25 16:48:02 +03001320 if (!entry)
1321 return -ENOMEM;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001322
1323 bacpy(&entry->bdaddr, bdaddr);
1324
1325 list_add(&entry->list, &hdev->blacklist);
1326
Johan Hedberg744cf192011-11-08 20:40:14 +02001327 return mgmt_device_blocked(hdev, bdaddr);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001328}
1329
1330int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr)
1331{
1332 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03001333
Gustavo F. Padovana7925bd2011-06-17 16:15:10 -03001334 if (bacmp(bdaddr, BDADDR_ANY) == 0) {
Antti Julku5e762442011-08-25 16:48:02 +03001335 return hci_blacklist_clear(hdev);
Gustavo F. Padovana7925bd2011-06-17 16:15:10 -03001336 }
Antti Julkub2a66aa2011-06-15 12:01:14 +03001337
1338 entry = hci_blacklist_lookup(hdev, bdaddr);
Gustavo F. Padovana7925bd2011-06-17 16:15:10 -03001339 if (!entry) {
Antti Julku5e762442011-08-25 16:48:02 +03001340 return -ENOENT;
Gustavo F. Padovana7925bd2011-06-17 16:15:10 -03001341 }
Antti Julkub2a66aa2011-06-15 12:01:14 +03001342
1343 list_del(&entry->list);
1344 kfree(entry);
1345
Johan Hedberg744cf192011-11-08 20:40:14 +02001346 return mgmt_device_unblocked(hdev, bdaddr);
Antti Julkub2a66aa2011-06-15 12:01:14 +03001347}
1348
Andre Guedes35815082011-05-26 16:23:53 -03001349static void hci_clear_adv_cache(unsigned long arg)
1350{
1351 struct hci_dev *hdev = (void *) arg;
1352
1353 hci_dev_lock(hdev);
1354
1355 hci_adv_entries_clear(hdev);
1356
1357 hci_dev_unlock(hdev);
1358}
1359
Andre Guedes76c86862011-05-26 16:23:50 -03001360int hci_adv_entries_clear(struct hci_dev *hdev)
1361{
1362 struct adv_entry *entry, *tmp;
1363
1364 list_for_each_entry_safe(entry, tmp, &hdev->adv_entries, list) {
1365 list_del(&entry->list);
1366 kfree(entry);
1367 }
1368
1369 BT_DBG("%s adv cache cleared", hdev->name);
1370
1371 return 0;
1372}
1373
1374struct adv_entry *hci_find_adv_entry(struct hci_dev *hdev, bdaddr_t *bdaddr)
1375{
1376 struct adv_entry *entry;
1377
1378 list_for_each_entry(entry, &hdev->adv_entries, list)
1379 if (bacmp(bdaddr, &entry->bdaddr) == 0)
1380 return entry;
1381
1382 return NULL;
1383}
1384
1385static inline int is_connectable_adv(u8 evt_type)
1386{
1387 if (evt_type == ADV_IND || evt_type == ADV_DIRECT_IND)
1388 return 1;
1389
1390 return 0;
1391}
1392
1393int hci_add_adv_entry(struct hci_dev *hdev,
1394 struct hci_ev_le_advertising_info *ev)
1395{
1396 struct adv_entry *entry;
1397
1398 if (!is_connectable_adv(ev->evt_type))
1399 return -EINVAL;
1400
1401 /* Only new entries should be added to adv_entries. So, if
1402 * bdaddr was found, don't add it. */
1403 if (hci_find_adv_entry(hdev, &ev->bdaddr))
1404 return 0;
1405
1406 entry = kzalloc(sizeof(*entry), GFP_ATOMIC);
1407 if (!entry)
1408 return -ENOMEM;
1409
1410 bacpy(&entry->bdaddr, &ev->bdaddr);
1411 entry->bdaddr_type = ev->bdaddr_type;
1412
1413 list_add(&entry->list, &hdev->adv_entries);
1414
1415 BT_DBG("%s adv entry added: address %s type %u", hdev->name,
1416 batostr(&entry->bdaddr), entry->bdaddr_type);
1417
1418 return 0;
1419}
1420
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421/* Register HCI device */
1422int hci_register_dev(struct hci_dev *hdev)
1423{
1424 struct list_head *head = &hci_dev_list, *p;
Mat Martineau08add512011-11-02 16:18:36 -07001425 int i, id, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Marcel Holtmannc13854c2010-02-08 15:27:07 +01001427 BT_DBG("%p name %s bus %d owner %p", hdev, hdev->name,
1428 hdev->bus, hdev->owner);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 if (!hdev->open || !hdev->close || !hdev->destruct)
1431 return -EINVAL;
1432
Mat Martineau08add512011-11-02 16:18:36 -07001433 /* Do not allow HCI_AMP devices to register at index 0,
1434 * so the index can be used as the AMP controller ID.
1435 */
1436 id = (hdev->dev_type == HCI_BREDR) ? 0 : 1;
1437
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 write_lock_bh(&hci_dev_list_lock);
1439
1440 /* Find first available device id */
1441 list_for_each(p, &hci_dev_list) {
1442 if (list_entry(p, struct hci_dev, list)->id != id)
1443 break;
1444 head = p; id++;
1445 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001446
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 sprintf(hdev->name, "hci%d", id);
1448 hdev->id = id;
1449 list_add(&hdev->list, head);
1450
1451 atomic_set(&hdev->refcnt, 1);
1452 spin_lock_init(&hdev->lock);
1453
1454 hdev->flags = 0;
1455 hdev->pkt_type = (HCI_DM1 | HCI_DH1 | HCI_HV1);
Marcel Holtmann5b7f9902007-07-11 09:51:55 +02001456 hdev->esco_type = (ESCO_HV1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 hdev->link_mode = (HCI_LM_ACCEPT);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02001458 hdev->io_capability = 0x03; /* No Input No Output */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
Marcel Holtmann04837f62006-07-03 10:02:33 +02001460 hdev->idle_timeout = 0;
1461 hdev->sniff_max_interval = 800;
1462 hdev->sniff_min_interval = 80;
1463
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001464 tasklet_init(&hdev->cmd_task, hci_cmd_task, (unsigned long) hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 tasklet_init(&hdev->rx_task, hci_rx_task, (unsigned long) hdev);
1466 tasklet_init(&hdev->tx_task, hci_tx_task, (unsigned long) hdev);
1467
1468 skb_queue_head_init(&hdev->rx_q);
1469 skb_queue_head_init(&hdev->cmd_q);
1470 skb_queue_head_init(&hdev->raw_q);
1471
Ville Tervo6bd32322011-02-16 16:32:41 +02001472 setup_timer(&hdev->cmd_timer, hci_cmd_timer, (unsigned long) hdev);
1473
Suraj Sumangalacd4c5392010-07-14 13:02:16 +05301474 for (i = 0; i < NUM_REASSEMBLY; i++)
Marcel Holtmannef222012007-07-11 06:42:04 +02001475 hdev->reassembly[i] = NULL;
1476
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 init_waitqueue_head(&hdev->req_wait_q);
Thomas Gleixnera6a67ef2009-07-26 08:18:19 +00001478 mutex_init(&hdev->req_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 inquiry_cache_init(hdev);
1481
1482 hci_conn_hash_init(hdev);
1483
David Millerea4bd8b2010-07-30 21:54:49 -07001484 INIT_LIST_HEAD(&hdev->blacklist);
Johan Hedbergf0358562010-05-18 13:20:32 +02001485
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001486 INIT_LIST_HEAD(&hdev->uuids);
1487
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001488 INIT_LIST_HEAD(&hdev->link_keys);
1489
Szymon Janc2763eda2011-03-22 13:12:22 +01001490 INIT_LIST_HEAD(&hdev->remote_oob_data);
1491
Andre Guedes76c86862011-05-26 16:23:50 -03001492 INIT_LIST_HEAD(&hdev->adv_entries);
Andre Guedes35815082011-05-26 16:23:53 -03001493 setup_timer(&hdev->adv_timer, hci_clear_adv_cache,
1494 (unsigned long) hdev);
Andre Guedes76c86862011-05-26 16:23:50 -03001495
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001496 INIT_WORK(&hdev->power_on, hci_power_on);
Johan Hedberg32435532011-11-07 22:16:04 +02001497 INIT_DELAYED_WORK(&hdev->power_off, hci_power_off);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001498
Johan Hedberg16ab91a2011-11-07 22:16:02 +02001499 INIT_DELAYED_WORK(&hdev->discov_off, hci_discov_off);
1500
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 memset(&hdev->stat, 0, sizeof(struct hci_dev_stats));
1502
1503 atomic_set(&hdev->promisc, 0);
1504
1505 write_unlock_bh(&hci_dev_list_lock);
1506
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001507 hdev->workqueue = create_singlethread_workqueue(hdev->name);
David Herrmann33ca9542011-10-08 14:58:49 +02001508 if (!hdev->workqueue) {
1509 error = -ENOMEM;
1510 goto err;
1511 }
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001512
David Herrmann33ca9542011-10-08 14:58:49 +02001513 error = hci_add_sysfs(hdev);
1514 if (error < 0)
1515 goto err_wqueue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001517 hdev->rfkill = rfkill_alloc(hdev->name, &hdev->dev,
1518 RFKILL_TYPE_BLUETOOTH, &hci_rfkill_ops, hdev);
1519 if (hdev->rfkill) {
1520 if (rfkill_register(hdev->rfkill) < 0) {
1521 rfkill_destroy(hdev->rfkill);
1522 hdev->rfkill = NULL;
1523 }
1524 }
1525
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001526 set_bit(HCI_AUTO_OFF, &hdev->flags);
1527 set_bit(HCI_SETUP, &hdev->flags);
1528 queue_work(hdev->workqueue, &hdev->power_on);
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 hci_notify(hdev, HCI_DEV_REG);
1531
1532 return id;
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001533
David Herrmann33ca9542011-10-08 14:58:49 +02001534err_wqueue:
1535 destroy_workqueue(hdev->workqueue);
1536err:
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001537 write_lock_bh(&hci_dev_list_lock);
1538 list_del(&hdev->list);
1539 write_unlock_bh(&hci_dev_list_lock);
1540
David Herrmann33ca9542011-10-08 14:58:49 +02001541 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542}
1543EXPORT_SYMBOL(hci_register_dev);
1544
1545/* Unregister HCI device */
David Herrmann59735632011-10-26 10:43:19 +02001546void hci_unregister_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547{
Marcel Holtmannef222012007-07-11 06:42:04 +02001548 int i;
1549
Marcel Holtmannc13854c2010-02-08 15:27:07 +01001550 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 write_lock_bh(&hci_dev_list_lock);
1553 list_del(&hdev->list);
1554 write_unlock_bh(&hci_dev_list_lock);
1555
1556 hci_dev_do_close(hdev);
1557
Suraj Sumangalacd4c5392010-07-14 13:02:16 +05301558 for (i = 0; i < NUM_REASSEMBLY; i++)
Marcel Holtmannef222012007-07-11 06:42:04 +02001559 kfree_skb(hdev->reassembly[i]);
1560
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001561 if (!test_bit(HCI_INIT, &hdev->flags) &&
1562 !test_bit(HCI_SETUP, &hdev->flags))
Johan Hedberg744cf192011-11-08 20:40:14 +02001563 mgmt_index_removed(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02001564
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 hci_notify(hdev, HCI_DEV_UNREG);
1566
Marcel Holtmann611b30f2009-06-08 14:41:38 +02001567 if (hdev->rfkill) {
1568 rfkill_unregister(hdev->rfkill);
1569 rfkill_destroy(hdev->rfkill);
1570 }
1571
David Herrmannce242972011-10-08 14:58:48 +02001572 hci_del_sysfs(hdev);
Dave Young147e2d52008-03-05 18:45:59 -08001573
Andre Guedes35815082011-05-26 16:23:53 -03001574 del_timer(&hdev->adv_timer);
Gustavo F. Padovanc6f3c5f2011-02-15 20:22:03 -03001575
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01001576 destroy_workqueue(hdev->workqueue);
1577
Johan Hedberge2e0cac2011-01-04 12:08:50 +02001578 hci_dev_lock_bh(hdev);
1579 hci_blacklist_clear(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02001580 hci_uuids_clear(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02001581 hci_link_keys_clear(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01001582 hci_remote_oob_data_clear(hdev);
Andre Guedes76c86862011-05-26 16:23:50 -03001583 hci_adv_entries_clear(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02001584 hci_dev_unlock_bh(hdev);
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 __hci_dev_put(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587}
1588EXPORT_SYMBOL(hci_unregister_dev);
1589
1590/* Suspend HCI device */
1591int hci_suspend_dev(struct hci_dev *hdev)
1592{
1593 hci_notify(hdev, HCI_DEV_SUSPEND);
1594 return 0;
1595}
1596EXPORT_SYMBOL(hci_suspend_dev);
1597
1598/* Resume HCI device */
1599int hci_resume_dev(struct hci_dev *hdev)
1600{
1601 hci_notify(hdev, HCI_DEV_RESUME);
1602 return 0;
1603}
1604EXPORT_SYMBOL(hci_resume_dev);
1605
Marcel Holtmann76bca882009-11-18 00:40:39 +01001606/* Receive frame from HCI drivers */
1607int hci_recv_frame(struct sk_buff *skb)
1608{
1609 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
1610 if (!hdev || (!test_bit(HCI_UP, &hdev->flags)
1611 && !test_bit(HCI_INIT, &hdev->flags))) {
1612 kfree_skb(skb);
1613 return -ENXIO;
1614 }
1615
1616 /* Incomming skb */
1617 bt_cb(skb)->incoming = 1;
1618
1619 /* Time stamp */
1620 __net_timestamp(skb);
1621
1622 /* Queue frame for rx task */
1623 skb_queue_tail(&hdev->rx_q, skb);
Marcel Holtmannc78ae282009-11-18 01:02:54 +01001624 tasklet_schedule(&hdev->rx_task);
1625
Marcel Holtmann76bca882009-11-18 00:40:39 +01001626 return 0;
1627}
1628EXPORT_SYMBOL(hci_recv_frame);
1629
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301630static int hci_reassembly(struct hci_dev *hdev, int type, void *data,
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03001631 int count, __u8 index)
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301632{
1633 int len = 0;
1634 int hlen = 0;
1635 int remain = count;
1636 struct sk_buff *skb;
1637 struct bt_skb_cb *scb;
1638
1639 if ((type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT) ||
1640 index >= NUM_REASSEMBLY)
1641 return -EILSEQ;
1642
1643 skb = hdev->reassembly[index];
1644
1645 if (!skb) {
1646 switch (type) {
1647 case HCI_ACLDATA_PKT:
1648 len = HCI_MAX_FRAME_SIZE;
1649 hlen = HCI_ACL_HDR_SIZE;
1650 break;
1651 case HCI_EVENT_PKT:
1652 len = HCI_MAX_EVENT_SIZE;
1653 hlen = HCI_EVENT_HDR_SIZE;
1654 break;
1655 case HCI_SCODATA_PKT:
1656 len = HCI_MAX_SCO_SIZE;
1657 hlen = HCI_SCO_HDR_SIZE;
1658 break;
1659 }
1660
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03001661 skb = bt_skb_alloc(len, GFP_ATOMIC);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05301662 if (!skb)
1663 return -ENOMEM;
1664
1665 scb = (void *) skb->cb;
1666 scb->expect = hlen;
1667 scb->pkt_type = type;
1668
1669 skb->dev = (void *) hdev;
1670 hdev->reassembly[index] = skb;
1671 }
1672
1673 while (count) {
1674 scb = (void *) skb->cb;
1675 len = min(scb->expect, (__u16)count);
1676
1677 memcpy(skb_put(skb, len), data, len);
1678
1679 count -= len;
1680 data += len;
1681 scb->expect -= len;
1682 remain = count;
1683
1684 switch (type) {
1685 case HCI_EVENT_PKT:
1686 if (skb->len == HCI_EVENT_HDR_SIZE) {
1687 struct hci_event_hdr *h = hci_event_hdr(skb);
1688 scb->expect = h->plen;
1689
1690 if (skb_tailroom(skb) < scb->expect) {
1691 kfree_skb(skb);
1692 hdev->reassembly[index] = NULL;
1693 return -ENOMEM;
1694 }
1695 }
1696 break;
1697
1698 case HCI_ACLDATA_PKT:
1699 if (skb->len == HCI_ACL_HDR_SIZE) {
1700 struct hci_acl_hdr *h = hci_acl_hdr(skb);
1701 scb->expect = __le16_to_cpu(h->dlen);
1702
1703 if (skb_tailroom(skb) < scb->expect) {
1704 kfree_skb(skb);
1705 hdev->reassembly[index] = NULL;
1706 return -ENOMEM;
1707 }
1708 }
1709 break;
1710
1711 case HCI_SCODATA_PKT:
1712 if (skb->len == HCI_SCO_HDR_SIZE) {
1713 struct hci_sco_hdr *h = hci_sco_hdr(skb);
1714 scb->expect = h->dlen;
1715
1716 if (skb_tailroom(skb) < scb->expect) {
1717 kfree_skb(skb);
1718 hdev->reassembly[index] = NULL;
1719 return -ENOMEM;
1720 }
1721 }
1722 break;
1723 }
1724
1725 if (scb->expect == 0) {
1726 /* Complete frame */
1727
1728 bt_cb(skb)->pkt_type = type;
1729 hci_recv_frame(skb);
1730
1731 hdev->reassembly[index] = NULL;
1732 return remain;
1733 }
1734 }
1735
1736 return remain;
1737}
1738
Marcel Holtmannef222012007-07-11 06:42:04 +02001739int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count)
1740{
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05301741 int rem = 0;
1742
Marcel Holtmannef222012007-07-11 06:42:04 +02001743 if (type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT)
1744 return -EILSEQ;
1745
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03001746 while (count) {
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03001747 rem = hci_reassembly(hdev, type, data, count, type - 1);
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05301748 if (rem < 0)
1749 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02001750
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05301751 data += (count - rem);
1752 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00001753 }
Marcel Holtmannef222012007-07-11 06:42:04 +02001754
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05301755 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02001756}
1757EXPORT_SYMBOL(hci_recv_fragment);
1758
Suraj Sumangala99811512010-07-14 13:02:19 +05301759#define STREAM_REASSEMBLY 0
1760
1761int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count)
1762{
1763 int type;
1764 int rem = 0;
1765
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03001766 while (count) {
Suraj Sumangala99811512010-07-14 13:02:19 +05301767 struct sk_buff *skb = hdev->reassembly[STREAM_REASSEMBLY];
1768
1769 if (!skb) {
1770 struct { char type; } *pkt;
1771
1772 /* Start of the frame */
1773 pkt = data;
1774 type = pkt->type;
1775
1776 data++;
1777 count--;
1778 } else
1779 type = bt_cb(skb)->pkt_type;
1780
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03001781 rem = hci_reassembly(hdev, type, data, count,
1782 STREAM_REASSEMBLY);
Suraj Sumangala99811512010-07-14 13:02:19 +05301783 if (rem < 0)
1784 return rem;
1785
1786 data += (count - rem);
1787 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00001788 }
Suraj Sumangala99811512010-07-14 13:02:19 +05301789
1790 return rem;
1791}
1792EXPORT_SYMBOL(hci_recv_stream_fragment);
1793
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794/* ---- Interface to upper protocols ---- */
1795
1796/* Register/Unregister protocols.
1797 * hci_task_lock is used to ensure that no tasks are running. */
1798int hci_register_proto(struct hci_proto *hp)
1799{
1800 int err = 0;
1801
1802 BT_DBG("%p name %s id %d", hp, hp->name, hp->id);
1803
1804 if (hp->id >= HCI_MAX_PROTO)
1805 return -EINVAL;
1806
1807 write_lock_bh(&hci_task_lock);
1808
1809 if (!hci_proto[hp->id])
1810 hci_proto[hp->id] = hp;
1811 else
1812 err = -EEXIST;
1813
1814 write_unlock_bh(&hci_task_lock);
1815
1816 return err;
1817}
1818EXPORT_SYMBOL(hci_register_proto);
1819
1820int hci_unregister_proto(struct hci_proto *hp)
1821{
1822 int err = 0;
1823
1824 BT_DBG("%p name %s id %d", hp, hp->name, hp->id);
1825
1826 if (hp->id >= HCI_MAX_PROTO)
1827 return -EINVAL;
1828
1829 write_lock_bh(&hci_task_lock);
1830
1831 if (hci_proto[hp->id])
1832 hci_proto[hp->id] = NULL;
1833 else
1834 err = -ENOENT;
1835
1836 write_unlock_bh(&hci_task_lock);
1837
1838 return err;
1839}
1840EXPORT_SYMBOL(hci_unregister_proto);
1841
1842int hci_register_cb(struct hci_cb *cb)
1843{
1844 BT_DBG("%p name %s", cb, cb->name);
1845
1846 write_lock_bh(&hci_cb_list_lock);
1847 list_add(&cb->list, &hci_cb_list);
1848 write_unlock_bh(&hci_cb_list_lock);
1849
1850 return 0;
1851}
1852EXPORT_SYMBOL(hci_register_cb);
1853
1854int hci_unregister_cb(struct hci_cb *cb)
1855{
1856 BT_DBG("%p name %s", cb, cb->name);
1857
1858 write_lock_bh(&hci_cb_list_lock);
1859 list_del(&cb->list);
1860 write_unlock_bh(&hci_cb_list_lock);
1861
1862 return 0;
1863}
1864EXPORT_SYMBOL(hci_unregister_cb);
1865
1866static int hci_send_frame(struct sk_buff *skb)
1867{
1868 struct hci_dev *hdev = (struct hci_dev *) skb->dev;
1869
1870 if (!hdev) {
1871 kfree_skb(skb);
1872 return -ENODEV;
1873 }
1874
Marcel Holtmann0d48d932005-08-09 20:30:28 -07001875 BT_DBG("%s type %d len %d", hdev->name, bt_cb(skb)->pkt_type, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876
1877 if (atomic_read(&hdev->promisc)) {
1878 /* Time stamp */
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001879 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001881 hci_send_to_sock(hdev, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
1883
1884 /* Get rid of skb owner, prior to sending to the driver. */
1885 skb_orphan(skb);
1886
1887 return hdev->send(skb);
1888}
1889
1890/* Send HCI command */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001891int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, void *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892{
1893 int len = HCI_COMMAND_HDR_SIZE + plen;
1894 struct hci_command_hdr *hdr;
1895 struct sk_buff *skb;
1896
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001897 BT_DBG("%s opcode 0x%x plen %d", hdev->name, opcode, plen);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001898
1899 skb = bt_skb_alloc(len, GFP_ATOMIC);
1900 if (!skb) {
Marcel Holtmannef222012007-07-11 06:42:04 +02001901 BT_ERR("%s no memory for command", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 return -ENOMEM;
1903 }
1904
1905 hdr = (struct hci_command_hdr *) skb_put(skb, HCI_COMMAND_HDR_SIZE);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001906 hdr->opcode = cpu_to_le16(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 hdr->plen = plen;
1908
1909 if (plen)
1910 memcpy(skb_put(skb, plen), param, plen);
1911
1912 BT_DBG("skb len %d", skb->len);
1913
Marcel Holtmann0d48d932005-08-09 20:30:28 -07001914 bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 skb->dev = (void *) hdev;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01001916
Johan Hedberga5040ef2011-01-10 13:28:59 +02001917 if (test_bit(HCI_INIT, &hdev->flags))
1918 hdev->init_last_cmd = opcode;
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 skb_queue_tail(&hdev->cmd_q, skb);
Marcel Holtmannc78ae282009-11-18 01:02:54 +01001921 tasklet_schedule(&hdev->cmd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922
1923 return 0;
1924}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925
1926/* Get data from the previously sent command */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001927void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928{
1929 struct hci_command_hdr *hdr;
1930
1931 if (!hdev->sent_cmd)
1932 return NULL;
1933
1934 hdr = (void *) hdev->sent_cmd->data;
1935
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001936 if (hdr->opcode != cpu_to_le16(opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 return NULL;
1938
Marcel Holtmanna9de9242007-10-20 13:33:56 +02001939 BT_DBG("%s opcode 0x%x", hdev->name, opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940
1941 return hdev->sent_cmd->data + HCI_COMMAND_HDR_SIZE;
1942}
1943
1944/* Send ACL data */
1945static void hci_add_acl_hdr(struct sk_buff *skb, __u16 handle, __u16 flags)
1946{
1947 struct hci_acl_hdr *hdr;
1948 int len = skb->len;
1949
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001950 skb_push(skb, HCI_ACL_HDR_SIZE);
1951 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07001952 hdr = (struct hci_acl_hdr *)skb_transport_header(skb);
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07001953 hdr->handle = cpu_to_le16(hci_handle_pack(handle, flags));
1954 hdr->dlen = cpu_to_le16(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02001957static void hci_queue_acl(struct hci_conn *conn, struct sk_buff_head *queue,
1958 struct sk_buff *skb, __u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959{
1960 struct hci_dev *hdev = conn->hdev;
1961 struct sk_buff *list;
1962
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02001963 list = skb_shinfo(skb)->frag_list;
1964 if (!list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 /* Non fragmented */
1966 BT_DBG("%s nonfrag skb %p len %d", hdev->name, skb, skb->len);
1967
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02001968 skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 } else {
1970 /* Fragmented */
1971 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
1972
1973 skb_shinfo(skb)->frag_list = NULL;
1974
1975 /* Queue all fragments atomically */
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02001976 spin_lock_bh(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02001978 __skb_queue_tail(queue, skb);
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02001979
1980 flags &= ~ACL_START;
1981 flags |= ACL_CONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 do {
1983 skb = list; list = list->next;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001984
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 skb->dev = (void *) hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -07001986 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02001987 hci_add_acl_hdr(skb, conn->handle, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
1990
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02001991 __skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 } while (list);
1993
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02001994 spin_unlock_bh(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02001996}
1997
1998void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags)
1999{
2000 struct hci_conn *conn = chan->conn;
2001 struct hci_dev *hdev = conn->hdev;
2002
2003 BT_DBG("%s chan %p flags 0x%x", hdev->name, chan, flags);
2004
2005 skb->dev = (void *) hdev;
2006 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
2007 hci_add_acl_hdr(skb, conn->handle, flags);
2008
2009 hci_queue_acl(conn, &chan->data_q, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002011 tasklet_schedule(&hdev->tx_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012}
2013EXPORT_SYMBOL(hci_send_acl);
2014
2015/* Send SCO data */
Gustavo F. Padovan0d861d82010-05-01 16:15:35 -03002016void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
2018 struct hci_dev *hdev = conn->hdev;
2019 struct hci_sco_hdr hdr;
2020
2021 BT_DBG("%s len %d", hdev->name, skb->len);
2022
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07002023 hdr.handle = cpu_to_le16(conn->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 hdr.dlen = skb->len;
2025
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03002026 skb_push(skb, HCI_SCO_HDR_SIZE);
2027 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07002028 memcpy(skb_transport_header(skb), &hdr, HCI_SCO_HDR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029
2030 skb->dev = (void *) hdev;
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002031 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002032
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033 skb_queue_tail(&conn->data_q, skb);
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002034 tasklet_schedule(&hdev->tx_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035}
2036EXPORT_SYMBOL(hci_send_sco);
2037
2038/* ---- HCI TX task (outgoing data) ---- */
2039
2040/* HCI Connection scheduler */
2041static inline struct hci_conn *hci_low_sent(struct hci_dev *hdev, __u8 type, int *quote)
2042{
2043 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002044 struct hci_conn *conn = NULL, *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 int num = 0, min = ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002047 /* We don't have to lock device here. Connections are always
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 * added and removed with TX task disabled. */
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002049 list_for_each_entry(c, &h->list, list) {
Marcel Holtmann769be972008-07-14 20:13:49 +02002050 if (c->type != type || skb_queue_empty(&c->data_q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 continue;
Marcel Holtmann769be972008-07-14 20:13:49 +02002052
2053 if (c->state != BT_CONNECTED && c->state != BT_CONFIG)
2054 continue;
2055
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 num++;
2057
2058 if (c->sent < min) {
2059 min = c->sent;
2060 conn = c;
2061 }
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002062
2063 if (hci_conn_num(hdev, type) == num)
2064 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 }
2066
2067 if (conn) {
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002068 int cnt, q;
2069
2070 switch (conn->type) {
2071 case ACL_LINK:
2072 cnt = hdev->acl_cnt;
2073 break;
2074 case SCO_LINK:
2075 case ESCO_LINK:
2076 cnt = hdev->sco_cnt;
2077 break;
2078 case LE_LINK:
2079 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
2080 break;
2081 default:
2082 cnt = 0;
2083 BT_ERR("Unknown link type");
2084 }
2085
2086 q = cnt / num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 *quote = q ? q : 1;
2088 } else
2089 *quote = 0;
2090
2091 BT_DBG("conn %p quote %d", conn, *quote);
2092 return conn;
2093}
2094
Ville Tervobae1f5d92011-02-10 22:38:53 -03002095static inline void hci_link_tx_to(struct hci_dev *hdev, __u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096{
2097 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002098 struct hci_conn *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099
Ville Tervobae1f5d92011-02-10 22:38:53 -03002100 BT_ERR("%s link tx timeout", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 /* Kill stalled connections */
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002103 list_for_each_entry(c, &h->list, list) {
Ville Tervobae1f5d92011-02-10 22:38:53 -03002104 if (c->type == type && c->sent) {
2105 BT_ERR("%s killing stalled connection %s",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 hdev->name, batostr(&c->dst));
2107 hci_acl_disconn(c, 0x13);
2108 }
2109 }
2110}
2111
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002112static inline struct hci_chan *hci_chan_sent(struct hci_dev *hdev, __u8 type,
2113 int *quote)
2114{
2115 struct hci_conn_hash *h = &hdev->conn_hash;
2116 struct hci_chan *chan = NULL;
2117 int num = 0, min = ~0, cur_prio = 0;
2118 struct hci_conn *conn;
2119 int cnt, q, conn_num = 0;
2120
2121 BT_DBG("%s", hdev->name);
2122
2123 list_for_each_entry(conn, &h->list, list) {
2124 struct hci_chan_hash *ch;
2125 struct hci_chan *tmp;
2126
2127 if (conn->type != type)
2128 continue;
2129
2130 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
2131 continue;
2132
2133 conn_num++;
2134
2135 ch = &conn->chan_hash;
2136
2137 list_for_each_entry(tmp, &ch->list, list) {
2138 struct sk_buff *skb;
2139
2140 if (skb_queue_empty(&tmp->data_q))
2141 continue;
2142
2143 skb = skb_peek(&tmp->data_q);
2144 if (skb->priority < cur_prio)
2145 continue;
2146
2147 if (skb->priority > cur_prio) {
2148 num = 0;
2149 min = ~0;
2150 cur_prio = skb->priority;
2151 }
2152
2153 num++;
2154
2155 if (conn->sent < min) {
2156 min = conn->sent;
2157 chan = tmp;
2158 }
2159 }
2160
2161 if (hci_conn_num(hdev, type) == conn_num)
2162 break;
2163 }
2164
2165 if (!chan)
2166 return NULL;
2167
2168 switch (chan->conn->type) {
2169 case ACL_LINK:
2170 cnt = hdev->acl_cnt;
2171 break;
2172 case SCO_LINK:
2173 case ESCO_LINK:
2174 cnt = hdev->sco_cnt;
2175 break;
2176 case LE_LINK:
2177 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
2178 break;
2179 default:
2180 cnt = 0;
2181 BT_ERR("Unknown link type");
2182 }
2183
2184 q = cnt / num;
2185 *quote = q ? q : 1;
2186 BT_DBG("chan %p quote %d", chan, *quote);
2187 return chan;
2188}
2189
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002190static void hci_prio_recalculate(struct hci_dev *hdev, __u8 type)
2191{
2192 struct hci_conn_hash *h = &hdev->conn_hash;
2193 struct hci_conn *conn;
2194 int num = 0;
2195
2196 BT_DBG("%s", hdev->name);
2197
2198 list_for_each_entry(conn, &h->list, list) {
2199 struct hci_chan_hash *ch;
2200 struct hci_chan *chan;
2201
2202 if (conn->type != type)
2203 continue;
2204
2205 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
2206 continue;
2207
2208 num++;
2209
2210 ch = &conn->chan_hash;
2211 list_for_each_entry(chan, &ch->list, list) {
2212 struct sk_buff *skb;
2213
2214 if (chan->sent) {
2215 chan->sent = 0;
2216 continue;
2217 }
2218
2219 if (skb_queue_empty(&chan->data_q))
2220 continue;
2221
2222 skb = skb_peek(&chan->data_q);
2223 if (skb->priority >= HCI_PRIO_MAX - 1)
2224 continue;
2225
2226 skb->priority = HCI_PRIO_MAX - 1;
2227
2228 BT_DBG("chan %p skb %p promoted to %d", chan, skb,
2229 skb->priority);
2230 }
2231
2232 if (hci_conn_num(hdev, type) == num)
2233 break;
2234 }
2235}
2236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237static inline void hci_sched_acl(struct hci_dev *hdev)
2238{
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002239 struct hci_chan *chan;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 struct sk_buff *skb;
2241 int quote;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002242 unsigned int cnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 BT_DBG("%s", hdev->name);
2245
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002246 if (!hci_conn_num(hdev, ACL_LINK))
2247 return;
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 if (!test_bit(HCI_RAW, &hdev->flags)) {
2250 /* ACL tx timeout must be longer than maximum
2251 * link supervision timeout (40.9 seconds) */
S.Çağlar Onur824530212008-02-17 23:25:57 -08002252 if (!hdev->acl_cnt && time_after(jiffies, hdev->acl_last_tx + HZ * 45))
Ville Tervobae1f5d92011-02-10 22:38:53 -03002253 hci_link_tx_to(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 }
2255
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002256 cnt = hdev->acl_cnt;
Marcel Holtmann04837f62006-07-03 10:02:33 +02002257
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002258 while (hdev->acl_cnt &&
2259 (chan = hci_chan_sent(hdev, ACL_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002260 u32 priority = (skb_peek(&chan->data_q))->priority;
2261 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002262 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
2263 skb->len, skb->priority);
2264
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002265 /* Stop if priority has changed */
2266 if (skb->priority < priority)
2267 break;
2268
2269 skb = skb_dequeue(&chan->data_q);
2270
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002271 hci_conn_enter_active_mode(chan->conn,
2272 bt_cb(skb)->force_active);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 hci_send_frame(skb);
2275 hdev->acl_last_tx = jiffies;
2276
2277 hdev->acl_cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002278 chan->sent++;
2279 chan->conn->sent++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 }
2281 }
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002282
2283 if (cnt != hdev->acl_cnt)
2284 hci_prio_recalculate(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285}
2286
2287/* Schedule SCO */
2288static inline void hci_sched_sco(struct hci_dev *hdev)
2289{
2290 struct hci_conn *conn;
2291 struct sk_buff *skb;
2292 int quote;
2293
2294 BT_DBG("%s", hdev->name);
2295
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002296 if (!hci_conn_num(hdev, SCO_LINK))
2297 return;
2298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, SCO_LINK, &quote))) {
2300 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
2301 BT_DBG("skb %p len %d", skb, skb->len);
2302 hci_send_frame(skb);
2303
2304 conn->sent++;
2305 if (conn->sent == ~0)
2306 conn->sent = 0;
2307 }
2308 }
2309}
2310
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002311static inline void hci_sched_esco(struct hci_dev *hdev)
2312{
2313 struct hci_conn *conn;
2314 struct sk_buff *skb;
2315 int quote;
2316
2317 BT_DBG("%s", hdev->name);
2318
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002319 if (!hci_conn_num(hdev, ESCO_LINK))
2320 return;
2321
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002322 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, ESCO_LINK, &quote))) {
2323 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
2324 BT_DBG("skb %p len %d", skb, skb->len);
2325 hci_send_frame(skb);
2326
2327 conn->sent++;
2328 if (conn->sent == ~0)
2329 conn->sent = 0;
2330 }
2331 }
2332}
2333
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002334static inline void hci_sched_le(struct hci_dev *hdev)
2335{
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002336 struct hci_chan *chan;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002337 struct sk_buff *skb;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002338 int quote, cnt, tmp;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002339
2340 BT_DBG("%s", hdev->name);
2341
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03002342 if (!hci_conn_num(hdev, LE_LINK))
2343 return;
2344
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002345 if (!test_bit(HCI_RAW, &hdev->flags)) {
2346 /* LE tx timeout must be longer than maximum
2347 * link supervision timeout (40.9 seconds) */
Ville Tervobae1f5d92011-02-10 22:38:53 -03002348 if (!hdev->le_cnt && hdev->le_pkts &&
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002349 time_after(jiffies, hdev->le_last_tx + HZ * 45))
Ville Tervobae1f5d92011-02-10 22:38:53 -03002350 hci_link_tx_to(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002351 }
2352
2353 cnt = hdev->le_pkts ? hdev->le_cnt : hdev->acl_cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002354 tmp = cnt;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002355 while (cnt && (chan = hci_chan_sent(hdev, LE_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002356 u32 priority = (skb_peek(&chan->data_q))->priority;
2357 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002358 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
2359 skb->len, skb->priority);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002360
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02002361 /* Stop if priority has changed */
2362 if (skb->priority < priority)
2363 break;
2364
2365 skb = skb_dequeue(&chan->data_q);
2366
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002367 hci_send_frame(skb);
2368 hdev->le_last_tx = jiffies;
2369
2370 cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002371 chan->sent++;
2372 chan->conn->sent++;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002373 }
2374 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02002375
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002376 if (hdev->le_pkts)
2377 hdev->le_cnt = cnt;
2378 else
2379 hdev->acl_cnt = cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02002380
2381 if (cnt != tmp)
2382 hci_prio_recalculate(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002383}
2384
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385static void hci_tx_task(unsigned long arg)
2386{
2387 struct hci_dev *hdev = (struct hci_dev *) arg;
2388 struct sk_buff *skb;
2389
2390 read_lock(&hci_task_lock);
2391
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002392 BT_DBG("%s acl %d sco %d le %d", hdev->name, hdev->acl_cnt,
2393 hdev->sco_cnt, hdev->le_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395 /* Schedule queues and send stuff to HCI driver */
2396
2397 hci_sched_acl(hdev);
2398
2399 hci_sched_sco(hdev);
2400
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02002401 hci_sched_esco(hdev);
2402
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002403 hci_sched_le(hdev);
2404
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 /* Send next queued raw (unknown type) packet */
2406 while ((skb = skb_dequeue(&hdev->raw_q)))
2407 hci_send_frame(skb);
2408
2409 read_unlock(&hci_task_lock);
2410}
2411
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002412/* ----- HCI RX task (incoming data processing) ----- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
2414/* ACL data packet */
2415static inline void hci_acldata_packet(struct hci_dev *hdev, struct sk_buff *skb)
2416{
2417 struct hci_acl_hdr *hdr = (void *) skb->data;
2418 struct hci_conn *conn;
2419 __u16 handle, flags;
2420
2421 skb_pull(skb, HCI_ACL_HDR_SIZE);
2422
2423 handle = __le16_to_cpu(hdr->handle);
2424 flags = hci_flags(handle);
2425 handle = hci_handle(handle);
2426
2427 BT_DBG("%s len %d handle 0x%x flags 0x%x", hdev->name, skb->len, handle, flags);
2428
2429 hdev->stat.acl_rx++;
2430
2431 hci_dev_lock(hdev);
2432 conn = hci_conn_hash_lookup_handle(hdev, handle);
2433 hci_dev_unlock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002434
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 if (conn) {
2436 register struct hci_proto *hp;
2437
Jaikumar Ganesh14b12d02011-05-23 18:06:04 -07002438 hci_conn_enter_active_mode(conn, bt_cb(skb)->force_active);
Marcel Holtmann04837f62006-07-03 10:02:33 +02002439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 /* Send to upper protocol */
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002441 hp = hci_proto[HCI_PROTO_L2CAP];
2442 if (hp && hp->recv_acldata) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 hp->recv_acldata(conn, skb, flags);
2444 return;
2445 }
2446 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002447 BT_ERR("%s ACL packet for unknown connection handle %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 hdev->name, handle);
2449 }
2450
2451 kfree_skb(skb);
2452}
2453
2454/* SCO data packet */
2455static inline void hci_scodata_packet(struct hci_dev *hdev, struct sk_buff *skb)
2456{
2457 struct hci_sco_hdr *hdr = (void *) skb->data;
2458 struct hci_conn *conn;
2459 __u16 handle;
2460
2461 skb_pull(skb, HCI_SCO_HDR_SIZE);
2462
2463 handle = __le16_to_cpu(hdr->handle);
2464
2465 BT_DBG("%s len %d handle 0x%x", hdev->name, skb->len, handle);
2466
2467 hdev->stat.sco_rx++;
2468
2469 hci_dev_lock(hdev);
2470 conn = hci_conn_hash_lookup_handle(hdev, handle);
2471 hci_dev_unlock(hdev);
2472
2473 if (conn) {
2474 register struct hci_proto *hp;
2475
2476 /* Send to upper protocol */
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002477 hp = hci_proto[HCI_PROTO_SCO];
2478 if (hp && hp->recv_scodata) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 hp->recv_scodata(conn, skb);
2480 return;
2481 }
2482 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002483 BT_ERR("%s SCO packet for unknown connection handle %d",
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 hdev->name, handle);
2485 }
2486
2487 kfree_skb(skb);
2488}
2489
Marcel Holtmann65164552005-10-28 19:20:48 +02002490static void hci_rx_task(unsigned long arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
2492 struct hci_dev *hdev = (struct hci_dev *) arg;
2493 struct sk_buff *skb;
2494
2495 BT_DBG("%s", hdev->name);
2496
2497 read_lock(&hci_task_lock);
2498
2499 while ((skb = skb_dequeue(&hdev->rx_q))) {
2500 if (atomic_read(&hdev->promisc)) {
2501 /* Send copy to the sockets */
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002502 hci_send_to_sock(hdev, skb, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 }
2504
2505 if (test_bit(HCI_RAW, &hdev->flags)) {
2506 kfree_skb(skb);
2507 continue;
2508 }
2509
2510 if (test_bit(HCI_INIT, &hdev->flags)) {
2511 /* Don't process data packets in this states. */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002512 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 case HCI_ACLDATA_PKT:
2514 case HCI_SCODATA_PKT:
2515 kfree_skb(skb);
2516 continue;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07002517 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 }
2519
2520 /* Process frame */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07002521 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 case HCI_EVENT_PKT:
2523 hci_event_packet(hdev, skb);
2524 break;
2525
2526 case HCI_ACLDATA_PKT:
2527 BT_DBG("%s ACL data packet", hdev->name);
2528 hci_acldata_packet(hdev, skb);
2529 break;
2530
2531 case HCI_SCODATA_PKT:
2532 BT_DBG("%s SCO data packet", hdev->name);
2533 hci_scodata_packet(hdev, skb);
2534 break;
2535
2536 default:
2537 kfree_skb(skb);
2538 break;
2539 }
2540 }
2541
2542 read_unlock(&hci_task_lock);
2543}
2544
2545static void hci_cmd_task(unsigned long arg)
2546{
2547 struct hci_dev *hdev = (struct hci_dev *) arg;
2548 struct sk_buff *skb;
2549
2550 BT_DBG("%s cmd %d", hdev->name, atomic_read(&hdev->cmd_cnt));
2551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 /* Send queued commands */
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02002553 if (atomic_read(&hdev->cmd_cnt)) {
2554 skb = skb_dequeue(&hdev->cmd_q);
2555 if (!skb)
2556 return;
2557
Wei Yongjun7585b972009-02-25 18:29:52 +08002558 kfree_skb(hdev->sent_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002560 hdev->sent_cmd = skb_clone(skb, GFP_ATOMIC);
2561 if (hdev->sent_cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 atomic_dec(&hdev->cmd_cnt);
2563 hci_send_frame(skb);
Szymon Janc7bdb8a52011-07-26 22:46:54 +02002564 if (test_bit(HCI_RESET, &hdev->flags))
2565 del_timer(&hdev->cmd_timer);
2566 else
2567 mod_timer(&hdev->cmd_timer,
Ville Tervo6bd32322011-02-16 16:32:41 +02002568 jiffies + msecs_to_jiffies(HCI_CMD_TIMEOUT));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 } else {
2570 skb_queue_head(&hdev->cmd_q, skb);
Marcel Holtmannc78ae282009-11-18 01:02:54 +01002571 tasklet_schedule(&hdev->cmd_task);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 }
2573 }
2574}
Andre Guedes2519a1f2011-11-07 11:45:24 -03002575
2576int hci_do_inquiry(struct hci_dev *hdev, u8 length)
2577{
2578 /* General inquiry access code (GIAC) */
2579 u8 lap[3] = { 0x33, 0x8b, 0x9e };
2580 struct hci_cp_inquiry cp;
2581
2582 BT_DBG("%s", hdev->name);
2583
2584 if (test_bit(HCI_INQUIRY, &hdev->flags))
2585 return -EINPROGRESS;
2586
2587 memset(&cp, 0, sizeof(cp));
2588 memcpy(&cp.lap, lap, sizeof(cp.lap));
2589 cp.length = length;
2590
2591 return hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp);
2592}
Andre Guedes023d50492011-11-04 14:16:52 -03002593
2594int hci_cancel_inquiry(struct hci_dev *hdev)
2595{
2596 BT_DBG("%s", hdev->name);
2597
2598 if (!test_bit(HCI_INQUIRY, &hdev->flags))
2599 return -EPERM;
2600
2601 return hci_send_cmd(hdev, HCI_OP_INQUIRY_CANCEL, 0, NULL);
2602}