blob: a9ff1cbe2c41bb4be8ade7c19d742be4a2724561 [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
Gustavo Padovan8c520a52012-05-23 04:04:22 -030028#include <linux/export.h>
Sasha Levin3df92b32012-05-27 22:36:56 +020029#include <linux/idr.h>
Marcel Holtmann611b30f2009-06-08 14:41:38 +020030#include <linux/rfkill.h>
Marcel Holtmannbaf27f62013-10-16 03:28:55 -070031#include <linux/debugfs.h>
Johan Hedberg99780a72014-02-18 10:40:07 +020032#include <linux/crypto.h>
Marcel Holtmann47219832013-10-17 17:24:15 -070033#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <net/bluetooth/bluetooth.h>
36#include <net/bluetooth/hci_core.h>
37
Johan Hedberg970c4e42014-02-18 10:19:33 +020038#include "smp.h"
39
Marcel Holtmannb78752c2010-08-08 23:06:53 -040040static void hci_rx_work(struct work_struct *work);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -020041static void hci_cmd_work(struct work_struct *work);
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -020042static void hci_tx_work(struct work_struct *work);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/* HCI device list */
45LIST_HEAD(hci_dev_list);
46DEFINE_RWLOCK(hci_dev_list_lock);
47
48/* HCI callback list */
49LIST_HEAD(hci_cb_list);
50DEFINE_RWLOCK(hci_cb_list_lock);
51
Sasha Levin3df92b32012-05-27 22:36:56 +020052/* HCI ID Numbering */
53static DEFINE_IDA(hci_index_ida);
54
Linus Torvalds1da177e2005-04-16 15:20:36 -070055/* ---- HCI notifications ---- */
56
Marcel Holtmann65164552005-10-28 19:20:48 +020057static void hci_notify(struct hci_dev *hdev, int event)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058{
Marcel Holtmann040030e2012-02-20 14:50:37 +010059 hci_sock_dev_event(hdev, event);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060}
61
Marcel Holtmannbaf27f62013-10-16 03:28:55 -070062/* ---- HCI debugfs entries ---- */
63
Marcel Holtmann4b4148e2013-10-19 07:09:12 -070064static ssize_t dut_mode_read(struct file *file, char __user *user_buf,
65 size_t count, loff_t *ppos)
66{
67 struct hci_dev *hdev = file->private_data;
68 char buf[3];
69
70 buf[0] = test_bit(HCI_DUT_MODE, &hdev->dev_flags) ? 'Y': 'N';
71 buf[1] = '\n';
72 buf[2] = '\0';
73 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
74}
75
76static ssize_t dut_mode_write(struct file *file, const char __user *user_buf,
77 size_t count, loff_t *ppos)
78{
79 struct hci_dev *hdev = file->private_data;
80 struct sk_buff *skb;
81 char buf[32];
82 size_t buf_size = min(count, (sizeof(buf)-1));
83 bool enable;
84 int err;
85
86 if (!test_bit(HCI_UP, &hdev->flags))
87 return -ENETDOWN;
88
89 if (copy_from_user(buf, user_buf, buf_size))
90 return -EFAULT;
91
92 buf[buf_size] = '\0';
93 if (strtobool(buf, &enable))
94 return -EINVAL;
95
96 if (enable == test_bit(HCI_DUT_MODE, &hdev->dev_flags))
97 return -EALREADY;
98
99 hci_req_lock(hdev);
100 if (enable)
101 skb = __hci_cmd_sync(hdev, HCI_OP_ENABLE_DUT_MODE, 0, NULL,
102 HCI_CMD_TIMEOUT);
103 else
104 skb = __hci_cmd_sync(hdev, HCI_OP_RESET, 0, NULL,
105 HCI_CMD_TIMEOUT);
106 hci_req_unlock(hdev);
107
108 if (IS_ERR(skb))
109 return PTR_ERR(skb);
110
111 err = -bt_to_errno(skb->data[0]);
112 kfree_skb(skb);
113
114 if (err < 0)
115 return err;
116
117 change_bit(HCI_DUT_MODE, &hdev->dev_flags);
118
119 return count;
120}
121
122static const struct file_operations dut_mode_fops = {
123 .open = simple_open,
124 .read = dut_mode_read,
125 .write = dut_mode_write,
126 .llseek = default_llseek,
127};
128
Marcel Holtmanndfb826a2013-10-18 12:04:46 -0700129static int features_show(struct seq_file *f, void *ptr)
130{
131 struct hci_dev *hdev = f->private;
132 u8 p;
133
134 hci_dev_lock(hdev);
135 for (p = 0; p < HCI_MAX_PAGES && p <= hdev->max_page; p++) {
Marcel Holtmanncfbb2b52013-10-19 02:25:33 -0700136 seq_printf(f, "%2u: 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x "
Marcel Holtmanndfb826a2013-10-18 12:04:46 -0700137 "0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x\n", p,
138 hdev->features[p][0], hdev->features[p][1],
139 hdev->features[p][2], hdev->features[p][3],
140 hdev->features[p][4], hdev->features[p][5],
141 hdev->features[p][6], hdev->features[p][7]);
142 }
Marcel Holtmanncfbb2b52013-10-19 02:25:33 -0700143 if (lmp_le_capable(hdev))
144 seq_printf(f, "LE: 0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x "
145 "0x%2.2x 0x%2.2x 0x%2.2x 0x%2.2x\n",
146 hdev->le_features[0], hdev->le_features[1],
147 hdev->le_features[2], hdev->le_features[3],
148 hdev->le_features[4], hdev->le_features[5],
149 hdev->le_features[6], hdev->le_features[7]);
Marcel Holtmanndfb826a2013-10-18 12:04:46 -0700150 hci_dev_unlock(hdev);
151
152 return 0;
153}
154
155static int features_open(struct inode *inode, struct file *file)
156{
157 return single_open(file, features_show, inode->i_private);
158}
159
160static const struct file_operations features_fops = {
161 .open = features_open,
162 .read = seq_read,
163 .llseek = seq_lseek,
164 .release = single_release,
165};
166
Marcel Holtmann70afe0b2013-10-17 17:24:14 -0700167static int blacklist_show(struct seq_file *f, void *p)
168{
169 struct hci_dev *hdev = f->private;
170 struct bdaddr_list *b;
171
172 hci_dev_lock(hdev);
173 list_for_each_entry(b, &hdev->blacklist, list)
Marcel Holtmannb25f0782013-10-17 17:24:20 -0700174 seq_printf(f, "%pMR (type %u)\n", &b->bdaddr, b->bdaddr_type);
Marcel Holtmann70afe0b2013-10-17 17:24:14 -0700175 hci_dev_unlock(hdev);
176
177 return 0;
178}
179
180static int blacklist_open(struct inode *inode, struct file *file)
181{
182 return single_open(file, blacklist_show, inode->i_private);
183}
184
185static const struct file_operations blacklist_fops = {
186 .open = blacklist_open,
187 .read = seq_read,
188 .llseek = seq_lseek,
189 .release = single_release,
190};
191
Marcel Holtmann47219832013-10-17 17:24:15 -0700192static int uuids_show(struct seq_file *f, void *p)
193{
194 struct hci_dev *hdev = f->private;
195 struct bt_uuid *uuid;
196
197 hci_dev_lock(hdev);
198 list_for_each_entry(uuid, &hdev->uuids, list) {
Marcel Holtmann58f01aa2013-10-19 09:31:59 -0700199 u8 i, val[16];
Marcel Holtmann47219832013-10-17 17:24:15 -0700200
Marcel Holtmann58f01aa2013-10-19 09:31:59 -0700201 /* The Bluetooth UUID values are stored in big endian,
202 * but with reversed byte order. So convert them into
203 * the right order for the %pUb modifier.
204 */
205 for (i = 0; i < 16; i++)
206 val[i] = uuid->uuid[15 - i];
Marcel Holtmann47219832013-10-17 17:24:15 -0700207
Marcel Holtmann58f01aa2013-10-19 09:31:59 -0700208 seq_printf(f, "%pUb\n", val);
Marcel Holtmann47219832013-10-17 17:24:15 -0700209 }
210 hci_dev_unlock(hdev);
211
212 return 0;
213}
214
215static int uuids_open(struct inode *inode, struct file *file)
216{
217 return single_open(file, uuids_show, inode->i_private);
218}
219
220static const struct file_operations uuids_fops = {
221 .open = uuids_open,
222 .read = seq_read,
223 .llseek = seq_lseek,
224 .release = single_release,
225};
226
Marcel Holtmannbaf27f62013-10-16 03:28:55 -0700227static int inquiry_cache_show(struct seq_file *f, void *p)
228{
229 struct hci_dev *hdev = f->private;
230 struct discovery_state *cache = &hdev->discovery;
231 struct inquiry_entry *e;
232
233 hci_dev_lock(hdev);
234
235 list_for_each_entry(e, &cache->all, all) {
236 struct inquiry_data *data = &e->data;
237 seq_printf(f, "%pMR %d %d %d 0x%.2x%.2x%.2x 0x%.4x %d %d %u\n",
238 &data->bdaddr,
239 data->pscan_rep_mode, data->pscan_period_mode,
240 data->pscan_mode, data->dev_class[2],
241 data->dev_class[1], data->dev_class[0],
242 __le16_to_cpu(data->clock_offset),
243 data->rssi, data->ssp_mode, e->timestamp);
244 }
245
246 hci_dev_unlock(hdev);
247
248 return 0;
249}
250
251static int inquiry_cache_open(struct inode *inode, struct file *file)
252{
253 return single_open(file, inquiry_cache_show, inode->i_private);
254}
255
256static const struct file_operations inquiry_cache_fops = {
257 .open = inquiry_cache_open,
258 .read = seq_read,
259 .llseek = seq_lseek,
260 .release = single_release,
261};
262
Marcel Holtmann02d08d12013-10-18 12:04:52 -0700263static int link_keys_show(struct seq_file *f, void *ptr)
264{
265 struct hci_dev *hdev = f->private;
266 struct list_head *p, *n;
267
268 hci_dev_lock(hdev);
269 list_for_each_safe(p, n, &hdev->link_keys) {
270 struct link_key *key = list_entry(p, struct link_key, list);
271 seq_printf(f, "%pMR %u %*phN %u\n", &key->bdaddr, key->type,
272 HCI_LINK_KEY_SIZE, key->val, key->pin_len);
273 }
274 hci_dev_unlock(hdev);
275
276 return 0;
277}
278
279static int link_keys_open(struct inode *inode, struct file *file)
280{
281 return single_open(file, link_keys_show, inode->i_private);
282}
283
284static const struct file_operations link_keys_fops = {
285 .open = link_keys_open,
286 .read = seq_read,
287 .llseek = seq_lseek,
288 .release = single_release,
289};
290
Marcel Holtmannbabdbb32013-10-18 12:04:51 -0700291static int dev_class_show(struct seq_file *f, void *ptr)
292{
293 struct hci_dev *hdev = f->private;
294
295 hci_dev_lock(hdev);
296 seq_printf(f, "0x%.2x%.2x%.2x\n", hdev->dev_class[2],
297 hdev->dev_class[1], hdev->dev_class[0]);
298 hci_dev_unlock(hdev);
299
300 return 0;
301}
302
303static int dev_class_open(struct inode *inode, struct file *file)
304{
305 return single_open(file, dev_class_show, inode->i_private);
306}
307
308static const struct file_operations dev_class_fops = {
309 .open = dev_class_open,
310 .read = seq_read,
311 .llseek = seq_lseek,
312 .release = single_release,
313};
314
Marcel Holtmann041000b2013-10-17 12:02:31 -0700315static int voice_setting_get(void *data, u64 *val)
316{
317 struct hci_dev *hdev = data;
318
319 hci_dev_lock(hdev);
320 *val = hdev->voice_setting;
321 hci_dev_unlock(hdev);
322
323 return 0;
324}
325
326DEFINE_SIMPLE_ATTRIBUTE(voice_setting_fops, voice_setting_get,
327 NULL, "0x%4.4llx\n");
328
Marcel Holtmannebd1e332013-10-17 10:54:46 -0700329static int auto_accept_delay_set(void *data, u64 val)
330{
331 struct hci_dev *hdev = data;
332
333 hci_dev_lock(hdev);
334 hdev->auto_accept_delay = val;
335 hci_dev_unlock(hdev);
336
337 return 0;
338}
339
340static int auto_accept_delay_get(void *data, u64 *val)
341{
342 struct hci_dev *hdev = data;
343
344 hci_dev_lock(hdev);
345 *val = hdev->auto_accept_delay;
346 hci_dev_unlock(hdev);
347
348 return 0;
349}
350
351DEFINE_SIMPLE_ATTRIBUTE(auto_accept_delay_fops, auto_accept_delay_get,
352 auto_accept_delay_set, "%llu\n");
353
Marcel Holtmann06f5b772013-10-19 07:09:11 -0700354static int ssp_debug_mode_set(void *data, u64 val)
355{
356 struct hci_dev *hdev = data;
357 struct sk_buff *skb;
358 __u8 mode;
359 int err;
360
361 if (val != 0 && val != 1)
362 return -EINVAL;
363
364 if (!test_bit(HCI_UP, &hdev->flags))
365 return -ENETDOWN;
366
367 hci_req_lock(hdev);
368 mode = val;
369 skb = __hci_cmd_sync(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE, sizeof(mode),
370 &mode, HCI_CMD_TIMEOUT);
371 hci_req_unlock(hdev);
372
373 if (IS_ERR(skb))
374 return PTR_ERR(skb);
375
376 err = -bt_to_errno(skb->data[0]);
377 kfree_skb(skb);
378
379 if (err < 0)
380 return err;
381
382 hci_dev_lock(hdev);
383 hdev->ssp_debug_mode = val;
384 hci_dev_unlock(hdev);
385
386 return 0;
387}
388
389static int ssp_debug_mode_get(void *data, u64 *val)
390{
391 struct hci_dev *hdev = data;
392
393 hci_dev_lock(hdev);
394 *val = hdev->ssp_debug_mode;
395 hci_dev_unlock(hdev);
396
397 return 0;
398}
399
400DEFINE_SIMPLE_ATTRIBUTE(ssp_debug_mode_fops, ssp_debug_mode_get,
401 ssp_debug_mode_set, "%llu\n");
402
Marcel Holtmann5afeac12014-01-10 02:07:27 -0800403static ssize_t force_sc_support_read(struct file *file, char __user *user_buf,
404 size_t count, loff_t *ppos)
405{
406 struct hci_dev *hdev = file->private_data;
407 char buf[3];
408
409 buf[0] = test_bit(HCI_FORCE_SC, &hdev->dev_flags) ? 'Y': 'N';
410 buf[1] = '\n';
411 buf[2] = '\0';
412 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
413}
414
415static ssize_t force_sc_support_write(struct file *file,
416 const char __user *user_buf,
417 size_t count, loff_t *ppos)
418{
419 struct hci_dev *hdev = file->private_data;
420 char buf[32];
421 size_t buf_size = min(count, (sizeof(buf)-1));
422 bool enable;
423
424 if (test_bit(HCI_UP, &hdev->flags))
425 return -EBUSY;
426
427 if (copy_from_user(buf, user_buf, buf_size))
428 return -EFAULT;
429
430 buf[buf_size] = '\0';
431 if (strtobool(buf, &enable))
432 return -EINVAL;
433
434 if (enable == test_bit(HCI_FORCE_SC, &hdev->dev_flags))
435 return -EALREADY;
436
437 change_bit(HCI_FORCE_SC, &hdev->dev_flags);
438
439 return count;
440}
441
442static const struct file_operations force_sc_support_fops = {
443 .open = simple_open,
444 .read = force_sc_support_read,
445 .write = force_sc_support_write,
446 .llseek = default_llseek,
447};
448
Marcel Holtmann134c2a82014-01-15 22:37:42 -0800449static ssize_t sc_only_mode_read(struct file *file, char __user *user_buf,
450 size_t count, loff_t *ppos)
451{
452 struct hci_dev *hdev = file->private_data;
453 char buf[3];
454
455 buf[0] = test_bit(HCI_SC_ONLY, &hdev->dev_flags) ? 'Y': 'N';
456 buf[1] = '\n';
457 buf[2] = '\0';
458 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
459}
460
461static const struct file_operations sc_only_mode_fops = {
462 .open = simple_open,
463 .read = sc_only_mode_read,
464 .llseek = default_llseek,
465};
466
Marcel Holtmann2bfa3532013-10-17 19:16:02 -0700467static int idle_timeout_set(void *data, u64 val)
468{
469 struct hci_dev *hdev = data;
470
471 if (val != 0 && (val < 500 || val > 3600000))
472 return -EINVAL;
473
474 hci_dev_lock(hdev);
Marcel Holtmann2be48b62013-10-19 10:19:15 -0700475 hdev->idle_timeout = val;
Marcel Holtmann2bfa3532013-10-17 19:16:02 -0700476 hci_dev_unlock(hdev);
477
478 return 0;
479}
480
481static int idle_timeout_get(void *data, u64 *val)
482{
483 struct hci_dev *hdev = data;
484
485 hci_dev_lock(hdev);
486 *val = hdev->idle_timeout;
487 hci_dev_unlock(hdev);
488
489 return 0;
490}
491
492DEFINE_SIMPLE_ATTRIBUTE(idle_timeout_fops, idle_timeout_get,
493 idle_timeout_set, "%llu\n");
494
Johan Hedbergc982b2e2014-02-23 19:42:26 +0200495static int rpa_timeout_set(void *data, u64 val)
496{
497 struct hci_dev *hdev = data;
498
499 /* Require the RPA timeout to be at least 30 seconds and at most
500 * 24 hours.
501 */
502 if (val < 30 || val > (60 * 60 * 24))
503 return -EINVAL;
504
505 hci_dev_lock(hdev);
506 hdev->rpa_timeout = val;
507 hci_dev_unlock(hdev);
508
509 return 0;
510}
511
512static int rpa_timeout_get(void *data, u64 *val)
513{
514 struct hci_dev *hdev = data;
515
516 hci_dev_lock(hdev);
517 *val = hdev->rpa_timeout;
518 hci_dev_unlock(hdev);
519
520 return 0;
521}
522
523DEFINE_SIMPLE_ATTRIBUTE(rpa_timeout_fops, rpa_timeout_get,
524 rpa_timeout_set, "%llu\n");
525
Marcel Holtmann2bfa3532013-10-17 19:16:02 -0700526static int sniff_min_interval_set(void *data, u64 val)
527{
528 struct hci_dev *hdev = data;
529
530 if (val == 0 || val % 2 || val > hdev->sniff_max_interval)
531 return -EINVAL;
532
533 hci_dev_lock(hdev);
Marcel Holtmann2be48b62013-10-19 10:19:15 -0700534 hdev->sniff_min_interval = val;
Marcel Holtmann2bfa3532013-10-17 19:16:02 -0700535 hci_dev_unlock(hdev);
536
537 return 0;
538}
539
540static int sniff_min_interval_get(void *data, u64 *val)
541{
542 struct hci_dev *hdev = data;
543
544 hci_dev_lock(hdev);
545 *val = hdev->sniff_min_interval;
546 hci_dev_unlock(hdev);
547
548 return 0;
549}
550
551DEFINE_SIMPLE_ATTRIBUTE(sniff_min_interval_fops, sniff_min_interval_get,
552 sniff_min_interval_set, "%llu\n");
553
554static int sniff_max_interval_set(void *data, u64 val)
555{
556 struct hci_dev *hdev = data;
557
558 if (val == 0 || val % 2 || val < hdev->sniff_min_interval)
559 return -EINVAL;
560
561 hci_dev_lock(hdev);
Marcel Holtmann2be48b62013-10-19 10:19:15 -0700562 hdev->sniff_max_interval = val;
Marcel Holtmann2bfa3532013-10-17 19:16:02 -0700563 hci_dev_unlock(hdev);
564
565 return 0;
566}
567
568static int sniff_max_interval_get(void *data, u64 *val)
569{
570 struct hci_dev *hdev = data;
571
572 hci_dev_lock(hdev);
573 *val = hdev->sniff_max_interval;
574 hci_dev_unlock(hdev);
575
576 return 0;
577}
578
579DEFINE_SIMPLE_ATTRIBUTE(sniff_max_interval_fops, sniff_max_interval_get,
580 sniff_max_interval_set, "%llu\n");
581
Marcel Holtmannac345812014-02-23 12:44:25 -0800582static int identity_show(struct seq_file *f, void *p)
583{
584 struct hci_dev *hdev = f->private;
Johan Hedberga1f4c312014-02-27 14:05:41 +0200585 bdaddr_t addr;
Marcel Holtmannac345812014-02-23 12:44:25 -0800586 u8 addr_type;
587
588 hci_dev_lock(hdev);
589
Johan Hedberga1f4c312014-02-27 14:05:41 +0200590 hci_copy_identity_address(hdev, &addr, &addr_type);
Marcel Holtmannac345812014-02-23 12:44:25 -0800591
Johan Hedberga1f4c312014-02-27 14:05:41 +0200592 seq_printf(f, "%pMR (type %u) %*phN %pMR\n", &addr, addr_type,
Marcel Holtmann473deef2c92014-02-23 20:39:23 -0800593 16, hdev->irk, &hdev->rpa);
Marcel Holtmannac345812014-02-23 12:44:25 -0800594
595 hci_dev_unlock(hdev);
596
597 return 0;
598}
599
600static int identity_open(struct inode *inode, struct file *file)
601{
602 return single_open(file, identity_show, inode->i_private);
603}
604
605static const struct file_operations identity_fops = {
606 .open = identity_open,
607 .read = seq_read,
608 .llseek = seq_lseek,
609 .release = single_release,
610};
611
Marcel Holtmann7a4cd512014-02-19 19:52:13 -0800612static int random_address_show(struct seq_file *f, void *p)
613{
614 struct hci_dev *hdev = f->private;
615
616 hci_dev_lock(hdev);
617 seq_printf(f, "%pMR\n", &hdev->random_addr);
618 hci_dev_unlock(hdev);
619
620 return 0;
621}
622
623static int random_address_open(struct inode *inode, struct file *file)
624{
625 return single_open(file, random_address_show, inode->i_private);
626}
627
628static const struct file_operations random_address_fops = {
629 .open = random_address_open,
630 .read = seq_read,
631 .llseek = seq_lseek,
632 .release = single_release,
633};
634
Marcel Holtmanne7b8fc92013-10-17 11:45:09 -0700635static int static_address_show(struct seq_file *f, void *p)
636{
637 struct hci_dev *hdev = f->private;
638
639 hci_dev_lock(hdev);
640 seq_printf(f, "%pMR\n", &hdev->static_addr);
641 hci_dev_unlock(hdev);
642
643 return 0;
644}
645
646static int static_address_open(struct inode *inode, struct file *file)
647{
648 return single_open(file, static_address_show, inode->i_private);
649}
650
651static const struct file_operations static_address_fops = {
652 .open = static_address_open,
653 .read = seq_read,
654 .llseek = seq_lseek,
655 .release = single_release,
656};
657
Marcel Holtmannb32bba62014-02-19 19:31:26 -0800658static ssize_t force_static_address_read(struct file *file,
659 char __user *user_buf,
660 size_t count, loff_t *ppos)
Marcel Holtmann92202182013-10-18 16:38:10 -0700661{
Marcel Holtmannb32bba62014-02-19 19:31:26 -0800662 struct hci_dev *hdev = file->private_data;
663 char buf[3];
Marcel Holtmann92202182013-10-18 16:38:10 -0700664
Marcel Holtmannb32bba62014-02-19 19:31:26 -0800665 buf[0] = test_bit(HCI_FORCE_STATIC_ADDR, &hdev->dev_flags) ? 'Y': 'N';
666 buf[1] = '\n';
667 buf[2] = '\0';
668 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
669}
670
671static ssize_t force_static_address_write(struct file *file,
672 const char __user *user_buf,
673 size_t count, loff_t *ppos)
674{
675 struct hci_dev *hdev = file->private_data;
676 char buf[32];
677 size_t buf_size = min(count, (sizeof(buf)-1));
678 bool enable;
679
680 if (test_bit(HCI_UP, &hdev->flags))
681 return -EBUSY;
682
683 if (copy_from_user(buf, user_buf, buf_size))
684 return -EFAULT;
685
686 buf[buf_size] = '\0';
687 if (strtobool(buf, &enable))
Marcel Holtmann92202182013-10-18 16:38:10 -0700688 return -EINVAL;
689
Marcel Holtmannb32bba62014-02-19 19:31:26 -0800690 if (enable == test_bit(HCI_FORCE_STATIC_ADDR, &hdev->dev_flags))
691 return -EALREADY;
Marcel Holtmann92202182013-10-18 16:38:10 -0700692
Marcel Holtmannb32bba62014-02-19 19:31:26 -0800693 change_bit(HCI_FORCE_STATIC_ADDR, &hdev->dev_flags);
694
695 return count;
Marcel Holtmann92202182013-10-18 16:38:10 -0700696}
697
Marcel Holtmannb32bba62014-02-19 19:31:26 -0800698static const struct file_operations force_static_address_fops = {
699 .open = simple_open,
700 .read = force_static_address_read,
701 .write = force_static_address_write,
702 .llseek = default_llseek,
703};
Marcel Holtmann92202182013-10-18 16:38:10 -0700704
Marcel Holtmannd2ab0ac2014-02-27 20:37:30 -0800705static int white_list_show(struct seq_file *f, void *ptr)
706{
707 struct hci_dev *hdev = f->private;
708 struct bdaddr_list *b;
709
710 hci_dev_lock(hdev);
711 list_for_each_entry(b, &hdev->le_white_list, list)
712 seq_printf(f, "%pMR (type %u)\n", &b->bdaddr, b->bdaddr_type);
713 hci_dev_unlock(hdev);
714
715 return 0;
716}
717
718static int white_list_open(struct inode *inode, struct file *file)
719{
720 return single_open(file, white_list_show, inode->i_private);
721}
722
723static const struct file_operations white_list_fops = {
724 .open = white_list_open,
725 .read = seq_read,
726 .llseek = seq_lseek,
727 .release = single_release,
728};
729
Marcel Holtmann3698d702014-02-18 21:54:49 -0800730static int identity_resolving_keys_show(struct seq_file *f, void *ptr)
731{
732 struct hci_dev *hdev = f->private;
733 struct list_head *p, *n;
734
735 hci_dev_lock(hdev);
736 list_for_each_safe(p, n, &hdev->identity_resolving_keys) {
737 struct smp_irk *irk = list_entry(p, struct smp_irk, list);
738 seq_printf(f, "%pMR (type %u) %*phN %pMR\n",
739 &irk->bdaddr, irk->addr_type,
740 16, irk->val, &irk->rpa);
741 }
742 hci_dev_unlock(hdev);
743
744 return 0;
745}
746
747static int identity_resolving_keys_open(struct inode *inode, struct file *file)
748{
749 return single_open(file, identity_resolving_keys_show,
750 inode->i_private);
751}
752
753static const struct file_operations identity_resolving_keys_fops = {
754 .open = identity_resolving_keys_open,
755 .read = seq_read,
756 .llseek = seq_lseek,
757 .release = single_release,
758};
759
Marcel Holtmann8f8625c2013-10-18 15:56:57 -0700760static int long_term_keys_show(struct seq_file *f, void *ptr)
761{
762 struct hci_dev *hdev = f->private;
763 struct list_head *p, *n;
764
765 hci_dev_lock(hdev);
Johan Hedbergf813f1b2014-01-30 19:39:57 -0800766 list_for_each_safe(p, n, &hdev->long_term_keys) {
Marcel Holtmann8f8625c2013-10-18 15:56:57 -0700767 struct smp_ltk *ltk = list_entry(p, struct smp_ltk, list);
Johan Hedbergf813f1b2014-01-30 19:39:57 -0800768 seq_printf(f, "%pMR (type %u) %u 0x%02x %u %.4x %*phN %*phN\n",
Marcel Holtmann8f8625c2013-10-18 15:56:57 -0700769 &ltk->bdaddr, ltk->bdaddr_type, ltk->authenticated,
770 ltk->type, ltk->enc_size, __le16_to_cpu(ltk->ediv),
771 8, ltk->rand, 16, ltk->val);
772 }
773 hci_dev_unlock(hdev);
774
775 return 0;
776}
777
778static int long_term_keys_open(struct inode *inode, struct file *file)
779{
780 return single_open(file, long_term_keys_show, inode->i_private);
781}
782
783static const struct file_operations long_term_keys_fops = {
784 .open = long_term_keys_open,
785 .read = seq_read,
786 .llseek = seq_lseek,
787 .release = single_release,
788};
789
Marcel Holtmann4e70c7e2013-10-19 07:09:13 -0700790static int conn_min_interval_set(void *data, u64 val)
791{
792 struct hci_dev *hdev = data;
793
794 if (val < 0x0006 || val > 0x0c80 || val > hdev->le_conn_max_interval)
795 return -EINVAL;
796
797 hci_dev_lock(hdev);
Marcel Holtmann2be48b62013-10-19 10:19:15 -0700798 hdev->le_conn_min_interval = val;
Marcel Holtmann4e70c7e2013-10-19 07:09:13 -0700799 hci_dev_unlock(hdev);
800
801 return 0;
802}
803
804static int conn_min_interval_get(void *data, u64 *val)
805{
806 struct hci_dev *hdev = data;
807
808 hci_dev_lock(hdev);
809 *val = hdev->le_conn_min_interval;
810 hci_dev_unlock(hdev);
811
812 return 0;
813}
814
815DEFINE_SIMPLE_ATTRIBUTE(conn_min_interval_fops, conn_min_interval_get,
816 conn_min_interval_set, "%llu\n");
817
818static int conn_max_interval_set(void *data, u64 val)
819{
820 struct hci_dev *hdev = data;
821
822 if (val < 0x0006 || val > 0x0c80 || val < hdev->le_conn_min_interval)
823 return -EINVAL;
824
825 hci_dev_lock(hdev);
Marcel Holtmann2be48b62013-10-19 10:19:15 -0700826 hdev->le_conn_max_interval = val;
Marcel Holtmann4e70c7e2013-10-19 07:09:13 -0700827 hci_dev_unlock(hdev);
828
829 return 0;
830}
831
832static int conn_max_interval_get(void *data, u64 *val)
833{
834 struct hci_dev *hdev = data;
835
836 hci_dev_lock(hdev);
837 *val = hdev->le_conn_max_interval;
838 hci_dev_unlock(hdev);
839
840 return 0;
841}
842
843DEFINE_SIMPLE_ATTRIBUTE(conn_max_interval_fops, conn_max_interval_get,
844 conn_max_interval_set, "%llu\n");
845
Marcel Holtmann3f959d42014-02-20 11:55:56 -0800846static int adv_channel_map_set(void *data, u64 val)
847{
848 struct hci_dev *hdev = data;
849
850 if (val < 0x01 || val > 0x07)
851 return -EINVAL;
852
853 hci_dev_lock(hdev);
854 hdev->le_adv_channel_map = val;
855 hci_dev_unlock(hdev);
856
857 return 0;
858}
859
860static int adv_channel_map_get(void *data, u64 *val)
861{
862 struct hci_dev *hdev = data;
863
864 hci_dev_lock(hdev);
865 *val = hdev->le_adv_channel_map;
866 hci_dev_unlock(hdev);
867
868 return 0;
869}
870
871DEFINE_SIMPLE_ATTRIBUTE(adv_channel_map_fops, adv_channel_map_get,
872 adv_channel_map_set, "%llu\n");
873
Jukka Rissanen89863102013-12-11 17:05:38 +0200874static ssize_t lowpan_read(struct file *file, char __user *user_buf,
875 size_t count, loff_t *ppos)
876{
877 struct hci_dev *hdev = file->private_data;
878 char buf[3];
879
880 buf[0] = test_bit(HCI_6LOWPAN_ENABLED, &hdev->dev_flags) ? 'Y' : 'N';
881 buf[1] = '\n';
882 buf[2] = '\0';
883 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
884}
885
886static ssize_t lowpan_write(struct file *fp, const char __user *user_buffer,
887 size_t count, loff_t *position)
888{
889 struct hci_dev *hdev = fp->private_data;
890 bool enable;
891 char buf[32];
892 size_t buf_size = min(count, (sizeof(buf)-1));
893
894 if (copy_from_user(buf, user_buffer, buf_size))
895 return -EFAULT;
896
897 buf[buf_size] = '\0';
898
899 if (strtobool(buf, &enable) < 0)
900 return -EINVAL;
901
902 if (enable == test_bit(HCI_6LOWPAN_ENABLED, &hdev->dev_flags))
903 return -EALREADY;
904
905 change_bit(HCI_6LOWPAN_ENABLED, &hdev->dev_flags);
906
907 return count;
908}
909
910static const struct file_operations lowpan_debugfs_fops = {
911 .open = simple_open,
912 .read = lowpan_read,
913 .write = lowpan_write,
914 .llseek = default_llseek,
915};
916
Andre Guedes7d474e02014-02-26 20:21:54 -0300917static int le_auto_conn_show(struct seq_file *sf, void *ptr)
918{
919 struct hci_dev *hdev = sf->private;
920 struct hci_conn_params *p;
921
922 hci_dev_lock(hdev);
923
924 list_for_each_entry(p, &hdev->le_conn_params, list) {
925 seq_printf(sf, "%pMR %u %u\n", &p->addr, p->addr_type,
926 p->auto_connect);
927 }
928
929 hci_dev_unlock(hdev);
930
931 return 0;
932}
933
934static int le_auto_conn_open(struct inode *inode, struct file *file)
935{
936 return single_open(file, le_auto_conn_show, inode->i_private);
937}
938
939static ssize_t le_auto_conn_write(struct file *file, const char __user *data,
940 size_t count, loff_t *offset)
941{
942 struct seq_file *sf = file->private_data;
943 struct hci_dev *hdev = sf->private;
944 u8 auto_connect = 0;
945 bdaddr_t addr;
946 u8 addr_type;
947 char *buf;
948 int err = 0;
949 int n;
950
951 /* Don't allow partial write */
952 if (*offset != 0)
953 return -EINVAL;
954
955 if (count < 3)
956 return -EINVAL;
957
958 buf = kzalloc(count, GFP_KERNEL);
959 if (!buf)
960 return -ENOMEM;
961
962 if (copy_from_user(buf, data, count)) {
963 err = -EFAULT;
964 goto done;
965 }
966
967 if (memcmp(buf, "add", 3) == 0) {
968 n = sscanf(&buf[4], "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu %hhu",
969 &addr.b[5], &addr.b[4], &addr.b[3], &addr.b[2],
970 &addr.b[1], &addr.b[0], &addr_type,
971 &auto_connect);
972
973 if (n < 7) {
974 err = -EINVAL;
975 goto done;
976 }
977
978 hci_dev_lock(hdev);
979 err = hci_conn_params_add(hdev, &addr, addr_type, auto_connect,
980 hdev->le_conn_min_interval,
981 hdev->le_conn_max_interval);
982 hci_dev_unlock(hdev);
983
984 if (err)
985 goto done;
986 } else if (memcmp(buf, "del", 3) == 0) {
987 n = sscanf(&buf[4], "%hhx:%hhx:%hhx:%hhx:%hhx:%hhx %hhu",
988 &addr.b[5], &addr.b[4], &addr.b[3], &addr.b[2],
989 &addr.b[1], &addr.b[0], &addr_type);
990
991 if (n < 7) {
992 err = -EINVAL;
993 goto done;
994 }
995
996 hci_dev_lock(hdev);
997 hci_conn_params_del(hdev, &addr, addr_type);
998 hci_dev_unlock(hdev);
999 } else if (memcmp(buf, "clr", 3) == 0) {
1000 hci_dev_lock(hdev);
1001 hci_conn_params_clear(hdev);
1002 hci_pend_le_conns_clear(hdev);
1003 hci_update_background_scan(hdev);
1004 hci_dev_unlock(hdev);
1005 } else {
1006 err = -EINVAL;
1007 }
1008
1009done:
1010 kfree(buf);
1011
1012 if (err)
1013 return err;
1014 else
1015 return count;
1016}
1017
1018static const struct file_operations le_auto_conn_fops = {
1019 .open = le_auto_conn_open,
1020 .read = seq_read,
1021 .write = le_auto_conn_write,
1022 .llseek = seq_lseek,
1023 .release = single_release,
1024};
1025
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026/* ---- HCI requests ---- */
1027
Johan Hedberg42c6b122013-03-05 20:37:49 +02001028static void hci_req_sync_complete(struct hci_dev *hdev, u8 result)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001030 BT_DBG("%s result 0x%2.2x", hdev->name, result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 if (hdev->req_status == HCI_REQ_PEND) {
1033 hdev->req_result = result;
1034 hdev->req_status = HCI_REQ_DONE;
1035 wake_up_interruptible(&hdev->req_wait_q);
1036 }
1037}
1038
1039static void hci_req_cancel(struct hci_dev *hdev, int err)
1040{
1041 BT_DBG("%s err 0x%2.2x", hdev->name, err);
1042
1043 if (hdev->req_status == HCI_REQ_PEND) {
1044 hdev->req_result = err;
1045 hdev->req_status = HCI_REQ_CANCELED;
1046 wake_up_interruptible(&hdev->req_wait_q);
1047 }
1048}
1049
Fengguang Wu77a63e02013-04-20 16:24:31 +03001050static struct sk_buff *hci_get_cmd_complete(struct hci_dev *hdev, u16 opcode,
1051 u8 event)
Johan Hedberg75e84b72013-04-02 13:35:04 +03001052{
1053 struct hci_ev_cmd_complete *ev;
1054 struct hci_event_hdr *hdr;
1055 struct sk_buff *skb;
1056
1057 hci_dev_lock(hdev);
1058
1059 skb = hdev->recv_evt;
1060 hdev->recv_evt = NULL;
1061
1062 hci_dev_unlock(hdev);
1063
1064 if (!skb)
1065 return ERR_PTR(-ENODATA);
1066
1067 if (skb->len < sizeof(*hdr)) {
1068 BT_ERR("Too short HCI event");
1069 goto failed;
1070 }
1071
1072 hdr = (void *) skb->data;
1073 skb_pull(skb, HCI_EVENT_HDR_SIZE);
1074
Johan Hedberg7b1abbb2013-04-03 21:54:47 +03001075 if (event) {
1076 if (hdr->evt != event)
1077 goto failed;
1078 return skb;
1079 }
1080
Johan Hedberg75e84b72013-04-02 13:35:04 +03001081 if (hdr->evt != HCI_EV_CMD_COMPLETE) {
1082 BT_DBG("Last event is not cmd complete (0x%2.2x)", hdr->evt);
1083 goto failed;
1084 }
1085
1086 if (skb->len < sizeof(*ev)) {
1087 BT_ERR("Too short cmd_complete event");
1088 goto failed;
1089 }
1090
1091 ev = (void *) skb->data;
1092 skb_pull(skb, sizeof(*ev));
1093
1094 if (opcode == __le16_to_cpu(ev->opcode))
1095 return skb;
1096
1097 BT_DBG("opcode doesn't match (0x%2.2x != 0x%2.2x)", opcode,
1098 __le16_to_cpu(ev->opcode));
1099
1100failed:
1101 kfree_skb(skb);
1102 return ERR_PTR(-ENODATA);
1103}
1104
Johan Hedberg7b1abbb2013-04-03 21:54:47 +03001105struct sk_buff *__hci_cmd_sync_ev(struct hci_dev *hdev, u16 opcode, u32 plen,
Johan Hedberg07dc93d2013-04-19 10:14:51 +03001106 const void *param, u8 event, u32 timeout)
Johan Hedberg75e84b72013-04-02 13:35:04 +03001107{
1108 DECLARE_WAITQUEUE(wait, current);
1109 struct hci_request req;
1110 int err = 0;
1111
1112 BT_DBG("%s", hdev->name);
1113
1114 hci_req_init(&req, hdev);
1115
Johan Hedberg7b1abbb2013-04-03 21:54:47 +03001116 hci_req_add_ev(&req, opcode, plen, param, event);
Johan Hedberg75e84b72013-04-02 13:35:04 +03001117
1118 hdev->req_status = HCI_REQ_PEND;
1119
1120 err = hci_req_run(&req, hci_req_sync_complete);
1121 if (err < 0)
1122 return ERR_PTR(err);
1123
1124 add_wait_queue(&hdev->req_wait_q, &wait);
1125 set_current_state(TASK_INTERRUPTIBLE);
1126
1127 schedule_timeout(timeout);
1128
1129 remove_wait_queue(&hdev->req_wait_q, &wait);
1130
1131 if (signal_pending(current))
1132 return ERR_PTR(-EINTR);
1133
1134 switch (hdev->req_status) {
1135 case HCI_REQ_DONE:
1136 err = -bt_to_errno(hdev->req_result);
1137 break;
1138
1139 case HCI_REQ_CANCELED:
1140 err = -hdev->req_result;
1141 break;
1142
1143 default:
1144 err = -ETIMEDOUT;
1145 break;
1146 }
1147
1148 hdev->req_status = hdev->req_result = 0;
1149
1150 BT_DBG("%s end: err %d", hdev->name, err);
1151
1152 if (err < 0)
1153 return ERR_PTR(err);
1154
Johan Hedberg7b1abbb2013-04-03 21:54:47 +03001155 return hci_get_cmd_complete(hdev, opcode, event);
1156}
1157EXPORT_SYMBOL(__hci_cmd_sync_ev);
1158
1159struct sk_buff *__hci_cmd_sync(struct hci_dev *hdev, u16 opcode, u32 plen,
Johan Hedberg07dc93d2013-04-19 10:14:51 +03001160 const void *param, u32 timeout)
Johan Hedberg7b1abbb2013-04-03 21:54:47 +03001161{
1162 return __hci_cmd_sync_ev(hdev, opcode, plen, param, 0, timeout);
Johan Hedberg75e84b72013-04-02 13:35:04 +03001163}
1164EXPORT_SYMBOL(__hci_cmd_sync);
1165
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166/* Execute request and wait for completion. */
Johan Hedberg01178cd2013-03-05 20:37:41 +02001167static int __hci_req_sync(struct hci_dev *hdev,
Johan Hedberg42c6b122013-03-05 20:37:49 +02001168 void (*func)(struct hci_request *req,
1169 unsigned long opt),
Johan Hedberg01178cd2013-03-05 20:37:41 +02001170 unsigned long opt, __u32 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001172 struct hci_request req;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173 DECLARE_WAITQUEUE(wait, current);
1174 int err = 0;
1175
1176 BT_DBG("%s start", hdev->name);
1177
Johan Hedberg42c6b122013-03-05 20:37:49 +02001178 hci_req_init(&req, hdev);
1179
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180 hdev->req_status = HCI_REQ_PEND;
1181
Johan Hedberg42c6b122013-03-05 20:37:49 +02001182 func(&req, opt);
Johan Hedberg53cce222013-03-05 20:37:42 +02001183
Johan Hedberg42c6b122013-03-05 20:37:49 +02001184 err = hci_req_run(&req, hci_req_sync_complete);
1185 if (err < 0) {
Johan Hedberg53cce222013-03-05 20:37:42 +02001186 hdev->req_status = 0;
Andre Guedes920c8302013-03-08 11:20:15 -03001187
1188 /* ENODATA means the HCI request command queue is empty.
1189 * This can happen when a request with conditionals doesn't
1190 * trigger any commands to be sent. This is normal behavior
1191 * and should not trigger an error return.
Johan Hedberg42c6b122013-03-05 20:37:49 +02001192 */
Andre Guedes920c8302013-03-08 11:20:15 -03001193 if (err == -ENODATA)
1194 return 0;
1195
1196 return err;
Johan Hedberg53cce222013-03-05 20:37:42 +02001197 }
1198
Andre Guedesbc4445c2013-03-08 11:20:13 -03001199 add_wait_queue(&hdev->req_wait_q, &wait);
1200 set_current_state(TASK_INTERRUPTIBLE);
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 schedule_timeout(timeout);
1203
1204 remove_wait_queue(&hdev->req_wait_q, &wait);
1205
1206 if (signal_pending(current))
1207 return -EINTR;
1208
1209 switch (hdev->req_status) {
1210 case HCI_REQ_DONE:
Joe Perchese1750722011-06-29 18:18:29 -07001211 err = -bt_to_errno(hdev->req_result);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 break;
1213
1214 case HCI_REQ_CANCELED:
1215 err = -hdev->req_result;
1216 break;
1217
1218 default:
1219 err = -ETIMEDOUT;
1220 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Johan Hedberga5040ef2011-01-10 13:28:59 +02001223 hdev->req_status = hdev->req_result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 BT_DBG("%s end: err %d", hdev->name, err);
1226
1227 return err;
1228}
1229
Johan Hedberg01178cd2013-03-05 20:37:41 +02001230static int hci_req_sync(struct hci_dev *hdev,
Johan Hedberg42c6b122013-03-05 20:37:49 +02001231 void (*req)(struct hci_request *req,
1232 unsigned long opt),
Johan Hedberg01178cd2013-03-05 20:37:41 +02001233 unsigned long opt, __u32 timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234{
1235 int ret;
1236
Marcel Holtmann7c6a3292008-09-12 03:11:54 +02001237 if (!test_bit(HCI_UP, &hdev->flags))
1238 return -ENETDOWN;
1239
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 /* Serialize all requests */
1241 hci_req_lock(hdev);
Johan Hedberg01178cd2013-03-05 20:37:41 +02001242 ret = __hci_req_sync(hdev, req, opt, timeout);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 hci_req_unlock(hdev);
1244
1245 return ret;
1246}
1247
Johan Hedberg42c6b122013-03-05 20:37:49 +02001248static void hci_reset_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001250 BT_DBG("%s %ld", req->hdev->name, opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
1252 /* Reset device */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001253 set_bit(HCI_RESET, &req->hdev->flags);
1254 hci_req_add(req, HCI_OP_RESET, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255}
1256
Johan Hedberg42c6b122013-03-05 20:37:49 +02001257static void bredr_init(struct hci_request *req)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001259 req->hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_PACKET_BASED;
Andrei Emeltchenko2455a3e2011-12-19 16:31:28 +02001260
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 /* Read Local Supported Features */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001262 hci_req_add(req, HCI_OP_READ_LOCAL_FEATURES, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001263
Marcel Holtmann1143e5a2006-09-23 09:57:20 +02001264 /* Read Local Version */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001265 hci_req_add(req, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001266
1267 /* Read BD Address */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001268 hci_req_add(req, HCI_OP_READ_BD_ADDR, 0, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269}
1270
Johan Hedberg42c6b122013-03-05 20:37:49 +02001271static void amp_init(struct hci_request *req)
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +02001272{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001273 req->hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_BLOCK_BASED;
Andrei Emeltchenko2455a3e2011-12-19 16:31:28 +02001274
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +02001275 /* Read Local Version */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001276 hci_req_add(req, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
Andrei Emeltchenko6bcbc482012-03-28 16:31:24 +03001277
Marcel Holtmannf6996cf2013-10-07 02:31:39 -07001278 /* Read Local Supported Commands */
1279 hci_req_add(req, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
1280
1281 /* Read Local Supported Features */
1282 hci_req_add(req, HCI_OP_READ_LOCAL_FEATURES, 0, NULL);
1283
Andrei Emeltchenko6bcbc482012-03-28 16:31:24 +03001284 /* Read Local AMP Info */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001285 hci_req_add(req, HCI_OP_READ_LOCAL_AMP_INFO, 0, NULL);
Andrei Emeltchenkoe71dfab2012-09-06 15:05:46 +03001286
1287 /* Read Data Blk size */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001288 hci_req_add(req, HCI_OP_READ_DATA_BLOCK_SIZE, 0, NULL);
Marcel Holtmann7528ca12013-10-07 03:55:52 -07001289
Marcel Holtmannf38ba942013-10-07 03:55:53 -07001290 /* Read Flow Control Mode */
1291 hci_req_add(req, HCI_OP_READ_FLOW_CONTROL_MODE, 0, NULL);
1292
Marcel Holtmann7528ca12013-10-07 03:55:52 -07001293 /* Read Location Data */
1294 hci_req_add(req, HCI_OP_READ_LOCATION_DATA, 0, NULL);
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +02001295}
1296
Johan Hedberg42c6b122013-03-05 20:37:49 +02001297static void hci_init1_req(struct hci_request *req, unsigned long opt)
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +02001298{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001299 struct hci_dev *hdev = req->hdev;
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +02001300
1301 BT_DBG("%s %ld", hdev->name, opt);
1302
Andrei Emeltchenko11778712012-06-11 11:13:10 +03001303 /* Reset */
1304 if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks))
Johan Hedberg42c6b122013-03-05 20:37:49 +02001305 hci_reset_req(req, 0);
Andrei Emeltchenko11778712012-06-11 11:13:10 +03001306
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +02001307 switch (hdev->dev_type) {
1308 case HCI_BREDR:
Johan Hedberg42c6b122013-03-05 20:37:49 +02001309 bredr_init(req);
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +02001310 break;
1311
1312 case HCI_AMP:
Johan Hedberg42c6b122013-03-05 20:37:49 +02001313 amp_init(req);
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +02001314 break;
1315
1316 default:
1317 BT_ERR("Unknown device type %d", hdev->dev_type);
1318 break;
1319 }
Andrei Emeltchenkoe61ef4992011-12-19 16:31:27 +02001320}
1321
Johan Hedberg42c6b122013-03-05 20:37:49 +02001322static void bredr_setup(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +02001323{
Marcel Holtmann4ca048e2013-10-11 16:42:07 -07001324 struct hci_dev *hdev = req->hdev;
1325
Johan Hedberg2177bab2013-03-05 20:37:43 +02001326 __le16 param;
1327 __u8 flt_type;
1328
1329 /* Read Buffer Size (ACL mtu, max pkt, etc.) */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001330 hci_req_add(req, HCI_OP_READ_BUFFER_SIZE, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001331
1332 /* Read Class of Device */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001333 hci_req_add(req, HCI_OP_READ_CLASS_OF_DEV, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001334
1335 /* Read Local Name */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001336 hci_req_add(req, HCI_OP_READ_LOCAL_NAME, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001337
1338 /* Read Voice Setting */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001339 hci_req_add(req, HCI_OP_READ_VOICE_SETTING, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001340
Marcel Holtmannb4cb9fb2013-10-14 13:56:16 -07001341 /* Read Number of Supported IAC */
1342 hci_req_add(req, HCI_OP_READ_NUM_SUPPORTED_IAC, 0, NULL);
1343
Marcel Holtmann4b836f32013-10-14 14:06:36 -07001344 /* Read Current IAC LAP */
1345 hci_req_add(req, HCI_OP_READ_CURRENT_IAC_LAP, 0, NULL);
1346
Johan Hedberg2177bab2013-03-05 20:37:43 +02001347 /* Clear Event Filters */
1348 flt_type = HCI_FLT_CLEAR_ALL;
Johan Hedberg42c6b122013-03-05 20:37:49 +02001349 hci_req_add(req, HCI_OP_SET_EVENT_FLT, 1, &flt_type);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001350
1351 /* Connection accept timeout ~20 secs */
1352 param = __constant_cpu_to_le16(0x7d00);
Johan Hedberg42c6b122013-03-05 20:37:49 +02001353 hci_req_add(req, HCI_OP_WRITE_CA_TIMEOUT, 2, &param);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001354
Marcel Holtmann4ca048e2013-10-11 16:42:07 -07001355 /* AVM Berlin (31), aka "BlueFRITZ!", reports version 1.2,
1356 * but it does not support page scan related HCI commands.
1357 */
1358 if (hdev->manufacturer != 31 && hdev->hci_ver > BLUETOOTH_VER_1_1) {
Johan Hedbergf332ec62013-03-15 17:07:11 -05001359 hci_req_add(req, HCI_OP_READ_PAGE_SCAN_ACTIVITY, 0, NULL);
1360 hci_req_add(req, HCI_OP_READ_PAGE_SCAN_TYPE, 0, NULL);
1361 }
Johan Hedberg2177bab2013-03-05 20:37:43 +02001362}
1363
Johan Hedberg42c6b122013-03-05 20:37:49 +02001364static void le_setup(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +02001365{
Johan Hedbergc73eee92013-04-19 18:35:21 +03001366 struct hci_dev *hdev = req->hdev;
1367
Johan Hedberg2177bab2013-03-05 20:37:43 +02001368 /* Read LE Buffer Size */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001369 hci_req_add(req, HCI_OP_LE_READ_BUFFER_SIZE, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001370
1371 /* Read LE Local Supported Features */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001372 hci_req_add(req, HCI_OP_LE_READ_LOCAL_FEATURES, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001373
Marcel Holtmann747d3f02014-02-27 20:37:29 -08001374 /* Read LE Supported States */
1375 hci_req_add(req, HCI_OP_LE_READ_SUPPORTED_STATES, 0, NULL);
1376
Johan Hedberg2177bab2013-03-05 20:37:43 +02001377 /* Read LE Advertising Channel TX Power */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001378 hci_req_add(req, HCI_OP_LE_READ_ADV_TX_POWER, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001379
1380 /* Read LE White List Size */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001381 hci_req_add(req, HCI_OP_LE_READ_WHITE_LIST_SIZE, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001382
Marcel Holtmann747d3f02014-02-27 20:37:29 -08001383 /* Clear LE White List */
1384 hci_req_add(req, HCI_OP_LE_CLEAR_WHITE_LIST, 0, NULL);
Johan Hedbergc73eee92013-04-19 18:35:21 +03001385
1386 /* LE-only controllers have LE implicitly enabled */
1387 if (!lmp_bredr_capable(hdev))
1388 set_bit(HCI_LE_ENABLED, &hdev->dev_flags);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001389}
1390
1391static u8 hci_get_inquiry_mode(struct hci_dev *hdev)
1392{
1393 if (lmp_ext_inq_capable(hdev))
1394 return 0x02;
1395
1396 if (lmp_inq_rssi_capable(hdev))
1397 return 0x01;
1398
1399 if (hdev->manufacturer == 11 && hdev->hci_rev == 0x00 &&
1400 hdev->lmp_subver == 0x0757)
1401 return 0x01;
1402
1403 if (hdev->manufacturer == 15) {
1404 if (hdev->hci_rev == 0x03 && hdev->lmp_subver == 0x6963)
1405 return 0x01;
1406 if (hdev->hci_rev == 0x09 && hdev->lmp_subver == 0x6963)
1407 return 0x01;
1408 if (hdev->hci_rev == 0x00 && hdev->lmp_subver == 0x6965)
1409 return 0x01;
1410 }
1411
1412 if (hdev->manufacturer == 31 && hdev->hci_rev == 0x2005 &&
1413 hdev->lmp_subver == 0x1805)
1414 return 0x01;
1415
1416 return 0x00;
1417}
1418
Johan Hedberg42c6b122013-03-05 20:37:49 +02001419static void hci_setup_inquiry_mode(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +02001420{
1421 u8 mode;
1422
Johan Hedberg42c6b122013-03-05 20:37:49 +02001423 mode = hci_get_inquiry_mode(req->hdev);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001424
Johan Hedberg42c6b122013-03-05 20:37:49 +02001425 hci_req_add(req, HCI_OP_WRITE_INQUIRY_MODE, 1, &mode);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001426}
1427
Johan Hedberg42c6b122013-03-05 20:37:49 +02001428static void hci_setup_event_mask(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +02001429{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001430 struct hci_dev *hdev = req->hdev;
1431
Johan Hedberg2177bab2013-03-05 20:37:43 +02001432 /* The second byte is 0xff instead of 0x9f (two reserved bits
1433 * disabled) since a Broadcom 1.2 dongle doesn't respond to the
1434 * command otherwise.
1435 */
1436 u8 events[8] = { 0xff, 0xff, 0xfb, 0xff, 0x00, 0x00, 0x00, 0x00 };
1437
1438 /* CSR 1.1 dongles does not accept any bitfield so don't try to set
1439 * any event mask for pre 1.2 devices.
1440 */
1441 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
1442 return;
1443
1444 if (lmp_bredr_capable(hdev)) {
1445 events[4] |= 0x01; /* Flow Specification Complete */
1446 events[4] |= 0x02; /* Inquiry Result with RSSI */
1447 events[4] |= 0x04; /* Read Remote Extended Features Complete */
1448 events[5] |= 0x08; /* Synchronous Connection Complete */
1449 events[5] |= 0x10; /* Synchronous Connection Changed */
Marcel Holtmannc7882cb2013-08-13 10:00:54 -07001450 } else {
1451 /* Use a different default for LE-only devices */
1452 memset(events, 0, sizeof(events));
1453 events[0] |= 0x10; /* Disconnection Complete */
1454 events[0] |= 0x80; /* Encryption Change */
1455 events[1] |= 0x08; /* Read Remote Version Information Complete */
1456 events[1] |= 0x20; /* Command Complete */
1457 events[1] |= 0x40; /* Command Status */
1458 events[1] |= 0x80; /* Hardware Error */
1459 events[2] |= 0x04; /* Number of Completed Packets */
1460 events[3] |= 0x02; /* Data Buffer Overflow */
1461 events[5] |= 0x80; /* Encryption Key Refresh Complete */
Johan Hedberg2177bab2013-03-05 20:37:43 +02001462 }
1463
1464 if (lmp_inq_rssi_capable(hdev))
1465 events[4] |= 0x02; /* Inquiry Result with RSSI */
1466
1467 if (lmp_sniffsubr_capable(hdev))
1468 events[5] |= 0x20; /* Sniff Subrating */
1469
1470 if (lmp_pause_enc_capable(hdev))
1471 events[5] |= 0x80; /* Encryption Key Refresh Complete */
1472
1473 if (lmp_ext_inq_capable(hdev))
1474 events[5] |= 0x40; /* Extended Inquiry Result */
1475
1476 if (lmp_no_flush_capable(hdev))
1477 events[7] |= 0x01; /* Enhanced Flush Complete */
1478
1479 if (lmp_lsto_capable(hdev))
1480 events[6] |= 0x80; /* Link Supervision Timeout Changed */
1481
1482 if (lmp_ssp_capable(hdev)) {
1483 events[6] |= 0x01; /* IO Capability Request */
1484 events[6] |= 0x02; /* IO Capability Response */
1485 events[6] |= 0x04; /* User Confirmation Request */
1486 events[6] |= 0x08; /* User Passkey Request */
1487 events[6] |= 0x10; /* Remote OOB Data Request */
1488 events[6] |= 0x20; /* Simple Pairing Complete */
1489 events[7] |= 0x04; /* User Passkey Notification */
1490 events[7] |= 0x08; /* Keypress Notification */
1491 events[7] |= 0x10; /* Remote Host Supported
1492 * Features Notification
1493 */
1494 }
1495
1496 if (lmp_le_capable(hdev))
1497 events[7] |= 0x20; /* LE Meta-Event */
1498
Johan Hedberg42c6b122013-03-05 20:37:49 +02001499 hci_req_add(req, HCI_OP_SET_EVENT_MASK, sizeof(events), events);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001500
1501 if (lmp_le_capable(hdev)) {
1502 memset(events, 0, sizeof(events));
1503 events[0] = 0x1f;
Johan Hedberg42c6b122013-03-05 20:37:49 +02001504 hci_req_add(req, HCI_OP_LE_SET_EVENT_MASK,
1505 sizeof(events), events);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001506 }
1507}
1508
Johan Hedberg42c6b122013-03-05 20:37:49 +02001509static void hci_init2_req(struct hci_request *req, unsigned long opt)
Johan Hedberg2177bab2013-03-05 20:37:43 +02001510{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001511 struct hci_dev *hdev = req->hdev;
1512
Johan Hedberg2177bab2013-03-05 20:37:43 +02001513 if (lmp_bredr_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +02001514 bredr_setup(req);
Johan Hedberg56f87902013-10-02 13:43:13 +03001515 else
1516 clear_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001517
1518 if (lmp_le_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +02001519 le_setup(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001520
Johan Hedberg42c6b122013-03-05 20:37:49 +02001521 hci_setup_event_mask(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001522
Johan Hedberg3f8e2d72013-07-24 02:32:46 +03001523 /* AVM Berlin (31), aka "BlueFRITZ!", doesn't support the read
1524 * local supported commands HCI command.
1525 */
1526 if (hdev->manufacturer != 31 && hdev->hci_ver > BLUETOOTH_VER_1_1)
Johan Hedberg42c6b122013-03-05 20:37:49 +02001527 hci_req_add(req, HCI_OP_READ_LOCAL_COMMANDS, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001528
1529 if (lmp_ssp_capable(hdev)) {
Marcel Holtmann57af75a2013-10-18 12:04:47 -07001530 /* When SSP is available, then the host features page
1531 * should also be available as well. However some
1532 * controllers list the max_page as 0 as long as SSP
1533 * has not been enabled. To achieve proper debugging
1534 * output, force the minimum max_page to 1 at least.
1535 */
1536 hdev->max_page = 0x01;
1537
Johan Hedberg2177bab2013-03-05 20:37:43 +02001538 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
1539 u8 mode = 0x01;
Johan Hedberg42c6b122013-03-05 20:37:49 +02001540 hci_req_add(req, HCI_OP_WRITE_SSP_MODE,
1541 sizeof(mode), &mode);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001542 } else {
1543 struct hci_cp_write_eir cp;
1544
1545 memset(hdev->eir, 0, sizeof(hdev->eir));
1546 memset(&cp, 0, sizeof(cp));
1547
Johan Hedberg42c6b122013-03-05 20:37:49 +02001548 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001549 }
1550 }
1551
1552 if (lmp_inq_rssi_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +02001553 hci_setup_inquiry_mode(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001554
1555 if (lmp_inq_tx_pwr_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +02001556 hci_req_add(req, HCI_OP_READ_INQ_RSP_TX_POWER, 0, NULL);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001557
1558 if (lmp_ext_feat_capable(hdev)) {
1559 struct hci_cp_read_local_ext_features cp;
1560
1561 cp.page = 0x01;
Johan Hedberg42c6b122013-03-05 20:37:49 +02001562 hci_req_add(req, HCI_OP_READ_LOCAL_EXT_FEATURES,
1563 sizeof(cp), &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001564 }
1565
1566 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags)) {
1567 u8 enable = 1;
Johan Hedberg42c6b122013-03-05 20:37:49 +02001568 hci_req_add(req, HCI_OP_WRITE_AUTH_ENABLE, sizeof(enable),
1569 &enable);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001570 }
1571}
1572
Johan Hedberg42c6b122013-03-05 20:37:49 +02001573static void hci_setup_link_policy(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +02001574{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001575 struct hci_dev *hdev = req->hdev;
Johan Hedberg2177bab2013-03-05 20:37:43 +02001576 struct hci_cp_write_def_link_policy cp;
1577 u16 link_policy = 0;
1578
1579 if (lmp_rswitch_capable(hdev))
1580 link_policy |= HCI_LP_RSWITCH;
1581 if (lmp_hold_capable(hdev))
1582 link_policy |= HCI_LP_HOLD;
1583 if (lmp_sniff_capable(hdev))
1584 link_policy |= HCI_LP_SNIFF;
1585 if (lmp_park_capable(hdev))
1586 link_policy |= HCI_LP_PARK;
1587
1588 cp.policy = cpu_to_le16(link_policy);
Johan Hedberg42c6b122013-03-05 20:37:49 +02001589 hci_req_add(req, HCI_OP_WRITE_DEF_LINK_POLICY, sizeof(cp), &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001590}
1591
Johan Hedberg42c6b122013-03-05 20:37:49 +02001592static void hci_set_le_support(struct hci_request *req)
Johan Hedberg2177bab2013-03-05 20:37:43 +02001593{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001594 struct hci_dev *hdev = req->hdev;
Johan Hedberg2177bab2013-03-05 20:37:43 +02001595 struct hci_cp_write_le_host_supported cp;
1596
Johan Hedbergc73eee92013-04-19 18:35:21 +03001597 /* LE-only devices do not support explicit enablement */
1598 if (!lmp_bredr_capable(hdev))
1599 return;
1600
Johan Hedberg2177bab2013-03-05 20:37:43 +02001601 memset(&cp, 0, sizeof(cp));
1602
1603 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
1604 cp.le = 0x01;
1605 cp.simul = lmp_le_br_capable(hdev);
1606 }
1607
1608 if (cp.le != lmp_host_le_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +02001609 hci_req_add(req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(cp),
1610 &cp);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001611}
1612
Johan Hedbergd62e6d62013-09-13 11:40:02 +03001613static void hci_set_event_mask_page_2(struct hci_request *req)
1614{
1615 struct hci_dev *hdev = req->hdev;
1616 u8 events[8] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
1617
1618 /* If Connectionless Slave Broadcast master role is supported
1619 * enable all necessary events for it.
1620 */
Marcel Holtmann53b834d22013-12-08 11:55:33 -08001621 if (lmp_csb_master_capable(hdev)) {
Johan Hedbergd62e6d62013-09-13 11:40:02 +03001622 events[1] |= 0x40; /* Triggered Clock Capture */
1623 events[1] |= 0x80; /* Synchronization Train Complete */
1624 events[2] |= 0x10; /* Slave Page Response Timeout */
1625 events[2] |= 0x20; /* CSB Channel Map Change */
1626 }
1627
1628 /* If Connectionless Slave Broadcast slave role is supported
1629 * enable all necessary events for it.
1630 */
Marcel Holtmann53b834d22013-12-08 11:55:33 -08001631 if (lmp_csb_slave_capable(hdev)) {
Johan Hedbergd62e6d62013-09-13 11:40:02 +03001632 events[2] |= 0x01; /* Synchronization Train Received */
1633 events[2] |= 0x02; /* CSB Receive */
1634 events[2] |= 0x04; /* CSB Timeout */
1635 events[2] |= 0x08; /* Truncated Page Complete */
1636 }
1637
Marcel Holtmann40c59fc2014-01-10 02:07:21 -08001638 /* Enable Authenticated Payload Timeout Expired event if supported */
1639 if (lmp_ping_capable(hdev))
1640 events[2] |= 0x80;
1641
Johan Hedbergd62e6d62013-09-13 11:40:02 +03001642 hci_req_add(req, HCI_OP_SET_EVENT_MASK_PAGE_2, sizeof(events), events);
1643}
1644
Johan Hedberg42c6b122013-03-05 20:37:49 +02001645static void hci_init3_req(struct hci_request *req, unsigned long opt)
Johan Hedberg2177bab2013-03-05 20:37:43 +02001646{
Johan Hedberg42c6b122013-03-05 20:37:49 +02001647 struct hci_dev *hdev = req->hdev;
Johan Hedbergd2c5d772013-04-17 15:00:52 +03001648 u8 p;
Johan Hedberg42c6b122013-03-05 20:37:49 +02001649
Gustavo Padovanb8f4e062013-06-13 12:34:31 +01001650 /* Some Broadcom based Bluetooth controllers do not support the
1651 * Delete Stored Link Key command. They are clearly indicating its
1652 * absence in the bit mask of supported commands.
1653 *
1654 * Check the supported commands and only if the the command is marked
1655 * as supported send it. If not supported assume that the controller
1656 * does not have actual support for stored link keys which makes this
1657 * command redundant anyway.
Marcel Holtmannf9f462f2014-01-03 03:02:35 -08001658 *
1659 * Some controllers indicate that they support handling deleting
1660 * stored link keys, but they don't. The quirk lets a driver
1661 * just disable this command.
Marcel Holtmann637b4ca2013-07-01 14:14:46 -07001662 */
Marcel Holtmannf9f462f2014-01-03 03:02:35 -08001663 if (hdev->commands[6] & 0x80 &&
1664 !test_bit(HCI_QUIRK_BROKEN_STORED_LINK_KEY, &hdev->quirks)) {
Johan Hedberg59f45d52013-06-13 11:01:13 +03001665 struct hci_cp_delete_stored_link_key cp;
1666
1667 bacpy(&cp.bdaddr, BDADDR_ANY);
1668 cp.delete_all = 0x01;
1669 hci_req_add(req, HCI_OP_DELETE_STORED_LINK_KEY,
1670 sizeof(cp), &cp);
1671 }
1672
Johan Hedberg2177bab2013-03-05 20:37:43 +02001673 if (hdev->commands[5] & 0x10)
Johan Hedberg42c6b122013-03-05 20:37:49 +02001674 hci_setup_link_policy(req);
Johan Hedberg2177bab2013-03-05 20:37:43 +02001675
Johan Hedberg7bf32042014-02-23 19:42:29 +02001676 if (lmp_le_capable(hdev))
Johan Hedberg42c6b122013-03-05 20:37:49 +02001677 hci_set_le_support(req);
Johan Hedbergd2c5d772013-04-17 15:00:52 +03001678
1679 /* Read features beyond page 1 if available */
1680 for (p = 2; p < HCI_MAX_PAGES && p <= hdev->max_page; p++) {
1681 struct hci_cp_read_local_ext_features cp;
1682
1683 cp.page = p;
1684 hci_req_add(req, HCI_OP_READ_LOCAL_EXT_FEATURES,
1685 sizeof(cp), &cp);
1686 }
Johan Hedberg2177bab2013-03-05 20:37:43 +02001687}
1688
Johan Hedberg5d4e7e82013-09-13 11:40:01 +03001689static void hci_init4_req(struct hci_request *req, unsigned long opt)
1690{
1691 struct hci_dev *hdev = req->hdev;
1692
Johan Hedbergd62e6d62013-09-13 11:40:02 +03001693 /* Set event mask page 2 if the HCI command for it is supported */
1694 if (hdev->commands[22] & 0x04)
1695 hci_set_event_mask_page_2(req);
1696
Johan Hedberg5d4e7e82013-09-13 11:40:01 +03001697 /* Check for Synchronization Train support */
Marcel Holtmann53b834d22013-12-08 11:55:33 -08001698 if (lmp_sync_train_capable(hdev))
Johan Hedberg5d4e7e82013-09-13 11:40:01 +03001699 hci_req_add(req, HCI_OP_READ_SYNC_TRAIN_PARAMS, 0, NULL);
Marcel Holtmanna6d0d692014-01-10 02:07:24 -08001700
1701 /* Enable Secure Connections if supported and configured */
Marcel Holtmann5afeac12014-01-10 02:07:27 -08001702 if ((lmp_sc_capable(hdev) ||
1703 test_bit(HCI_FORCE_SC, &hdev->dev_flags)) &&
Marcel Holtmanna6d0d692014-01-10 02:07:24 -08001704 test_bit(HCI_SC_ENABLED, &hdev->dev_flags)) {
1705 u8 support = 0x01;
1706 hci_req_add(req, HCI_OP_WRITE_SC_SUPPORT,
1707 sizeof(support), &support);
1708 }
Johan Hedberg5d4e7e82013-09-13 11:40:01 +03001709}
1710
Johan Hedberg2177bab2013-03-05 20:37:43 +02001711static int __hci_init(struct hci_dev *hdev)
1712{
1713 int err;
1714
1715 err = __hci_req_sync(hdev, hci_init1_req, 0, HCI_INIT_TIMEOUT);
1716 if (err < 0)
1717 return err;
1718
Marcel Holtmann4b4148e2013-10-19 07:09:12 -07001719 /* The Device Under Test (DUT) mode is special and available for
1720 * all controller types. So just create it early on.
1721 */
1722 if (test_bit(HCI_SETUP, &hdev->dev_flags)) {
1723 debugfs_create_file("dut_mode", 0644, hdev->debugfs, hdev,
1724 &dut_mode_fops);
1725 }
1726
Johan Hedberg2177bab2013-03-05 20:37:43 +02001727 /* HCI_BREDR covers both single-mode LE, BR/EDR and dual-mode
1728 * BR/EDR/LE type controllers. AMP controllers only need the
1729 * first stage init.
1730 */
1731 if (hdev->dev_type != HCI_BREDR)
1732 return 0;
1733
1734 err = __hci_req_sync(hdev, hci_init2_req, 0, HCI_INIT_TIMEOUT);
1735 if (err < 0)
1736 return err;
1737
Johan Hedberg5d4e7e82013-09-13 11:40:01 +03001738 err = __hci_req_sync(hdev, hci_init3_req, 0, HCI_INIT_TIMEOUT);
1739 if (err < 0)
1740 return err;
1741
Marcel Holtmannbaf27f62013-10-16 03:28:55 -07001742 err = __hci_req_sync(hdev, hci_init4_req, 0, HCI_INIT_TIMEOUT);
1743 if (err < 0)
1744 return err;
1745
1746 /* Only create debugfs entries during the initial setup
1747 * phase and not every time the controller gets powered on.
1748 */
1749 if (!test_bit(HCI_SETUP, &hdev->dev_flags))
1750 return 0;
1751
Marcel Holtmanndfb826a2013-10-18 12:04:46 -07001752 debugfs_create_file("features", 0444, hdev->debugfs, hdev,
1753 &features_fops);
Marcel Holtmannceeb3bc2013-10-18 12:04:49 -07001754 debugfs_create_u16("manufacturer", 0444, hdev->debugfs,
1755 &hdev->manufacturer);
1756 debugfs_create_u8("hci_version", 0444, hdev->debugfs, &hdev->hci_ver);
1757 debugfs_create_u16("hci_revision", 0444, hdev->debugfs, &hdev->hci_rev);
Marcel Holtmann70afe0b2013-10-17 17:24:14 -07001758 debugfs_create_file("blacklist", 0444, hdev->debugfs, hdev,
1759 &blacklist_fops);
Marcel Holtmann47219832013-10-17 17:24:15 -07001760 debugfs_create_file("uuids", 0444, hdev->debugfs, hdev, &uuids_fops);
1761
Marcel Holtmannbaf27f62013-10-16 03:28:55 -07001762 if (lmp_bredr_capable(hdev)) {
1763 debugfs_create_file("inquiry_cache", 0444, hdev->debugfs,
1764 hdev, &inquiry_cache_fops);
Marcel Holtmann02d08d12013-10-18 12:04:52 -07001765 debugfs_create_file("link_keys", 0400, hdev->debugfs,
1766 hdev, &link_keys_fops);
Marcel Holtmannbabdbb32013-10-18 12:04:51 -07001767 debugfs_create_file("dev_class", 0444, hdev->debugfs,
1768 hdev, &dev_class_fops);
Marcel Holtmann041000b2013-10-17 12:02:31 -07001769 debugfs_create_file("voice_setting", 0444, hdev->debugfs,
1770 hdev, &voice_setting_fops);
Marcel Holtmannbaf27f62013-10-16 03:28:55 -07001771 }
1772
Marcel Holtmann06f5b772013-10-19 07:09:11 -07001773 if (lmp_ssp_capable(hdev)) {
Marcel Holtmannebd1e332013-10-17 10:54:46 -07001774 debugfs_create_file("auto_accept_delay", 0644, hdev->debugfs,
1775 hdev, &auto_accept_delay_fops);
Marcel Holtmann06f5b772013-10-19 07:09:11 -07001776 debugfs_create_file("ssp_debug_mode", 0644, hdev->debugfs,
1777 hdev, &ssp_debug_mode_fops);
Marcel Holtmann5afeac12014-01-10 02:07:27 -08001778 debugfs_create_file("force_sc_support", 0644, hdev->debugfs,
1779 hdev, &force_sc_support_fops);
Marcel Holtmann134c2a82014-01-15 22:37:42 -08001780 debugfs_create_file("sc_only_mode", 0444, hdev->debugfs,
1781 hdev, &sc_only_mode_fops);
Marcel Holtmann06f5b772013-10-19 07:09:11 -07001782 }
Marcel Holtmannebd1e332013-10-17 10:54:46 -07001783
Marcel Holtmann2bfa3532013-10-17 19:16:02 -07001784 if (lmp_sniff_capable(hdev)) {
1785 debugfs_create_file("idle_timeout", 0644, hdev->debugfs,
1786 hdev, &idle_timeout_fops);
1787 debugfs_create_file("sniff_min_interval", 0644, hdev->debugfs,
1788 hdev, &sniff_min_interval_fops);
1789 debugfs_create_file("sniff_max_interval", 0644, hdev->debugfs,
1790 hdev, &sniff_max_interval_fops);
1791 }
1792
Marcel Holtmannd0f729b2013-10-18 15:23:46 -07001793 if (lmp_le_capable(hdev)) {
Marcel Holtmannac345812014-02-23 12:44:25 -08001794 debugfs_create_file("identity", 0400, hdev->debugfs,
1795 hdev, &identity_fops);
1796 debugfs_create_file("rpa_timeout", 0644, hdev->debugfs,
1797 hdev, &rpa_timeout_fops);
Marcel Holtmann7a4cd512014-02-19 19:52:13 -08001798 debugfs_create_file("random_address", 0444, hdev->debugfs,
1799 hdev, &random_address_fops);
Marcel Holtmannb32bba62014-02-19 19:31:26 -08001800 debugfs_create_file("static_address", 0444, hdev->debugfs,
1801 hdev, &static_address_fops);
1802
1803 /* For controllers with a public address, provide a debug
1804 * option to force the usage of the configured static
1805 * address. By default the public address is used.
1806 */
1807 if (bacmp(&hdev->bdaddr, BDADDR_ANY))
1808 debugfs_create_file("force_static_address", 0644,
1809 hdev->debugfs, hdev,
1810 &force_static_address_fops);
1811
Marcel Holtmannd0f729b2013-10-18 15:23:46 -07001812 debugfs_create_u8("white_list_size", 0444, hdev->debugfs,
1813 &hdev->le_white_list_size);
Marcel Holtmannd2ab0ac2014-02-27 20:37:30 -08001814 debugfs_create_file("white_list", 0444, hdev->debugfs, hdev,
1815 &white_list_fops);
Marcel Holtmann3698d702014-02-18 21:54:49 -08001816 debugfs_create_file("identity_resolving_keys", 0400,
1817 hdev->debugfs, hdev,
1818 &identity_resolving_keys_fops);
Marcel Holtmann8f8625c2013-10-18 15:56:57 -07001819 debugfs_create_file("long_term_keys", 0400, hdev->debugfs,
1820 hdev, &long_term_keys_fops);
Marcel Holtmann4e70c7e2013-10-19 07:09:13 -07001821 debugfs_create_file("conn_min_interval", 0644, hdev->debugfs,
1822 hdev, &conn_min_interval_fops);
1823 debugfs_create_file("conn_max_interval", 0644, hdev->debugfs,
1824 hdev, &conn_max_interval_fops);
Marcel Holtmann3f959d42014-02-20 11:55:56 -08001825 debugfs_create_file("adv_channel_map", 0644, hdev->debugfs,
1826 hdev, &adv_channel_map_fops);
Jukka Rissanen89863102013-12-11 17:05:38 +02001827 debugfs_create_file("6lowpan", 0644, hdev->debugfs, hdev,
1828 &lowpan_debugfs_fops);
Andre Guedes7d474e02014-02-26 20:21:54 -03001829 debugfs_create_file("le_auto_conn", 0644, hdev->debugfs, hdev,
1830 &le_auto_conn_fops);
Marcel Holtmannd0f729b2013-10-18 15:23:46 -07001831 }
Marcel Holtmanne7b8fc92013-10-17 11:45:09 -07001832
Marcel Holtmannbaf27f62013-10-16 03:28:55 -07001833 return 0;
Johan Hedberg2177bab2013-03-05 20:37:43 +02001834}
1835
Johan Hedberg42c6b122013-03-05 20:37:49 +02001836static void hci_scan_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837{
1838 __u8 scan = opt;
1839
Johan Hedberg42c6b122013-03-05 20:37:49 +02001840 BT_DBG("%s %x", req->hdev->name, scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841
1842 /* Inquiry and Page scans */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001843 hci_req_add(req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844}
1845
Johan Hedberg42c6b122013-03-05 20:37:49 +02001846static void hci_auth_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847{
1848 __u8 auth = opt;
1849
Johan Hedberg42c6b122013-03-05 20:37:49 +02001850 BT_DBG("%s %x", req->hdev->name, auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
1852 /* Authentication */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001853 hci_req_add(req, HCI_OP_WRITE_AUTH_ENABLE, 1, &auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854}
1855
Johan Hedberg42c6b122013-03-05 20:37:49 +02001856static void hci_encrypt_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857{
1858 __u8 encrypt = opt;
1859
Johan Hedberg42c6b122013-03-05 20:37:49 +02001860 BT_DBG("%s %x", req->hdev->name, encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001862 /* Encryption */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001863 hci_req_add(req, HCI_OP_WRITE_ENCRYPT_MODE, 1, &encrypt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001864}
1865
Johan Hedberg42c6b122013-03-05 20:37:49 +02001866static void hci_linkpol_req(struct hci_request *req, unsigned long opt)
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001867{
1868 __le16 policy = cpu_to_le16(opt);
1869
Johan Hedberg42c6b122013-03-05 20:37:49 +02001870 BT_DBG("%s %x", req->hdev->name, policy);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001871
1872 /* Default link policy */
Johan Hedberg42c6b122013-03-05 20:37:49 +02001873 hci_req_add(req, HCI_OP_WRITE_DEF_LINK_POLICY, 2, &policy);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02001874}
1875
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09001876/* Get HCI device by index.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 * Device is held on return. */
1878struct hci_dev *hci_dev_get(int index)
1879{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001880 struct hci_dev *hdev = NULL, *d;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 BT_DBG("%d", index);
1883
1884 if (index < 0)
1885 return NULL;
1886
1887 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02001888 list_for_each_entry(d, &hci_dev_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (d->id == index) {
1890 hdev = hci_dev_hold(d);
1891 break;
1892 }
1893 }
1894 read_unlock(&hci_dev_list_lock);
1895 return hdev;
1896}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898/* ---- Inquiry support ---- */
Johan Hedbergff9ef572012-01-04 14:23:45 +02001899
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001900bool hci_discovery_active(struct hci_dev *hdev)
1901{
1902 struct discovery_state *discov = &hdev->discovery;
1903
Andre Guedes6fbe1952012-02-03 17:47:58 -03001904 switch (discov->state) {
Andre Guedes343f9352012-02-17 20:39:37 -03001905 case DISCOVERY_FINDING:
Andre Guedes6fbe1952012-02-03 17:47:58 -03001906 case DISCOVERY_RESOLVING:
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001907 return true;
1908
Andre Guedes6fbe1952012-02-03 17:47:58 -03001909 default:
1910 return false;
1911 }
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001912}
1913
Johan Hedbergff9ef572012-01-04 14:23:45 +02001914void hci_discovery_set_state(struct hci_dev *hdev, int state)
1915{
1916 BT_DBG("%s state %u -> %u", hdev->name, hdev->discovery.state, state);
1917
1918 if (hdev->discovery.state == state)
1919 return;
1920
1921 switch (state) {
1922 case DISCOVERY_STOPPED:
Andre Guedesc54c3862014-02-26 20:21:50 -03001923 hci_update_background_scan(hdev);
1924
Andre Guedes7b99b652012-02-13 15:41:02 -03001925 if (hdev->discovery.state != DISCOVERY_STARTING)
1926 mgmt_discovering(hdev, 0);
Johan Hedbergff9ef572012-01-04 14:23:45 +02001927 break;
1928 case DISCOVERY_STARTING:
1929 break;
Andre Guedes343f9352012-02-17 20:39:37 -03001930 case DISCOVERY_FINDING:
Johan Hedbergff9ef572012-01-04 14:23:45 +02001931 mgmt_discovering(hdev, 1);
1932 break;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001933 case DISCOVERY_RESOLVING:
1934 break;
Johan Hedbergff9ef572012-01-04 14:23:45 +02001935 case DISCOVERY_STOPPING:
1936 break;
1937 }
1938
1939 hdev->discovery.state = state;
1940}
1941
Andre Guedes1f9b9a52013-04-30 15:29:27 -03001942void hci_inquiry_cache_flush(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943{
Johan Hedberg30883512012-01-04 14:16:21 +02001944 struct discovery_state *cache = &hdev->discovery;
Johan Hedbergb57c1a52012-01-03 16:03:00 +02001945 struct inquiry_entry *p, *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946
Johan Hedberg561aafb2012-01-04 13:31:59 +02001947 list_for_each_entry_safe(p, n, &cache->all, all) {
1948 list_del(&p->all);
Johan Hedbergb57c1a52012-01-03 16:03:00 +02001949 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 }
Johan Hedberg561aafb2012-01-04 13:31:59 +02001951
1952 INIT_LIST_HEAD(&cache->unknown);
1953 INIT_LIST_HEAD(&cache->resolve);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954}
1955
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03001956struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev,
1957 bdaddr_t *bdaddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958{
Johan Hedberg30883512012-01-04 14:16:21 +02001959 struct discovery_state *cache = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 struct inquiry_entry *e;
1961
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001962 BT_DBG("cache %p, %pMR", cache, bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
Johan Hedberg561aafb2012-01-04 13:31:59 +02001964 list_for_each_entry(e, &cache->all, all) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 if (!bacmp(&e->data.bdaddr, bdaddr))
Johan Hedbergb57c1a52012-01-03 16:03:00 +02001966 return e;
1967 }
1968
1969 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970}
1971
Johan Hedberg561aafb2012-01-04 13:31:59 +02001972struct inquiry_entry *hci_inquiry_cache_lookup_unknown(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001973 bdaddr_t *bdaddr)
Johan Hedberg561aafb2012-01-04 13:31:59 +02001974{
Johan Hedberg30883512012-01-04 14:16:21 +02001975 struct discovery_state *cache = &hdev->discovery;
Johan Hedberg561aafb2012-01-04 13:31:59 +02001976 struct inquiry_entry *e;
1977
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001978 BT_DBG("cache %p, %pMR", cache, bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02001979
1980 list_for_each_entry(e, &cache->unknown, list) {
1981 if (!bacmp(&e->data.bdaddr, bdaddr))
1982 return e;
1983 }
1984
1985 return NULL;
1986}
1987
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001988struct inquiry_entry *hci_inquiry_cache_lookup_resolve(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001989 bdaddr_t *bdaddr,
1990 int state)
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001991{
1992 struct discovery_state *cache = &hdev->discovery;
1993 struct inquiry_entry *e;
1994
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03001995 BT_DBG("cache %p bdaddr %pMR state %d", cache, bdaddr, state);
Johan Hedberg30dc78e2012-01-04 15:44:20 +02001996
1997 list_for_each_entry(e, &cache->resolve, list) {
1998 if (!bacmp(bdaddr, BDADDR_ANY) && e->name_state == state)
1999 return e;
2000 if (!bacmp(&e->data.bdaddr, bdaddr))
2001 return e;
2002 }
2003
2004 return NULL;
2005}
2006
Johan Hedberga3d4e202012-01-09 00:53:02 +02002007void hci_inquiry_cache_update_resolve(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002008 struct inquiry_entry *ie)
Johan Hedberga3d4e202012-01-09 00:53:02 +02002009{
2010 struct discovery_state *cache = &hdev->discovery;
2011 struct list_head *pos = &cache->resolve;
2012 struct inquiry_entry *p;
2013
2014 list_del(&ie->list);
2015
2016 list_for_each_entry(p, &cache->resolve, list) {
2017 if (p->name_state != NAME_PENDING &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002018 abs(p->data.rssi) >= abs(ie->data.rssi))
Johan Hedberga3d4e202012-01-09 00:53:02 +02002019 break;
2020 pos = &p->list;
2021 }
2022
2023 list_add(&ie->list, pos);
2024}
2025
Johan Hedberg31754052012-01-04 13:39:52 +02002026bool hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002027 bool name_known, bool *ssp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
Johan Hedberg30883512012-01-04 14:16:21 +02002029 struct discovery_state *cache = &hdev->discovery;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002030 struct inquiry_entry *ie;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002031
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03002032 BT_DBG("cache %p, %pMR", cache, &data->bdaddr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033
Szymon Janc2b2fec42012-11-20 11:38:54 +01002034 hci_remove_remote_oob_data(hdev, &data->bdaddr);
2035
Johan Hedberg388fc8f2012-02-23 00:38:59 +02002036 if (ssp)
2037 *ssp = data->ssp_mode;
2038
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002039 ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr);
Johan Hedberga3d4e202012-01-09 00:53:02 +02002040 if (ie) {
Johan Hedberg388fc8f2012-02-23 00:38:59 +02002041 if (ie->data.ssp_mode && ssp)
2042 *ssp = true;
2043
Johan Hedberga3d4e202012-01-09 00:53:02 +02002044 if (ie->name_state == NAME_NEEDED &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002045 data->rssi != ie->data.rssi) {
Johan Hedberga3d4e202012-01-09 00:53:02 +02002046 ie->data.rssi = data->rssi;
2047 hci_inquiry_cache_update_resolve(hdev, ie);
2048 }
2049
Johan Hedberg561aafb2012-01-04 13:31:59 +02002050 goto update;
Johan Hedberga3d4e202012-01-09 00:53:02 +02002051 }
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002052
Johan Hedberg561aafb2012-01-04 13:31:59 +02002053 /* Entry not in the cache. Add new one. */
2054 ie = kzalloc(sizeof(struct inquiry_entry), GFP_ATOMIC);
2055 if (!ie)
Johan Hedberg31754052012-01-04 13:39:52 +02002056 return false;
Johan Hedberg561aafb2012-01-04 13:31:59 +02002057
2058 list_add(&ie->all, &cache->all);
2059
2060 if (name_known) {
2061 ie->name_state = NAME_KNOWN;
2062 } else {
2063 ie->name_state = NAME_NOT_KNOWN;
2064 list_add(&ie->list, &cache->unknown);
2065 }
2066
2067update:
2068 if (name_known && ie->name_state != NAME_KNOWN &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002069 ie->name_state != NAME_PENDING) {
Johan Hedberg561aafb2012-01-04 13:31:59 +02002070 ie->name_state = NAME_KNOWN;
2071 list_del(&ie->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 }
2073
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002074 memcpy(&ie->data, data, sizeof(*data));
2075 ie->timestamp = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 cache->timestamp = jiffies;
Johan Hedberg31754052012-01-04 13:39:52 +02002077
2078 if (ie->name_state == NAME_NOT_KNOWN)
2079 return false;
2080
2081 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
2083
2084static int inquiry_cache_dump(struct hci_dev *hdev, int num, __u8 *buf)
2085{
Johan Hedberg30883512012-01-04 14:16:21 +02002086 struct discovery_state *cache = &hdev->discovery;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 struct inquiry_info *info = (struct inquiry_info *) buf;
2088 struct inquiry_entry *e;
2089 int copied = 0;
2090
Johan Hedberg561aafb2012-01-04 13:31:59 +02002091 list_for_each_entry(e, &cache->all, all) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 struct inquiry_data *data = &e->data;
Johan Hedbergb57c1a52012-01-03 16:03:00 +02002093
2094 if (copied >= num)
2095 break;
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097 bacpy(&info->bdaddr, &data->bdaddr);
2098 info->pscan_rep_mode = data->pscan_rep_mode;
2099 info->pscan_period_mode = data->pscan_period_mode;
2100 info->pscan_mode = data->pscan_mode;
2101 memcpy(info->dev_class, data->dev_class, 3);
2102 info->clock_offset = data->clock_offset;
Johan Hedbergb57c1a52012-01-03 16:03:00 +02002103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 info++;
Johan Hedbergb57c1a52012-01-03 16:03:00 +02002105 copied++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106 }
2107
2108 BT_DBG("cache %p, copied %d", cache, copied);
2109 return copied;
2110}
2111
Johan Hedberg42c6b122013-03-05 20:37:49 +02002112static void hci_inq_req(struct hci_request *req, unsigned long opt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113{
2114 struct hci_inquiry_req *ir = (struct hci_inquiry_req *) opt;
Johan Hedberg42c6b122013-03-05 20:37:49 +02002115 struct hci_dev *hdev = req->hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 struct hci_cp_inquiry cp;
2117
2118 BT_DBG("%s", hdev->name);
2119
2120 if (test_bit(HCI_INQUIRY, &hdev->flags))
2121 return;
2122
2123 /* Start Inquiry */
2124 memcpy(&cp.lap, &ir->lap, 3);
2125 cp.length = ir->length;
2126 cp.num_rsp = ir->num_rsp;
Johan Hedberg42c6b122013-03-05 20:37:49 +02002127 hci_req_add(req, HCI_OP_INQUIRY, sizeof(cp), &cp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128}
2129
Andre Guedes3e13fa12013-03-27 20:04:56 -03002130static int wait_inquiry(void *word)
2131{
2132 schedule();
2133 return signal_pending(current);
2134}
2135
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136int hci_inquiry(void __user *arg)
2137{
2138 __u8 __user *ptr = arg;
2139 struct hci_inquiry_req ir;
2140 struct hci_dev *hdev;
2141 int err = 0, do_inquiry = 0, max_rsp;
2142 long timeo;
2143 __u8 *buf;
2144
2145 if (copy_from_user(&ir, ptr, sizeof(ir)))
2146 return -EFAULT;
2147
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02002148 hdev = hci_dev_get(ir.dev_id);
2149 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 return -ENODEV;
2151
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002152 if (test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
2153 err = -EBUSY;
2154 goto done;
2155 }
2156
Marcel Holtmann5b69bef52013-10-10 10:02:08 -07002157 if (hdev->dev_type != HCI_BREDR) {
2158 err = -EOPNOTSUPP;
2159 goto done;
2160 }
2161
Johan Hedberg56f87902013-10-02 13:43:13 +03002162 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
2163 err = -EOPNOTSUPP;
2164 goto done;
2165 }
2166
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002167 hci_dev_lock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002168 if (inquiry_cache_age(hdev) > INQUIRY_CACHE_AGE_MAX ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002169 inquiry_cache_empty(hdev) || ir.flags & IREQ_CACHE_FLUSH) {
Andre Guedes1f9b9a52013-04-30 15:29:27 -03002170 hci_inquiry_cache_flush(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 do_inquiry = 1;
2172 }
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002173 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Marcel Holtmann04837f62006-07-03 10:02:33 +02002175 timeo = ir.length * msecs_to_jiffies(2000);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002176
2177 if (do_inquiry) {
Johan Hedberg01178cd2013-03-05 20:37:41 +02002178 err = hci_req_sync(hdev, hci_inq_req, (unsigned long) &ir,
2179 timeo);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002180 if (err < 0)
2181 goto done;
Andre Guedes3e13fa12013-03-27 20:04:56 -03002182
2183 /* Wait until Inquiry procedure finishes (HCI_INQUIRY flag is
2184 * cleared). If it is interrupted by a signal, return -EINTR.
2185 */
2186 if (wait_on_bit(&hdev->flags, HCI_INQUIRY, wait_inquiry,
2187 TASK_INTERRUPTIBLE))
2188 return -EINTR;
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002191 /* for unlimited number of responses we will use buffer with
2192 * 255 entries
2193 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 max_rsp = (ir.num_rsp == 0) ? 255 : ir.num_rsp;
2195
2196 /* cache_dump can't sleep. Therefore we allocate temp buffer and then
2197 * copy it to the user space.
2198 */
Szymon Janc01df8c32011-02-17 16:46:47 +01002199 buf = kmalloc(sizeof(struct inquiry_info) * max_rsp, GFP_KERNEL);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002200 if (!buf) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 err = -ENOMEM;
2202 goto done;
2203 }
2204
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002205 hci_dev_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 ir.num_rsp = inquiry_cache_dump(hdev, max_rsp, buf);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002207 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208
2209 BT_DBG("num_rsp %d", ir.num_rsp);
2210
2211 if (!copy_to_user(ptr, &ir, sizeof(ir))) {
2212 ptr += sizeof(ir);
2213 if (copy_to_user(ptr, buf, sizeof(struct inquiry_info) *
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002214 ir.num_rsp))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 err = -EFAULT;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002216 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 err = -EFAULT;
2218
2219 kfree(buf);
2220
2221done:
2222 hci_dev_put(hdev);
2223 return err;
2224}
2225
Johan Hedbergcbed0ca2013-10-01 22:44:49 +03002226static int hci_dev_do_open(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 int ret = 0;
2229
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 BT_DBG("%s %p", hdev->name, hdev);
2231
2232 hci_req_lock(hdev);
2233
Johan Hovold94324962012-03-15 14:48:41 +01002234 if (test_bit(HCI_UNREGISTER, &hdev->dev_flags)) {
2235 ret = -ENODEV;
2236 goto done;
2237 }
2238
Marcel Holtmanna5c8f272013-10-06 01:08:57 -07002239 if (!test_bit(HCI_SETUP, &hdev->dev_flags)) {
2240 /* Check for rfkill but allow the HCI setup stage to
2241 * proceed (which in itself doesn't cause any RF activity).
2242 */
2243 if (test_bit(HCI_RFKILLED, &hdev->dev_flags)) {
2244 ret = -ERFKILL;
2245 goto done;
2246 }
2247
2248 /* Check for valid public address or a configured static
2249 * random adddress, but let the HCI setup proceed to
2250 * be able to determine if there is a public address
2251 * or not.
2252 *
Marcel Holtmannc6beca02014-02-17 09:21:19 -08002253 * In case of user channel usage, it is not important
2254 * if a public address or static random address is
2255 * available.
2256 *
Marcel Holtmanna5c8f272013-10-06 01:08:57 -07002257 * This check is only valid for BR/EDR controllers
2258 * since AMP controllers do not have an address.
2259 */
Marcel Holtmannc6beca02014-02-17 09:21:19 -08002260 if (!test_bit(HCI_USER_CHANNEL, &hdev->dev_flags) &&
2261 hdev->dev_type == HCI_BREDR &&
Marcel Holtmanna5c8f272013-10-06 01:08:57 -07002262 !bacmp(&hdev->bdaddr, BDADDR_ANY) &&
2263 !bacmp(&hdev->static_addr, BDADDR_ANY)) {
2264 ret = -EADDRNOTAVAIL;
2265 goto done;
2266 }
Marcel Holtmann611b30f2009-06-08 14:41:38 +02002267 }
2268
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 if (test_bit(HCI_UP, &hdev->flags)) {
2270 ret = -EALREADY;
2271 goto done;
2272 }
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 if (hdev->open(hdev)) {
2275 ret = -EIO;
2276 goto done;
2277 }
2278
Marcel Holtmannf41c70c2012-11-12 14:02:14 +09002279 atomic_set(&hdev->cmd_cnt, 1);
2280 set_bit(HCI_INIT, &hdev->flags);
2281
2282 if (hdev->setup && test_bit(HCI_SETUP, &hdev->dev_flags))
2283 ret = hdev->setup(hdev);
2284
2285 if (!ret) {
Marcel Holtmannf41c70c2012-11-12 14:02:14 +09002286 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
2287 set_bit(HCI_RAW, &hdev->flags);
2288
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002289 if (!test_bit(HCI_RAW, &hdev->flags) &&
2290 !test_bit(HCI_USER_CHANNEL, &hdev->dev_flags))
Marcel Holtmannf41c70c2012-11-12 14:02:14 +09002291 ret = __hci_init(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 }
2293
Marcel Holtmannf41c70c2012-11-12 14:02:14 +09002294 clear_bit(HCI_INIT, &hdev->flags);
2295
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 if (!ret) {
2297 hci_dev_hold(hdev);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02002298 set_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 set_bit(HCI_UP, &hdev->flags);
2300 hci_notify(hdev, HCI_DEV_UP);
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03002301 if (!test_bit(HCI_SETUP, &hdev->dev_flags) &&
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002302 !test_bit(HCI_USER_CHANNEL, &hdev->dev_flags) &&
Marcel Holtmann1514b892013-10-06 08:25:01 -07002303 hdev->dev_type == HCI_BREDR) {
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002304 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02002305 mgmt_powered(hdev, 1);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002306 hci_dev_unlock(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02002307 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002308 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 /* Init failed, cleanup */
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002310 flush_work(&hdev->tx_work);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002311 flush_work(&hdev->cmd_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04002312 flush_work(&hdev->rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
2314 skb_queue_purge(&hdev->cmd_q);
2315 skb_queue_purge(&hdev->rx_q);
2316
2317 if (hdev->flush)
2318 hdev->flush(hdev);
2319
2320 if (hdev->sent_cmd) {
2321 kfree_skb(hdev->sent_cmd);
2322 hdev->sent_cmd = NULL;
2323 }
2324
2325 hdev->close(hdev);
2326 hdev->flags = 0;
2327 }
2328
2329done:
2330 hci_req_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 return ret;
2332}
2333
Johan Hedbergcbed0ca2013-10-01 22:44:49 +03002334/* ---- HCI ioctl helpers ---- */
2335
2336int hci_dev_open(__u16 dev)
2337{
2338 struct hci_dev *hdev;
2339 int err;
2340
2341 hdev = hci_dev_get(dev);
2342 if (!hdev)
2343 return -ENODEV;
2344
Johan Hedberge1d08f42013-10-01 22:44:50 +03002345 /* We need to ensure that no other power on/off work is pending
2346 * before proceeding to call hci_dev_do_open. This is
2347 * particularly important if the setup procedure has not yet
2348 * completed.
2349 */
2350 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
2351 cancel_delayed_work(&hdev->power_off);
2352
Marcel Holtmanna5c8f272013-10-06 01:08:57 -07002353 /* After this call it is guaranteed that the setup procedure
2354 * has finished. This means that error conditions like RFKILL
2355 * or no valid public or static random address apply.
2356 */
Johan Hedberge1d08f42013-10-01 22:44:50 +03002357 flush_workqueue(hdev->req_workqueue);
2358
Johan Hedbergcbed0ca2013-10-01 22:44:49 +03002359 err = hci_dev_do_open(hdev);
2360
2361 hci_dev_put(hdev);
2362
2363 return err;
2364}
2365
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366static int hci_dev_do_close(struct hci_dev *hdev)
2367{
2368 BT_DBG("%s %p", hdev->name, hdev);
2369
Vinicius Costa Gomes78c04c02012-09-14 16:34:46 -03002370 cancel_delayed_work(&hdev->power_off);
2371
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 hci_req_cancel(hdev, ENODEV);
2373 hci_req_lock(hdev);
2374
2375 if (!test_and_clear_bit(HCI_UP, &hdev->flags)) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -03002376 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 hci_req_unlock(hdev);
2378 return 0;
2379 }
2380
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02002381 /* Flush RX and TX works */
2382 flush_work(&hdev->tx_work);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04002383 flush_work(&hdev->rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Johan Hedberg16ab91a2011-11-07 22:16:02 +02002385 if (hdev->discov_timeout > 0) {
Johan Hedberge0f93092011-11-09 01:44:22 +02002386 cancel_delayed_work(&hdev->discov_off);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02002387 hdev->discov_timeout = 0;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02002388 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07002389 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02002390 }
2391
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002392 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +02002393 cancel_delayed_work(&hdev->service_cache);
2394
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002395 cancel_delayed_work_sync(&hdev->le_scan_disable);
Johan Hedberg4518bb02014-02-24 20:35:07 +02002396
2397 if (test_bit(HCI_MGMT, &hdev->dev_flags))
2398 cancel_delayed_work_sync(&hdev->rpa_expired);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03002399
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002400 hci_dev_lock(hdev);
Andre Guedes1f9b9a52013-04-30 15:29:27 -03002401 hci_inquiry_cache_flush(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 hci_conn_hash_flush(hdev);
Andre Guedes6046dc32014-02-26 20:21:51 -03002403 hci_pend_le_conns_clear(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002404 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
2406 hci_notify(hdev, HCI_DEV_DOWN);
2407
2408 if (hdev->flush)
2409 hdev->flush(hdev);
2410
2411 /* Reset device */
2412 skb_queue_purge(&hdev->cmd_q);
2413 atomic_set(&hdev->cmd_cnt, 1);
Johan Hedberg8af59462012-02-03 21:29:40 +02002414 if (!test_bit(HCI_RAW, &hdev->flags) &&
Marcel Holtmann3a6afbd2013-10-11 09:44:12 -07002415 !test_bit(HCI_AUTO_OFF, &hdev->dev_flags) &&
Szymon Janca6c511c2012-05-23 12:35:46 +02002416 test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 set_bit(HCI_INIT, &hdev->flags);
Johan Hedberg01178cd2013-03-05 20:37:41 +02002418 __hci_req_sync(hdev, hci_reset_req, 0, HCI_CMD_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 clear_bit(HCI_INIT, &hdev->flags);
2420 }
2421
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02002422 /* flush cmd work */
2423 flush_work(&hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
2425 /* Drop queues */
2426 skb_queue_purge(&hdev->rx_q);
2427 skb_queue_purge(&hdev->cmd_q);
2428 skb_queue_purge(&hdev->raw_q);
2429
2430 /* Drop last sent command */
2431 if (hdev->sent_cmd) {
Vinicius Costa Gomesb79f44c2011-04-11 18:46:55 -03002432 del_timer_sync(&hdev->cmd_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 kfree_skb(hdev->sent_cmd);
2434 hdev->sent_cmd = NULL;
2435 }
2436
Johan Hedbergb6ddb632013-04-02 13:34:31 +03002437 kfree_skb(hdev->recv_evt);
2438 hdev->recv_evt = NULL;
2439
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 /* After this point our queues are empty
2441 * and no tasks are scheduled. */
2442 hdev->close(hdev);
2443
Johan Hedberg35b973c2013-03-15 17:06:59 -05002444 /* Clear flags */
2445 hdev->flags = 0;
2446 hdev->dev_flags &= ~HCI_PERSISTENT_MASK;
2447
Marcel Holtmann93c311a2013-10-07 00:58:33 -07002448 if (!test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) {
2449 if (hdev->dev_type == HCI_BREDR) {
2450 hci_dev_lock(hdev);
2451 mgmt_powered(hdev, 0);
2452 hci_dev_unlock(hdev);
2453 }
Marcel Holtmann8ee56542012-02-21 12:33:48 +01002454 }
Johan Hedberg5add6af2010-12-16 10:00:37 +02002455
Andrei Emeltchenkoced5c332012-11-28 17:59:42 +02002456 /* Controller radio is available but is currently powered down */
Marcel Holtmann536619e2013-10-05 11:47:45 -07002457 hdev->amp_status = AMP_STATUS_POWERED_DOWN;
Andrei Emeltchenkoced5c332012-11-28 17:59:42 +02002458
Johan Hedberge59fda82012-02-22 18:11:53 +02002459 memset(hdev->eir, 0, sizeof(hdev->eir));
Johan Hedberg09b3c3f2012-02-22 22:01:41 +02002460 memset(hdev->dev_class, 0, sizeof(hdev->dev_class));
Marcel Holtmann7a4cd512014-02-19 19:52:13 -08002461 bacpy(&hdev->random_addr, BDADDR_ANY);
Johan Hedberge59fda82012-02-22 18:11:53 +02002462
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 hci_req_unlock(hdev);
2464
2465 hci_dev_put(hdev);
2466 return 0;
2467}
2468
2469int hci_dev_close(__u16 dev)
2470{
2471 struct hci_dev *hdev;
2472 int err;
2473
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002474 hdev = hci_dev_get(dev);
2475 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 return -ENODEV;
Marcel Holtmann8ee56542012-02-21 12:33:48 +01002477
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002478 if (test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
2479 err = -EBUSY;
2480 goto done;
2481 }
2482
Marcel Holtmann8ee56542012-02-21 12:33:48 +01002483 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
2484 cancel_delayed_work(&hdev->power_off);
2485
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 err = hci_dev_do_close(hdev);
Marcel Holtmann8ee56542012-02-21 12:33:48 +01002487
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002488done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 hci_dev_put(hdev);
2490 return err;
2491}
2492
2493int hci_dev_reset(__u16 dev)
2494{
2495 struct hci_dev *hdev;
2496 int ret = 0;
2497
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002498 hdev = hci_dev_get(dev);
2499 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 return -ENODEV;
2501
2502 hci_req_lock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Marcel Holtmann808a0492013-08-26 20:57:58 -07002504 if (!test_bit(HCI_UP, &hdev->flags)) {
2505 ret = -ENETDOWN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 goto done;
Marcel Holtmann808a0492013-08-26 20:57:58 -07002507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002509 if (test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
2510 ret = -EBUSY;
2511 goto done;
2512 }
2513
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 /* Drop queues */
2515 skb_queue_purge(&hdev->rx_q);
2516 skb_queue_purge(&hdev->cmd_q);
2517
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002518 hci_dev_lock(hdev);
Andre Guedes1f9b9a52013-04-30 15:29:27 -03002519 hci_inquiry_cache_flush(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 hci_conn_hash_flush(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002521 hci_dev_unlock(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
2523 if (hdev->flush)
2524 hdev->flush(hdev);
2525
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09002526 atomic_set(&hdev->cmd_cnt, 1);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03002527 hdev->acl_cnt = 0; hdev->sco_cnt = 0; hdev->le_cnt = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529 if (!test_bit(HCI_RAW, &hdev->flags))
Johan Hedberg01178cd2013-03-05 20:37:41 +02002530 ret = __hci_req_sync(hdev, hci_reset_req, 0, HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
2532done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 hci_req_unlock(hdev);
2534 hci_dev_put(hdev);
2535 return ret;
2536}
2537
2538int hci_dev_reset_stat(__u16 dev)
2539{
2540 struct hci_dev *hdev;
2541 int ret = 0;
2542
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002543 hdev = hci_dev_get(dev);
2544 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 return -ENODEV;
2546
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002547 if (test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
2548 ret = -EBUSY;
2549 goto done;
2550 }
2551
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 memset(&hdev->stat, 0, sizeof(struct hci_dev_stats));
2553
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002554done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 hci_dev_put(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 return ret;
2557}
2558
2559int hci_dev_cmd(unsigned int cmd, void __user *arg)
2560{
2561 struct hci_dev *hdev;
2562 struct hci_dev_req dr;
2563 int err = 0;
2564
2565 if (copy_from_user(&dr, arg, sizeof(dr)))
2566 return -EFAULT;
2567
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002568 hdev = hci_dev_get(dr.dev_id);
2569 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 return -ENODEV;
2571
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002572 if (test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
2573 err = -EBUSY;
2574 goto done;
2575 }
2576
Marcel Holtmann5b69bef52013-10-10 10:02:08 -07002577 if (hdev->dev_type != HCI_BREDR) {
2578 err = -EOPNOTSUPP;
2579 goto done;
2580 }
2581
Johan Hedberg56f87902013-10-02 13:43:13 +03002582 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
2583 err = -EOPNOTSUPP;
2584 goto done;
2585 }
2586
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 switch (cmd) {
2588 case HCISETAUTH:
Johan Hedberg01178cd2013-03-05 20:37:41 +02002589 err = hci_req_sync(hdev, hci_auth_req, dr.dev_opt,
2590 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591 break;
2592
2593 case HCISETENCRYPT:
2594 if (!lmp_encrypt_capable(hdev)) {
2595 err = -EOPNOTSUPP;
2596 break;
2597 }
2598
2599 if (!test_bit(HCI_AUTH, &hdev->flags)) {
2600 /* Auth must be enabled first */
Johan Hedberg01178cd2013-03-05 20:37:41 +02002601 err = hci_req_sync(hdev, hci_auth_req, dr.dev_opt,
2602 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 if (err)
2604 break;
2605 }
2606
Johan Hedberg01178cd2013-03-05 20:37:41 +02002607 err = hci_req_sync(hdev, hci_encrypt_req, dr.dev_opt,
2608 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 break;
2610
2611 case HCISETSCAN:
Johan Hedberg01178cd2013-03-05 20:37:41 +02002612 err = hci_req_sync(hdev, hci_scan_req, dr.dev_opt,
2613 HCI_INIT_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 break;
2615
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002616 case HCISETLINKPOL:
Johan Hedberg01178cd2013-03-05 20:37:41 +02002617 err = hci_req_sync(hdev, hci_linkpol_req, dr.dev_opt,
2618 HCI_INIT_TIMEOUT);
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002619 break;
2620
2621 case HCISETLINKMODE:
2622 hdev->link_mode = ((__u16) dr.dev_opt) &
2623 (HCI_LM_MASTER | HCI_LM_ACCEPT);
2624 break;
2625
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 case HCISETPTYPE:
2627 hdev->pkt_type = (__u16) dr.dev_opt;
2628 break;
2629
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 case HCISETACLMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002631 hdev->acl_mtu = *((__u16 *) &dr.dev_opt + 1);
2632 hdev->acl_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 break;
2634
2635 case HCISETSCOMTU:
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002636 hdev->sco_mtu = *((__u16 *) &dr.dev_opt + 1);
2637 hdev->sco_pkts = *((__u16 *) &dr.dev_opt + 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 break;
2639
2640 default:
2641 err = -EINVAL;
2642 break;
2643 }
Marcel Holtmanne4e8e372008-07-14 20:13:47 +02002644
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002645done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 hci_dev_put(hdev);
2647 return err;
2648}
2649
2650int hci_get_dev_list(void __user *arg)
2651{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002652 struct hci_dev *hdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653 struct hci_dev_list_req *dl;
2654 struct hci_dev_req *dr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655 int n = 0, size, err;
2656 __u16 dev_num;
2657
2658 if (get_user(dev_num, (__u16 __user *) arg))
2659 return -EFAULT;
2660
2661 if (!dev_num || dev_num > (PAGE_SIZE * 2) / sizeof(*dr))
2662 return -EINVAL;
2663
2664 size = sizeof(*dl) + dev_num * sizeof(*dr);
2665
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002666 dl = kzalloc(size, GFP_KERNEL);
2667 if (!dl)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 return -ENOMEM;
2669
2670 dr = dl->dev_req;
2671
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002672 read_lock(&hci_dev_list_lock);
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002673 list_for_each_entry(hdev, &hci_dev_list, list) {
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002674 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberge0f93092011-11-09 01:44:22 +02002675 cancel_delayed_work(&hdev->power_off);
Johan Hedbergc542a062011-01-26 13:11:03 +02002676
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002677 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
2678 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergc542a062011-01-26 13:11:03 +02002679
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 (dr + n)->dev_id = hdev->id;
2681 (dr + n)->dev_opt = hdev->flags;
Johan Hedbergc542a062011-01-26 13:11:03 +02002682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 if (++n >= dev_num)
2684 break;
2685 }
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02002686 read_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
2688 dl->dev_num = n;
2689 size = sizeof(*dl) + n * sizeof(*dr);
2690
2691 err = copy_to_user(arg, dl, size);
2692 kfree(dl);
2693
2694 return err ? -EFAULT : 0;
2695}
2696
2697int hci_get_dev_info(void __user *arg)
2698{
2699 struct hci_dev *hdev;
2700 struct hci_dev_info di;
2701 int err = 0;
2702
2703 if (copy_from_user(&di, arg, sizeof(di)))
2704 return -EFAULT;
2705
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02002706 hdev = hci_dev_get(di.dev_id);
2707 if (!hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 return -ENODEV;
2709
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002710 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
Johan Hedberg32435532011-11-07 22:16:04 +02002711 cancel_delayed_work_sync(&hdev->power_off);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002712
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002713 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
2714 set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergc542a062011-01-26 13:11:03 +02002715
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 strcpy(di.name, hdev->name);
2717 di.bdaddr = hdev->bdaddr;
Marcel Holtmann60f2a3e2013-10-01 22:59:20 -07002718 di.type = (hdev->bus & 0x0f) | ((hdev->dev_type & 0x03) << 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 di.flags = hdev->flags;
2720 di.pkt_type = hdev->pkt_type;
Johan Hedberg572c7f82012-10-19 20:57:46 +03002721 if (lmp_bredr_capable(hdev)) {
2722 di.acl_mtu = hdev->acl_mtu;
2723 di.acl_pkts = hdev->acl_pkts;
2724 di.sco_mtu = hdev->sco_mtu;
2725 di.sco_pkts = hdev->sco_pkts;
2726 } else {
2727 di.acl_mtu = hdev->le_mtu;
2728 di.acl_pkts = hdev->le_pkts;
2729 di.sco_mtu = 0;
2730 di.sco_pkts = 0;
2731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 di.link_policy = hdev->link_policy;
2733 di.link_mode = hdev->link_mode;
2734
2735 memcpy(&di.stat, &hdev->stat, sizeof(di.stat));
2736 memcpy(&di.features, &hdev->features, sizeof(di.features));
2737
2738 if (copy_to_user(arg, &di, sizeof(di)))
2739 err = -EFAULT;
2740
2741 hci_dev_put(hdev);
2742
2743 return err;
2744}
2745
2746/* ---- Interface to HCI drivers ---- */
2747
Marcel Holtmann611b30f2009-06-08 14:41:38 +02002748static int hci_rfkill_set_block(void *data, bool blocked)
2749{
2750 struct hci_dev *hdev = data;
2751
2752 BT_DBG("%p name %s blocked %d", hdev, hdev->name, blocked);
2753
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07002754 if (test_bit(HCI_USER_CHANNEL, &hdev->dev_flags))
2755 return -EBUSY;
2756
Johan Hedberg5e130362013-09-13 08:58:17 +03002757 if (blocked) {
2758 set_bit(HCI_RFKILLED, &hdev->dev_flags);
Johan Hedbergbf543032013-09-13 08:58:18 +03002759 if (!test_bit(HCI_SETUP, &hdev->dev_flags))
2760 hci_dev_do_close(hdev);
Johan Hedberg5e130362013-09-13 08:58:17 +03002761 } else {
2762 clear_bit(HCI_RFKILLED, &hdev->dev_flags);
Gustavo Padovan1025c042013-09-27 11:56:14 -03002763 }
Marcel Holtmann611b30f2009-06-08 14:41:38 +02002764
2765 return 0;
2766}
2767
2768static const struct rfkill_ops hci_rfkill_ops = {
2769 .set_block = hci_rfkill_set_block,
2770};
2771
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002772static void hci_power_on(struct work_struct *work)
2773{
2774 struct hci_dev *hdev = container_of(work, struct hci_dev, power_on);
Johan Hedberg96570ff2013-05-29 09:51:29 +03002775 int err;
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002776
2777 BT_DBG("%s", hdev->name);
2778
Johan Hedbergcbed0ca2013-10-01 22:44:49 +03002779 err = hci_dev_do_open(hdev);
Johan Hedberg96570ff2013-05-29 09:51:29 +03002780 if (err < 0) {
2781 mgmt_set_powered_failed(hdev, err);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002782 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03002783 }
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002784
Marcel Holtmanna5c8f272013-10-06 01:08:57 -07002785 /* During the HCI setup phase, a few error conditions are
2786 * ignored and they need to be checked now. If they are still
2787 * valid, it is important to turn the device back off.
2788 */
2789 if (test_bit(HCI_RFKILLED, &hdev->dev_flags) ||
2790 (hdev->dev_type == HCI_BREDR &&
2791 !bacmp(&hdev->bdaddr, BDADDR_ANY) &&
2792 !bacmp(&hdev->static_addr, BDADDR_ANY))) {
Johan Hedbergbf543032013-09-13 08:58:18 +03002793 clear_bit(HCI_AUTO_OFF, &hdev->dev_flags);
2794 hci_dev_do_close(hdev);
2795 } else if (test_bit(HCI_AUTO_OFF, &hdev->dev_flags)) {
Johan Hedberg19202572013-01-14 22:33:51 +02002796 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
2797 HCI_AUTO_OFF_TIMEOUT);
Johan Hedbergbf543032013-09-13 08:58:18 +03002798 }
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002799
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002800 if (test_and_clear_bit(HCI_SETUP, &hdev->dev_flags))
Johan Hedberg744cf192011-11-08 20:40:14 +02002801 mgmt_index_added(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002802}
2803
2804static void hci_power_off(struct work_struct *work)
2805{
Johan Hedberg32435532011-11-07 22:16:04 +02002806 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002807 power_off.work);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002808
2809 BT_DBG("%s", hdev->name);
2810
Marcel Holtmann8ee56542012-02-21 12:33:48 +01002811 hci_dev_do_close(hdev);
Johan Hedbergab81cbf2010-12-15 13:53:18 +02002812}
2813
Johan Hedberg16ab91a2011-11-07 22:16:02 +02002814static void hci_discov_off(struct work_struct *work)
2815{
2816 struct hci_dev *hdev;
Johan Hedberg16ab91a2011-11-07 22:16:02 +02002817
2818 hdev = container_of(work, struct hci_dev, discov_off.work);
2819
2820 BT_DBG("%s", hdev->name);
2821
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07002822 mgmt_discoverable_timeout(hdev);
Johan Hedberg16ab91a2011-11-07 22:16:02 +02002823}
2824
Johan Hedberg35f74982014-02-18 17:14:32 +02002825void hci_uuids_clear(struct hci_dev *hdev)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002826{
Johan Hedberg48210022013-01-27 00:31:28 +02002827 struct bt_uuid *uuid, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002828
Johan Hedberg48210022013-01-27 00:31:28 +02002829 list_for_each_entry_safe(uuid, tmp, &hdev->uuids, list) {
2830 list_del(&uuid->list);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002831 kfree(uuid);
2832 }
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002833}
2834
Johan Hedberg35f74982014-02-18 17:14:32 +02002835void hci_link_keys_clear(struct hci_dev *hdev)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002836{
2837 struct list_head *p, *n;
2838
2839 list_for_each_safe(p, n, &hdev->link_keys) {
2840 struct link_key *key;
2841
2842 key = list_entry(p, struct link_key, list);
2843
2844 list_del(p);
2845 kfree(key);
2846 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002847}
2848
Johan Hedberg35f74982014-02-18 17:14:32 +02002849void hci_smp_ltks_clear(struct hci_dev *hdev)
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03002850{
2851 struct smp_ltk *k, *tmp;
2852
2853 list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
2854 list_del(&k->list);
2855 kfree(k);
2856 }
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03002857}
2858
Johan Hedberg970c4e42014-02-18 10:19:33 +02002859void hci_smp_irks_clear(struct hci_dev *hdev)
2860{
2861 struct smp_irk *k, *tmp;
2862
2863 list_for_each_entry_safe(k, tmp, &hdev->identity_resolving_keys, list) {
2864 list_del(&k->list);
2865 kfree(k);
2866 }
2867}
2868
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002869struct link_key *hci_find_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
2870{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002871 struct link_key *k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002872
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002873 list_for_each_entry(k, &hdev->link_keys, list)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002874 if (bacmp(bdaddr, &k->bdaddr) == 0)
2875 return k;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002876
2877 return NULL;
2878}
2879
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05302880static bool hci_persistent_key(struct hci_dev *hdev, struct hci_conn *conn,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002881 u8 key_type, u8 old_key_type)
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002882{
2883 /* Legacy key */
2884 if (key_type < 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05302885 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002886
2887 /* Debug keys are insecure so don't store them persistently */
2888 if (key_type == HCI_LK_DEBUG_COMBINATION)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05302889 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002890
2891 /* Changed combination key and there's no previous one */
2892 if (key_type == HCI_LK_CHANGED_COMBINATION && old_key_type == 0xff)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05302893 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002894
2895 /* Security mode 3 case */
2896 if (!conn)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05302897 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002898
2899 /* Neither local nor remote side had no-bonding as requirement */
2900 if (conn->auth_type > 0x01 && conn->remote_auth > 0x01)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05302901 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002902
2903 /* Local side had dedicated bonding as requirement */
2904 if (conn->auth_type == 0x02 || conn->auth_type == 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05302905 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002906
2907 /* Remote side had dedicated bonding as requirement */
2908 if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03)
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05302909 return true;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002910
2911 /* If none of the above criteria match, then don't store the key
2912 * persistently */
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05302913 return false;
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002914}
2915
Johan Hedberg98a0b842014-01-30 19:40:00 -08002916static bool ltk_type_master(u8 type)
2917{
2918 if (type == HCI_SMP_STK || type == HCI_SMP_LTK)
2919 return true;
2920
2921 return false;
2922}
2923
2924struct smp_ltk *hci_find_ltk(struct hci_dev *hdev, __le16 ediv, u8 rand[8],
2925 bool master)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03002926{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002927 struct smp_ltk *k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03002928
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002929 list_for_each_entry(k, &hdev->long_term_keys, list) {
2930 if (k->ediv != ediv ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03002931 memcmp(rand, k->rand, sizeof(k->rand)))
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03002932 continue;
2933
Johan Hedberg98a0b842014-01-30 19:40:00 -08002934 if (ltk_type_master(k->type) != master)
2935 continue;
2936
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002937 return k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03002938 }
2939
2940 return NULL;
2941}
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03002942
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002943struct smp_ltk *hci_find_ltk_by_addr(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg98a0b842014-01-30 19:40:00 -08002944 u8 addr_type, bool master)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03002945{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002946 struct smp_ltk *k;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03002947
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002948 list_for_each_entry(k, &hdev->long_term_keys, list)
2949 if (addr_type == k->bdaddr_type &&
Johan Hedberg98a0b842014-01-30 19:40:00 -08002950 bacmp(bdaddr, &k->bdaddr) == 0 &&
2951 ltk_type_master(k->type) == master)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03002952 return k;
2953
2954 return NULL;
2955}
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03002956
Johan Hedberg970c4e42014-02-18 10:19:33 +02002957struct smp_irk *hci_find_irk_by_rpa(struct hci_dev *hdev, bdaddr_t *rpa)
2958{
2959 struct smp_irk *irk;
2960
2961 list_for_each_entry(irk, &hdev->identity_resolving_keys, list) {
2962 if (!bacmp(&irk->rpa, rpa))
2963 return irk;
2964 }
2965
2966 list_for_each_entry(irk, &hdev->identity_resolving_keys, list) {
2967 if (smp_irk_matches(hdev->tfm_aes, irk->val, rpa)) {
2968 bacpy(&irk->rpa, rpa);
2969 return irk;
2970 }
2971 }
2972
2973 return NULL;
2974}
2975
2976struct smp_irk *hci_find_irk_by_addr(struct hci_dev *hdev, bdaddr_t *bdaddr,
2977 u8 addr_type)
2978{
2979 struct smp_irk *irk;
2980
Johan Hedberg6cfc9982014-02-18 21:41:35 +02002981 /* Identity Address must be public or static random */
2982 if (addr_type == ADDR_LE_DEV_RANDOM && (bdaddr->b[5] & 0xc0) != 0xc0)
2983 return NULL;
2984
Johan Hedberg970c4e42014-02-18 10:19:33 +02002985 list_for_each_entry(irk, &hdev->identity_resolving_keys, list) {
2986 if (addr_type == irk->addr_type &&
2987 bacmp(bdaddr, &irk->bdaddr) == 0)
2988 return irk;
2989 }
2990
2991 return NULL;
2992}
2993
Johan Hedbergd25e28a2011-04-28 11:28:59 -07002994int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002995 bdaddr_t *bdaddr, u8 *val, u8 type, u8 pin_len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002996{
2997 struct link_key *key, *old_key;
Vishal Agarwal745c0ce2012-04-13 17:43:22 +05302998 u8 old_key_type;
2999 bool persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003000
3001 old_key = hci_find_link_key(hdev, bdaddr);
3002 if (old_key) {
3003 old_key_type = old_key->type;
3004 key = old_key;
3005 } else {
Johan Hedberg12adcf32011-04-28 11:29:00 -07003006 old_key_type = conn ? conn->key_type : 0xff;
Johan Hedberg0a14ab42014-02-19 14:57:43 +02003007 key = kzalloc(sizeof(*key), GFP_KERNEL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003008 if (!key)
3009 return -ENOMEM;
3010 list_add(&key->list, &hdev->link_keys);
3011 }
3012
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03003013 BT_DBG("%s key for %pMR type %u", hdev->name, bdaddr, type);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003014
Johan Hedbergd25e28a2011-04-28 11:28:59 -07003015 /* Some buggy controller combinations generate a changed
3016 * combination key for legacy pairing even when there's no
3017 * previous key */
3018 if (type == HCI_LK_CHANGED_COMBINATION &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003019 (!conn || conn->remote_auth == 0xff) && old_key_type == 0xff) {
Johan Hedbergd25e28a2011-04-28 11:28:59 -07003020 type = HCI_LK_COMBINATION;
Johan Hedberg655fe6e2011-04-28 11:29:01 -07003021 if (conn)
3022 conn->key_type = type;
3023 }
Johan Hedbergd25e28a2011-04-28 11:28:59 -07003024
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003025 bacpy(&key->bdaddr, bdaddr);
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03003026 memcpy(key->val, val, HCI_LINK_KEY_SIZE);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003027 key->pin_len = pin_len;
3028
Waldemar Rymarkiewiczb6020ba2011-04-28 12:07:53 +02003029 if (type == HCI_LK_CHANGED_COMBINATION)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003030 key->type = old_key_type;
Johan Hedberg4748fed2011-04-28 11:29:02 -07003031 else
3032 key->type = type;
3033
Johan Hedberg4df378a2011-04-28 11:29:03 -07003034 if (!new_key)
3035 return 0;
3036
3037 persistent = hci_persistent_key(hdev, conn, type, old_key_type);
3038
Johan Hedberg744cf192011-11-08 20:40:14 +02003039 mgmt_new_link_key(hdev, key, persistent);
Johan Hedberg4df378a2011-04-28 11:29:03 -07003040
Vishal Agarwal6ec5bca2012-04-16 14:44:44 +05303041 if (conn)
3042 conn->flush_key = !persistent;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003043
3044 return 0;
3045}
3046
Johan Hedbergca9142b2014-02-19 14:57:44 +02003047struct smp_ltk *hci_add_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg35d70272014-02-19 14:57:47 +02003048 u8 addr_type, u8 type, u8 authenticated,
3049 u8 tk[16], u8 enc_size, __le16 ediv, u8 rand[8])
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03003050{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003051 struct smp_ltk *key, *old_key;
Johan Hedberg98a0b842014-01-30 19:40:00 -08003052 bool master = ltk_type_master(type);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03003053
Johan Hedberg98a0b842014-01-30 19:40:00 -08003054 old_key = hci_find_ltk_by_addr(hdev, bdaddr, addr_type, master);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003055 if (old_key)
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03003056 key = old_key;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003057 else {
Johan Hedberg0a14ab42014-02-19 14:57:43 +02003058 key = kzalloc(sizeof(*key), GFP_KERNEL);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03003059 if (!key)
Johan Hedbergca9142b2014-02-19 14:57:44 +02003060 return NULL;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003061 list_add(&key->list, &hdev->long_term_keys);
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03003062 }
3063
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03003064 bacpy(&key->bdaddr, bdaddr);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03003065 key->bdaddr_type = addr_type;
3066 memcpy(key->val, tk, sizeof(key->val));
3067 key->authenticated = authenticated;
3068 key->ediv = ediv;
3069 key->enc_size = enc_size;
3070 key->type = type;
3071 memcpy(key->rand, rand, sizeof(key->rand));
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03003072
Johan Hedbergca9142b2014-02-19 14:57:44 +02003073 return key;
Vinicius Costa Gomes75d262c2011-07-07 18:59:36 -03003074}
3075
Johan Hedbergca9142b2014-02-19 14:57:44 +02003076struct smp_irk *hci_add_irk(struct hci_dev *hdev, bdaddr_t *bdaddr,
3077 u8 addr_type, u8 val[16], bdaddr_t *rpa)
Johan Hedberg970c4e42014-02-18 10:19:33 +02003078{
3079 struct smp_irk *irk;
3080
3081 irk = hci_find_irk_by_addr(hdev, bdaddr, addr_type);
3082 if (!irk) {
3083 irk = kzalloc(sizeof(*irk), GFP_KERNEL);
3084 if (!irk)
Johan Hedbergca9142b2014-02-19 14:57:44 +02003085 return NULL;
Johan Hedberg970c4e42014-02-18 10:19:33 +02003086
3087 bacpy(&irk->bdaddr, bdaddr);
3088 irk->addr_type = addr_type;
3089
3090 list_add(&irk->list, &hdev->identity_resolving_keys);
3091 }
3092
3093 memcpy(irk->val, val, 16);
3094 bacpy(&irk->rpa, rpa);
3095
Johan Hedbergca9142b2014-02-19 14:57:44 +02003096 return irk;
Johan Hedberg970c4e42014-02-18 10:19:33 +02003097}
3098
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003099int hci_remove_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
3100{
3101 struct link_key *key;
3102
3103 key = hci_find_link_key(hdev, bdaddr);
3104 if (!key)
3105 return -ENOENT;
3106
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03003107 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003108
3109 list_del(&key->list);
3110 kfree(key);
3111
3112 return 0;
3113}
3114
Johan Hedberge0b2b272014-02-18 17:14:31 +02003115int hci_remove_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 bdaddr_type)
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03003116{
3117 struct smp_ltk *k, *tmp;
Johan Hedbergc51ffa02014-02-18 17:14:33 +02003118 int removed = 0;
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03003119
3120 list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
Johan Hedberge0b2b272014-02-18 17:14:31 +02003121 if (bacmp(bdaddr, &k->bdaddr) || k->bdaddr_type != bdaddr_type)
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03003122 continue;
3123
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03003124 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03003125
3126 list_del(&k->list);
3127 kfree(k);
Johan Hedbergc51ffa02014-02-18 17:14:33 +02003128 removed++;
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03003129 }
3130
Johan Hedbergc51ffa02014-02-18 17:14:33 +02003131 return removed ? 0 : -ENOENT;
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03003132}
3133
Johan Hedberga7ec7332014-02-18 17:14:35 +02003134void hci_remove_irk(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 addr_type)
3135{
3136 struct smp_irk *k, *tmp;
3137
Johan Hedberg668b7b12014-02-21 16:03:31 +02003138 list_for_each_entry_safe(k, tmp, &hdev->identity_resolving_keys, list) {
Johan Hedberga7ec7332014-02-18 17:14:35 +02003139 if (bacmp(bdaddr, &k->bdaddr) || k->addr_type != addr_type)
3140 continue;
3141
3142 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
3143
3144 list_del(&k->list);
3145 kfree(k);
3146 }
3147}
3148
Ville Tervo6bd32322011-02-16 16:32:41 +02003149/* HCI command timer function */
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03003150static void hci_cmd_timeout(unsigned long arg)
Ville Tervo6bd32322011-02-16 16:32:41 +02003151{
3152 struct hci_dev *hdev = (void *) arg;
3153
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03003154 if (hdev->sent_cmd) {
3155 struct hci_command_hdr *sent = (void *) hdev->sent_cmd->data;
3156 u16 opcode = __le16_to_cpu(sent->opcode);
3157
3158 BT_ERR("%s command 0x%4.4x tx timeout", hdev->name, opcode);
3159 } else {
3160 BT_ERR("%s command tx timeout", hdev->name);
3161 }
3162
Ville Tervo6bd32322011-02-16 16:32:41 +02003163 atomic_set(&hdev->cmd_cnt, 1);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02003164 queue_work(hdev->workqueue, &hdev->cmd_work);
Ville Tervo6bd32322011-02-16 16:32:41 +02003165}
3166
Szymon Janc2763eda2011-03-22 13:12:22 +01003167struct oob_data *hci_find_remote_oob_data(struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003168 bdaddr_t *bdaddr)
Szymon Janc2763eda2011-03-22 13:12:22 +01003169{
3170 struct oob_data *data;
3171
3172 list_for_each_entry(data, &hdev->remote_oob_data, list)
3173 if (bacmp(bdaddr, &data->bdaddr) == 0)
3174 return data;
3175
3176 return NULL;
3177}
3178
3179int hci_remove_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr)
3180{
3181 struct oob_data *data;
3182
3183 data = hci_find_remote_oob_data(hdev, bdaddr);
3184 if (!data)
3185 return -ENOENT;
3186
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03003187 BT_DBG("%s removing %pMR", hdev->name, bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01003188
3189 list_del(&data->list);
3190 kfree(data);
3191
3192 return 0;
3193}
3194
Johan Hedberg35f74982014-02-18 17:14:32 +02003195void hci_remote_oob_data_clear(struct hci_dev *hdev)
Szymon Janc2763eda2011-03-22 13:12:22 +01003196{
3197 struct oob_data *data, *n;
3198
3199 list_for_each_entry_safe(data, n, &hdev->remote_oob_data, list) {
3200 list_del(&data->list);
3201 kfree(data);
3202 }
Szymon Janc2763eda2011-03-22 13:12:22 +01003203}
3204
Marcel Holtmann07988722014-01-10 02:07:29 -08003205int hci_add_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr,
3206 u8 *hash, u8 *randomizer)
Szymon Janc2763eda2011-03-22 13:12:22 +01003207{
3208 struct oob_data *data;
3209
3210 data = hci_find_remote_oob_data(hdev, bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01003211 if (!data) {
Johan Hedberg0a14ab42014-02-19 14:57:43 +02003212 data = kmalloc(sizeof(*data), GFP_KERNEL);
Szymon Janc2763eda2011-03-22 13:12:22 +01003213 if (!data)
3214 return -ENOMEM;
3215
3216 bacpy(&data->bdaddr, bdaddr);
3217 list_add(&data->list, &hdev->remote_oob_data);
3218 }
3219
Marcel Holtmann519ca9d2014-01-10 02:07:28 -08003220 memcpy(data->hash192, hash, sizeof(data->hash192));
3221 memcpy(data->randomizer192, randomizer, sizeof(data->randomizer192));
Szymon Janc2763eda2011-03-22 13:12:22 +01003222
Marcel Holtmann07988722014-01-10 02:07:29 -08003223 memset(data->hash256, 0, sizeof(data->hash256));
3224 memset(data->randomizer256, 0, sizeof(data->randomizer256));
3225
3226 BT_DBG("%s for %pMR", hdev->name, bdaddr);
3227
3228 return 0;
3229}
3230
3231int hci_add_remote_oob_ext_data(struct hci_dev *hdev, bdaddr_t *bdaddr,
3232 u8 *hash192, u8 *randomizer192,
3233 u8 *hash256, u8 *randomizer256)
3234{
3235 struct oob_data *data;
3236
3237 data = hci_find_remote_oob_data(hdev, bdaddr);
3238 if (!data) {
Johan Hedberg0a14ab42014-02-19 14:57:43 +02003239 data = kmalloc(sizeof(*data), GFP_KERNEL);
Marcel Holtmann07988722014-01-10 02:07:29 -08003240 if (!data)
3241 return -ENOMEM;
3242
3243 bacpy(&data->bdaddr, bdaddr);
3244 list_add(&data->list, &hdev->remote_oob_data);
3245 }
3246
3247 memcpy(data->hash192, hash192, sizeof(data->hash192));
3248 memcpy(data->randomizer192, randomizer192, sizeof(data->randomizer192));
3249
3250 memcpy(data->hash256, hash256, sizeof(data->hash256));
3251 memcpy(data->randomizer256, randomizer256, sizeof(data->randomizer256));
3252
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03003253 BT_DBG("%s for %pMR", hdev->name, bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01003254
3255 return 0;
3256}
3257
Marcel Holtmannb9ee0a72013-10-17 17:24:13 -07003258struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev,
3259 bdaddr_t *bdaddr, u8 type)
Antti Julkub2a66aa2011-06-15 12:01:14 +03003260{
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02003261 struct bdaddr_list *b;
Antti Julkub2a66aa2011-06-15 12:01:14 +03003262
Marcel Holtmannb9ee0a72013-10-17 17:24:13 -07003263 list_for_each_entry(b, &hdev->blacklist, list) {
3264 if (!bacmp(&b->bdaddr, bdaddr) && b->bdaddr_type == type)
Antti Julkub2a66aa2011-06-15 12:01:14 +03003265 return b;
Marcel Holtmannb9ee0a72013-10-17 17:24:13 -07003266 }
Antti Julkub2a66aa2011-06-15 12:01:14 +03003267
3268 return NULL;
3269}
3270
Marcel Holtmannc9507492014-02-27 19:35:54 -08003271static void hci_blacklist_clear(struct hci_dev *hdev)
Antti Julkub2a66aa2011-06-15 12:01:14 +03003272{
3273 struct list_head *p, *n;
3274
3275 list_for_each_safe(p, n, &hdev->blacklist) {
Marcel Holtmannb9ee0a72013-10-17 17:24:13 -07003276 struct bdaddr_list *b = list_entry(p, struct bdaddr_list, list);
Antti Julkub2a66aa2011-06-15 12:01:14 +03003277
3278 list_del(p);
3279 kfree(b);
3280 }
Antti Julkub2a66aa2011-06-15 12:01:14 +03003281}
3282
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003283int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julkub2a66aa2011-06-15 12:01:14 +03003284{
3285 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03003286
Marcel Holtmannb9ee0a72013-10-17 17:24:13 -07003287 if (!bacmp(bdaddr, BDADDR_ANY))
Antti Julkub2a66aa2011-06-15 12:01:14 +03003288 return -EBADF;
3289
Marcel Holtmannb9ee0a72013-10-17 17:24:13 -07003290 if (hci_blacklist_lookup(hdev, bdaddr, type))
Antti Julku5e762442011-08-25 16:48:02 +03003291 return -EEXIST;
Antti Julkub2a66aa2011-06-15 12:01:14 +03003292
3293 entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL);
Antti Julku5e762442011-08-25 16:48:02 +03003294 if (!entry)
3295 return -ENOMEM;
Antti Julkub2a66aa2011-06-15 12:01:14 +03003296
3297 bacpy(&entry->bdaddr, bdaddr);
Marcel Holtmannb9ee0a72013-10-17 17:24:13 -07003298 entry->bdaddr_type = type;
Antti Julkub2a66aa2011-06-15 12:01:14 +03003299
3300 list_add(&entry->list, &hdev->blacklist);
3301
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003302 return mgmt_device_blocked(hdev, bdaddr, type);
Antti Julkub2a66aa2011-06-15 12:01:14 +03003303}
3304
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003305int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julkub2a66aa2011-06-15 12:01:14 +03003306{
3307 struct bdaddr_list *entry;
Antti Julkub2a66aa2011-06-15 12:01:14 +03003308
Johan Hedberg35f74982014-02-18 17:14:32 +02003309 if (!bacmp(bdaddr, BDADDR_ANY)) {
3310 hci_blacklist_clear(hdev);
3311 return 0;
3312 }
Antti Julkub2a66aa2011-06-15 12:01:14 +03003313
Marcel Holtmannb9ee0a72013-10-17 17:24:13 -07003314 entry = hci_blacklist_lookup(hdev, bdaddr, type);
Szymon Janc1ec918c2011-11-16 09:32:21 +01003315 if (!entry)
Antti Julku5e762442011-08-25 16:48:02 +03003316 return -ENOENT;
Antti Julkub2a66aa2011-06-15 12:01:14 +03003317
3318 list_del(&entry->list);
3319 kfree(entry);
3320
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003321 return mgmt_device_unblocked(hdev, bdaddr, type);
Antti Julkub2a66aa2011-06-15 12:01:14 +03003322}
3323
Marcel Holtmannd2ab0ac2014-02-27 20:37:30 -08003324struct bdaddr_list *hci_white_list_lookup(struct hci_dev *hdev,
3325 bdaddr_t *bdaddr, u8 type)
3326{
3327 struct bdaddr_list *b;
3328
3329 list_for_each_entry(b, &hdev->le_white_list, list) {
3330 if (!bacmp(&b->bdaddr, bdaddr) && b->bdaddr_type == type)
3331 return b;
3332 }
3333
3334 return NULL;
3335}
3336
3337void hci_white_list_clear(struct hci_dev *hdev)
3338{
3339 struct list_head *p, *n;
3340
3341 list_for_each_safe(p, n, &hdev->le_white_list) {
3342 struct bdaddr_list *b = list_entry(p, struct bdaddr_list, list);
3343
3344 list_del(p);
3345 kfree(b);
3346 }
3347}
3348
3349int hci_white_list_add(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
3350{
3351 struct bdaddr_list *entry;
3352
3353 if (!bacmp(bdaddr, BDADDR_ANY))
3354 return -EBADF;
3355
3356 entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL);
3357 if (!entry)
3358 return -ENOMEM;
3359
3360 bacpy(&entry->bdaddr, bdaddr);
3361 entry->bdaddr_type = type;
3362
3363 list_add(&entry->list, &hdev->le_white_list);
3364
3365 return 0;
3366}
3367
3368int hci_white_list_del(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
3369{
3370 struct bdaddr_list *entry;
3371
3372 if (!bacmp(bdaddr, BDADDR_ANY))
3373 return -EBADF;
3374
3375 entry = hci_white_list_lookup(hdev, bdaddr, type);
3376 if (!entry)
3377 return -ENOENT;
3378
3379 list_del(&entry->list);
3380 kfree(entry);
3381
3382 return 0;
3383}
3384
Andre Guedes15819a72014-02-03 13:56:18 -03003385/* This function requires the caller holds hdev->lock */
3386struct hci_conn_params *hci_conn_params_lookup(struct hci_dev *hdev,
3387 bdaddr_t *addr, u8 addr_type)
3388{
3389 struct hci_conn_params *params;
3390
3391 list_for_each_entry(params, &hdev->le_conn_params, list) {
3392 if (bacmp(&params->addr, addr) == 0 &&
3393 params->addr_type == addr_type) {
3394 return params;
3395 }
3396 }
3397
3398 return NULL;
3399}
3400
Andre Guedescef952c2014-02-26 20:21:49 -03003401static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
3402{
3403 struct hci_conn *conn;
3404
3405 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
3406 if (!conn)
3407 return false;
3408
3409 if (conn->dst_type != type)
3410 return false;
3411
3412 if (conn->state != BT_CONNECTED)
3413 return false;
3414
3415 return true;
3416}
3417
Andre Guedesa9b0a042014-02-26 20:21:52 -03003418static bool is_identity_address(bdaddr_t *addr, u8 addr_type)
3419{
3420 if (addr_type == ADDR_LE_DEV_PUBLIC)
3421 return true;
3422
3423 /* Check for Random Static address type */
3424 if ((addr->b[5] & 0xc0) == 0xc0)
3425 return true;
3426
3427 return false;
3428}
3429
Andre Guedes15819a72014-02-03 13:56:18 -03003430/* This function requires the caller holds hdev->lock */
Andre Guedesa9b0a042014-02-26 20:21:52 -03003431int hci_conn_params_add(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type,
3432 u8 auto_connect, u16 conn_min_interval,
3433 u16 conn_max_interval)
Andre Guedes15819a72014-02-03 13:56:18 -03003434{
3435 struct hci_conn_params *params;
3436
Andre Guedesa9b0a042014-02-26 20:21:52 -03003437 if (!is_identity_address(addr, addr_type))
3438 return -EINVAL;
3439
Andre Guedes15819a72014-02-03 13:56:18 -03003440 params = hci_conn_params_lookup(hdev, addr, addr_type);
Andre Guedescef952c2014-02-26 20:21:49 -03003441 if (params)
3442 goto update;
Andre Guedes15819a72014-02-03 13:56:18 -03003443
3444 params = kzalloc(sizeof(*params), GFP_KERNEL);
3445 if (!params) {
3446 BT_ERR("Out of memory");
Andre Guedesa9b0a042014-02-26 20:21:52 -03003447 return -ENOMEM;
Andre Guedes15819a72014-02-03 13:56:18 -03003448 }
3449
3450 bacpy(&params->addr, addr);
3451 params->addr_type = addr_type;
Andre Guedescef952c2014-02-26 20:21:49 -03003452
3453 list_add(&params->list, &hdev->le_conn_params);
3454
3455update:
Andre Guedes15819a72014-02-03 13:56:18 -03003456 params->conn_min_interval = conn_min_interval;
3457 params->conn_max_interval = conn_max_interval;
Andre Guedes9fcb18e2014-02-26 20:21:48 -03003458 params->auto_connect = auto_connect;
Andre Guedes15819a72014-02-03 13:56:18 -03003459
Andre Guedescef952c2014-02-26 20:21:49 -03003460 switch (auto_connect) {
3461 case HCI_AUTO_CONN_DISABLED:
3462 case HCI_AUTO_CONN_LINK_LOSS:
3463 hci_pend_le_conn_del(hdev, addr, addr_type);
3464 break;
3465 case HCI_AUTO_CONN_ALWAYS:
3466 if (!is_connected(hdev, addr, addr_type))
3467 hci_pend_le_conn_add(hdev, addr, addr_type);
3468 break;
3469 }
Andre Guedes15819a72014-02-03 13:56:18 -03003470
Andre Guedes9fcb18e2014-02-26 20:21:48 -03003471 BT_DBG("addr %pMR (type %u) auto_connect %u conn_min_interval 0x%.4x "
3472 "conn_max_interval 0x%.4x", addr, addr_type, auto_connect,
3473 conn_min_interval, conn_max_interval);
Andre Guedesa9b0a042014-02-26 20:21:52 -03003474
3475 return 0;
Andre Guedes15819a72014-02-03 13:56:18 -03003476}
3477
3478/* This function requires the caller holds hdev->lock */
3479void hci_conn_params_del(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type)
3480{
3481 struct hci_conn_params *params;
3482
3483 params = hci_conn_params_lookup(hdev, addr, addr_type);
3484 if (!params)
3485 return;
3486
Andre Guedescef952c2014-02-26 20:21:49 -03003487 hci_pend_le_conn_del(hdev, addr, addr_type);
3488
Andre Guedes15819a72014-02-03 13:56:18 -03003489 list_del(&params->list);
3490 kfree(params);
3491
3492 BT_DBG("addr %pMR (type %u)", addr, addr_type);
3493}
3494
3495/* This function requires the caller holds hdev->lock */
3496void hci_conn_params_clear(struct hci_dev *hdev)
3497{
3498 struct hci_conn_params *params, *tmp;
3499
3500 list_for_each_entry_safe(params, tmp, &hdev->le_conn_params, list) {
3501 list_del(&params->list);
3502 kfree(params);
3503 }
3504
3505 BT_DBG("All LE connection parameters were removed");
3506}
3507
Andre Guedes77a77a32014-02-26 20:21:46 -03003508/* This function requires the caller holds hdev->lock */
3509struct bdaddr_list *hci_pend_le_conn_lookup(struct hci_dev *hdev,
3510 bdaddr_t *addr, u8 addr_type)
3511{
3512 struct bdaddr_list *entry;
3513
3514 list_for_each_entry(entry, &hdev->pend_le_conns, list) {
3515 if (bacmp(&entry->bdaddr, addr) == 0 &&
3516 entry->bdaddr_type == addr_type)
3517 return entry;
3518 }
3519
3520 return NULL;
3521}
3522
3523/* This function requires the caller holds hdev->lock */
3524void hci_pend_le_conn_add(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type)
3525{
3526 struct bdaddr_list *entry;
3527
3528 entry = hci_pend_le_conn_lookup(hdev, addr, addr_type);
3529 if (entry)
Andre Guedesa4790db2014-02-26 20:21:47 -03003530 goto done;
Andre Guedes77a77a32014-02-26 20:21:46 -03003531
3532 entry = kzalloc(sizeof(*entry), GFP_KERNEL);
3533 if (!entry) {
3534 BT_ERR("Out of memory");
3535 return;
3536 }
3537
3538 bacpy(&entry->bdaddr, addr);
3539 entry->bdaddr_type = addr_type;
3540
3541 list_add(&entry->list, &hdev->pend_le_conns);
3542
3543 BT_DBG("addr %pMR (type %u)", addr, addr_type);
Andre Guedesa4790db2014-02-26 20:21:47 -03003544
3545done:
3546 hci_update_background_scan(hdev);
Andre Guedes77a77a32014-02-26 20:21:46 -03003547}
3548
3549/* This function requires the caller holds hdev->lock */
3550void hci_pend_le_conn_del(struct hci_dev *hdev, bdaddr_t *addr, u8 addr_type)
3551{
3552 struct bdaddr_list *entry;
3553
3554 entry = hci_pend_le_conn_lookup(hdev, addr, addr_type);
3555 if (!entry)
Andre Guedesa4790db2014-02-26 20:21:47 -03003556 goto done;
Andre Guedes77a77a32014-02-26 20:21:46 -03003557
3558 list_del(&entry->list);
3559 kfree(entry);
3560
3561 BT_DBG("addr %pMR (type %u)", addr, addr_type);
Andre Guedesa4790db2014-02-26 20:21:47 -03003562
3563done:
3564 hci_update_background_scan(hdev);
Andre Guedes77a77a32014-02-26 20:21:46 -03003565}
3566
3567/* This function requires the caller holds hdev->lock */
3568void hci_pend_le_conns_clear(struct hci_dev *hdev)
3569{
3570 struct bdaddr_list *entry, *tmp;
3571
3572 list_for_each_entry_safe(entry, tmp, &hdev->pend_le_conns, list) {
3573 list_del(&entry->list);
3574 kfree(entry);
3575 }
3576
3577 BT_DBG("All LE pending connections cleared");
3578}
3579
Andre Guedes4c87eaa2013-04-30 15:29:32 -03003580static void inquiry_complete(struct hci_dev *hdev, u8 status)
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03003581{
Andre Guedes4c87eaa2013-04-30 15:29:32 -03003582 if (status) {
3583 BT_ERR("Failed to start inquiry: status %d", status);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03003584
Andre Guedes4c87eaa2013-04-30 15:29:32 -03003585 hci_dev_lock(hdev);
3586 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3587 hci_dev_unlock(hdev);
3588 return;
3589 }
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03003590}
3591
Andre Guedes4c87eaa2013-04-30 15:29:32 -03003592static void le_scan_disable_work_complete(struct hci_dev *hdev, u8 status)
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03003593{
Andre Guedes4c87eaa2013-04-30 15:29:32 -03003594 /* General inquiry access code (GIAC) */
3595 u8 lap[3] = { 0x33, 0x8b, 0x9e };
3596 struct hci_request req;
3597 struct hci_cp_inquiry cp;
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03003598 int err;
3599
Andre Guedes4c87eaa2013-04-30 15:29:32 -03003600 if (status) {
3601 BT_ERR("Failed to disable LE scanning: status %d", status);
3602 return;
Andre Guedes7dbfac12012-03-15 16:52:07 -03003603 }
3604
Andre Guedes4c87eaa2013-04-30 15:29:32 -03003605 switch (hdev->discovery.type) {
3606 case DISCOV_TYPE_LE:
3607 hci_dev_lock(hdev);
3608 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3609 hci_dev_unlock(hdev);
3610 break;
3611
3612 case DISCOV_TYPE_INTERLEAVED:
3613 hci_req_init(&req, hdev);
3614
3615 memset(&cp, 0, sizeof(cp));
3616 memcpy(&cp.lap, lap, sizeof(cp.lap));
3617 cp.length = DISCOV_INTERLEAVED_INQUIRY_LEN;
3618 hci_req_add(&req, HCI_OP_INQUIRY, sizeof(cp), &cp);
3619
3620 hci_dev_lock(hdev);
3621
3622 hci_inquiry_cache_flush(hdev);
3623
3624 err = hci_req_run(&req, inquiry_complete);
3625 if (err) {
3626 BT_ERR("Inquiry request failed: err %d", err);
3627 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3628 }
3629
3630 hci_dev_unlock(hdev);
3631 break;
3632 }
Andre Guedes7dbfac12012-03-15 16:52:07 -03003633}
3634
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03003635static void le_scan_disable_work(struct work_struct *work)
3636{
3637 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003638 le_scan_disable.work);
Andre Guedes4c87eaa2013-04-30 15:29:32 -03003639 struct hci_request req;
3640 int err;
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03003641
3642 BT_DBG("%s", hdev->name);
3643
Andre Guedes4c87eaa2013-04-30 15:29:32 -03003644 hci_req_init(&req, hdev);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03003645
Andre Guedesb1efcc22014-02-26 20:21:40 -03003646 hci_req_add_le_scan_disable(&req);
Andre Guedes7ba8b4b2012-02-03 17:47:59 -03003647
Andre Guedes4c87eaa2013-04-30 15:29:32 -03003648 err = hci_req_run(&req, le_scan_disable_work_complete);
3649 if (err)
3650 BT_ERR("Disable LE scanning request failed: err %d", err);
Andre Guedes28b75a82012-02-03 17:48:00 -03003651}
3652
Marcel Holtmann94b1fc92014-02-23 20:25:54 -08003653int hci_update_random_address(struct hci_request *req, bool require_privacy,
3654 u8 *own_addr_type)
Johan Hedbergebd3a742014-02-23 19:42:21 +02003655{
3656 struct hci_dev *hdev = req->hdev;
3657 int err;
3658
3659 /* If privacy is enabled use a resolvable private address. If
Marcel Holtmann2b5224d2014-02-23 20:39:22 -08003660 * current RPA has expired or there is something else than
3661 * the current RPA in use, then generate a new one.
Johan Hedbergebd3a742014-02-23 19:42:21 +02003662 */
3663 if (test_bit(HCI_PRIVACY, &hdev->dev_flags)) {
Johan Hedbergebd3a742014-02-23 19:42:21 +02003664 int to;
3665
3666 *own_addr_type = ADDR_LE_DEV_RANDOM;
3667
3668 if (!test_and_clear_bit(HCI_RPA_EXPIRED, &hdev->dev_flags) &&
Marcel Holtmann2b5224d2014-02-23 20:39:22 -08003669 !bacmp(&hdev->random_addr, &hdev->rpa))
Johan Hedbergebd3a742014-02-23 19:42:21 +02003670 return 0;
3671
Marcel Holtmann2b5224d2014-02-23 20:39:22 -08003672 err = smp_generate_rpa(hdev->tfm_aes, hdev->irk, &hdev->rpa);
Johan Hedbergebd3a742014-02-23 19:42:21 +02003673 if (err < 0) {
3674 BT_ERR("%s failed to generate new RPA", hdev->name);
3675 return err;
3676 }
3677
Marcel Holtmann2b5224d2014-02-23 20:39:22 -08003678 hci_req_add(req, HCI_OP_LE_SET_RANDOM_ADDR, 6, &hdev->rpa);
Johan Hedbergebd3a742014-02-23 19:42:21 +02003679
3680 to = msecs_to_jiffies(hdev->rpa_timeout * 1000);
3681 queue_delayed_work(hdev->workqueue, &hdev->rpa_expired, to);
3682
3683 return 0;
3684 }
3685
Marcel Holtmann94b1fc92014-02-23 20:25:54 -08003686 /* In case of required privacy without resolvable private address,
3687 * use an unresolvable private address. This is useful for active
3688 * scanning and non-connectable advertising.
3689 */
3690 if (require_privacy) {
3691 bdaddr_t urpa;
3692
3693 get_random_bytes(&urpa, 6);
3694 urpa.b[5] &= 0x3f; /* Clear two most significant bits */
3695
3696 *own_addr_type = ADDR_LE_DEV_RANDOM;
3697 hci_req_add(req, HCI_OP_LE_SET_RANDOM_ADDR, 6, &urpa);
3698 return 0;
3699 }
3700
Johan Hedbergebd3a742014-02-23 19:42:21 +02003701 /* If forcing static address is in use or there is no public
3702 * address use the static address as random address (but skip
3703 * the HCI command if the current random address is already the
3704 * static one.
3705 */
3706 if (test_bit(HCI_FORCE_STATIC_ADDR, &hdev->dev_flags) ||
3707 !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
3708 *own_addr_type = ADDR_LE_DEV_RANDOM;
3709 if (bacmp(&hdev->static_addr, &hdev->random_addr))
3710 hci_req_add(req, HCI_OP_LE_SET_RANDOM_ADDR, 6,
3711 &hdev->static_addr);
3712 return 0;
3713 }
3714
3715 /* Neither privacy nor static address is being used so use a
3716 * public address.
3717 */
3718 *own_addr_type = ADDR_LE_DEV_PUBLIC;
3719
3720 return 0;
3721}
3722
Johan Hedberga1f4c312014-02-27 14:05:41 +02003723/* Copy the Identity Address of the controller.
3724 *
3725 * If the controller has a public BD_ADDR, then by default use that one.
3726 * If this is a LE only controller without a public address, default to
3727 * the static random address.
3728 *
3729 * For debugging purposes it is possible to force controllers with a
3730 * public address to use the static random address instead.
3731 */
3732void hci_copy_identity_address(struct hci_dev *hdev, bdaddr_t *bdaddr,
3733 u8 *bdaddr_type)
3734{
3735 if (test_bit(HCI_FORCE_STATIC_ADDR, &hdev->dev_flags) ||
3736 !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
3737 bacpy(bdaddr, &hdev->static_addr);
3738 *bdaddr_type = ADDR_LE_DEV_RANDOM;
3739 } else {
3740 bacpy(bdaddr, &hdev->bdaddr);
3741 *bdaddr_type = ADDR_LE_DEV_PUBLIC;
3742 }
3743}
3744
David Herrmann9be0dab2012-04-22 14:39:57 +02003745/* Alloc HCI device */
3746struct hci_dev *hci_alloc_dev(void)
3747{
3748 struct hci_dev *hdev;
3749
3750 hdev = kzalloc(sizeof(struct hci_dev), GFP_KERNEL);
3751 if (!hdev)
3752 return NULL;
3753
David Herrmannb1b813d2012-04-22 14:39:58 +02003754 hdev->pkt_type = (HCI_DM1 | HCI_DH1 | HCI_HV1);
3755 hdev->esco_type = (ESCO_HV1);
3756 hdev->link_mode = (HCI_LM_ACCEPT);
Marcel Holtmannb4cb9fb2013-10-14 13:56:16 -07003757 hdev->num_iac = 0x01; /* One IAC support is mandatory */
3758 hdev->io_capability = 0x03; /* No Input No Output */
Johan Hedbergbbaf4442012-11-08 01:22:59 +01003759 hdev->inq_tx_power = HCI_TX_POWER_INVALID;
3760 hdev->adv_tx_power = HCI_TX_POWER_INVALID;
David Herrmannb1b813d2012-04-22 14:39:58 +02003761
David Herrmannb1b813d2012-04-22 14:39:58 +02003762 hdev->sniff_max_interval = 800;
3763 hdev->sniff_min_interval = 80;
3764
Marcel Holtmann3f959d42014-02-20 11:55:56 -08003765 hdev->le_adv_channel_map = 0x07;
Marcel Holtmannbef64732013-10-11 08:23:19 -07003766 hdev->le_scan_interval = 0x0060;
3767 hdev->le_scan_window = 0x0030;
Marcel Holtmann4e70c7e2013-10-19 07:09:13 -07003768 hdev->le_conn_min_interval = 0x0028;
3769 hdev->le_conn_max_interval = 0x0038;
Marcel Holtmannbef64732013-10-11 08:23:19 -07003770
Johan Hedbergd6bfd592014-02-23 19:42:20 +02003771 hdev->rpa_timeout = HCI_DEFAULT_RPA_TIMEOUT;
3772
David Herrmannb1b813d2012-04-22 14:39:58 +02003773 mutex_init(&hdev->lock);
3774 mutex_init(&hdev->req_lock);
3775
3776 INIT_LIST_HEAD(&hdev->mgmt_pending);
3777 INIT_LIST_HEAD(&hdev->blacklist);
3778 INIT_LIST_HEAD(&hdev->uuids);
3779 INIT_LIST_HEAD(&hdev->link_keys);
3780 INIT_LIST_HEAD(&hdev->long_term_keys);
Johan Hedberg970c4e42014-02-18 10:19:33 +02003781 INIT_LIST_HEAD(&hdev->identity_resolving_keys);
David Herrmannb1b813d2012-04-22 14:39:58 +02003782 INIT_LIST_HEAD(&hdev->remote_oob_data);
Marcel Holtmannd2ab0ac2014-02-27 20:37:30 -08003783 INIT_LIST_HEAD(&hdev->le_white_list);
Andre Guedes15819a72014-02-03 13:56:18 -03003784 INIT_LIST_HEAD(&hdev->le_conn_params);
Andre Guedes77a77a32014-02-26 20:21:46 -03003785 INIT_LIST_HEAD(&hdev->pend_le_conns);
Andrei Emeltchenko6b536b52012-08-31 16:39:28 +03003786 INIT_LIST_HEAD(&hdev->conn_hash.list);
David Herrmannb1b813d2012-04-22 14:39:58 +02003787
3788 INIT_WORK(&hdev->rx_work, hci_rx_work);
3789 INIT_WORK(&hdev->cmd_work, hci_cmd_work);
3790 INIT_WORK(&hdev->tx_work, hci_tx_work);
3791 INIT_WORK(&hdev->power_on, hci_power_on);
David Herrmannb1b813d2012-04-22 14:39:58 +02003792
David Herrmannb1b813d2012-04-22 14:39:58 +02003793 INIT_DELAYED_WORK(&hdev->power_off, hci_power_off);
3794 INIT_DELAYED_WORK(&hdev->discov_off, hci_discov_off);
3795 INIT_DELAYED_WORK(&hdev->le_scan_disable, le_scan_disable_work);
3796
David Herrmannb1b813d2012-04-22 14:39:58 +02003797 skb_queue_head_init(&hdev->rx_q);
3798 skb_queue_head_init(&hdev->cmd_q);
3799 skb_queue_head_init(&hdev->raw_q);
3800
3801 init_waitqueue_head(&hdev->req_wait_q);
3802
Andrei Emeltchenkobda4f232012-06-11 11:13:08 +03003803 setup_timer(&hdev->cmd_timer, hci_cmd_timeout, (unsigned long) hdev);
David Herrmannb1b813d2012-04-22 14:39:58 +02003804
David Herrmannb1b813d2012-04-22 14:39:58 +02003805 hci_init_sysfs(hdev);
3806 discovery_init(hdev);
David Herrmann9be0dab2012-04-22 14:39:57 +02003807
3808 return hdev;
3809}
3810EXPORT_SYMBOL(hci_alloc_dev);
3811
3812/* Free HCI device */
3813void hci_free_dev(struct hci_dev *hdev)
3814{
David Herrmann9be0dab2012-04-22 14:39:57 +02003815 /* will free via device release */
3816 put_device(&hdev->dev);
3817}
3818EXPORT_SYMBOL(hci_free_dev);
3819
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820/* Register HCI device */
3821int hci_register_dev(struct hci_dev *hdev)
3822{
David Herrmannb1b813d2012-04-22 14:39:58 +02003823 int id, error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
David Herrmann010666a2012-01-07 15:47:07 +01003825 if (!hdev->open || !hdev->close)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 return -EINVAL;
3827
Mat Martineau08add512011-11-02 16:18:36 -07003828 /* Do not allow HCI_AMP devices to register at index 0,
3829 * so the index can be used as the AMP controller ID.
3830 */
Sasha Levin3df92b32012-05-27 22:36:56 +02003831 switch (hdev->dev_type) {
3832 case HCI_BREDR:
3833 id = ida_simple_get(&hci_index_ida, 0, 0, GFP_KERNEL);
3834 break;
3835 case HCI_AMP:
3836 id = ida_simple_get(&hci_index_ida, 1, 0, GFP_KERNEL);
3837 break;
3838 default:
3839 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 }
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09003841
Sasha Levin3df92b32012-05-27 22:36:56 +02003842 if (id < 0)
3843 return id;
3844
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 sprintf(hdev->name, "hci%d", id);
3846 hdev->id = id;
Andrei Emeltchenko2d8b3a12012-04-16 16:32:04 +03003847
3848 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
3849
Kees Cookd8537542013-07-03 15:04:57 -07003850 hdev->workqueue = alloc_workqueue("%s", WQ_HIGHPRI | WQ_UNBOUND |
3851 WQ_MEM_RECLAIM, 1, hdev->name);
David Herrmann33ca9542011-10-08 14:58:49 +02003852 if (!hdev->workqueue) {
3853 error = -ENOMEM;
3854 goto err;
3855 }
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01003856
Kees Cookd8537542013-07-03 15:04:57 -07003857 hdev->req_workqueue = alloc_workqueue("%s", WQ_HIGHPRI | WQ_UNBOUND |
3858 WQ_MEM_RECLAIM, 1, hdev->name);
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02003859 if (!hdev->req_workqueue) {
3860 destroy_workqueue(hdev->workqueue);
3861 error = -ENOMEM;
3862 goto err;
3863 }
3864
Marcel Holtmann0153e2e2013-10-17 17:24:17 -07003865 if (!IS_ERR_OR_NULL(bt_debugfs))
3866 hdev->debugfs = debugfs_create_dir(hdev->name, bt_debugfs);
3867
Marcel Holtmannbdc3e0f2013-10-17 17:24:19 -07003868 dev_set_name(&hdev->dev, "%s", hdev->name);
3869
Johan Hedberg99780a72014-02-18 10:40:07 +02003870 hdev->tfm_aes = crypto_alloc_blkcipher("ecb(aes)", 0,
3871 CRYPTO_ALG_ASYNC);
3872 if (IS_ERR(hdev->tfm_aes)) {
3873 BT_ERR("Unable to create crypto context");
3874 error = PTR_ERR(hdev->tfm_aes);
3875 hdev->tfm_aes = NULL;
3876 goto err_wqueue;
3877 }
3878
Marcel Holtmannbdc3e0f2013-10-17 17:24:19 -07003879 error = device_add(&hdev->dev);
David Herrmann33ca9542011-10-08 14:58:49 +02003880 if (error < 0)
Johan Hedberg99780a72014-02-18 10:40:07 +02003881 goto err_tfm;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
Marcel Holtmann611b30f2009-06-08 14:41:38 +02003883 hdev->rfkill = rfkill_alloc(hdev->name, &hdev->dev,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003884 RFKILL_TYPE_BLUETOOTH, &hci_rfkill_ops,
3885 hdev);
Marcel Holtmann611b30f2009-06-08 14:41:38 +02003886 if (hdev->rfkill) {
3887 if (rfkill_register(hdev->rfkill) < 0) {
3888 rfkill_destroy(hdev->rfkill);
3889 hdev->rfkill = NULL;
3890 }
3891 }
3892
Johan Hedberg5e130362013-09-13 08:58:17 +03003893 if (hdev->rfkill && rfkill_blocked(hdev->rfkill))
3894 set_bit(HCI_RFKILLED, &hdev->dev_flags);
3895
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02003896 set_bit(HCI_SETUP, &hdev->dev_flags);
Marcel Holtmann004b0252013-10-07 00:58:32 -07003897 set_bit(HCI_AUTO_OFF, &hdev->dev_flags);
Andrei Emeltchenkoce2be9a2012-06-29 15:07:00 +03003898
Marcel Holtmann01cd3402013-10-06 01:16:22 -07003899 if (hdev->dev_type == HCI_BREDR) {
Johan Hedberg56f87902013-10-02 13:43:13 +03003900 /* Assume BR/EDR support until proven otherwise (such as
3901 * through reading supported features during init.
3902 */
3903 set_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
3904 }
Andrei Emeltchenkoce2be9a2012-06-29 15:07:00 +03003905
Gustavo Padovanfcee3372013-07-11 11:34:28 +01003906 write_lock(&hci_dev_list_lock);
3907 list_add(&hdev->list, &hci_dev_list);
3908 write_unlock(&hci_dev_list_lock);
3909
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 hci_notify(hdev, HCI_DEV_REG);
David Herrmanndc946bd2012-01-07 15:47:24 +01003911 hci_dev_hold(hdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912
Johan Hedberg19202572013-01-14 22:33:51 +02003913 queue_work(hdev->req_workqueue, &hdev->power_on);
Marcel Holtmannfbe96d62012-10-30 01:35:40 -07003914
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 return id;
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01003916
Johan Hedberg99780a72014-02-18 10:40:07 +02003917err_tfm:
3918 crypto_free_blkcipher(hdev->tfm_aes);
David Herrmann33ca9542011-10-08 14:58:49 +02003919err_wqueue:
3920 destroy_workqueue(hdev->workqueue);
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02003921 destroy_workqueue(hdev->req_workqueue);
David Herrmann33ca9542011-10-08 14:58:49 +02003922err:
Sasha Levin3df92b32012-05-27 22:36:56 +02003923 ida_simple_remove(&hci_index_ida, hdev->id);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01003924
David Herrmann33ca9542011-10-08 14:58:49 +02003925 return error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926}
3927EXPORT_SYMBOL(hci_register_dev);
3928
3929/* Unregister HCI device */
David Herrmann59735632011-10-26 10:43:19 +02003930void hci_unregister_dev(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931{
Sasha Levin3df92b32012-05-27 22:36:56 +02003932 int i, id;
Marcel Holtmannef222012007-07-11 06:42:04 +02003933
Marcel Holtmannc13854c2010-02-08 15:27:07 +01003934 BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935
Johan Hovold94324962012-03-15 14:48:41 +01003936 set_bit(HCI_UNREGISTER, &hdev->dev_flags);
3937
Sasha Levin3df92b32012-05-27 22:36:56 +02003938 id = hdev->id;
3939
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02003940 write_lock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 list_del(&hdev->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02003942 write_unlock(&hci_dev_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
3944 hci_dev_do_close(hdev);
3945
Suraj Sumangalacd4c5392010-07-14 13:02:16 +05303946 for (i = 0; i < NUM_REASSEMBLY; i++)
Marcel Holtmannef222012007-07-11 06:42:04 +02003947 kfree_skb(hdev->reassembly[i]);
3948
Gustavo Padovanb9b5ef12012-11-21 00:50:21 -02003949 cancel_work_sync(&hdev->power_on);
3950
Johan Hedbergab81cbf2010-12-15 13:53:18 +02003951 if (!test_bit(HCI_INIT, &hdev->flags) &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03003952 !test_bit(HCI_SETUP, &hdev->dev_flags)) {
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003953 hci_dev_lock(hdev);
Johan Hedberg744cf192011-11-08 20:40:14 +02003954 mgmt_index_removed(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003955 hci_dev_unlock(hdev);
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003956 }
Johan Hedbergab81cbf2010-12-15 13:53:18 +02003957
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003958 /* mgmt_index_removed should take care of emptying the
3959 * pending list */
3960 BUG_ON(!list_empty(&hdev->mgmt_pending));
3961
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 hci_notify(hdev, HCI_DEV_UNREG);
3963
Marcel Holtmann611b30f2009-06-08 14:41:38 +02003964 if (hdev->rfkill) {
3965 rfkill_unregister(hdev->rfkill);
3966 rfkill_destroy(hdev->rfkill);
3967 }
3968
Johan Hedberg99780a72014-02-18 10:40:07 +02003969 if (hdev->tfm_aes)
3970 crypto_free_blkcipher(hdev->tfm_aes);
3971
Marcel Holtmannbdc3e0f2013-10-17 17:24:19 -07003972 device_del(&hdev->dev);
Dave Young147e2d52008-03-05 18:45:59 -08003973
Marcel Holtmann0153e2e2013-10-17 17:24:17 -07003974 debugfs_remove_recursive(hdev->debugfs);
3975
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01003976 destroy_workqueue(hdev->workqueue);
Johan Hedberg6ead1bb2013-01-14 22:33:50 +02003977 destroy_workqueue(hdev->req_workqueue);
Marcel Holtmannf48fd9c2010-03-20 15:20:04 +01003978
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003979 hci_dev_lock(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02003980 hci_blacklist_clear(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02003981 hci_uuids_clear(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003982 hci_link_keys_clear(hdev);
Vinicius Costa Gomesb899efa2012-02-02 21:08:00 -03003983 hci_smp_ltks_clear(hdev);
Johan Hedberg970c4e42014-02-18 10:19:33 +02003984 hci_smp_irks_clear(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003985 hci_remote_oob_data_clear(hdev);
Marcel Holtmannd2ab0ac2014-02-27 20:37:30 -08003986 hci_white_list_clear(hdev);
Andre Guedes15819a72014-02-03 13:56:18 -03003987 hci_conn_params_clear(hdev);
Andre Guedes77a77a32014-02-26 20:21:46 -03003988 hci_pend_le_conns_clear(hdev);
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003989 hci_dev_unlock(hdev);
Johan Hedberge2e0cac2011-01-04 12:08:50 +02003990
David Herrmanndc946bd2012-01-07 15:47:24 +01003991 hci_dev_put(hdev);
Sasha Levin3df92b32012-05-27 22:36:56 +02003992
3993 ida_simple_remove(&hci_index_ida, id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994}
3995EXPORT_SYMBOL(hci_unregister_dev);
3996
3997/* Suspend HCI device */
3998int hci_suspend_dev(struct hci_dev *hdev)
3999{
4000 hci_notify(hdev, HCI_DEV_SUSPEND);
4001 return 0;
4002}
4003EXPORT_SYMBOL(hci_suspend_dev);
4004
4005/* Resume HCI device */
4006int hci_resume_dev(struct hci_dev *hdev)
4007{
4008 hci_notify(hdev, HCI_DEV_RESUME);
4009 return 0;
4010}
4011EXPORT_SYMBOL(hci_resume_dev);
4012
Marcel Holtmann76bca882009-11-18 00:40:39 +01004013/* Receive frame from HCI drivers */
Marcel Holtmanne1a26172013-10-10 16:52:43 -07004014int hci_recv_frame(struct hci_dev *hdev, struct sk_buff *skb)
Marcel Holtmann76bca882009-11-18 00:40:39 +01004015{
Marcel Holtmann76bca882009-11-18 00:40:39 +01004016 if (!hdev || (!test_bit(HCI_UP, &hdev->flags)
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004017 && !test_bit(HCI_INIT, &hdev->flags))) {
Marcel Holtmann76bca882009-11-18 00:40:39 +01004018 kfree_skb(skb);
4019 return -ENXIO;
4020 }
4021
Jorrit Schippersd82603c2012-12-27 17:33:02 +01004022 /* Incoming skb */
Marcel Holtmann76bca882009-11-18 00:40:39 +01004023 bt_cb(skb)->incoming = 1;
4024
4025 /* Time stamp */
4026 __net_timestamp(skb);
4027
Marcel Holtmann76bca882009-11-18 00:40:39 +01004028 skb_queue_tail(&hdev->rx_q, skb);
Marcel Holtmannb78752c2010-08-08 23:06:53 -04004029 queue_work(hdev->workqueue, &hdev->rx_work);
Marcel Holtmannc78ae282009-11-18 01:02:54 +01004030
Marcel Holtmann76bca882009-11-18 00:40:39 +01004031 return 0;
4032}
4033EXPORT_SYMBOL(hci_recv_frame);
4034
Suraj Sumangala33e882a2010-07-14 13:02:17 +05304035static int hci_reassembly(struct hci_dev *hdev, int type, void *data,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004036 int count, __u8 index)
Suraj Sumangala33e882a2010-07-14 13:02:17 +05304037{
4038 int len = 0;
4039 int hlen = 0;
4040 int remain = count;
4041 struct sk_buff *skb;
4042 struct bt_skb_cb *scb;
4043
4044 if ((type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT) ||
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004045 index >= NUM_REASSEMBLY)
Suraj Sumangala33e882a2010-07-14 13:02:17 +05304046 return -EILSEQ;
4047
4048 skb = hdev->reassembly[index];
4049
4050 if (!skb) {
4051 switch (type) {
4052 case HCI_ACLDATA_PKT:
4053 len = HCI_MAX_FRAME_SIZE;
4054 hlen = HCI_ACL_HDR_SIZE;
4055 break;
4056 case HCI_EVENT_PKT:
4057 len = HCI_MAX_EVENT_SIZE;
4058 hlen = HCI_EVENT_HDR_SIZE;
4059 break;
4060 case HCI_SCODATA_PKT:
4061 len = HCI_MAX_SCO_SIZE;
4062 hlen = HCI_SCO_HDR_SIZE;
4063 break;
4064 }
4065
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03004066 skb = bt_skb_alloc(len, GFP_ATOMIC);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05304067 if (!skb)
4068 return -ENOMEM;
4069
4070 scb = (void *) skb->cb;
4071 scb->expect = hlen;
4072 scb->pkt_type = type;
4073
Suraj Sumangala33e882a2010-07-14 13:02:17 +05304074 hdev->reassembly[index] = skb;
4075 }
4076
4077 while (count) {
4078 scb = (void *) skb->cb;
Dan Carpenter89bb46d2012-02-28 09:57:59 +03004079 len = min_t(uint, scb->expect, count);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05304080
4081 memcpy(skb_put(skb, len), data, len);
4082
4083 count -= len;
4084 data += len;
4085 scb->expect -= len;
4086 remain = count;
4087
4088 switch (type) {
4089 case HCI_EVENT_PKT:
4090 if (skb->len == HCI_EVENT_HDR_SIZE) {
4091 struct hci_event_hdr *h = hci_event_hdr(skb);
4092 scb->expect = h->plen;
4093
4094 if (skb_tailroom(skb) < scb->expect) {
4095 kfree_skb(skb);
4096 hdev->reassembly[index] = NULL;
4097 return -ENOMEM;
4098 }
4099 }
4100 break;
4101
4102 case HCI_ACLDATA_PKT:
4103 if (skb->len == HCI_ACL_HDR_SIZE) {
4104 struct hci_acl_hdr *h = hci_acl_hdr(skb);
4105 scb->expect = __le16_to_cpu(h->dlen);
4106
4107 if (skb_tailroom(skb) < scb->expect) {
4108 kfree_skb(skb);
4109 hdev->reassembly[index] = NULL;
4110 return -ENOMEM;
4111 }
4112 }
4113 break;
4114
4115 case HCI_SCODATA_PKT:
4116 if (skb->len == HCI_SCO_HDR_SIZE) {
4117 struct hci_sco_hdr *h = hci_sco_hdr(skb);
4118 scb->expect = h->dlen;
4119
4120 if (skb_tailroom(skb) < scb->expect) {
4121 kfree_skb(skb);
4122 hdev->reassembly[index] = NULL;
4123 return -ENOMEM;
4124 }
4125 }
4126 break;
4127 }
4128
4129 if (scb->expect == 0) {
4130 /* Complete frame */
4131
4132 bt_cb(skb)->pkt_type = type;
Marcel Holtmanne1a26172013-10-10 16:52:43 -07004133 hci_recv_frame(hdev, skb);
Suraj Sumangala33e882a2010-07-14 13:02:17 +05304134
4135 hdev->reassembly[index] = NULL;
4136 return remain;
4137 }
4138 }
4139
4140 return remain;
4141}
4142
Marcel Holtmannef222012007-07-11 06:42:04 +02004143int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count)
4144{
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05304145 int rem = 0;
4146
Marcel Holtmannef222012007-07-11 06:42:04 +02004147 if (type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT)
4148 return -EILSEQ;
4149
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03004150 while (count) {
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03004151 rem = hci_reassembly(hdev, type, data, count, type - 1);
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05304152 if (rem < 0)
4153 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02004154
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05304155 data += (count - rem);
4156 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00004157 }
Marcel Holtmannef222012007-07-11 06:42:04 +02004158
Suraj Sumangalaf39a3c02010-07-14 13:02:18 +05304159 return rem;
Marcel Holtmannef222012007-07-11 06:42:04 +02004160}
4161EXPORT_SYMBOL(hci_recv_fragment);
4162
Suraj Sumangala99811512010-07-14 13:02:19 +05304163#define STREAM_REASSEMBLY 0
4164
4165int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count)
4166{
4167 int type;
4168 int rem = 0;
4169
Gustavo F. Padovanda5f6c32010-07-24 01:34:54 -03004170 while (count) {
Suraj Sumangala99811512010-07-14 13:02:19 +05304171 struct sk_buff *skb = hdev->reassembly[STREAM_REASSEMBLY];
4172
4173 if (!skb) {
4174 struct { char type; } *pkt;
4175
4176 /* Start of the frame */
4177 pkt = data;
4178 type = pkt->type;
4179
4180 data++;
4181 count--;
4182 } else
4183 type = bt_cb(skb)->pkt_type;
4184
Gustavo F. Padovan1e429f32011-04-04 18:25:14 -03004185 rem = hci_reassembly(hdev, type, data, count,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004186 STREAM_REASSEMBLY);
Suraj Sumangala99811512010-07-14 13:02:19 +05304187 if (rem < 0)
4188 return rem;
4189
4190 data += (count - rem);
4191 count = rem;
Joe Perchesf81c6222011-06-03 11:51:19 +00004192 }
Suraj Sumangala99811512010-07-14 13:02:19 +05304193
4194 return rem;
4195}
4196EXPORT_SYMBOL(hci_recv_stream_fragment);
4197
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198/* ---- Interface to upper protocols ---- */
4199
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200int hci_register_cb(struct hci_cb *cb)
4201{
4202 BT_DBG("%p name %s", cb, cb->name);
4203
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02004204 write_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205 list_add(&cb->list, &hci_cb_list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02004206 write_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
4208 return 0;
4209}
4210EXPORT_SYMBOL(hci_register_cb);
4211
4212int hci_unregister_cb(struct hci_cb *cb)
4213{
4214 BT_DBG("%p name %s", cb, cb->name);
4215
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02004216 write_lock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 list_del(&cb->list);
Gustavo F. Padovanf20d09d2011-12-22 16:30:27 -02004218 write_unlock(&hci_cb_list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004219
4220 return 0;
4221}
4222EXPORT_SYMBOL(hci_unregister_cb);
4223
Marcel Holtmann51086992013-10-10 14:54:19 -07004224static void hci_send_frame(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225{
Marcel Holtmann0d48d932005-08-09 20:30:28 -07004226 BT_DBG("%s type %d len %d", hdev->name, bt_cb(skb)->pkt_type, skb->len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227
Marcel Holtmanncd82e612012-02-20 20:34:38 +01004228 /* Time stamp */
4229 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230
Marcel Holtmanncd82e612012-02-20 20:34:38 +01004231 /* Send copy to monitor */
4232 hci_send_to_monitor(hdev, skb);
4233
4234 if (atomic_read(&hdev->promisc)) {
4235 /* Send copy to the sockets */
Marcel Holtmann470fe1b2012-02-20 14:50:30 +01004236 hci_send_to_sock(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 }
4238
4239 /* Get rid of skb owner, prior to sending to the driver. */
4240 skb_orphan(skb);
4241
Marcel Holtmann7bd8f092013-10-11 06:19:18 -07004242 if (hdev->send(hdev, skb) < 0)
Marcel Holtmann51086992013-10-10 14:54:19 -07004243 BT_ERR("%s sending frame failed", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244}
4245
Johan Hedberg3119ae92013-03-05 20:37:44 +02004246void hci_req_init(struct hci_request *req, struct hci_dev *hdev)
4247{
4248 skb_queue_head_init(&req->cmd_q);
4249 req->hdev = hdev;
Andre Guedes5d73e032013-03-08 11:20:16 -03004250 req->err = 0;
Johan Hedberg3119ae92013-03-05 20:37:44 +02004251}
4252
4253int hci_req_run(struct hci_request *req, hci_req_complete_t complete)
4254{
4255 struct hci_dev *hdev = req->hdev;
4256 struct sk_buff *skb;
4257 unsigned long flags;
4258
4259 BT_DBG("length %u", skb_queue_len(&req->cmd_q));
4260
Andre Guedes5d73e032013-03-08 11:20:16 -03004261 /* If an error occured during request building, remove all HCI
4262 * commands queued on the HCI request queue.
4263 */
4264 if (req->err) {
4265 skb_queue_purge(&req->cmd_q);
4266 return req->err;
4267 }
4268
Johan Hedberg3119ae92013-03-05 20:37:44 +02004269 /* Do not allow empty requests */
4270 if (skb_queue_empty(&req->cmd_q))
Andre Guedes382b0c32013-03-08 11:20:14 -03004271 return -ENODATA;
Johan Hedberg3119ae92013-03-05 20:37:44 +02004272
4273 skb = skb_peek_tail(&req->cmd_q);
4274 bt_cb(skb)->req.complete = complete;
4275
4276 spin_lock_irqsave(&hdev->cmd_q.lock, flags);
4277 skb_queue_splice_tail(&req->cmd_q, &hdev->cmd_q);
4278 spin_unlock_irqrestore(&hdev->cmd_q.lock, flags);
4279
4280 queue_work(hdev->workqueue, &hdev->cmd_work);
4281
4282 return 0;
4283}
4284
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02004285static struct sk_buff *hci_prepare_cmd(struct hci_dev *hdev, u16 opcode,
Johan Hedberg07dc93d2013-04-19 10:14:51 +03004286 u32 plen, const void *param)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287{
4288 int len = HCI_COMMAND_HDR_SIZE + plen;
4289 struct hci_command_hdr *hdr;
4290 struct sk_buff *skb;
4291
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292 skb = bt_skb_alloc(len, GFP_ATOMIC);
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02004293 if (!skb)
4294 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004295
4296 hdr = (struct hci_command_hdr *) skb_put(skb, HCI_COMMAND_HDR_SIZE);
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004297 hdr->opcode = cpu_to_le16(opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 hdr->plen = plen;
4299
4300 if (plen)
4301 memcpy(skb_put(skb, plen), param, plen);
4302
4303 BT_DBG("skb len %d", skb->len);
4304
Marcel Holtmann0d48d932005-08-09 20:30:28 -07004305 bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01004306
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02004307 return skb;
4308}
4309
4310/* Send HCI command */
Johan Hedberg07dc93d2013-04-19 10:14:51 +03004311int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen,
4312 const void *param)
Johan Hedberg1ca3a9d2013-03-05 20:37:45 +02004313{
4314 struct sk_buff *skb;
4315
4316 BT_DBG("%s opcode 0x%4.4x plen %d", hdev->name, opcode, plen);
4317
4318 skb = hci_prepare_cmd(hdev, opcode, plen, param);
4319 if (!skb) {
4320 BT_ERR("%s no memory for command", hdev->name);
4321 return -ENOMEM;
4322 }
4323
Johan Hedberg11714b32013-03-05 20:37:47 +02004324 /* Stand-alone HCI commands must be flaged as
4325 * single-command requests.
4326 */
4327 bt_cb(skb)->req.start = true;
4328
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 skb_queue_tail(&hdev->cmd_q, skb);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02004330 queue_work(hdev->workqueue, &hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331
4332 return 0;
4333}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334
Johan Hedberg71c76a12013-03-05 20:37:46 +02004335/* Queue a command to an asynchronous HCI request */
Johan Hedberg07dc93d2013-04-19 10:14:51 +03004336void hci_req_add_ev(struct hci_request *req, u16 opcode, u32 plen,
4337 const void *param, u8 event)
Johan Hedberg71c76a12013-03-05 20:37:46 +02004338{
4339 struct hci_dev *hdev = req->hdev;
4340 struct sk_buff *skb;
4341
4342 BT_DBG("%s opcode 0x%4.4x plen %d", hdev->name, opcode, plen);
4343
Andre Guedes34739c12013-03-08 11:20:18 -03004344 /* If an error occured during request building, there is no point in
4345 * queueing the HCI command. We can simply return.
4346 */
4347 if (req->err)
4348 return;
4349
Johan Hedberg71c76a12013-03-05 20:37:46 +02004350 skb = hci_prepare_cmd(hdev, opcode, plen, param);
4351 if (!skb) {
Andre Guedes5d73e032013-03-08 11:20:16 -03004352 BT_ERR("%s no memory for command (opcode 0x%4.4x)",
4353 hdev->name, opcode);
4354 req->err = -ENOMEM;
Andre Guedese348fe62013-03-08 11:20:17 -03004355 return;
Johan Hedberg71c76a12013-03-05 20:37:46 +02004356 }
4357
4358 if (skb_queue_empty(&req->cmd_q))
4359 bt_cb(skb)->req.start = true;
4360
Johan Hedberg02350a72013-04-03 21:50:29 +03004361 bt_cb(skb)->req.event = event;
4362
Johan Hedberg71c76a12013-03-05 20:37:46 +02004363 skb_queue_tail(&req->cmd_q, skb);
Johan Hedberg71c76a12013-03-05 20:37:46 +02004364}
4365
Johan Hedberg07dc93d2013-04-19 10:14:51 +03004366void hci_req_add(struct hci_request *req, u16 opcode, u32 plen,
4367 const void *param)
Johan Hedberg02350a72013-04-03 21:50:29 +03004368{
4369 hci_req_add_ev(req, opcode, plen, param, 0);
4370}
4371
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372/* Get data from the previously sent command */
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004373void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374{
4375 struct hci_command_hdr *hdr;
4376
4377 if (!hdev->sent_cmd)
4378 return NULL;
4379
4380 hdr = (void *) hdev->sent_cmd->data;
4381
Marcel Holtmanna9de9242007-10-20 13:33:56 +02004382 if (hdr->opcode != cpu_to_le16(opcode))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 return NULL;
4384
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03004385 BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386
4387 return hdev->sent_cmd->data + HCI_COMMAND_HDR_SIZE;
4388}
4389
4390/* Send ACL data */
4391static void hci_add_acl_hdr(struct sk_buff *skb, __u16 handle, __u16 flags)
4392{
4393 struct hci_acl_hdr *hdr;
4394 int len = skb->len;
4395
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03004396 skb_push(skb, HCI_ACL_HDR_SIZE);
4397 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07004398 hdr = (struct hci_acl_hdr *)skb_transport_header(skb);
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07004399 hdr->handle = cpu_to_le16(hci_handle_pack(handle, flags));
4400 hdr->dlen = cpu_to_le16(len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401}
4402
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03004403static void hci_queue_acl(struct hci_chan *chan, struct sk_buff_head *queue,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004404 struct sk_buff *skb, __u16 flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405{
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03004406 struct hci_conn *conn = chan->conn;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 struct hci_dev *hdev = conn->hdev;
4408 struct sk_buff *list;
4409
Gustavo Padovan087bfd92012-05-11 13:16:11 -03004410 skb->len = skb_headlen(skb);
4411 skb->data_len = 0;
4412
4413 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
Andrei Emeltchenko204a6e52012-10-15 11:58:39 +03004414
4415 switch (hdev->dev_type) {
4416 case HCI_BREDR:
4417 hci_add_acl_hdr(skb, conn->handle, flags);
4418 break;
4419 case HCI_AMP:
4420 hci_add_acl_hdr(skb, chan->handle, flags);
4421 break;
4422 default:
4423 BT_ERR("%s unknown dev_type %d", hdev->name, hdev->dev_type);
4424 return;
4425 }
Gustavo Padovan087bfd92012-05-11 13:16:11 -03004426
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02004427 list = skb_shinfo(skb)->frag_list;
4428 if (!list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 /* Non fragmented */
4430 BT_DBG("%s nonfrag skb %p len %d", hdev->name, skb, skb->len);
4431
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004432 skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 } else {
4434 /* Fragmented */
4435 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
4436
4437 skb_shinfo(skb)->frag_list = NULL;
4438
4439 /* Queue all fragments atomically */
Gustavo F. Padovanaf3e6352011-12-22 16:35:05 -02004440 spin_lock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004441
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004442 __skb_queue_tail(queue, skb);
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02004443
4444 flags &= ~ACL_START;
4445 flags |= ACL_CONT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004446 do {
4447 skb = list; list = list->next;
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09004448
Marcel Holtmann0d48d932005-08-09 20:30:28 -07004449 bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
Andrei Emeltchenkoe7021122011-01-03 11:14:36 +02004450 hci_add_acl_hdr(skb, conn->handle, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004451
4452 BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);
4453
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004454 __skb_queue_tail(queue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 } while (list);
4456
Gustavo F. Padovanaf3e6352011-12-22 16:35:05 -02004457 spin_unlock(&queue->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004458 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004459}
4460
4461void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags)
4462{
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03004463 struct hci_dev *hdev = chan->conn->hdev;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004464
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03004465 BT_DBG("%s chan %p flags 0x%4.4x", hdev->name, chan, flags);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004466
Andrei Emeltchenkoee22be72012-09-21 12:30:04 +03004467 hci_queue_acl(chan, &chan->data_q, skb, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004468
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02004469 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004470}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004471
4472/* Send SCO data */
Gustavo F. Padovan0d861d82010-05-01 16:15:35 -03004473void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004474{
4475 struct hci_dev *hdev = conn->hdev;
4476 struct hci_sco_hdr hdr;
4477
4478 BT_DBG("%s len %d", hdev->name, skb->len);
4479
YOSHIFUJI Hideakiaca31922007-03-25 20:12:50 -07004480 hdr.handle = cpu_to_le16(conn->handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004481 hdr.dlen = skb->len;
4482
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03004483 skb_push(skb, HCI_SCO_HDR_SIZE);
4484 skb_reset_transport_header(skb);
Arnaldo Carvalho de Melo9c702202007-04-25 18:04:18 -07004485 memcpy(skb_transport_header(skb), &hdr, HCI_SCO_HDR_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004486
Marcel Holtmann0d48d932005-08-09 20:30:28 -07004487 bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
Marcel Holtmannc78ae282009-11-18 01:02:54 +01004488
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489 skb_queue_tail(&conn->data_q, skb);
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02004490 queue_work(hdev->workqueue, &hdev->tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492
4493/* ---- HCI TX task (outgoing data) ---- */
4494
4495/* HCI Connection scheduler */
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004496static struct hci_conn *hci_low_sent(struct hci_dev *hdev, __u8 type,
4497 int *quote)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498{
4499 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02004500 struct hci_conn *conn = NULL, *c;
Mikel Astizabc5de82012-04-11 08:48:47 +02004501 unsigned int num = 0, min = ~0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09004503 /* We don't have to lock device here. Connections are always
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 * added and removed with TX task disabled. */
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02004505
4506 rcu_read_lock();
4507
4508 list_for_each_entry_rcu(c, &h->list, list) {
Marcel Holtmann769be972008-07-14 20:13:49 +02004509 if (c->type != type || skb_queue_empty(&c->data_q))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 continue;
Marcel Holtmann769be972008-07-14 20:13:49 +02004511
4512 if (c->state != BT_CONNECTED && c->state != BT_CONFIG)
4513 continue;
4514
Linus Torvalds1da177e2005-04-16 15:20:36 -07004515 num++;
4516
4517 if (c->sent < min) {
4518 min = c->sent;
4519 conn = c;
4520 }
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03004521
4522 if (hci_conn_num(hdev, type) == num)
4523 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004524 }
4525
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02004526 rcu_read_unlock();
4527
Linus Torvalds1da177e2005-04-16 15:20:36 -07004528 if (conn) {
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004529 int cnt, q;
4530
4531 switch (conn->type) {
4532 case ACL_LINK:
4533 cnt = hdev->acl_cnt;
4534 break;
4535 case SCO_LINK:
4536 case ESCO_LINK:
4537 cnt = hdev->sco_cnt;
4538 break;
4539 case LE_LINK:
4540 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
4541 break;
4542 default:
4543 cnt = 0;
4544 BT_ERR("Unknown link type");
4545 }
4546
4547 q = cnt / num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548 *quote = q ? q : 1;
4549 } else
4550 *quote = 0;
4551
4552 BT_DBG("conn %p quote %d", conn, *quote);
4553 return conn;
4554}
4555
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004556static void hci_link_tx_to(struct hci_dev *hdev, __u8 type)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004557{
4558 struct hci_conn_hash *h = &hdev->conn_hash;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02004559 struct hci_conn *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560
Ville Tervobae1f5d92011-02-10 22:38:53 -03004561 BT_ERR("%s link tx timeout", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004562
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02004563 rcu_read_lock();
4564
Linus Torvalds1da177e2005-04-16 15:20:36 -07004565 /* Kill stalled connections */
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02004566 list_for_each_entry_rcu(c, &h->list, list) {
Ville Tervobae1f5d92011-02-10 22:38:53 -03004567 if (c->type == type && c->sent) {
Andrei Emeltchenko6ed93dc2012-09-25 12:49:43 +03004568 BT_ERR("%s killing stalled connection %pMR",
4569 hdev->name, &c->dst);
Andre Guedesbed71742013-01-30 11:50:56 -03004570 hci_disconnect(c, HCI_ERROR_REMOTE_USER_TERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004571 }
4572 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02004573
4574 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004575}
4576
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004577static struct hci_chan *hci_chan_sent(struct hci_dev *hdev, __u8 type,
4578 int *quote)
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004579{
4580 struct hci_conn_hash *h = &hdev->conn_hash;
4581 struct hci_chan *chan = NULL;
Mikel Astizabc5de82012-04-11 08:48:47 +02004582 unsigned int num = 0, min = ~0, cur_prio = 0;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004583 struct hci_conn *conn;
4584 int cnt, q, conn_num = 0;
4585
4586 BT_DBG("%s", hdev->name);
4587
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02004588 rcu_read_lock();
4589
4590 list_for_each_entry_rcu(conn, &h->list, list) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004591 struct hci_chan *tmp;
4592
4593 if (conn->type != type)
4594 continue;
4595
4596 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
4597 continue;
4598
4599 conn_num++;
4600
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -02004601 list_for_each_entry_rcu(tmp, &conn->chan_list, list) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004602 struct sk_buff *skb;
4603
4604 if (skb_queue_empty(&tmp->data_q))
4605 continue;
4606
4607 skb = skb_peek(&tmp->data_q);
4608 if (skb->priority < cur_prio)
4609 continue;
4610
4611 if (skb->priority > cur_prio) {
4612 num = 0;
4613 min = ~0;
4614 cur_prio = skb->priority;
4615 }
4616
4617 num++;
4618
4619 if (conn->sent < min) {
4620 min = conn->sent;
4621 chan = tmp;
4622 }
4623 }
4624
4625 if (hci_conn_num(hdev, type) == conn_num)
4626 break;
4627 }
4628
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02004629 rcu_read_unlock();
4630
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004631 if (!chan)
4632 return NULL;
4633
4634 switch (chan->conn->type) {
4635 case ACL_LINK:
4636 cnt = hdev->acl_cnt;
4637 break;
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03004638 case AMP_LINK:
4639 cnt = hdev->block_cnt;
4640 break;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004641 case SCO_LINK:
4642 case ESCO_LINK:
4643 cnt = hdev->sco_cnt;
4644 break;
4645 case LE_LINK:
4646 cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
4647 break;
4648 default:
4649 cnt = 0;
4650 BT_ERR("Unknown link type");
4651 }
4652
4653 q = cnt / num;
4654 *quote = q ? q : 1;
4655 BT_DBG("chan %p quote %d", chan, *quote);
4656 return chan;
4657}
4658
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02004659static void hci_prio_recalculate(struct hci_dev *hdev, __u8 type)
4660{
4661 struct hci_conn_hash *h = &hdev->conn_hash;
4662 struct hci_conn *conn;
4663 int num = 0;
4664
4665 BT_DBG("%s", hdev->name);
4666
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02004667 rcu_read_lock();
4668
4669 list_for_each_entry_rcu(conn, &h->list, list) {
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02004670 struct hci_chan *chan;
4671
4672 if (conn->type != type)
4673 continue;
4674
4675 if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
4676 continue;
4677
4678 num++;
4679
Gustavo F. Padovan8192ede2011-12-14 15:08:48 -02004680 list_for_each_entry_rcu(chan, &conn->chan_list, list) {
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02004681 struct sk_buff *skb;
4682
4683 if (chan->sent) {
4684 chan->sent = 0;
4685 continue;
4686 }
4687
4688 if (skb_queue_empty(&chan->data_q))
4689 continue;
4690
4691 skb = skb_peek(&chan->data_q);
4692 if (skb->priority >= HCI_PRIO_MAX - 1)
4693 continue;
4694
4695 skb->priority = HCI_PRIO_MAX - 1;
4696
4697 BT_DBG("chan %p skb %p promoted to %d", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004698 skb->priority);
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02004699 }
4700
4701 if (hci_conn_num(hdev, type) == num)
4702 break;
4703 }
Gustavo F. Padovanbf4c6322011-12-14 22:54:12 -02004704
4705 rcu_read_unlock();
4706
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02004707}
4708
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004709static inline int __get_blocks(struct hci_dev *hdev, struct sk_buff *skb)
4710{
4711 /* Calculate count of blocks used by this packet */
4712 return DIV_ROUND_UP(skb->len - HCI_ACL_HDR_SIZE, hdev->block_len);
4713}
4714
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004715static void __check_timeout(struct hci_dev *hdev, unsigned int cnt)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004716{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004717 if (!test_bit(HCI_RAW, &hdev->flags)) {
4718 /* ACL tx timeout must be longer than maximum
4719 * link supervision timeout (40.9 seconds) */
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02004720 if (!cnt && time_after(jiffies, hdev->acl_last_tx +
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +03004721 HCI_ACL_TX_TIMEOUT))
Ville Tervobae1f5d92011-02-10 22:38:53 -03004722 hci_link_tx_to(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004723 }
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02004724}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004725
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004726static void hci_sched_acl_pkt(struct hci_dev *hdev)
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02004727{
4728 unsigned int cnt = hdev->acl_cnt;
4729 struct hci_chan *chan;
4730 struct sk_buff *skb;
4731 int quote;
4732
4733 __check_timeout(hdev, cnt);
Marcel Holtmann04837f62006-07-03 10:02:33 +02004734
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004735 while (hdev->acl_cnt &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004736 (chan = hci_chan_sent(hdev, ACL_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02004737 u32 priority = (skb_peek(&chan->data_q))->priority;
4738 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004739 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004740 skb->len, skb->priority);
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004741
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02004742 /* Stop if priority has changed */
4743 if (skb->priority < priority)
4744 break;
4745
4746 skb = skb_dequeue(&chan->data_q);
4747
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004748 hci_conn_enter_active_mode(chan->conn,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004749 bt_cb(skb)->force_active);
Marcel Holtmann04837f62006-07-03 10:02:33 +02004750
Marcel Holtmann57d17d72013-10-10 14:54:17 -07004751 hci_send_frame(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004752 hdev->acl_last_tx = jiffies;
4753
4754 hdev->acl_cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004755 chan->sent++;
4756 chan->conn->sent++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004757 }
4758 }
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02004759
4760 if (cnt != hdev->acl_cnt)
4761 hci_prio_recalculate(hdev, ACL_LINK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004762}
4763
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004764static void hci_sched_acl_blk(struct hci_dev *hdev)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004765{
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02004766 unsigned int cnt = hdev->block_cnt;
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004767 struct hci_chan *chan;
4768 struct sk_buff *skb;
4769 int quote;
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03004770 u8 type;
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004771
Andrei Emeltchenko63d2bc12012-02-03 16:27:55 +02004772 __check_timeout(hdev, cnt);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004773
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03004774 BT_DBG("%s", hdev->name);
4775
4776 if (hdev->dev_type == HCI_AMP)
4777 type = AMP_LINK;
4778 else
4779 type = ACL_LINK;
4780
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004781 while (hdev->block_cnt > 0 &&
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03004782 (chan = hci_chan_sent(hdev, type, &quote))) {
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004783 u32 priority = (skb_peek(&chan->data_q))->priority;
4784 while (quote > 0 && (skb = skb_peek(&chan->data_q))) {
4785 int blocks;
4786
4787 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004788 skb->len, skb->priority);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004789
4790 /* Stop if priority has changed */
4791 if (skb->priority < priority)
4792 break;
4793
4794 skb = skb_dequeue(&chan->data_q);
4795
4796 blocks = __get_blocks(hdev, skb);
4797 if (blocks > hdev->block_cnt)
4798 return;
4799
4800 hci_conn_enter_active_mode(chan->conn,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004801 bt_cb(skb)->force_active);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004802
Marcel Holtmann57d17d72013-10-10 14:54:17 -07004803 hci_send_frame(hdev, skb);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004804 hdev->acl_last_tx = jiffies;
4805
4806 hdev->block_cnt -= blocks;
4807 quote -= blocks;
4808
4809 chan->sent += blocks;
4810 chan->conn->sent += blocks;
4811 }
4812 }
4813
4814 if (cnt != hdev->block_cnt)
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03004815 hci_prio_recalculate(hdev, type);
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004816}
4817
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004818static void hci_sched_acl(struct hci_dev *hdev)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004819{
4820 BT_DBG("%s", hdev->name);
4821
Andrei Emeltchenkobd1eb662012-10-10 17:38:30 +03004822 /* No ACL link over BR/EDR controller */
4823 if (!hci_conn_num(hdev, ACL_LINK) && hdev->dev_type == HCI_BREDR)
4824 return;
4825
4826 /* No AMP link over AMP controller */
4827 if (!hci_conn_num(hdev, AMP_LINK) && hdev->dev_type == HCI_AMP)
Andrei Emeltchenkob71d3852012-02-03 16:27:54 +02004828 return;
4829
4830 switch (hdev->flow_ctl_mode) {
4831 case HCI_FLOW_CTL_MODE_PACKET_BASED:
4832 hci_sched_acl_pkt(hdev);
4833 break;
4834
4835 case HCI_FLOW_CTL_MODE_BLOCK_BASED:
4836 hci_sched_acl_blk(hdev);
4837 break;
4838 }
4839}
4840
Linus Torvalds1da177e2005-04-16 15:20:36 -07004841/* Schedule SCO */
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004842static void hci_sched_sco(struct hci_dev *hdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004843{
4844 struct hci_conn *conn;
4845 struct sk_buff *skb;
4846 int quote;
4847
4848 BT_DBG("%s", hdev->name);
4849
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03004850 if (!hci_conn_num(hdev, SCO_LINK))
4851 return;
4852
Linus Torvalds1da177e2005-04-16 15:20:36 -07004853 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, SCO_LINK, &quote))) {
4854 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
4855 BT_DBG("skb %p len %d", skb, skb->len);
Marcel Holtmann57d17d72013-10-10 14:54:17 -07004856 hci_send_frame(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004857
4858 conn->sent++;
4859 if (conn->sent == ~0)
4860 conn->sent = 0;
4861 }
4862 }
4863}
4864
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004865static void hci_sched_esco(struct hci_dev *hdev)
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02004866{
4867 struct hci_conn *conn;
4868 struct sk_buff *skb;
4869 int quote;
4870
4871 BT_DBG("%s", hdev->name);
4872
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03004873 if (!hci_conn_num(hdev, ESCO_LINK))
4874 return;
4875
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03004876 while (hdev->sco_cnt && (conn = hci_low_sent(hdev, ESCO_LINK,
4877 &quote))) {
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02004878 while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
4879 BT_DBG("skb %p len %d", skb, skb->len);
Marcel Holtmann57d17d72013-10-10 14:54:17 -07004880 hci_send_frame(hdev, skb);
Marcel Holtmannb6a0dc82007-10-20 14:55:10 +02004881
4882 conn->sent++;
4883 if (conn->sent == ~0)
4884 conn->sent = 0;
4885 }
4886 }
4887}
4888
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004889static void hci_sched_le(struct hci_dev *hdev)
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004890{
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004891 struct hci_chan *chan;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004892 struct sk_buff *skb;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02004893 int quote, cnt, tmp;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004894
4895 BT_DBG("%s", hdev->name);
4896
Luiz Augusto von Dentz52087a72011-08-17 16:23:00 +03004897 if (!hci_conn_num(hdev, LE_LINK))
4898 return;
4899
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004900 if (!test_bit(HCI_RAW, &hdev->flags)) {
4901 /* LE tx timeout must be longer than maximum
4902 * link supervision timeout (40.9 seconds) */
Ville Tervobae1f5d92011-02-10 22:38:53 -03004903 if (!hdev->le_cnt && hdev->le_pkts &&
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004904 time_after(jiffies, hdev->le_last_tx + HZ * 45))
Ville Tervobae1f5d92011-02-10 22:38:53 -03004905 hci_link_tx_to(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004906 }
4907
4908 cnt = hdev->le_pkts ? hdev->le_cnt : hdev->acl_cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02004909 tmp = cnt;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004910 while (cnt && (chan = hci_chan_sent(hdev, LE_LINK, &quote))) {
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02004911 u32 priority = (skb_peek(&chan->data_q))->priority;
4912 while (quote-- && (skb = skb_peek(&chan->data_q))) {
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004913 BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004914 skb->len, skb->priority);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004915
Luiz Augusto von Dentzec1cce22011-11-02 15:52:02 +02004916 /* Stop if priority has changed */
4917 if (skb->priority < priority)
4918 break;
4919
4920 skb = skb_dequeue(&chan->data_q);
4921
Marcel Holtmann57d17d72013-10-10 14:54:17 -07004922 hci_send_frame(hdev, skb);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004923 hdev->le_last_tx = jiffies;
4924
4925 cnt--;
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004926 chan->sent++;
4927 chan->conn->sent++;
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004928 }
4929 }
Luiz Augusto von Dentz73d80de2011-11-02 15:52:01 +02004930
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004931 if (hdev->le_pkts)
4932 hdev->le_cnt = cnt;
4933 else
4934 hdev->acl_cnt = cnt;
Luiz Augusto von Dentz02b20f02011-11-02 15:52:03 +02004935
4936 if (cnt != tmp)
4937 hci_prio_recalculate(hdev, LE_LINK);
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004938}
4939
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02004940static void hci_tx_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004941{
Gustavo F. Padovan3eff45e2011-12-15 00:50:02 -02004942 struct hci_dev *hdev = container_of(work, struct hci_dev, tx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004943 struct sk_buff *skb;
4944
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004945 BT_DBG("%s acl %d sco %d le %d", hdev->name, hdev->acl_cnt,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004946 hdev->sco_cnt, hdev->le_cnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004947
Marcel Holtmann52de5992013-09-03 18:08:38 -07004948 if (!test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
4949 /* Schedule queues and send stuff to HCI driver */
4950 hci_sched_acl(hdev);
4951 hci_sched_sco(hdev);
4952 hci_sched_esco(hdev);
4953 hci_sched_le(hdev);
4954 }
Ville Tervo6ed58ec2011-02-10 22:38:48 -03004955
Linus Torvalds1da177e2005-04-16 15:20:36 -07004956 /* Send next queued raw (unknown type) packet */
4957 while ((skb = skb_dequeue(&hdev->raw_q)))
Marcel Holtmann57d17d72013-10-10 14:54:17 -07004958 hci_send_frame(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004959}
4960
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004961/* ----- HCI RX task (incoming data processing) ----- */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004962
4963/* ACL data packet */
Gustavo Padovan6039aa72012-05-23 04:04:18 -03004964static void hci_acldata_packet(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004965{
4966 struct hci_acl_hdr *hdr = (void *) skb->data;
4967 struct hci_conn *conn;
4968 __u16 handle, flags;
4969
4970 skb_pull(skb, HCI_ACL_HDR_SIZE);
4971
4972 handle = __le16_to_cpu(hdr->handle);
4973 flags = hci_flags(handle);
4974 handle = hci_handle(handle);
4975
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03004976 BT_DBG("%s len %d handle 0x%4.4x flags 0x%4.4x", hdev->name, skb->len,
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004977 handle, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004978
4979 hdev->stat.acl_rx++;
4980
4981 hci_dev_lock(hdev);
4982 conn = hci_conn_hash_lookup_handle(hdev, handle);
4983 hci_dev_unlock(hdev);
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09004984
Linus Torvalds1da177e2005-04-16 15:20:36 -07004985 if (conn) {
Mat Martineau65983fc2011-12-13 15:06:02 -08004986 hci_conn_enter_active_mode(conn, BT_POWER_FORCE_ACTIVE_OFF);
Marcel Holtmann04837f62006-07-03 10:02:33 +02004987
Linus Torvalds1da177e2005-04-16 15:20:36 -07004988 /* Send to upper protocol */
Ulisses Furquim686ebf22011-12-21 10:11:33 -02004989 l2cap_recv_acldata(conn, skb, flags);
4990 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004991 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09004992 BT_ERR("%s ACL packet for unknown connection handle %d",
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03004993 hdev->name, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004994 }
4995
4996 kfree_skb(skb);
4997}
4998
4999/* SCO data packet */
Gustavo Padovan6039aa72012-05-23 04:04:18 -03005000static void hci_scodata_packet(struct hci_dev *hdev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005001{
5002 struct hci_sco_hdr *hdr = (void *) skb->data;
5003 struct hci_conn *conn;
5004 __u16 handle;
5005
5006 skb_pull(skb, HCI_SCO_HDR_SIZE);
5007
5008 handle = __le16_to_cpu(hdr->handle);
5009
Andrei Emeltchenkof0e09512012-06-11 11:13:09 +03005010 BT_DBG("%s len %d handle 0x%4.4x", hdev->name, skb->len, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011
5012 hdev->stat.sco_rx++;
5013
5014 hci_dev_lock(hdev);
5015 conn = hci_conn_hash_lookup_handle(hdev, handle);
5016 hci_dev_unlock(hdev);
5017
5018 if (conn) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005019 /* Send to upper protocol */
Ulisses Furquim686ebf22011-12-21 10:11:33 -02005020 sco_recv_scodata(conn, skb);
5021 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022 } else {
YOSHIFUJI Hideaki8e87d142007-02-09 23:24:33 +09005023 BT_ERR("%s SCO packet for unknown connection handle %d",
Gustavo Padovana8c5fb12012-05-17 00:36:26 -03005024 hdev->name, handle);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005025 }
5026
5027 kfree_skb(skb);
5028}
5029
Johan Hedberg9238f362013-03-05 20:37:48 +02005030static bool hci_req_is_complete(struct hci_dev *hdev)
5031{
5032 struct sk_buff *skb;
5033
5034 skb = skb_peek(&hdev->cmd_q);
5035 if (!skb)
5036 return true;
5037
5038 return bt_cb(skb)->req.start;
5039}
5040
Johan Hedberg42c6b122013-03-05 20:37:49 +02005041static void hci_resend_last(struct hci_dev *hdev)
5042{
5043 struct hci_command_hdr *sent;
5044 struct sk_buff *skb;
5045 u16 opcode;
5046
5047 if (!hdev->sent_cmd)
5048 return;
5049
5050 sent = (void *) hdev->sent_cmd->data;
5051 opcode = __le16_to_cpu(sent->opcode);
5052 if (opcode == HCI_OP_RESET)
5053 return;
5054
5055 skb = skb_clone(hdev->sent_cmd, GFP_KERNEL);
5056 if (!skb)
5057 return;
5058
5059 skb_queue_head(&hdev->cmd_q, skb);
5060 queue_work(hdev->workqueue, &hdev->cmd_work);
5061}
5062
Johan Hedberg9238f362013-03-05 20:37:48 +02005063void hci_req_cmd_complete(struct hci_dev *hdev, u16 opcode, u8 status)
5064{
5065 hci_req_complete_t req_complete = NULL;
5066 struct sk_buff *skb;
5067 unsigned long flags;
5068
5069 BT_DBG("opcode 0x%04x status 0x%02x", opcode, status);
5070
Johan Hedberg42c6b122013-03-05 20:37:49 +02005071 /* If the completed command doesn't match the last one that was
5072 * sent we need to do special handling of it.
Johan Hedberg9238f362013-03-05 20:37:48 +02005073 */
Johan Hedberg42c6b122013-03-05 20:37:49 +02005074 if (!hci_sent_cmd_data(hdev, opcode)) {
5075 /* Some CSR based controllers generate a spontaneous
5076 * reset complete event during init and any pending
5077 * command will never be completed. In such a case we
5078 * need to resend whatever was the last sent
5079 * command.
5080 */
5081 if (test_bit(HCI_INIT, &hdev->flags) && opcode == HCI_OP_RESET)
5082 hci_resend_last(hdev);
5083
Johan Hedberg9238f362013-03-05 20:37:48 +02005084 return;
Johan Hedberg42c6b122013-03-05 20:37:49 +02005085 }
Johan Hedberg9238f362013-03-05 20:37:48 +02005086
5087 /* If the command succeeded and there's still more commands in
5088 * this request the request is not yet complete.
5089 */
5090 if (!status && !hci_req_is_complete(hdev))
5091 return;
5092
5093 /* If this was the last command in a request the complete
5094 * callback would be found in hdev->sent_cmd instead of the
5095 * command queue (hdev->cmd_q).
5096 */
5097 if (hdev->sent_cmd) {
5098 req_complete = bt_cb(hdev->sent_cmd)->req.complete;
Johan Hedberg53e21fb2013-07-27 14:11:14 -05005099
5100 if (req_complete) {
5101 /* We must set the complete callback to NULL to
5102 * avoid calling the callback more than once if
5103 * this function gets called again.
5104 */
5105 bt_cb(hdev->sent_cmd)->req.complete = NULL;
5106
Johan Hedberg9238f362013-03-05 20:37:48 +02005107 goto call_complete;
Johan Hedberg53e21fb2013-07-27 14:11:14 -05005108 }
Johan Hedberg9238f362013-03-05 20:37:48 +02005109 }
5110
5111 /* Remove all pending commands belonging to this request */
5112 spin_lock_irqsave(&hdev->cmd_q.lock, flags);
5113 while ((skb = __skb_dequeue(&hdev->cmd_q))) {
5114 if (bt_cb(skb)->req.start) {
5115 __skb_queue_head(&hdev->cmd_q, skb);
5116 break;
5117 }
5118
5119 req_complete = bt_cb(skb)->req.complete;
5120 kfree_skb(skb);
5121 }
5122 spin_unlock_irqrestore(&hdev->cmd_q.lock, flags);
5123
5124call_complete:
5125 if (req_complete)
5126 req_complete(hdev, status);
5127}
5128
Marcel Holtmannb78752c2010-08-08 23:06:53 -04005129static void hci_rx_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005130{
Marcel Holtmannb78752c2010-08-08 23:06:53 -04005131 struct hci_dev *hdev = container_of(work, struct hci_dev, rx_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005132 struct sk_buff *skb;
5133
5134 BT_DBG("%s", hdev->name);
5135
Linus Torvalds1da177e2005-04-16 15:20:36 -07005136 while ((skb = skb_dequeue(&hdev->rx_q))) {
Marcel Holtmanncd82e612012-02-20 20:34:38 +01005137 /* Send copy to monitor */
5138 hci_send_to_monitor(hdev, skb);
5139
Linus Torvalds1da177e2005-04-16 15:20:36 -07005140 if (atomic_read(&hdev->promisc)) {
5141 /* Send copy to the sockets */
Marcel Holtmann470fe1b2012-02-20 14:50:30 +01005142 hci_send_to_sock(hdev, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005143 }
5144
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07005145 if (test_bit(HCI_RAW, &hdev->flags) ||
5146 test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005147 kfree_skb(skb);
5148 continue;
5149 }
5150
5151 if (test_bit(HCI_INIT, &hdev->flags)) {
5152 /* Don't process data packets in this states. */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07005153 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005154 case HCI_ACLDATA_PKT:
5155 case HCI_SCODATA_PKT:
5156 kfree_skb(skb);
5157 continue;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07005158 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005159 }
5160
5161 /* Process frame */
Marcel Holtmann0d48d932005-08-09 20:30:28 -07005162 switch (bt_cb(skb)->pkt_type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005163 case HCI_EVENT_PKT:
Marcel Holtmannb78752c2010-08-08 23:06:53 -04005164 BT_DBG("%s Event packet", hdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005165 hci_event_packet(hdev, skb);
5166 break;
5167
5168 case HCI_ACLDATA_PKT:
5169 BT_DBG("%s ACL data packet", hdev->name);
5170 hci_acldata_packet(hdev, skb);
5171 break;
5172
5173 case HCI_SCODATA_PKT:
5174 BT_DBG("%s SCO data packet", hdev->name);
5175 hci_scodata_packet(hdev, skb);
5176 break;
5177
5178 default:
5179 kfree_skb(skb);
5180 break;
5181 }
5182 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005183}
5184
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02005185static void hci_cmd_work(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005186{
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02005187 struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005188 struct sk_buff *skb;
5189
Andrei Emeltchenko21047862012-07-10 15:27:47 +03005190 BT_DBG("%s cmd_cnt %d cmd queued %d", hdev->name,
5191 atomic_read(&hdev->cmd_cnt), skb_queue_len(&hdev->cmd_q));
Linus Torvalds1da177e2005-04-16 15:20:36 -07005192
Linus Torvalds1da177e2005-04-16 15:20:36 -07005193 /* Send queued commands */
Andrei Emeltchenko5a08ecc2011-01-11 17:20:20 +02005194 if (atomic_read(&hdev->cmd_cnt)) {
5195 skb = skb_dequeue(&hdev->cmd_q);
5196 if (!skb)
5197 return;
5198
Wei Yongjun7585b972009-02-25 18:29:52 +08005199 kfree_skb(hdev->sent_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005200
Marcel Holtmanna675d7f2013-09-03 18:11:07 -07005201 hdev->sent_cmd = skb_clone(skb, GFP_KERNEL);
Andrei Emeltchenko70f230202010-12-01 16:58:25 +02005202 if (hdev->sent_cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005203 atomic_dec(&hdev->cmd_cnt);
Marcel Holtmann57d17d72013-10-10 14:54:17 -07005204 hci_send_frame(hdev, skb);
Szymon Janc7bdb8a52011-07-26 22:46:54 +02005205 if (test_bit(HCI_RESET, &hdev->flags))
5206 del_timer(&hdev->cmd_timer);
5207 else
5208 mod_timer(&hdev->cmd_timer,
Andrei Emeltchenko5f246e82012-06-11 11:13:07 +03005209 jiffies + HCI_CMD_TIMEOUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005210 } else {
5211 skb_queue_head(&hdev->cmd_q, skb);
Gustavo F. Padovanc347b762011-12-14 23:53:47 -02005212 queue_work(hdev->workqueue, &hdev->cmd_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005213 }
5214 }
5215}
Andre Guedesb1efcc22014-02-26 20:21:40 -03005216
5217void hci_req_add_le_scan_disable(struct hci_request *req)
5218{
5219 struct hci_cp_le_set_scan_enable cp;
5220
5221 memset(&cp, 0, sizeof(cp));
5222 cp.enable = LE_SCAN_DISABLE;
5223 hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
5224}
Andre Guedesa4790db2014-02-26 20:21:47 -03005225
Andre Guedes8ef30fd2014-02-26 20:21:55 -03005226void hci_req_add_le_passive_scan(struct hci_request *req)
5227{
5228 struct hci_cp_le_set_scan_param param_cp;
5229 struct hci_cp_le_set_scan_enable enable_cp;
5230 struct hci_dev *hdev = req->hdev;
5231 u8 own_addr_type;
5232
5233 /* Set require_privacy to true to avoid identification from
5234 * unknown peer devices. Since this is passive scanning, no
5235 * SCAN_REQ using the local identity should be sent. Mandating
5236 * privacy is just an extra precaution.
5237 */
5238 if (hci_update_random_address(req, true, &own_addr_type))
5239 return;
5240
5241 memset(&param_cp, 0, sizeof(param_cp));
5242 param_cp.type = LE_SCAN_PASSIVE;
5243 param_cp.interval = cpu_to_le16(hdev->le_scan_interval);
5244 param_cp.window = cpu_to_le16(hdev->le_scan_window);
5245 param_cp.own_address_type = own_addr_type;
5246 hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
5247 &param_cp);
5248
5249 memset(&enable_cp, 0, sizeof(enable_cp));
5250 enable_cp.enable = LE_SCAN_ENABLE;
5251 enable_cp.filter_dup = LE_SCAN_FILTER_DUP_DISABLE;
5252 hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
5253 &enable_cp);
5254}
5255
Andre Guedesa4790db2014-02-26 20:21:47 -03005256static void update_background_scan_complete(struct hci_dev *hdev, u8 status)
5257{
5258 if (status)
5259 BT_DBG("HCI request failed to update background scanning: "
5260 "status 0x%2.2x", status);
5261}
5262
5263/* This function controls the background scanning based on hdev->pend_le_conns
5264 * list. If there are pending LE connection we start the background scanning,
5265 * otherwise we stop it.
5266 *
5267 * This function requires the caller holds hdev->lock.
5268 */
5269void hci_update_background_scan(struct hci_dev *hdev)
5270{
Andre Guedesa4790db2014-02-26 20:21:47 -03005271 struct hci_request req;
5272 struct hci_conn *conn;
5273 int err;
5274
5275 hci_req_init(&req, hdev);
5276
5277 if (list_empty(&hdev->pend_le_conns)) {
5278 /* If there is no pending LE connections, we should stop
5279 * the background scanning.
5280 */
5281
5282 /* If controller is not scanning we are done. */
5283 if (!test_bit(HCI_LE_SCAN, &hdev->dev_flags))
5284 return;
5285
5286 hci_req_add_le_scan_disable(&req);
5287
5288 BT_DBG("%s stopping background scanning", hdev->name);
5289 } else {
Andre Guedesa4790db2014-02-26 20:21:47 -03005290 /* If there is at least one pending LE connection, we should
5291 * keep the background scan running.
5292 */
5293
5294 /* If controller is already scanning we are done. */
5295 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags))
5296 return;
5297
5298 /* If controller is connecting, we should not start scanning
5299 * since some controllers are not able to scan and connect at
5300 * the same time.
5301 */
5302 conn = hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT);
5303 if (conn)
5304 return;
5305
Andre Guedes8ef30fd2014-02-26 20:21:55 -03005306 hci_req_add_le_passive_scan(&req);
Andre Guedesa4790db2014-02-26 20:21:47 -03005307
5308 BT_DBG("%s starting background scanning", hdev->name);
5309 }
5310
5311 err = hci_req_run(&req, update_background_scan_complete);
5312 if (err)
5313 BT_ERR("Failed to run HCI request: err %d", err);
5314}