hci_core.c 62.1 KB
Newer Older
1
/*
L
Linus Torvalds 已提交
2 3
   BlueZ - Bluetooth protocol stack for Linux
   Copyright (C) 2000-2001 Qualcomm Incorporated
4
   Copyright (C) 2011 ProFUSION Embedded Systems
L
Linus Torvalds 已提交
5 6 7 8 9 10 11 12 13 14 15

   Written 2000,2001 by Maxim Krasnyansky <maxk@qualcomm.com>

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License version 2 as
   published by the Free Software Foundation;

   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
   IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
16 17 18
   CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
L
Linus Torvalds 已提交
19 20
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

21 22
   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
L
Linus Torvalds 已提交
23 24 25 26 27
   SOFTWARE IS DISCLAIMED.
*/

/* Bluetooth HCI core. */

28
#include <linux/export.h>
29
#include <linux/idr.h>
L
Linus Torvalds 已提交
30

31
#include <linux/rfkill.h>
L
Linus Torvalds 已提交
32 33 34 35

#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/hci_core.h>

36
static void hci_rx_work(struct work_struct *work);
37
static void hci_cmd_work(struct work_struct *work);
38
static void hci_tx_work(struct work_struct *work);
L
Linus Torvalds 已提交
39 40 41 42 43 44 45 46 47

/* HCI device list */
LIST_HEAD(hci_dev_list);
DEFINE_RWLOCK(hci_dev_list_lock);

/* HCI callback list */
LIST_HEAD(hci_cb_list);
DEFINE_RWLOCK(hci_cb_list_lock);

48 49 50
/* HCI ID Numbering */
static DEFINE_IDA(hci_index_ida);

L
Linus Torvalds 已提交
51 52
/* ---- HCI notifications ---- */

53
static void hci_notify(struct hci_dev *hdev, int event)
L
Linus Torvalds 已提交
54
{
55
	hci_sock_dev_event(hdev, event);
L
Linus Torvalds 已提交
56 57 58 59
}

/* ---- HCI requests ---- */

60
void hci_req_complete(struct hci_dev *hdev, __u16 cmd, int result)
L
Linus Torvalds 已提交
61
{
62
	BT_DBG("%s command 0x%4.4x result 0x%2.2x", hdev->name, cmd, result);
63

64 65 66
	/* If this is the init phase check if the completed command matches
	 * the last init command, and if not just return.
	 */
67 68
	if (test_bit(HCI_INIT, &hdev->flags) && hdev->init_last_cmd != cmd) {
		struct hci_command_hdr *sent = (void *) hdev->sent_cmd->data;
69
		u16 opcode = __le16_to_cpu(sent->opcode);
70 71 72 73 74 75 76 77 78
		struct sk_buff *skb;

		/* Some CSR based controllers generate a spontaneous
		 * reset complete event during init and any pending
		 * command will never be completed. In such a case we
		 * need to resend whatever was the last sent
		 * command.
		 */

79
		if (cmd != HCI_OP_RESET || opcode == HCI_OP_RESET)
80 81 82 83 84 85 86 87
			return;

		skb = skb_clone(hdev->sent_cmd, GFP_ATOMIC);
		if (skb) {
			skb_queue_head(&hdev->cmd_q, skb);
			queue_work(hdev->workqueue, &hdev->cmd_work);
		}

88
		return;
89
	}
L
Linus Torvalds 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109

	if (hdev->req_status == HCI_REQ_PEND) {
		hdev->req_result = result;
		hdev->req_status = HCI_REQ_DONE;
		wake_up_interruptible(&hdev->req_wait_q);
	}
}

static void hci_req_cancel(struct hci_dev *hdev, int err)
{
	BT_DBG("%s err 0x%2.2x", hdev->name, err);

	if (hdev->req_status == HCI_REQ_PEND) {
		hdev->req_result = err;
		hdev->req_status = HCI_REQ_CANCELED;
		wake_up_interruptible(&hdev->req_wait_q);
	}
}

/* Execute request and wait for completion. */
110 111 112
static int __hci_req_sync(struct hci_dev *hdev,
			  void (*req)(struct hci_dev *hdev, unsigned long opt),
			  unsigned long opt, __u32 timeout)
L
Linus Torvalds 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
{
	DECLARE_WAITQUEUE(wait, current);
	int err = 0;

	BT_DBG("%s start", hdev->name);

	hdev->req_status = HCI_REQ_PEND;

	add_wait_queue(&hdev->req_wait_q, &wait);
	set_current_state(TASK_INTERRUPTIBLE);

	req(hdev, opt);
	schedule_timeout(timeout);

	remove_wait_queue(&hdev->req_wait_q, &wait);

	if (signal_pending(current))
		return -EINTR;

	switch (hdev->req_status) {
	case HCI_REQ_DONE:
134
		err = -bt_to_errno(hdev->req_result);
L
Linus Torvalds 已提交
135 136 137 138 139 140 141 142 143
		break;

	case HCI_REQ_CANCELED:
		err = -hdev->req_result;
		break;

	default:
		err = -ETIMEDOUT;
		break;
144
	}
L
Linus Torvalds 已提交
145

146
	hdev->req_status = hdev->req_result = 0;
L
Linus Torvalds 已提交
147 148 149 150 151 152

	BT_DBG("%s end: err %d", hdev->name, err);

	return err;
}

153 154 155
static int hci_req_sync(struct hci_dev *hdev,
			void (*req)(struct hci_dev *hdev, unsigned long opt),
			unsigned long opt, __u32 timeout)
L
Linus Torvalds 已提交
156 157 158
{
	int ret;

159 160 161
	if (!test_bit(HCI_UP, &hdev->flags))
		return -ENETDOWN;

L
Linus Torvalds 已提交
162 163
	/* Serialize all requests */
	hci_req_lock(hdev);
164
	ret = __hci_req_sync(hdev, req, opt, timeout);
L
Linus Torvalds 已提交
165 166 167 168 169 170 171 172 173 174
	hci_req_unlock(hdev);

	return ret;
}

static void hci_reset_req(struct hci_dev *hdev, unsigned long opt)
{
	BT_DBG("%s %ld", hdev->name, opt);

	/* Reset device */
175
	set_bit(HCI_RESET, &hdev->flags);
176
	hci_send_cmd(hdev, HCI_OP_RESET, 0, NULL);
L
Linus Torvalds 已提交
177 178
}

179
static void bredr_init(struct hci_dev *hdev)
L
Linus Torvalds 已提交
180
{
181 182
	hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_PACKET_BASED;

L
Linus Torvalds 已提交
183
	/* Read Local Supported Features */
184
	hci_send_cmd(hdev, HCI_OP_READ_LOCAL_FEATURES, 0, NULL);
L
Linus Torvalds 已提交
185

186
	/* Read Local Version */
187
	hci_send_cmd(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
L
Linus Torvalds 已提交
188 189
}

190 191
static void amp_init(struct hci_dev *hdev)
{
192 193
	hdev->flow_ctl_mode = HCI_FLOW_CTL_MODE_BLOCK_BASED;

194 195
	/* Read Local Version */
	hci_send_cmd(hdev, HCI_OP_READ_LOCAL_VERSION, 0, NULL);
196 197 198

	/* Read Local AMP Info */
	hci_send_cmd(hdev, HCI_OP_READ_LOCAL_AMP_INFO, 0, NULL);
199 200 201

	/* Read Data Blk size */
	hci_send_cmd(hdev, HCI_OP_READ_DATA_BLOCK_SIZE, 0, NULL);
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221
}

static void hci_init_req(struct hci_dev *hdev, unsigned long opt)
{
	struct sk_buff *skb;

	BT_DBG("%s %ld", hdev->name, opt);

	/* Driver initialization */

	/* Special commands */
	while ((skb = skb_dequeue(&hdev->driver_init))) {
		bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
		skb->dev = (void *) hdev;

		skb_queue_tail(&hdev->cmd_q, skb);
		queue_work(hdev->workqueue, &hdev->cmd_work);
	}
	skb_queue_purge(&hdev->driver_init);

222 223 224 225
	/* Reset */
	if (!test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks))
		hci_reset_req(hdev, 0);

226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
	switch (hdev->dev_type) {
	case HCI_BREDR:
		bredr_init(hdev);
		break;

	case HCI_AMP:
		amp_init(hdev);
		break;

	default:
		BT_ERR("Unknown device type %d", hdev->dev_type);
		break;
	}
}

L
Linus Torvalds 已提交
241 242 243 244 245 246 247
static void hci_scan_req(struct hci_dev *hdev, unsigned long opt)
{
	__u8 scan = opt;

	BT_DBG("%s %x", hdev->name, scan);

	/* Inquiry and Page scans */
248
	hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
L
Linus Torvalds 已提交
249 250 251 252 253 254 255 256 257
}

static void hci_auth_req(struct hci_dev *hdev, unsigned long opt)
{
	__u8 auth = opt;

	BT_DBG("%s %x", hdev->name, auth);

	/* Authentication */
258
	hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, 1, &auth);
L
Linus Torvalds 已提交
259 260 261 262 263 264 265 266
}

static void hci_encrypt_req(struct hci_dev *hdev, unsigned long opt)
{
	__u8 encrypt = opt;

	BT_DBG("%s %x", hdev->name, encrypt);

267
	/* Encryption */
268
	hci_send_cmd(hdev, HCI_OP_WRITE_ENCRYPT_MODE, 1, &encrypt);
L
Linus Torvalds 已提交
269 270
}

271 272 273 274
static void hci_linkpol_req(struct hci_dev *hdev, unsigned long opt)
{
	__le16 policy = cpu_to_le16(opt);

275
	BT_DBG("%s %x", hdev->name, policy);
276 277 278 279 280

	/* Default link policy */
	hci_send_cmd(hdev, HCI_OP_WRITE_DEF_LINK_POLICY, 2, &policy);
}

281
/* Get HCI device by index.
L
Linus Torvalds 已提交
282 283 284
 * Device is held on return. */
struct hci_dev *hci_dev_get(int index)
{
285
	struct hci_dev *hdev = NULL, *d;
L
Linus Torvalds 已提交
286 287 288 289 290 291 292

	BT_DBG("%d", index);

	if (index < 0)
		return NULL;

	read_lock(&hci_dev_list_lock);
293
	list_for_each_entry(d, &hci_dev_list, list) {
L
Linus Torvalds 已提交
294 295 296 297 298 299 300 301 302 303
		if (d->id == index) {
			hdev = hci_dev_hold(d);
			break;
		}
	}
	read_unlock(&hci_dev_list_lock);
	return hdev;
}

/* ---- Inquiry support ---- */
304

305 306 307 308
bool hci_discovery_active(struct hci_dev *hdev)
{
	struct discovery_state *discov = &hdev->discovery;

A
Andre Guedes 已提交
309
	switch (discov->state) {
310
	case DISCOVERY_FINDING:
A
Andre Guedes 已提交
311
	case DISCOVERY_RESOLVING:
312 313
		return true;

A
Andre Guedes 已提交
314 315 316
	default:
		return false;
	}
317 318
}

319 320 321 322 323 324 325 326 327
void hci_discovery_set_state(struct hci_dev *hdev, int state)
{
	BT_DBG("%s state %u -> %u", hdev->name, hdev->discovery.state, state);

	if (hdev->discovery.state == state)
		return;

	switch (state) {
	case DISCOVERY_STOPPED:
328 329
		if (hdev->discovery.state != DISCOVERY_STARTING)
			mgmt_discovering(hdev, 0);
330 331 332
		break;
	case DISCOVERY_STARTING:
		break;
333
	case DISCOVERY_FINDING:
334 335
		mgmt_discovering(hdev, 1);
		break;
336 337
	case DISCOVERY_RESOLVING:
		break;
338 339 340 341 342 343 344
	case DISCOVERY_STOPPING:
		break;
	}

	hdev->discovery.state = state;
}

L
Linus Torvalds 已提交
345 346
static void inquiry_cache_flush(struct hci_dev *hdev)
{
347
	struct discovery_state *cache = &hdev->discovery;
348
	struct inquiry_entry *p, *n;
L
Linus Torvalds 已提交
349

350 351
	list_for_each_entry_safe(p, n, &cache->all, all) {
		list_del(&p->all);
352
		kfree(p);
L
Linus Torvalds 已提交
353
	}
354 355 356

	INIT_LIST_HEAD(&cache->unknown);
	INIT_LIST_HEAD(&cache->resolve);
L
Linus Torvalds 已提交
357 358
}

359 360
struct inquiry_entry *hci_inquiry_cache_lookup(struct hci_dev *hdev,
					       bdaddr_t *bdaddr)
L
Linus Torvalds 已提交
361
{
362
	struct discovery_state *cache = &hdev->discovery;
L
Linus Torvalds 已提交
363 364
	struct inquiry_entry *e;

365
	BT_DBG("cache %p, %pMR", cache, bdaddr);
L
Linus Torvalds 已提交
366

367 368 369 370 371 372 373 374 375
	list_for_each_entry(e, &cache->all, all) {
		if (!bacmp(&e->data.bdaddr, bdaddr))
			return e;
	}

	return NULL;
}

struct inquiry_entry *hci_inquiry_cache_lookup_unknown(struct hci_dev *hdev,
376
						       bdaddr_t *bdaddr)
377
{
378
	struct discovery_state *cache = &hdev->discovery;
379 380
	struct inquiry_entry *e;

381
	BT_DBG("cache %p, %pMR", cache, bdaddr);
382 383

	list_for_each_entry(e, &cache->unknown, list) {
L
Linus Torvalds 已提交
384
		if (!bacmp(&e->data.bdaddr, bdaddr))
385 386 387 388
			return e;
	}

	return NULL;
L
Linus Torvalds 已提交
389 390
}

391
struct inquiry_entry *hci_inquiry_cache_lookup_resolve(struct hci_dev *hdev,
392 393
						       bdaddr_t *bdaddr,
						       int state)
394 395 396 397
{
	struct discovery_state *cache = &hdev->discovery;
	struct inquiry_entry *e;

398
	BT_DBG("cache %p bdaddr %pMR state %d", cache, bdaddr, state);
399 400 401 402 403 404 405 406 407 408 409

	list_for_each_entry(e, &cache->resolve, list) {
		if (!bacmp(bdaddr, BDADDR_ANY) && e->name_state == state)
			return e;
		if (!bacmp(&e->data.bdaddr, bdaddr))
			return e;
	}

	return NULL;
}

410
void hci_inquiry_cache_update_resolve(struct hci_dev *hdev,
411
				      struct inquiry_entry *ie)
412 413 414 415 416 417 418 419 420
{
	struct discovery_state *cache = &hdev->discovery;
	struct list_head *pos = &cache->resolve;
	struct inquiry_entry *p;

	list_del(&ie->list);

	list_for_each_entry(p, &cache->resolve, list) {
		if (p->name_state != NAME_PENDING &&
421
		    abs(p->data.rssi) >= abs(ie->data.rssi))
422 423 424 425 426 427 428
			break;
		pos = &p->list;
	}

	list_add(&ie->list, pos);
}

429
bool hci_inquiry_cache_update(struct hci_dev *hdev, struct inquiry_data *data,
430
			      bool name_known, bool *ssp)
L
Linus Torvalds 已提交
431
{
432
	struct discovery_state *cache = &hdev->discovery;
A
Andrei Emeltchenko 已提交
433
	struct inquiry_entry *ie;
L
Linus Torvalds 已提交
434

435
	BT_DBG("cache %p, %pMR", cache, &data->bdaddr);
L
Linus Torvalds 已提交
436

437 438
	hci_remove_remote_oob_data(hdev, &data->bdaddr);

439 440 441
	if (ssp)
		*ssp = data->ssp_mode;

A
Andrei Emeltchenko 已提交
442
	ie = hci_inquiry_cache_lookup(hdev, &data->bdaddr);
443
	if (ie) {
444 445 446
		if (ie->data.ssp_mode && ssp)
			*ssp = true;

447
		if (ie->name_state == NAME_NEEDED &&
448
		    data->rssi != ie->data.rssi) {
449 450 451 452
			ie->data.rssi = data->rssi;
			hci_inquiry_cache_update_resolve(hdev, ie);
		}

453
		goto update;
454
	}
455 456 457 458

	/* Entry not in the cache. Add new one. */
	ie = kzalloc(sizeof(struct inquiry_entry), GFP_ATOMIC);
	if (!ie)
459
		return false;
460 461 462 463 464 465 466 467 468

	list_add(&ie->all, &cache->all);

	if (name_known) {
		ie->name_state = NAME_KNOWN;
	} else {
		ie->name_state = NAME_NOT_KNOWN;
		list_add(&ie->list, &cache->unknown);
	}
A
Andrei Emeltchenko 已提交
469

470 471
update:
	if (name_known && ie->name_state != NAME_KNOWN &&
472
	    ie->name_state != NAME_PENDING) {
473 474
		ie->name_state = NAME_KNOWN;
		list_del(&ie->list);
L
Linus Torvalds 已提交
475 476
	}

A
Andrei Emeltchenko 已提交
477 478
	memcpy(&ie->data, data, sizeof(*data));
	ie->timestamp = jiffies;
L
Linus Torvalds 已提交
479
	cache->timestamp = jiffies;
480 481 482 483 484

	if (ie->name_state == NAME_NOT_KNOWN)
		return false;

	return true;
L
Linus Torvalds 已提交
485 486 487 488
}

static int inquiry_cache_dump(struct hci_dev *hdev, int num, __u8 *buf)
{
489
	struct discovery_state *cache = &hdev->discovery;
L
Linus Torvalds 已提交
490 491 492 493
	struct inquiry_info *info = (struct inquiry_info *) buf;
	struct inquiry_entry *e;
	int copied = 0;

494
	list_for_each_entry(e, &cache->all, all) {
L
Linus Torvalds 已提交
495
		struct inquiry_data *data = &e->data;
496 497 498 499

		if (copied >= num)
			break;

L
Linus Torvalds 已提交
500 501 502 503 504 505
		bacpy(&info->bdaddr, &data->bdaddr);
		info->pscan_rep_mode	= data->pscan_rep_mode;
		info->pscan_period_mode	= data->pscan_period_mode;
		info->pscan_mode	= data->pscan_mode;
		memcpy(info->dev_class, data->dev_class, 3);
		info->clock_offset	= data->clock_offset;
506

L
Linus Torvalds 已提交
507
		info++;
508
		copied++;
L
Linus Torvalds 已提交
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
	}

	BT_DBG("cache %p, copied %d", cache, copied);
	return copied;
}

static void hci_inq_req(struct hci_dev *hdev, unsigned long opt)
{
	struct hci_inquiry_req *ir = (struct hci_inquiry_req *) opt;
	struct hci_cp_inquiry cp;

	BT_DBG("%s", hdev->name);

	if (test_bit(HCI_INQUIRY, &hdev->flags))
		return;

	/* Start Inquiry */
	memcpy(&cp.lap, &ir->lap, 3);
	cp.length  = ir->length;
	cp.num_rsp = ir->num_rsp;
529
	hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp);
L
Linus Torvalds 已提交
530 531 532 533 534 535 536 537 538 539 540 541 542 543
}

int hci_inquiry(void __user *arg)
{
	__u8 __user *ptr = arg;
	struct hci_inquiry_req ir;
	struct hci_dev *hdev;
	int err = 0, do_inquiry = 0, max_rsp;
	long timeo;
	__u8 *buf;

	if (copy_from_user(&ir, ptr, sizeof(ir)))
		return -EFAULT;

544 545
	hdev = hci_dev_get(ir.dev_id);
	if (!hdev)
L
Linus Torvalds 已提交
546 547
		return -ENODEV;

548
	hci_dev_lock(hdev);
549
	if (inquiry_cache_age(hdev) > INQUIRY_CACHE_AGE_MAX ||
550
	    inquiry_cache_empty(hdev) || ir.flags & IREQ_CACHE_FLUSH) {
L
Linus Torvalds 已提交
551 552 553
		inquiry_cache_flush(hdev);
		do_inquiry = 1;
	}
554
	hci_dev_unlock(hdev);
L
Linus Torvalds 已提交
555

556
	timeo = ir.length * msecs_to_jiffies(2000);
A
Andrei Emeltchenko 已提交
557 558

	if (do_inquiry) {
559 560
		err = hci_req_sync(hdev, hci_inq_req, (unsigned long) &ir,
				   timeo);
A
Andrei Emeltchenko 已提交
561 562 563
		if (err < 0)
			goto done;
	}
L
Linus Torvalds 已提交
564

565 566 567
	/* for unlimited number of responses we will use buffer with
	 * 255 entries
	 */
L
Linus Torvalds 已提交
568 569 570 571 572
	max_rsp = (ir.num_rsp == 0) ? 255 : ir.num_rsp;

	/* cache_dump can't sleep. Therefore we allocate temp buffer and then
	 * copy it to the user space.
	 */
573
	buf = kmalloc(sizeof(struct inquiry_info) * max_rsp, GFP_KERNEL);
A
Andrei Emeltchenko 已提交
574
	if (!buf) {
L
Linus Torvalds 已提交
575 576 577 578
		err = -ENOMEM;
		goto done;
	}

579
	hci_dev_lock(hdev);
L
Linus Torvalds 已提交
580
	ir.num_rsp = inquiry_cache_dump(hdev, max_rsp, buf);
581
	hci_dev_unlock(hdev);
L
Linus Torvalds 已提交
582 583 584 585 586 587

	BT_DBG("num_rsp %d", ir.num_rsp);

	if (!copy_to_user(ptr, &ir, sizeof(ir))) {
		ptr += sizeof(ir);
		if (copy_to_user(ptr, buf, sizeof(struct inquiry_info) *
588
				 ir.num_rsp))
L
Linus Torvalds 已提交
589
			err = -EFAULT;
590
	} else
L
Linus Torvalds 已提交
591 592 593 594 595 596 597 598 599
		err = -EFAULT;

	kfree(buf);

done:
	hci_dev_put(hdev);
	return err;
}

600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
static u8 create_ad(struct hci_dev *hdev, u8 *ptr)
{
	u8 ad_len = 0, flags = 0;
	size_t name_len;

	if (test_bit(HCI_LE_PERIPHERAL, &hdev->dev_flags))
		flags |= LE_AD_GENERAL;

	if (!lmp_bredr_capable(hdev))
		flags |= LE_AD_NO_BREDR;

	if (lmp_le_br_capable(hdev))
		flags |= LE_AD_SIM_LE_BREDR_CTRL;

	if (lmp_host_le_br_capable(hdev))
		flags |= LE_AD_SIM_LE_BREDR_HOST;

	if (flags) {
		BT_DBG("adv flags 0x%02x", flags);

		ptr[0] = 2;
		ptr[1] = EIR_FLAGS;
		ptr[2] = flags;

		ad_len += 3;
		ptr += 3;
	}

	if (hdev->adv_tx_power != HCI_TX_POWER_INVALID) {
		ptr[0] = 2;
		ptr[1] = EIR_TX_POWER;
		ptr[2] = (u8) hdev->adv_tx_power;

		ad_len += 3;
		ptr += 3;
	}

	name_len = strlen(hdev->dev_name);
	if (name_len > 0) {
		size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2;

		if (name_len > max_len) {
			name_len = max_len;
			ptr[1] = EIR_NAME_SHORT;
		} else
			ptr[1] = EIR_NAME_COMPLETE;

		ptr[0] = name_len + 1;

		memcpy(ptr + 2, hdev->dev_name, name_len);

		ad_len += (name_len + 2);
		ptr += (name_len + 2);
	}

	return ad_len;
}

int hci_update_ad(struct hci_dev *hdev)
{
	struct hci_cp_le_set_adv_data cp;
	u8 len;
	int err;

	hci_dev_lock(hdev);

	if (!lmp_le_capable(hdev)) {
		err = -EINVAL;
		goto unlock;
	}

	memset(&cp, 0, sizeof(cp));

	len = create_ad(hdev, cp.data);

	if (hdev->adv_data_len == len &&
	    memcmp(cp.data, hdev->adv_data, len) == 0) {
		err = 0;
		goto unlock;
	}

	memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
	hdev->adv_data_len = len;

	cp.length = len;
	err = hci_send_cmd(hdev, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);

unlock:
	hci_dev_unlock(hdev);

	return err;
}

L
Linus Torvalds 已提交
693 694 695 696 697 698 699
/* ---- HCI ioctl helpers ---- */

int hci_dev_open(__u16 dev)
{
	struct hci_dev *hdev;
	int ret = 0;

700 701
	hdev = hci_dev_get(dev);
	if (!hdev)
L
Linus Torvalds 已提交
702 703 704 705 706 707
		return -ENODEV;

	BT_DBG("%s %p", hdev->name, hdev);

	hci_req_lock(hdev);

708 709 710 711 712
	if (test_bit(HCI_UNREGISTER, &hdev->dev_flags)) {
		ret = -ENODEV;
		goto done;
	}

713 714 715 716 717
	if (hdev->rfkill && rfkill_blocked(hdev->rfkill)) {
		ret = -ERFKILL;
		goto done;
	}

L
Linus Torvalds 已提交
718 719 720 721 722 723 724 725
	if (test_bit(HCI_UP, &hdev->flags)) {
		ret = -EALREADY;
		goto done;
	}

	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		set_bit(HCI_RAW, &hdev->flags);

726 727 728
	/* Treat all non BR/EDR controllers as raw devices if
	   enable_hs is not set */
	if (hdev->dev_type != HCI_BREDR && !enable_hs)
729 730
		set_bit(HCI_RAW, &hdev->flags);

L
Linus Torvalds 已提交
731 732 733 734 735 736 737 738
	if (hdev->open(hdev)) {
		ret = -EIO;
		goto done;
	}

	if (!test_bit(HCI_RAW, &hdev->flags)) {
		atomic_set(&hdev->cmd_cnt, 1);
		set_bit(HCI_INIT, &hdev->flags);
739
		hdev->init_last_cmd = 0;
L
Linus Torvalds 已提交
740

741
		ret = __hci_req_sync(hdev, hci_init_req, 0, HCI_INIT_TIMEOUT);
L
Linus Torvalds 已提交
742 743 744 745 746 747 748 749

		clear_bit(HCI_INIT, &hdev->flags);
	}

	if (!ret) {
		hci_dev_hold(hdev);
		set_bit(HCI_UP, &hdev->flags);
		hci_notify(hdev, HCI_DEV_UP);
750
		hci_update_ad(hdev);
751 752
		if (!test_bit(HCI_SETUP, &hdev->dev_flags) &&
		    mgmt_valid_hdev(hdev)) {
753
			hci_dev_lock(hdev);
754
			mgmt_powered(hdev, 1);
755
			hci_dev_unlock(hdev);
756
		}
757
	} else {
L
Linus Torvalds 已提交
758
		/* Init failed, cleanup */
759
		flush_work(&hdev->tx_work);
760
		flush_work(&hdev->cmd_work);
761
		flush_work(&hdev->rx_work);
L
Linus Torvalds 已提交
762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787

		skb_queue_purge(&hdev->cmd_q);
		skb_queue_purge(&hdev->rx_q);

		if (hdev->flush)
			hdev->flush(hdev);

		if (hdev->sent_cmd) {
			kfree_skb(hdev->sent_cmd);
			hdev->sent_cmd = NULL;
		}

		hdev->close(hdev);
		hdev->flags = 0;
	}

done:
	hci_req_unlock(hdev);
	hci_dev_put(hdev);
	return ret;
}

static int hci_dev_do_close(struct hci_dev *hdev)
{
	BT_DBG("%s %p", hdev->name, hdev);

A
Andre Guedes 已提交
788 789
	cancel_work_sync(&hdev->le_scan);

790 791
	cancel_delayed_work(&hdev->power_off);

L
Linus Torvalds 已提交
792 793 794 795
	hci_req_cancel(hdev, ENODEV);
	hci_req_lock(hdev);

	if (!test_and_clear_bit(HCI_UP, &hdev->flags)) {
796
		del_timer_sync(&hdev->cmd_timer);
L
Linus Torvalds 已提交
797 798 799 800
		hci_req_unlock(hdev);
		return 0;
	}

801 802
	/* Flush RX and TX works */
	flush_work(&hdev->tx_work);
803
	flush_work(&hdev->rx_work);
L
Linus Torvalds 已提交
804

805
	if (hdev->discov_timeout > 0) {
806
		cancel_delayed_work(&hdev->discov_off);
807
		hdev->discov_timeout = 0;
808
		clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
809 810
	}

811
	if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
812 813
		cancel_delayed_work(&hdev->service_cache);

A
Andre Guedes 已提交
814 815
	cancel_delayed_work_sync(&hdev->le_scan_disable);

816
	hci_dev_lock(hdev);
L
Linus Torvalds 已提交
817 818
	inquiry_cache_flush(hdev);
	hci_conn_hash_flush(hdev);
819
	hci_dev_unlock(hdev);
L
Linus Torvalds 已提交
820 821 822 823 824 825 826 827 828

	hci_notify(hdev, HCI_DEV_DOWN);

	if (hdev->flush)
		hdev->flush(hdev);

	/* Reset device */
	skb_queue_purge(&hdev->cmd_q);
	atomic_set(&hdev->cmd_cnt, 1);
829
	if (!test_bit(HCI_RAW, &hdev->flags) &&
830
	    test_bit(HCI_QUIRK_RESET_ON_CLOSE, &hdev->quirks)) {
L
Linus Torvalds 已提交
831
		set_bit(HCI_INIT, &hdev->flags);
832
		__hci_req_sync(hdev, hci_reset_req, 0, HCI_CMD_TIMEOUT);
L
Linus Torvalds 已提交
833 834 835
		clear_bit(HCI_INIT, &hdev->flags);
	}

836 837
	/* flush cmd  work */
	flush_work(&hdev->cmd_work);
L
Linus Torvalds 已提交
838 839 840 841 842 843 844 845

	/* Drop queues */
	skb_queue_purge(&hdev->rx_q);
	skb_queue_purge(&hdev->cmd_q);
	skb_queue_purge(&hdev->raw_q);

	/* Drop last sent command */
	if (hdev->sent_cmd) {
846
		del_timer_sync(&hdev->cmd_timer);
L
Linus Torvalds 已提交
847 848 849 850 851 852 853 854
		kfree_skb(hdev->sent_cmd);
		hdev->sent_cmd = NULL;
	}

	/* After this point our queues are empty
	 * and no tasks are scheduled. */
	hdev->close(hdev);

855 856
	if (!test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags) &&
	    mgmt_valid_hdev(hdev)) {
857 858 859 860
		hci_dev_lock(hdev);
		mgmt_powered(hdev, 0);
		hci_dev_unlock(hdev);
	}
861

L
Linus Torvalds 已提交
862 863 864
	/* Clear flags */
	hdev->flags = 0;

865 866 867
	/* Controller radio is available but is currently powered down */
	hdev->amp_status = 0;

868
	memset(hdev->eir, 0, sizeof(hdev->eir));
869
	memset(hdev->dev_class, 0, sizeof(hdev->dev_class));
870

L
Linus Torvalds 已提交
871 872 873 874 875 876 877 878 879 880 881
	hci_req_unlock(hdev);

	hci_dev_put(hdev);
	return 0;
}

int hci_dev_close(__u16 dev)
{
	struct hci_dev *hdev;
	int err;

A
Andrei Emeltchenko 已提交
882 883
	hdev = hci_dev_get(dev);
	if (!hdev)
L
Linus Torvalds 已提交
884
		return -ENODEV;
885 886 887 888

	if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
		cancel_delayed_work(&hdev->power_off);

L
Linus Torvalds 已提交
889
	err = hci_dev_do_close(hdev);
890

L
Linus Torvalds 已提交
891 892 893 894 895 896 897 898 899
	hci_dev_put(hdev);
	return err;
}

int hci_dev_reset(__u16 dev)
{
	struct hci_dev *hdev;
	int ret = 0;

A
Andrei Emeltchenko 已提交
900 901
	hdev = hci_dev_get(dev);
	if (!hdev)
L
Linus Torvalds 已提交
902 903 904 905 906 907 908 909 910 911 912
		return -ENODEV;

	hci_req_lock(hdev);

	if (!test_bit(HCI_UP, &hdev->flags))
		goto done;

	/* Drop queues */
	skb_queue_purge(&hdev->rx_q);
	skb_queue_purge(&hdev->cmd_q);

913
	hci_dev_lock(hdev);
L
Linus Torvalds 已提交
914 915
	inquiry_cache_flush(hdev);
	hci_conn_hash_flush(hdev);
916
	hci_dev_unlock(hdev);
L
Linus Torvalds 已提交
917 918 919 920

	if (hdev->flush)
		hdev->flush(hdev);

921
	atomic_set(&hdev->cmd_cnt, 1);
922
	hdev->acl_cnt = 0; hdev->sco_cnt = 0; hdev->le_cnt = 0;
L
Linus Torvalds 已提交
923 924

	if (!test_bit(HCI_RAW, &hdev->flags))
925
		ret = __hci_req_sync(hdev, hci_reset_req, 0, HCI_INIT_TIMEOUT);
L
Linus Torvalds 已提交
926 927 928 929 930 931 932 933 934 935 936 937

done:
	hci_req_unlock(hdev);
	hci_dev_put(hdev);
	return ret;
}

int hci_dev_reset_stat(__u16 dev)
{
	struct hci_dev *hdev;
	int ret = 0;

A
Andrei Emeltchenko 已提交
938 939
	hdev = hci_dev_get(dev);
	if (!hdev)
L
Linus Torvalds 已提交
940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957
		return -ENODEV;

	memset(&hdev->stat, 0, sizeof(struct hci_dev_stats));

	hci_dev_put(hdev);

	return ret;
}

int hci_dev_cmd(unsigned int cmd, void __user *arg)
{
	struct hci_dev *hdev;
	struct hci_dev_req dr;
	int err = 0;

	if (copy_from_user(&dr, arg, sizeof(dr)))
		return -EFAULT;

A
Andrei Emeltchenko 已提交
958 959
	hdev = hci_dev_get(dr.dev_id);
	if (!hdev)
L
Linus Torvalds 已提交
960 961 962 963
		return -ENODEV;

	switch (cmd) {
	case HCISETAUTH:
964 965
		err = hci_req_sync(hdev, hci_auth_req, dr.dev_opt,
				   HCI_INIT_TIMEOUT);
L
Linus Torvalds 已提交
966 967 968 969 970 971 972 973 974 975
		break;

	case HCISETENCRYPT:
		if (!lmp_encrypt_capable(hdev)) {
			err = -EOPNOTSUPP;
			break;
		}

		if (!test_bit(HCI_AUTH, &hdev->flags)) {
			/* Auth must be enabled first */
976 977
			err = hci_req_sync(hdev, hci_auth_req, dr.dev_opt,
					   HCI_INIT_TIMEOUT);
L
Linus Torvalds 已提交
978 979 980 981
			if (err)
				break;
		}

982 983
		err = hci_req_sync(hdev, hci_encrypt_req, dr.dev_opt,
				   HCI_INIT_TIMEOUT);
L
Linus Torvalds 已提交
984 985 986
		break;

	case HCISETSCAN:
987 988
		err = hci_req_sync(hdev, hci_scan_req, dr.dev_opt,
				   HCI_INIT_TIMEOUT);
L
Linus Torvalds 已提交
989 990 991
		break;

	case HCISETLINKPOL:
992 993
		err = hci_req_sync(hdev, hci_linkpol_req, dr.dev_opt,
				   HCI_INIT_TIMEOUT);
L
Linus Torvalds 已提交
994 995 996
		break;

	case HCISETLINKMODE:
997 998 999 1000 1001 1002
		hdev->link_mode = ((__u16) dr.dev_opt) &
					(HCI_LM_MASTER | HCI_LM_ACCEPT);
		break;

	case HCISETPTYPE:
		hdev->pkt_type = (__u16) dr.dev_opt;
L
Linus Torvalds 已提交
1003 1004 1005
		break;

	case HCISETACLMTU:
1006 1007
		hdev->acl_mtu  = *((__u16 *) &dr.dev_opt + 1);
		hdev->acl_pkts = *((__u16 *) &dr.dev_opt + 0);
L
Linus Torvalds 已提交
1008 1009 1010
		break;

	case HCISETSCOMTU:
1011 1012
		hdev->sco_mtu  = *((__u16 *) &dr.dev_opt + 1);
		hdev->sco_pkts = *((__u16 *) &dr.dev_opt + 0);
L
Linus Torvalds 已提交
1013 1014 1015 1016 1017 1018
		break;

	default:
		err = -EINVAL;
		break;
	}
1019

L
Linus Torvalds 已提交
1020 1021 1022 1023 1024 1025
	hci_dev_put(hdev);
	return err;
}

int hci_get_dev_list(void __user *arg)
{
1026
	struct hci_dev *hdev;
L
Linus Torvalds 已提交
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
	struct hci_dev_list_req *dl;
	struct hci_dev_req *dr;
	int n = 0, size, err;
	__u16 dev_num;

	if (get_user(dev_num, (__u16 __user *) arg))
		return -EFAULT;

	if (!dev_num || dev_num > (PAGE_SIZE * 2) / sizeof(*dr))
		return -EINVAL;

	size = sizeof(*dl) + dev_num * sizeof(*dr);

A
Andrei Emeltchenko 已提交
1040 1041
	dl = kzalloc(size, GFP_KERNEL);
	if (!dl)
L
Linus Torvalds 已提交
1042 1043 1044 1045
		return -ENOMEM;

	dr = dl->dev_req;

1046
	read_lock(&hci_dev_list_lock);
1047
	list_for_each_entry(hdev, &hci_dev_list, list) {
1048
		if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
1049
			cancel_delayed_work(&hdev->power_off);
1050

1051 1052
		if (!test_bit(HCI_MGMT, &hdev->dev_flags))
			set_bit(HCI_PAIRABLE, &hdev->dev_flags);
1053

L
Linus Torvalds 已提交
1054 1055
		(dr + n)->dev_id  = hdev->id;
		(dr + n)->dev_opt = hdev->flags;
1056

L
Linus Torvalds 已提交
1057 1058 1059
		if (++n >= dev_num)
			break;
	}
1060
	read_unlock(&hci_dev_list_lock);
L
Linus Torvalds 已提交
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079

	dl->dev_num = n;
	size = sizeof(*dl) + n * sizeof(*dr);

	err = copy_to_user(arg, dl, size);
	kfree(dl);

	return err ? -EFAULT : 0;
}

int hci_get_dev_info(void __user *arg)
{
	struct hci_dev *hdev;
	struct hci_dev_info di;
	int err = 0;

	if (copy_from_user(&di, arg, sizeof(di)))
		return -EFAULT;

A
Andrei Emeltchenko 已提交
1080 1081
	hdev = hci_dev_get(di.dev_id);
	if (!hdev)
L
Linus Torvalds 已提交
1082 1083
		return -ENODEV;

1084
	if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags))
1085
		cancel_delayed_work_sync(&hdev->power_off);
1086

1087 1088
	if (!test_bit(HCI_MGMT, &hdev->dev_flags))
		set_bit(HCI_PAIRABLE, &hdev->dev_flags);
1089

L
Linus Torvalds 已提交
1090 1091
	strcpy(di.name, hdev->name);
	di.bdaddr   = hdev->bdaddr;
1092
	di.type     = (hdev->bus & 0x0f) | (hdev->dev_type << 4);
L
Linus Torvalds 已提交
1093 1094
	di.flags    = hdev->flags;
	di.pkt_type = hdev->pkt_type;
1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105
	if (lmp_bredr_capable(hdev)) {
		di.acl_mtu  = hdev->acl_mtu;
		di.acl_pkts = hdev->acl_pkts;
		di.sco_mtu  = hdev->sco_mtu;
		di.sco_pkts = hdev->sco_pkts;
	} else {
		di.acl_mtu  = hdev->le_mtu;
		di.acl_pkts = hdev->le_pkts;
		di.sco_mtu  = 0;
		di.sco_pkts = 0;
	}
L
Linus Torvalds 已提交
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121
	di.link_policy = hdev->link_policy;
	di.link_mode   = hdev->link_mode;

	memcpy(&di.stat, &hdev->stat, sizeof(di.stat));
	memcpy(&di.features, &hdev->features, sizeof(di.features));

	if (copy_to_user(arg, &di, sizeof(di)))
		err = -EFAULT;

	hci_dev_put(hdev);

	return err;
}

/* ---- Interface to HCI drivers ---- */

1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
static int hci_rfkill_set_block(void *data, bool blocked)
{
	struct hci_dev *hdev = data;

	BT_DBG("%p name %s blocked %d", hdev, hdev->name, blocked);

	if (!blocked)
		return 0;

	hci_dev_do_close(hdev);

	return 0;
}

static const struct rfkill_ops hci_rfkill_ops = {
	.set_block = hci_rfkill_set_block,
};

1140 1141 1142 1143 1144 1145 1146 1147 1148
static void hci_power_on(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev, power_on);

	BT_DBG("%s", hdev->name);

	if (hci_dev_open(hdev->id) < 0)
		return;

1149
	if (test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
1150 1151
		queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
				   HCI_AUTO_OFF_TIMEOUT);
1152

1153
	if (test_and_clear_bit(HCI_SETUP, &hdev->dev_flags))
1154
		mgmt_index_added(hdev);
1155 1156 1157 1158
}

static void hci_power_off(struct work_struct *work)
{
1159
	struct hci_dev *hdev = container_of(work, struct hci_dev,
1160
					    power_off.work);
1161 1162 1163

	BT_DBG("%s", hdev->name);

1164
	hci_dev_do_close(hdev);
1165 1166
}

1167 1168 1169 1170 1171 1172 1173 1174 1175
static void hci_discov_off(struct work_struct *work)
{
	struct hci_dev *hdev;
	u8 scan = SCAN_PAGE;

	hdev = container_of(work, struct hci_dev, discov_off.work);

	BT_DBG("%s", hdev->name);

1176
	hci_dev_lock(hdev);
1177 1178 1179 1180 1181

	hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);

	hdev->discov_timeout = 0;

1182
	hci_dev_unlock(hdev);
1183 1184
}

1185 1186
int hci_uuids_clear(struct hci_dev *hdev)
{
1187
	struct bt_uuid *uuid, *tmp;
1188

1189 1190
	list_for_each_entry_safe(uuid, tmp, &hdev->uuids, list) {
		list_del(&uuid->list);
1191 1192 1193 1194 1195 1196
		kfree(uuid);
	}

	return 0;
}

1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
int hci_link_keys_clear(struct hci_dev *hdev)
{
	struct list_head *p, *n;

	list_for_each_safe(p, n, &hdev->link_keys) {
		struct link_key *key;

		key = list_entry(p, struct link_key, list);

		list_del(p);
		kfree(key);
	}

	return 0;
}

1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
int hci_smp_ltks_clear(struct hci_dev *hdev)
{
	struct smp_ltk *k, *tmp;

	list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
		list_del(&k->list);
		kfree(k);
	}

	return 0;
}

1225 1226
struct link_key *hci_find_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
{
1227
	struct link_key *k;
1228

1229
	list_for_each_entry(k, &hdev->link_keys, list)
1230 1231 1232 1233 1234 1235
		if (bacmp(bdaddr, &k->bdaddr) == 0)
			return k;

	return NULL;
}

1236
static bool hci_persistent_key(struct hci_dev *hdev, struct hci_conn *conn,
1237
			       u8 key_type, u8 old_key_type)
1238 1239 1240
{
	/* Legacy key */
	if (key_type < 0x03)
1241
		return true;
1242 1243 1244

	/* Debug keys are insecure so don't store them persistently */
	if (key_type == HCI_LK_DEBUG_COMBINATION)
1245
		return false;
1246 1247 1248

	/* Changed combination key and there's no previous one */
	if (key_type == HCI_LK_CHANGED_COMBINATION && old_key_type == 0xff)
1249
		return false;
1250 1251 1252

	/* Security mode 3 case */
	if (!conn)
1253
		return true;
1254 1255 1256

	/* Neither local nor remote side had no-bonding as requirement */
	if (conn->auth_type > 0x01 && conn->remote_auth > 0x01)
1257
		return true;
1258 1259 1260

	/* Local side had dedicated bonding as requirement */
	if (conn->auth_type == 0x02 || conn->auth_type == 0x03)
1261
		return true;
1262 1263 1264

	/* Remote side had dedicated bonding as requirement */
	if (conn->remote_auth == 0x02 || conn->remote_auth == 0x03)
1265
		return true;
1266 1267 1268

	/* If none of the above criteria match, then don't store the key
	 * persistently */
1269
	return false;
1270 1271
}

1272
struct smp_ltk *hci_find_ltk(struct hci_dev *hdev, __le16 ediv, u8 rand[8])
1273
{
1274
	struct smp_ltk *k;
1275

1276 1277
	list_for_each_entry(k, &hdev->long_term_keys, list) {
		if (k->ediv != ediv ||
1278
		    memcmp(rand, k->rand, sizeof(k->rand)))
1279 1280
			continue;

1281
		return k;
1282 1283 1284 1285 1286
	}

	return NULL;
}

1287
struct smp_ltk *hci_find_ltk_by_addr(struct hci_dev *hdev, bdaddr_t *bdaddr,
1288
				     u8 addr_type)
1289
{
1290
	struct smp_ltk *k;
1291

1292 1293
	list_for_each_entry(k, &hdev->long_term_keys, list)
		if (addr_type == k->bdaddr_type &&
1294
		    bacmp(bdaddr, &k->bdaddr) == 0)
1295 1296 1297 1298 1299
			return k;

	return NULL;
}

1300
int hci_add_link_key(struct hci_dev *hdev, struct hci_conn *conn, int new_key,
1301
		     bdaddr_t *bdaddr, u8 *val, u8 type, u8 pin_len)
1302 1303
{
	struct link_key *key, *old_key;
1304 1305
	u8 old_key_type;
	bool persistent;
1306 1307 1308 1309 1310 1311

	old_key = hci_find_link_key(hdev, bdaddr);
	if (old_key) {
		old_key_type = old_key->type;
		key = old_key;
	} else {
1312
		old_key_type = conn ? conn->key_type : 0xff;
1313 1314 1315 1316 1317 1318
		key = kzalloc(sizeof(*key), GFP_ATOMIC);
		if (!key)
			return -ENOMEM;
		list_add(&key->list, &hdev->link_keys);
	}

1319
	BT_DBG("%s key for %pMR type %u", hdev->name, bdaddr, type);
1320

1321 1322 1323 1324
	/* Some buggy controller combinations generate a changed
	 * combination key for legacy pairing even when there's no
	 * previous key */
	if (type == HCI_LK_CHANGED_COMBINATION &&
1325
	    (!conn || conn->remote_auth == 0xff) && old_key_type == 0xff) {
1326
		type = HCI_LK_COMBINATION;
1327 1328 1329
		if (conn)
			conn->key_type = type;
	}
1330

1331
	bacpy(&key->bdaddr, bdaddr);
1332
	memcpy(key->val, val, HCI_LINK_KEY_SIZE);
1333 1334
	key->pin_len = pin_len;

1335
	if (type == HCI_LK_CHANGED_COMBINATION)
1336
		key->type = old_key_type;
1337 1338 1339
	else
		key->type = type;

1340 1341 1342 1343 1344
	if (!new_key)
		return 0;

	persistent = hci_persistent_key(hdev, conn, type, old_key_type);

1345
	mgmt_new_link_key(hdev, key, persistent);
1346

1347 1348
	if (conn)
		conn->flush_key = !persistent;
1349 1350 1351 1352

	return 0;
}

1353
int hci_add_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 addr_type, u8 type,
1354
		int new_key, u8 authenticated, u8 tk[16], u8 enc_size, __le16
1355
		ediv, u8 rand[8])
1356
{
1357
	struct smp_ltk *key, *old_key;
1358

1359 1360
	if (!(type & HCI_SMP_STK) && !(type & HCI_SMP_LTK))
		return 0;
1361

1362 1363
	old_key = hci_find_ltk_by_addr(hdev, bdaddr, addr_type);
	if (old_key)
1364
		key = old_key;
1365 1366
	else {
		key = kzalloc(sizeof(*key), GFP_ATOMIC);
1367 1368
		if (!key)
			return -ENOMEM;
1369
		list_add(&key->list, &hdev->long_term_keys);
1370 1371 1372
	}

	bacpy(&key->bdaddr, bdaddr);
1373 1374 1375 1376 1377 1378 1379
	key->bdaddr_type = addr_type;
	memcpy(key->val, tk, sizeof(key->val));
	key->authenticated = authenticated;
	key->ediv = ediv;
	key->enc_size = enc_size;
	key->type = type;
	memcpy(key->rand, rand, sizeof(key->rand));
1380

1381 1382
	if (!new_key)
		return 0;
1383

1384 1385 1386
	if (type & HCI_SMP_LTK)
		mgmt_new_ltk(hdev, key, 1);

1387 1388 1389
	return 0;
}

1390 1391 1392 1393 1394 1395 1396 1397
int hci_remove_link_key(struct hci_dev *hdev, bdaddr_t *bdaddr)
{
	struct link_key *key;

	key = hci_find_link_key(hdev, bdaddr);
	if (!key)
		return -ENOENT;

1398
	BT_DBG("%s removing %pMR", hdev->name, bdaddr);
1399 1400 1401 1402 1403 1404 1405

	list_del(&key->list);
	kfree(key);

	return 0;
}

1406 1407 1408 1409 1410 1411 1412 1413
int hci_remove_ltk(struct hci_dev *hdev, bdaddr_t *bdaddr)
{
	struct smp_ltk *k, *tmp;

	list_for_each_entry_safe(k, tmp, &hdev->long_term_keys, list) {
		if (bacmp(bdaddr, &k->bdaddr))
			continue;

1414
		BT_DBG("%s removing %pMR", hdev->name, bdaddr);
1415 1416 1417 1418 1419 1420 1421 1422

		list_del(&k->list);
		kfree(k);
	}

	return 0;
}

1423
/* HCI command timer function */
1424
static void hci_cmd_timeout(unsigned long arg)
1425 1426 1427
{
	struct hci_dev *hdev = (void *) arg;

1428 1429 1430 1431 1432 1433 1434 1435 1436
	if (hdev->sent_cmd) {
		struct hci_command_hdr *sent = (void *) hdev->sent_cmd->data;
		u16 opcode = __le16_to_cpu(sent->opcode);

		BT_ERR("%s command 0x%4.4x tx timeout", hdev->name, opcode);
	} else {
		BT_ERR("%s command tx timeout", hdev->name);
	}

1437
	atomic_set(&hdev->cmd_cnt, 1);
1438
	queue_work(hdev->workqueue, &hdev->cmd_work);
1439 1440
}

1441
struct oob_data *hci_find_remote_oob_data(struct hci_dev *hdev,
1442
					  bdaddr_t *bdaddr)
1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460
{
	struct oob_data *data;

	list_for_each_entry(data, &hdev->remote_oob_data, list)
		if (bacmp(bdaddr, &data->bdaddr) == 0)
			return data;

	return NULL;
}

int hci_remove_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr)
{
	struct oob_data *data;

	data = hci_find_remote_oob_data(hdev, bdaddr);
	if (!data)
		return -ENOENT;

1461
	BT_DBG("%s removing %pMR", hdev->name, bdaddr);
1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481

	list_del(&data->list);
	kfree(data);

	return 0;
}

int hci_remote_oob_data_clear(struct hci_dev *hdev)
{
	struct oob_data *data, *n;

	list_for_each_entry_safe(data, n, &hdev->remote_oob_data, list) {
		list_del(&data->list);
		kfree(data);
	}

	return 0;
}

int hci_add_remote_oob_data(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *hash,
1482
			    u8 *randomizer)
1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
{
	struct oob_data *data;

	data = hci_find_remote_oob_data(hdev, bdaddr);

	if (!data) {
		data = kmalloc(sizeof(*data), GFP_ATOMIC);
		if (!data)
			return -ENOMEM;

		bacpy(&data->bdaddr, bdaddr);
		list_add(&data->list, &hdev->remote_oob_data);
	}

	memcpy(data->hash, hash, sizeof(data->hash));
	memcpy(data->randomizer, randomizer, sizeof(data->randomizer));

1500
	BT_DBG("%s for %pMR", hdev->name, bdaddr);
1501 1502 1503 1504

	return 0;
}

1505
struct bdaddr_list *hci_blacklist_lookup(struct hci_dev *hdev, bdaddr_t *bdaddr)
1506
{
1507
	struct bdaddr_list *b;
1508

1509
	list_for_each_entry(b, &hdev->blacklist, list)
1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
		if (bacmp(bdaddr, &b->bdaddr) == 0)
			return b;

	return NULL;
}

int hci_blacklist_clear(struct hci_dev *hdev)
{
	struct list_head *p, *n;

	list_for_each_safe(p, n, &hdev->blacklist) {
		struct bdaddr_list *b;

		b = list_entry(p, struct bdaddr_list, list);

		list_del(p);
		kfree(b);
	}

	return 0;
}

1532
int hci_blacklist_add(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
1533 1534 1535 1536 1537 1538
{
	struct bdaddr_list *entry;

	if (bacmp(bdaddr, BDADDR_ANY) == 0)
		return -EBADF;

1539 1540
	if (hci_blacklist_lookup(hdev, bdaddr))
		return -EEXIST;
1541 1542

	entry = kzalloc(sizeof(struct bdaddr_list), GFP_KERNEL);
1543 1544
	if (!entry)
		return -ENOMEM;
1545 1546 1547 1548 1549

	bacpy(&entry->bdaddr, bdaddr);

	list_add(&entry->list, &hdev->blacklist);

1550
	return mgmt_device_blocked(hdev, bdaddr, type);
1551 1552
}

1553
int hci_blacklist_del(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
1554 1555 1556
{
	struct bdaddr_list *entry;

1557
	if (bacmp(bdaddr, BDADDR_ANY) == 0)
1558
		return hci_blacklist_clear(hdev);
1559 1560

	entry = hci_blacklist_lookup(hdev, bdaddr);
1561
	if (!entry)
1562
		return -ENOENT;
1563 1564 1565 1566

	list_del(&entry->list);
	kfree(entry);

1567
	return mgmt_device_unblocked(hdev, bdaddr, type);
1568 1569
}

A
Andre Guedes 已提交
1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588
static void le_scan_param_req(struct hci_dev *hdev, unsigned long opt)
{
	struct le_scan_params *param =  (struct le_scan_params *) opt;
	struct hci_cp_le_set_scan_param cp;

	memset(&cp, 0, sizeof(cp));
	cp.type = param->type;
	cp.interval = cpu_to_le16(param->interval);
	cp.window = cpu_to_le16(param->window);

	hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_PARAM, sizeof(cp), &cp);
}

static void le_scan_enable_req(struct hci_dev *hdev, unsigned long opt)
{
	struct hci_cp_le_set_scan_enable cp;

	memset(&cp, 0, sizeof(cp));
	cp.enable = 1;
1589
	cp.filter_dup = 1;
A
Andre Guedes 已提交
1590 1591 1592 1593 1594

	hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
}

static int hci_do_le_scan(struct hci_dev *hdev, u8 type, u16 interval,
1595
			  u16 window, int timeout)
A
Andre Guedes 已提交
1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611
{
	long timeo = msecs_to_jiffies(3000);
	struct le_scan_params param;
	int err;

	BT_DBG("%s", hdev->name);

	if (test_bit(HCI_LE_SCAN, &hdev->dev_flags))
		return -EINPROGRESS;

	param.type = type;
	param.interval = interval;
	param.window = window;

	hci_req_lock(hdev);

1612 1613
	err = __hci_req_sync(hdev, le_scan_param_req, (unsigned long) &param,
			     timeo);
A
Andre Guedes 已提交
1614
	if (!err)
1615
		err = __hci_req_sync(hdev, le_scan_enable_req, 0, timeo);
A
Andre Guedes 已提交
1616 1617 1618 1619 1620 1621

	hci_req_unlock(hdev);

	if (err < 0)
		return err;

1622 1623
	queue_delayed_work(hdev->workqueue, &hdev->le_scan_disable,
			   msecs_to_jiffies(timeout));
A
Andre Guedes 已提交
1624 1625 1626 1627

	return 0;
}

1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645
int hci_cancel_le_scan(struct hci_dev *hdev)
{
	BT_DBG("%s", hdev->name);

	if (!test_bit(HCI_LE_SCAN, &hdev->dev_flags))
		return -EALREADY;

	if (cancel_delayed_work(&hdev->le_scan_disable)) {
		struct hci_cp_le_set_scan_enable cp;

		/* Send HCI command to disable LE Scan */
		memset(&cp, 0, sizeof(cp));
		hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
	}

	return 0;
}

A
Andre Guedes 已提交
1646 1647 1648
static void le_scan_disable_work(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
1649
					    le_scan_disable.work);
A
Andre Guedes 已提交
1650 1651 1652 1653 1654 1655 1656 1657 1658
	struct hci_cp_le_set_scan_enable cp;

	BT_DBG("%s", hdev->name);

	memset(&cp, 0, sizeof(cp));

	hci_send_cmd(hdev, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(cp), &cp);
}

A
Andre Guedes 已提交
1659 1660 1661 1662 1663 1664 1665
static void le_scan_work(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev, le_scan);
	struct le_scan_params *param = &hdev->le_scan_params;

	BT_DBG("%s", hdev->name);

1666 1667
	hci_do_le_scan(hdev, param->type, param->interval, param->window,
		       param->timeout);
A
Andre Guedes 已提交
1668 1669 1670
}

int hci_le_scan(struct hci_dev *hdev, u8 type, u16 interval, u16 window,
1671
		int timeout)
A
Andre Guedes 已提交
1672 1673 1674 1675 1676
{
	struct le_scan_params *param = &hdev->le_scan_params;

	BT_DBG("%s", hdev->name);

1677 1678 1679
	if (test_bit(HCI_LE_PERIPHERAL, &hdev->dev_flags))
		return -ENOTSUPP;

A
Andre Guedes 已提交
1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692
	if (work_busy(&hdev->le_scan))
		return -EINPROGRESS;

	param->type = type;
	param->interval = interval;
	param->window = window;
	param->timeout = timeout;

	queue_work(system_long_wq, &hdev->le_scan);

	return 0;
}

1693 1694 1695 1696 1697 1698 1699 1700 1701
/* Alloc HCI device */
struct hci_dev *hci_alloc_dev(void)
{
	struct hci_dev *hdev;

	hdev = kzalloc(sizeof(struct hci_dev), GFP_KERNEL);
	if (!hdev)
		return NULL;

1702 1703 1704 1705
	hdev->pkt_type  = (HCI_DM1 | HCI_DH1 | HCI_HV1);
	hdev->esco_type = (ESCO_HV1);
	hdev->link_mode = (HCI_LM_ACCEPT);
	hdev->io_capability = 0x03; /* No Input No Output */
1706 1707
	hdev->inq_tx_power = HCI_TX_POWER_INVALID;
	hdev->adv_tx_power = HCI_TX_POWER_INVALID;
1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720

	hdev->sniff_max_interval = 800;
	hdev->sniff_min_interval = 80;

	mutex_init(&hdev->lock);
	mutex_init(&hdev->req_lock);

	INIT_LIST_HEAD(&hdev->mgmt_pending);
	INIT_LIST_HEAD(&hdev->blacklist);
	INIT_LIST_HEAD(&hdev->uuids);
	INIT_LIST_HEAD(&hdev->link_keys);
	INIT_LIST_HEAD(&hdev->long_term_keys);
	INIT_LIST_HEAD(&hdev->remote_oob_data);
1721
	INIT_LIST_HEAD(&hdev->conn_hash.list);
1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732

	INIT_WORK(&hdev->rx_work, hci_rx_work);
	INIT_WORK(&hdev->cmd_work, hci_cmd_work);
	INIT_WORK(&hdev->tx_work, hci_tx_work);
	INIT_WORK(&hdev->power_on, hci_power_on);
	INIT_WORK(&hdev->le_scan, le_scan_work);

	INIT_DELAYED_WORK(&hdev->power_off, hci_power_off);
	INIT_DELAYED_WORK(&hdev->discov_off, hci_discov_off);
	INIT_DELAYED_WORK(&hdev->le_scan_disable, le_scan_disable_work);

1733
	skb_queue_head_init(&hdev->driver_init);
1734 1735 1736 1737 1738 1739
	skb_queue_head_init(&hdev->rx_q);
	skb_queue_head_init(&hdev->cmd_q);
	skb_queue_head_init(&hdev->raw_q);

	init_waitqueue_head(&hdev->req_wait_q);

1740
	setup_timer(&hdev->cmd_timer, hci_cmd_timeout, (unsigned long) hdev);
1741 1742 1743

	hci_init_sysfs(hdev);
	discovery_init(hdev);
1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758

	return hdev;
}
EXPORT_SYMBOL(hci_alloc_dev);

/* Free HCI device */
void hci_free_dev(struct hci_dev *hdev)
{
	skb_queue_purge(&hdev->driver_init);

	/* will free via device release */
	put_device(&hdev->dev);
}
EXPORT_SYMBOL(hci_free_dev);

L
Linus Torvalds 已提交
1759 1760 1761
/* Register HCI device */
int hci_register_dev(struct hci_dev *hdev)
{
1762
	int id, error;
L
Linus Torvalds 已提交
1763

1764
	if (!hdev->open || !hdev->close)
L
Linus Torvalds 已提交
1765 1766
		return -EINVAL;

1767 1768 1769
	/* Do not allow HCI_AMP devices to register at index 0,
	 * so the index can be used as the AMP controller ID.
	 */
1770 1771 1772 1773 1774 1775 1776 1777 1778
	switch (hdev->dev_type) {
	case HCI_BREDR:
		id = ida_simple_get(&hci_index_ida, 0, 0, GFP_KERNEL);
		break;
	case HCI_AMP:
		id = ida_simple_get(&hci_index_ida, 1, 0, GFP_KERNEL);
		break;
	default:
		return -EINVAL;
L
Linus Torvalds 已提交
1779
	}
1780

1781 1782 1783
	if (id < 0)
		return id;

L
Linus Torvalds 已提交
1784 1785
	sprintf(hdev->name, "hci%d", id);
	hdev->id = id;
1786 1787 1788

	BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);

1789 1790
	write_lock(&hci_dev_list_lock);
	list_add(&hdev->list, &hci_dev_list);
1791
	write_unlock(&hci_dev_list_lock);
L
Linus Torvalds 已提交
1792

1793
	hdev->workqueue = alloc_workqueue(hdev->name, WQ_HIGHPRI | WQ_UNBOUND |
1794
					  WQ_MEM_RECLAIM, 1);
1795 1796 1797 1798
	if (!hdev->workqueue) {
		error = -ENOMEM;
		goto err;
	}
1799

1800 1801 1802 1803 1804 1805 1806 1807 1808
	hdev->req_workqueue = alloc_workqueue(hdev->name,
					      WQ_HIGHPRI | WQ_UNBOUND |
					      WQ_MEM_RECLAIM, 1);
	if (!hdev->req_workqueue) {
		destroy_workqueue(hdev->workqueue);
		error = -ENOMEM;
		goto err;
	}

1809 1810 1811
	error = hci_add_sysfs(hdev);
	if (error < 0)
		goto err_wqueue;
L
Linus Torvalds 已提交
1812

1813
	hdev->rfkill = rfkill_alloc(hdev->name, &hdev->dev,
1814 1815
				    RFKILL_TYPE_BLUETOOTH, &hci_rfkill_ops,
				    hdev);
1816 1817 1818 1819 1820 1821 1822
	if (hdev->rfkill) {
		if (rfkill_register(hdev->rfkill) < 0) {
			rfkill_destroy(hdev->rfkill);
			hdev->rfkill = NULL;
		}
	}

1823
	set_bit(HCI_SETUP, &hdev->dev_flags);
1824 1825 1826 1827

	if (hdev->dev_type != HCI_AMP)
		set_bit(HCI_AUTO_OFF, &hdev->dev_flags);

L
Linus Torvalds 已提交
1828
	hci_notify(hdev, HCI_DEV_REG);
1829
	hci_dev_hold(hdev);
L
Linus Torvalds 已提交
1830

1831
	queue_work(hdev->req_workqueue, &hdev->power_on);
1832

L
Linus Torvalds 已提交
1833
	return id;
1834

1835 1836
err_wqueue:
	destroy_workqueue(hdev->workqueue);
1837
	destroy_workqueue(hdev->req_workqueue);
1838
err:
1839
	ida_simple_remove(&hci_index_ida, hdev->id);
1840
	write_lock(&hci_dev_list_lock);
1841
	list_del(&hdev->list);
1842
	write_unlock(&hci_dev_list_lock);
1843

1844
	return error;
L
Linus Torvalds 已提交
1845 1846 1847 1848
}
EXPORT_SYMBOL(hci_register_dev);

/* Unregister HCI device */
1849
void hci_unregister_dev(struct hci_dev *hdev)
L
Linus Torvalds 已提交
1850
{
1851
	int i, id;
1852

1853
	BT_DBG("%p name %s bus %d", hdev, hdev->name, hdev->bus);
L
Linus Torvalds 已提交
1854

1855 1856
	set_bit(HCI_UNREGISTER, &hdev->dev_flags);

1857 1858
	id = hdev->id;

1859
	write_lock(&hci_dev_list_lock);
L
Linus Torvalds 已提交
1860
	list_del(&hdev->list);
1861
	write_unlock(&hci_dev_list_lock);
L
Linus Torvalds 已提交
1862 1863 1864

	hci_dev_do_close(hdev);

1865
	for (i = 0; i < NUM_REASSEMBLY; i++)
1866 1867
		kfree_skb(hdev->reassembly[i]);

1868 1869
	cancel_work_sync(&hdev->power_on);

1870
	if (!test_bit(HCI_INIT, &hdev->flags) &&
1871
	    !test_bit(HCI_SETUP, &hdev->dev_flags)) {
1872
		hci_dev_lock(hdev);
1873
		mgmt_index_removed(hdev);
1874
		hci_dev_unlock(hdev);
1875
	}
1876

1877 1878 1879 1880
	/* mgmt_index_removed should take care of emptying the
	 * pending list */
	BUG_ON(!list_empty(&hdev->mgmt_pending));

L
Linus Torvalds 已提交
1881 1882
	hci_notify(hdev, HCI_DEV_UNREG);

1883 1884 1885 1886 1887
	if (hdev->rfkill) {
		rfkill_unregister(hdev->rfkill);
		rfkill_destroy(hdev->rfkill);
	}

1888
	hci_del_sysfs(hdev);
1889

1890
	destroy_workqueue(hdev->workqueue);
1891
	destroy_workqueue(hdev->req_workqueue);
1892

1893
	hci_dev_lock(hdev);
1894
	hci_blacklist_clear(hdev);
1895
	hci_uuids_clear(hdev);
1896
	hci_link_keys_clear(hdev);
1897
	hci_smp_ltks_clear(hdev);
1898
	hci_remote_oob_data_clear(hdev);
1899
	hci_dev_unlock(hdev);
1900

1901
	hci_dev_put(hdev);
1902 1903

	ida_simple_remove(&hci_index_ida, id);
L
Linus Torvalds 已提交
1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922
}
EXPORT_SYMBOL(hci_unregister_dev);

/* Suspend HCI device */
int hci_suspend_dev(struct hci_dev *hdev)
{
	hci_notify(hdev, HCI_DEV_SUSPEND);
	return 0;
}
EXPORT_SYMBOL(hci_suspend_dev);

/* Resume HCI device */
int hci_resume_dev(struct hci_dev *hdev)
{
	hci_notify(hdev, HCI_DEV_RESUME);
	return 0;
}
EXPORT_SYMBOL(hci_resume_dev);

1923 1924 1925 1926 1927
/* Receive frame from HCI drivers */
int hci_recv_frame(struct sk_buff *skb)
{
	struct hci_dev *hdev = (struct hci_dev *) skb->dev;
	if (!hdev || (!test_bit(HCI_UP, &hdev->flags)
1928
		      && !test_bit(HCI_INIT, &hdev->flags))) {
1929 1930 1931 1932
		kfree_skb(skb);
		return -ENXIO;
	}

1933
	/* Incoming skb */
1934 1935 1936 1937 1938 1939
	bt_cb(skb)->incoming = 1;

	/* Time stamp */
	__net_timestamp(skb);

	skb_queue_tail(&hdev->rx_q, skb);
1940
	queue_work(hdev->workqueue, &hdev->rx_work);
1941

1942 1943 1944 1945
	return 0;
}
EXPORT_SYMBOL(hci_recv_frame);

1946
static int hci_reassembly(struct hci_dev *hdev, int type, void *data,
1947
			  int count, __u8 index)
1948 1949 1950 1951 1952 1953 1954 1955
{
	int len = 0;
	int hlen = 0;
	int remain = count;
	struct sk_buff *skb;
	struct bt_skb_cb *scb;

	if ((type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT) ||
1956
	    index >= NUM_REASSEMBLY)
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976
		return -EILSEQ;

	skb = hdev->reassembly[index];

	if (!skb) {
		switch (type) {
		case HCI_ACLDATA_PKT:
			len = HCI_MAX_FRAME_SIZE;
			hlen = HCI_ACL_HDR_SIZE;
			break;
		case HCI_EVENT_PKT:
			len = HCI_MAX_EVENT_SIZE;
			hlen = HCI_EVENT_HDR_SIZE;
			break;
		case HCI_SCODATA_PKT:
			len = HCI_MAX_SCO_SIZE;
			hlen = HCI_SCO_HDR_SIZE;
			break;
		}

1977
		skb = bt_skb_alloc(len, GFP_ATOMIC);
1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990
		if (!skb)
			return -ENOMEM;

		scb = (void *) skb->cb;
		scb->expect = hlen;
		scb->pkt_type = type;

		skb->dev = (void *) hdev;
		hdev->reassembly[index] = skb;
	}

	while (count) {
		scb = (void *) skb->cb;
1991
		len = min_t(uint, scb->expect, count);
1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054

		memcpy(skb_put(skb, len), data, len);

		count -= len;
		data += len;
		scb->expect -= len;
		remain = count;

		switch (type) {
		case HCI_EVENT_PKT:
			if (skb->len == HCI_EVENT_HDR_SIZE) {
				struct hci_event_hdr *h = hci_event_hdr(skb);
				scb->expect = h->plen;

				if (skb_tailroom(skb) < scb->expect) {
					kfree_skb(skb);
					hdev->reassembly[index] = NULL;
					return -ENOMEM;
				}
			}
			break;

		case HCI_ACLDATA_PKT:
			if (skb->len  == HCI_ACL_HDR_SIZE) {
				struct hci_acl_hdr *h = hci_acl_hdr(skb);
				scb->expect = __le16_to_cpu(h->dlen);

				if (skb_tailroom(skb) < scb->expect) {
					kfree_skb(skb);
					hdev->reassembly[index] = NULL;
					return -ENOMEM;
				}
			}
			break;

		case HCI_SCODATA_PKT:
			if (skb->len == HCI_SCO_HDR_SIZE) {
				struct hci_sco_hdr *h = hci_sco_hdr(skb);
				scb->expect = h->dlen;

				if (skb_tailroom(skb) < scb->expect) {
					kfree_skb(skb);
					hdev->reassembly[index] = NULL;
					return -ENOMEM;
				}
			}
			break;
		}

		if (scb->expect == 0) {
			/* Complete frame */

			bt_cb(skb)->pkt_type = type;
			hci_recv_frame(skb);

			hdev->reassembly[index] = NULL;
			return remain;
		}
	}

	return remain;
}

2055 2056
int hci_recv_fragment(struct hci_dev *hdev, int type, void *data, int count)
{
2057 2058
	int rem = 0;

2059 2060 2061
	if (type < HCI_ACLDATA_PKT || type > HCI_EVENT_PKT)
		return -EILSEQ;

2062
	while (count) {
2063
		rem = hci_reassembly(hdev, type, data, count, type - 1);
2064 2065
		if (rem < 0)
			return rem;
2066

2067 2068
		data += (count - rem);
		count = rem;
J
Joe Perches 已提交
2069
	}
2070

2071
	return rem;
2072 2073 2074
}
EXPORT_SYMBOL(hci_recv_fragment);

2075 2076 2077 2078 2079 2080 2081
#define STREAM_REASSEMBLY 0

int hci_recv_stream_fragment(struct hci_dev *hdev, void *data, int count)
{
	int type;
	int rem = 0;

2082
	while (count) {
2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096
		struct sk_buff *skb = hdev->reassembly[STREAM_REASSEMBLY];

		if (!skb) {
			struct { char type; } *pkt;

			/* Start of the frame */
			pkt = data;
			type = pkt->type;

			data++;
			count--;
		} else
			type = bt_cb(skb)->pkt_type;

2097
		rem = hci_reassembly(hdev, type, data, count,
2098
				     STREAM_REASSEMBLY);
2099 2100 2101 2102 2103
		if (rem < 0)
			return rem;

		data += (count - rem);
		count = rem;
J
Joe Perches 已提交
2104
	}
2105 2106 2107 2108 2109

	return rem;
}
EXPORT_SYMBOL(hci_recv_stream_fragment);

L
Linus Torvalds 已提交
2110 2111 2112 2113 2114 2115
/* ---- Interface to upper protocols ---- */

int hci_register_cb(struct hci_cb *cb)
{
	BT_DBG("%p name %s", cb, cb->name);

2116
	write_lock(&hci_cb_list_lock);
L
Linus Torvalds 已提交
2117
	list_add(&cb->list, &hci_cb_list);
2118
	write_unlock(&hci_cb_list_lock);
L
Linus Torvalds 已提交
2119 2120 2121 2122 2123 2124 2125 2126 2127

	return 0;
}
EXPORT_SYMBOL(hci_register_cb);

int hci_unregister_cb(struct hci_cb *cb)
{
	BT_DBG("%p name %s", cb, cb->name);

2128
	write_lock(&hci_cb_list_lock);
L
Linus Torvalds 已提交
2129
	list_del(&cb->list);
2130
	write_unlock(&hci_cb_list_lock);
L
Linus Torvalds 已提交
2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144

	return 0;
}
EXPORT_SYMBOL(hci_unregister_cb);

static int hci_send_frame(struct sk_buff *skb)
{
	struct hci_dev *hdev = (struct hci_dev *) skb->dev;

	if (!hdev) {
		kfree_skb(skb);
		return -ENODEV;
	}

2145
	BT_DBG("%s type %d len %d", hdev->name, bt_cb(skb)->pkt_type, skb->len);
L
Linus Torvalds 已提交
2146

2147 2148
	/* Time stamp */
	__net_timestamp(skb);
L
Linus Torvalds 已提交
2149

2150 2151 2152 2153 2154
	/* Send copy to monitor */
	hci_send_to_monitor(hdev, skb);

	if (atomic_read(&hdev->promisc)) {
		/* Send copy to the sockets */
2155
		hci_send_to_sock(hdev, skb);
L
Linus Torvalds 已提交
2156 2157 2158 2159 2160 2161 2162 2163 2164
	}

	/* Get rid of skb owner, prior to sending to the driver. */
	skb_orphan(skb);

	return hdev->send(skb);
}

/* Send HCI command */
2165
int hci_send_cmd(struct hci_dev *hdev, __u16 opcode, __u32 plen, void *param)
L
Linus Torvalds 已提交
2166 2167 2168 2169 2170
{
	int len = HCI_COMMAND_HDR_SIZE + plen;
	struct hci_command_hdr *hdr;
	struct sk_buff *skb;

2171
	BT_DBG("%s opcode 0x%4.4x plen %d", hdev->name, opcode, plen);
L
Linus Torvalds 已提交
2172 2173 2174

	skb = bt_skb_alloc(len, GFP_ATOMIC);
	if (!skb) {
2175
		BT_ERR("%s no memory for command", hdev->name);
L
Linus Torvalds 已提交
2176 2177 2178 2179
		return -ENOMEM;
	}

	hdr = (struct hci_command_hdr *) skb_put(skb, HCI_COMMAND_HDR_SIZE);
2180
	hdr->opcode = cpu_to_le16(opcode);
L
Linus Torvalds 已提交
2181 2182 2183 2184 2185 2186 2187
	hdr->plen   = plen;

	if (plen)
		memcpy(skb_put(skb, plen), param, plen);

	BT_DBG("skb len %d", skb->len);

2188
	bt_cb(skb)->pkt_type = HCI_COMMAND_PKT;
L
Linus Torvalds 已提交
2189
	skb->dev = (void *) hdev;
2190

2191 2192 2193
	if (test_bit(HCI_INIT, &hdev->flags))
		hdev->init_last_cmd = opcode;

L
Linus Torvalds 已提交
2194
	skb_queue_tail(&hdev->cmd_q, skb);
2195
	queue_work(hdev->workqueue, &hdev->cmd_work);
L
Linus Torvalds 已提交
2196 2197 2198 2199 2200

	return 0;
}

/* Get data from the previously sent command */
2201
void *hci_sent_cmd_data(struct hci_dev *hdev, __u16 opcode)
L
Linus Torvalds 已提交
2202 2203 2204 2205 2206 2207 2208 2209
{
	struct hci_command_hdr *hdr;

	if (!hdev->sent_cmd)
		return NULL;

	hdr = (void *) hdev->sent_cmd->data;

2210
	if (hdr->opcode != cpu_to_le16(opcode))
L
Linus Torvalds 已提交
2211 2212
		return NULL;

2213
	BT_DBG("%s opcode 0x%4.4x", hdev->name, opcode);
L
Linus Torvalds 已提交
2214 2215 2216 2217 2218 2219 2220 2221 2222 2223

	return hdev->sent_cmd->data + HCI_COMMAND_HDR_SIZE;
}

/* Send ACL data */
static void hci_add_acl_hdr(struct sk_buff *skb, __u16 handle, __u16 flags)
{
	struct hci_acl_hdr *hdr;
	int len = skb->len;

2224 2225
	skb_push(skb, HCI_ACL_HDR_SIZE);
	skb_reset_transport_header(skb);
2226
	hdr = (struct hci_acl_hdr *)skb_transport_header(skb);
2227 2228
	hdr->handle = cpu_to_le16(hci_handle_pack(handle, flags));
	hdr->dlen   = cpu_to_le16(len);
L
Linus Torvalds 已提交
2229 2230
}

2231
static void hci_queue_acl(struct hci_chan *chan, struct sk_buff_head *queue,
2232
			  struct sk_buff *skb, __u16 flags)
L
Linus Torvalds 已提交
2233
{
2234
	struct hci_conn *conn = chan->conn;
L
Linus Torvalds 已提交
2235 2236 2237
	struct hci_dev *hdev = conn->hdev;
	struct sk_buff *list;

2238 2239 2240 2241
	skb->len = skb_headlen(skb);
	skb->data_len = 0;

	bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253

	switch (hdev->dev_type) {
	case HCI_BREDR:
		hci_add_acl_hdr(skb, conn->handle, flags);
		break;
	case HCI_AMP:
		hci_add_acl_hdr(skb, chan->handle, flags);
		break;
	default:
		BT_ERR("%s unknown dev_type %d", hdev->name, hdev->dev_type);
		return;
	}
2254

A
Andrei Emeltchenko 已提交
2255 2256
	list = skb_shinfo(skb)->frag_list;
	if (!list) {
L
Linus Torvalds 已提交
2257 2258 2259
		/* Non fragmented */
		BT_DBG("%s nonfrag skb %p len %d", hdev->name, skb, skb->len);

2260
		skb_queue_tail(queue, skb);
L
Linus Torvalds 已提交
2261 2262 2263 2264 2265 2266 2267
	} else {
		/* Fragmented */
		BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);

		skb_shinfo(skb)->frag_list = NULL;

		/* Queue all fragments atomically */
2268
		spin_lock(&queue->lock);
L
Linus Torvalds 已提交
2269

2270
		__skb_queue_tail(queue, skb);
2271 2272 2273

		flags &= ~ACL_START;
		flags |= ACL_CONT;
L
Linus Torvalds 已提交
2274 2275
		do {
			skb = list; list = list->next;
2276

L
Linus Torvalds 已提交
2277
			skb->dev = (void *) hdev;
2278
			bt_cb(skb)->pkt_type = HCI_ACLDATA_PKT;
2279
			hci_add_acl_hdr(skb, conn->handle, flags);
L
Linus Torvalds 已提交
2280 2281 2282

			BT_DBG("%s frag %p len %d", hdev->name, skb, skb->len);

2283
			__skb_queue_tail(queue, skb);
L
Linus Torvalds 已提交
2284 2285
		} while (list);

2286
		spin_unlock(&queue->lock);
L
Linus Torvalds 已提交
2287
	}
2288 2289 2290 2291
}

void hci_send_acl(struct hci_chan *chan, struct sk_buff *skb, __u16 flags)
{
2292
	struct hci_dev *hdev = chan->conn->hdev;
2293

2294
	BT_DBG("%s chan %p flags 0x%4.4x", hdev->name, chan, flags);
2295 2296 2297

	skb->dev = (void *) hdev;

2298
	hci_queue_acl(chan, &chan->data_q, skb, flags);
L
Linus Torvalds 已提交
2299

2300
	queue_work(hdev->workqueue, &hdev->tx_work);
L
Linus Torvalds 已提交
2301 2302 2303
}

/* Send SCO data */
2304
void hci_send_sco(struct hci_conn *conn, struct sk_buff *skb)
L
Linus Torvalds 已提交
2305 2306 2307 2308 2309 2310
{
	struct hci_dev *hdev = conn->hdev;
	struct hci_sco_hdr hdr;

	BT_DBG("%s len %d", hdev->name, skb->len);

2311
	hdr.handle = cpu_to_le16(conn->handle);
L
Linus Torvalds 已提交
2312 2313
	hdr.dlen   = skb->len;

2314 2315
	skb_push(skb, HCI_SCO_HDR_SIZE);
	skb_reset_transport_header(skb);
2316
	memcpy(skb_transport_header(skb), &hdr, HCI_SCO_HDR_SIZE);
L
Linus Torvalds 已提交
2317 2318

	skb->dev = (void *) hdev;
2319
	bt_cb(skb)->pkt_type = HCI_SCODATA_PKT;
2320

L
Linus Torvalds 已提交
2321
	skb_queue_tail(&conn->data_q, skb);
2322
	queue_work(hdev->workqueue, &hdev->tx_work);
L
Linus Torvalds 已提交
2323 2324 2325 2326 2327
}

/* ---- HCI TX task (outgoing data) ---- */

/* HCI Connection scheduler */
2328 2329
static struct hci_conn *hci_low_sent(struct hci_dev *hdev, __u8 type,
				     int *quote)
L
Linus Torvalds 已提交
2330 2331
{
	struct hci_conn_hash *h = &hdev->conn_hash;
2332
	struct hci_conn *conn = NULL, *c;
2333
	unsigned int num = 0, min = ~0;
L
Linus Torvalds 已提交
2334

2335
	/* We don't have to lock device here. Connections are always
L
Linus Torvalds 已提交
2336
	 * added and removed with TX task disabled. */
2337 2338 2339 2340

	rcu_read_lock();

	list_for_each_entry_rcu(c, &h->list, list) {
2341
		if (c->type != type || skb_queue_empty(&c->data_q))
L
Linus Torvalds 已提交
2342
			continue;
2343 2344 2345 2346

		if (c->state != BT_CONNECTED && c->state != BT_CONFIG)
			continue;

L
Linus Torvalds 已提交
2347 2348 2349 2350 2351 2352
		num++;

		if (c->sent < min) {
			min  = c->sent;
			conn = c;
		}
2353 2354 2355

		if (hci_conn_num(hdev, type) == num)
			break;
L
Linus Torvalds 已提交
2356 2357
	}

2358 2359
	rcu_read_unlock();

L
Linus Torvalds 已提交
2360
	if (conn) {
2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379
		int cnt, q;

		switch (conn->type) {
		case ACL_LINK:
			cnt = hdev->acl_cnt;
			break;
		case SCO_LINK:
		case ESCO_LINK:
			cnt = hdev->sco_cnt;
			break;
		case LE_LINK:
			cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
			break;
		default:
			cnt = 0;
			BT_ERR("Unknown link type");
		}

		q = cnt / num;
L
Linus Torvalds 已提交
2380 2381 2382 2383 2384 2385 2386 2387
		*quote = q ? q : 1;
	} else
		*quote = 0;

	BT_DBG("conn %p quote %d", conn, *quote);
	return conn;
}

2388
static void hci_link_tx_to(struct hci_dev *hdev, __u8 type)
L
Linus Torvalds 已提交
2389 2390
{
	struct hci_conn_hash *h = &hdev->conn_hash;
2391
	struct hci_conn *c;
L
Linus Torvalds 已提交
2392

2393
	BT_ERR("%s link tx timeout", hdev->name);
L
Linus Torvalds 已提交
2394

2395 2396
	rcu_read_lock();

L
Linus Torvalds 已提交
2397
	/* Kill stalled connections */
2398
	list_for_each_entry_rcu(c, &h->list, list) {
2399
		if (c->type == type && c->sent) {
2400 2401
			BT_ERR("%s killing stalled connection %pMR",
			       hdev->name, &c->dst);
A
Andre Guedes 已提交
2402
			hci_disconnect(c, HCI_ERROR_REMOTE_USER_TERM);
L
Linus Torvalds 已提交
2403 2404
		}
	}
2405 2406

	rcu_read_unlock();
L
Linus Torvalds 已提交
2407 2408
}

2409 2410
static struct hci_chan *hci_chan_sent(struct hci_dev *hdev, __u8 type,
				      int *quote)
L
Linus Torvalds 已提交
2411
{
2412 2413
	struct hci_conn_hash *h = &hdev->conn_hash;
	struct hci_chan *chan = NULL;
2414
	unsigned int num = 0, min = ~0, cur_prio = 0;
L
Linus Torvalds 已提交
2415
	struct hci_conn *conn;
2416 2417 2418 2419
	int cnt, q, conn_num = 0;

	BT_DBG("%s", hdev->name);

2420 2421 2422
	rcu_read_lock();

	list_for_each_entry_rcu(conn, &h->list, list) {
2423 2424 2425 2426 2427 2428 2429 2430 2431 2432
		struct hci_chan *tmp;

		if (conn->type != type)
			continue;

		if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
			continue;

		conn_num++;

2433
		list_for_each_entry_rcu(tmp, &conn->chan_list, list) {
2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460
			struct sk_buff *skb;

			if (skb_queue_empty(&tmp->data_q))
				continue;

			skb = skb_peek(&tmp->data_q);
			if (skb->priority < cur_prio)
				continue;

			if (skb->priority > cur_prio) {
				num = 0;
				min = ~0;
				cur_prio = skb->priority;
			}

			num++;

			if (conn->sent < min) {
				min  = conn->sent;
				chan = tmp;
			}
		}

		if (hci_conn_num(hdev, type) == conn_num)
			break;
	}

2461 2462
	rcu_read_unlock();

2463 2464 2465 2466 2467 2468 2469
	if (!chan)
		return NULL;

	switch (chan->conn->type) {
	case ACL_LINK:
		cnt = hdev->acl_cnt;
		break;
2470 2471 2472
	case AMP_LINK:
		cnt = hdev->block_cnt;
		break;
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490
	case SCO_LINK:
	case ESCO_LINK:
		cnt = hdev->sco_cnt;
		break;
	case LE_LINK:
		cnt = hdev->le_mtu ? hdev->le_cnt : hdev->acl_cnt;
		break;
	default:
		cnt = 0;
		BT_ERR("Unknown link type");
	}

	q = cnt / num;
	*quote = q ? q : 1;
	BT_DBG("chan %p quote %d", chan, *quote);
	return chan;
}

2491 2492 2493 2494 2495 2496 2497 2498
static void hci_prio_recalculate(struct hci_dev *hdev, __u8 type)
{
	struct hci_conn_hash *h = &hdev->conn_hash;
	struct hci_conn *conn;
	int num = 0;

	BT_DBG("%s", hdev->name);

2499 2500 2501
	rcu_read_lock();

	list_for_each_entry_rcu(conn, &h->list, list) {
2502 2503 2504 2505 2506 2507 2508 2509 2510 2511
		struct hci_chan *chan;

		if (conn->type != type)
			continue;

		if (conn->state != BT_CONNECTED && conn->state != BT_CONFIG)
			continue;

		num++;

2512
		list_for_each_entry_rcu(chan, &conn->chan_list, list) {
2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529
			struct sk_buff *skb;

			if (chan->sent) {
				chan->sent = 0;
				continue;
			}

			if (skb_queue_empty(&chan->data_q))
				continue;

			skb = skb_peek(&chan->data_q);
			if (skb->priority >= HCI_PRIO_MAX - 1)
				continue;

			skb->priority = HCI_PRIO_MAX - 1;

			BT_DBG("chan %p skb %p promoted to %d", chan, skb,
2530
			       skb->priority);
2531 2532 2533 2534 2535
		}

		if (hci_conn_num(hdev, type) == num)
			break;
	}
2536 2537 2538

	rcu_read_unlock();

2539 2540
}

2541 2542 2543 2544 2545 2546
static inline int __get_blocks(struct hci_dev *hdev, struct sk_buff *skb)
{
	/* Calculate count of blocks used by this packet */
	return DIV_ROUND_UP(skb->len - HCI_ACL_HDR_SIZE, hdev->block_len);
}

2547
static void __check_timeout(struct hci_dev *hdev, unsigned int cnt)
2548
{
L
Linus Torvalds 已提交
2549 2550 2551
	if (!test_bit(HCI_RAW, &hdev->flags)) {
		/* ACL tx timeout must be longer than maximum
		 * link supervision timeout (40.9 seconds) */
2552
		if (!cnt && time_after(jiffies, hdev->acl_last_tx +
2553
				       HCI_ACL_TX_TIMEOUT))
2554
			hci_link_tx_to(hdev, ACL_LINK);
L
Linus Torvalds 已提交
2555
	}
2556
}
L
Linus Torvalds 已提交
2557

2558
static void hci_sched_acl_pkt(struct hci_dev *hdev)
2559 2560 2561 2562 2563 2564 2565
{
	unsigned int cnt = hdev->acl_cnt;
	struct hci_chan *chan;
	struct sk_buff *skb;
	int quote;

	__check_timeout(hdev, cnt);
2566

2567
	while (hdev->acl_cnt &&
2568
	       (chan = hci_chan_sent(hdev, ACL_LINK, &quote))) {
2569 2570
		u32 priority = (skb_peek(&chan->data_q))->priority;
		while (quote-- && (skb = skb_peek(&chan->data_q))) {
2571
			BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
2572
			       skb->len, skb->priority);
2573

2574 2575 2576 2577 2578 2579
			/* Stop if priority has changed */
			if (skb->priority < priority)
				break;

			skb = skb_dequeue(&chan->data_q);

2580
			hci_conn_enter_active_mode(chan->conn,
2581
						   bt_cb(skb)->force_active);
2582

L
Linus Torvalds 已提交
2583 2584 2585 2586
			hci_send_frame(skb);
			hdev->acl_last_tx = jiffies;

			hdev->acl_cnt--;
2587 2588
			chan->sent++;
			chan->conn->sent++;
L
Linus Torvalds 已提交
2589 2590
		}
	}
2591 2592 2593

	if (cnt != hdev->acl_cnt)
		hci_prio_recalculate(hdev, ACL_LINK);
L
Linus Torvalds 已提交
2594 2595
}

2596
static void hci_sched_acl_blk(struct hci_dev *hdev)
2597
{
2598
	unsigned int cnt = hdev->block_cnt;
2599 2600 2601
	struct hci_chan *chan;
	struct sk_buff *skb;
	int quote;
2602
	u8 type;
2603

2604
	__check_timeout(hdev, cnt);
2605

2606 2607 2608 2609 2610 2611 2612
	BT_DBG("%s", hdev->name);

	if (hdev->dev_type == HCI_AMP)
		type = AMP_LINK;
	else
		type = ACL_LINK;

2613
	while (hdev->block_cnt > 0 &&
2614
	       (chan = hci_chan_sent(hdev, type, &quote))) {
2615 2616 2617 2618 2619
		u32 priority = (skb_peek(&chan->data_q))->priority;
		while (quote > 0 && (skb = skb_peek(&chan->data_q))) {
			int blocks;

			BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
2620
			       skb->len, skb->priority);
2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632

			/* Stop if priority has changed */
			if (skb->priority < priority)
				break;

			skb = skb_dequeue(&chan->data_q);

			blocks = __get_blocks(hdev, skb);
			if (blocks > hdev->block_cnt)
				return;

			hci_conn_enter_active_mode(chan->conn,
2633
						   bt_cb(skb)->force_active);
2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646

			hci_send_frame(skb);
			hdev->acl_last_tx = jiffies;

			hdev->block_cnt -= blocks;
			quote -= blocks;

			chan->sent += blocks;
			chan->conn->sent += blocks;
		}
	}

	if (cnt != hdev->block_cnt)
2647
		hci_prio_recalculate(hdev, type);
2648 2649
}

2650
static void hci_sched_acl(struct hci_dev *hdev)
2651 2652 2653
{
	BT_DBG("%s", hdev->name);

2654 2655 2656 2657 2658 2659
	/* No ACL link over BR/EDR controller */
	if (!hci_conn_num(hdev, ACL_LINK) && hdev->dev_type == HCI_BREDR)
		return;

	/* No AMP link over AMP controller */
	if (!hci_conn_num(hdev, AMP_LINK) && hdev->dev_type == HCI_AMP)
2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672
		return;

	switch (hdev->flow_ctl_mode) {
	case HCI_FLOW_CTL_MODE_PACKET_BASED:
		hci_sched_acl_pkt(hdev);
		break;

	case HCI_FLOW_CTL_MODE_BLOCK_BASED:
		hci_sched_acl_blk(hdev);
		break;
	}
}

L
Linus Torvalds 已提交
2673
/* Schedule SCO */
2674
static void hci_sched_sco(struct hci_dev *hdev)
L
Linus Torvalds 已提交
2675 2676 2677 2678 2679 2680 2681
{
	struct hci_conn *conn;
	struct sk_buff *skb;
	int quote;

	BT_DBG("%s", hdev->name);

2682 2683 2684
	if (!hci_conn_num(hdev, SCO_LINK))
		return;

L
Linus Torvalds 已提交
2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696
	while (hdev->sco_cnt && (conn = hci_low_sent(hdev, SCO_LINK, &quote))) {
		while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
			BT_DBG("skb %p len %d", skb, skb->len);
			hci_send_frame(skb);

			conn->sent++;
			if (conn->sent == ~0)
				conn->sent = 0;
		}
	}
}

2697
static void hci_sched_esco(struct hci_dev *hdev)
2698 2699 2700 2701 2702 2703 2704
{
	struct hci_conn *conn;
	struct sk_buff *skb;
	int quote;

	BT_DBG("%s", hdev->name);

2705 2706 2707
	if (!hci_conn_num(hdev, ESCO_LINK))
		return;

2708 2709
	while (hdev->sco_cnt && (conn = hci_low_sent(hdev, ESCO_LINK,
						     &quote))) {
2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720
		while (quote-- && (skb = skb_dequeue(&conn->data_q))) {
			BT_DBG("skb %p len %d", skb, skb->len);
			hci_send_frame(skb);

			conn->sent++;
			if (conn->sent == ~0)
				conn->sent = 0;
		}
	}
}

2721
static void hci_sched_le(struct hci_dev *hdev)
2722
{
2723
	struct hci_chan *chan;
2724
	struct sk_buff *skb;
2725
	int quote, cnt, tmp;
2726 2727 2728

	BT_DBG("%s", hdev->name);

2729 2730 2731
	if (!hci_conn_num(hdev, LE_LINK))
		return;

2732 2733 2734
	if (!test_bit(HCI_RAW, &hdev->flags)) {
		/* LE tx timeout must be longer than maximum
		 * link supervision timeout (40.9 seconds) */
2735
		if (!hdev->le_cnt && hdev->le_pkts &&
2736
		    time_after(jiffies, hdev->le_last_tx + HZ * 45))
2737
			hci_link_tx_to(hdev, LE_LINK);
2738 2739 2740
	}

	cnt = hdev->le_pkts ? hdev->le_cnt : hdev->acl_cnt;
2741
	tmp = cnt;
2742
	while (cnt && (chan = hci_chan_sent(hdev, LE_LINK, &quote))) {
2743 2744
		u32 priority = (skb_peek(&chan->data_q))->priority;
		while (quote-- && (skb = skb_peek(&chan->data_q))) {
2745
			BT_DBG("chan %p skb %p len %d priority %u", chan, skb,
2746
			       skb->len, skb->priority);
2747

2748 2749 2750 2751 2752 2753
			/* Stop if priority has changed */
			if (skb->priority < priority)
				break;

			skb = skb_dequeue(&chan->data_q);

2754 2755 2756 2757
			hci_send_frame(skb);
			hdev->le_last_tx = jiffies;

			cnt--;
2758 2759
			chan->sent++;
			chan->conn->sent++;
2760 2761
		}
	}
2762

2763 2764 2765 2766
	if (hdev->le_pkts)
		hdev->le_cnt = cnt;
	else
		hdev->acl_cnt = cnt;
2767 2768 2769

	if (cnt != tmp)
		hci_prio_recalculate(hdev, LE_LINK);
2770 2771
}

2772
static void hci_tx_work(struct work_struct *work)
L
Linus Torvalds 已提交
2773
{
2774
	struct hci_dev *hdev = container_of(work, struct hci_dev, tx_work);
L
Linus Torvalds 已提交
2775 2776
	struct sk_buff *skb;

2777
	BT_DBG("%s acl %d sco %d le %d", hdev->name, hdev->acl_cnt,
2778
	       hdev->sco_cnt, hdev->le_cnt);
L
Linus Torvalds 已提交
2779 2780 2781 2782 2783 2784 2785

	/* Schedule queues and send stuff to HCI driver */

	hci_sched_acl(hdev);

	hci_sched_sco(hdev);

2786 2787
	hci_sched_esco(hdev);

2788 2789
	hci_sched_le(hdev);

L
Linus Torvalds 已提交
2790 2791 2792 2793 2794
	/* Send next queued raw (unknown type) packet */
	while ((skb = skb_dequeue(&hdev->raw_q)))
		hci_send_frame(skb);
}

L
Lucas De Marchi 已提交
2795
/* ----- HCI RX task (incoming data processing) ----- */
L
Linus Torvalds 已提交
2796 2797

/* ACL data packet */
2798
static void hci_acldata_packet(struct hci_dev *hdev, struct sk_buff *skb)
L
Linus Torvalds 已提交
2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809
{
	struct hci_acl_hdr *hdr = (void *) skb->data;
	struct hci_conn *conn;
	__u16 handle, flags;

	skb_pull(skb, HCI_ACL_HDR_SIZE);

	handle = __le16_to_cpu(hdr->handle);
	flags  = hci_flags(handle);
	handle = hci_handle(handle);

2810
	BT_DBG("%s len %d handle 0x%4.4x flags 0x%4.4x", hdev->name, skb->len,
2811
	       handle, flags);
L
Linus Torvalds 已提交
2812 2813 2814 2815 2816 2817

	hdev->stat.acl_rx++;

	hci_dev_lock(hdev);
	conn = hci_conn_hash_lookup_handle(hdev, handle);
	hci_dev_unlock(hdev);
2818

L
Linus Torvalds 已提交
2819
	if (conn) {
2820
		hci_conn_enter_active_mode(conn, BT_POWER_FORCE_ACTIVE_OFF);
2821

L
Linus Torvalds 已提交
2822
		/* Send to upper protocol */
2823 2824
		l2cap_recv_acldata(conn, skb, flags);
		return;
L
Linus Torvalds 已提交
2825
	} else {
2826
		BT_ERR("%s ACL packet for unknown connection handle %d",
2827
		       hdev->name, handle);
L
Linus Torvalds 已提交
2828 2829 2830 2831 2832 2833
	}

	kfree_skb(skb);
}

/* SCO data packet */
2834
static void hci_scodata_packet(struct hci_dev *hdev, struct sk_buff *skb)
L
Linus Torvalds 已提交
2835 2836 2837 2838 2839 2840 2841 2842 2843
{
	struct hci_sco_hdr *hdr = (void *) skb->data;
	struct hci_conn *conn;
	__u16 handle;

	skb_pull(skb, HCI_SCO_HDR_SIZE);

	handle = __le16_to_cpu(hdr->handle);

2844
	BT_DBG("%s len %d handle 0x%4.4x", hdev->name, skb->len, handle);
L
Linus Torvalds 已提交
2845 2846 2847 2848 2849 2850 2851 2852 2853

	hdev->stat.sco_rx++;

	hci_dev_lock(hdev);
	conn = hci_conn_hash_lookup_handle(hdev, handle);
	hci_dev_unlock(hdev);

	if (conn) {
		/* Send to upper protocol */
2854 2855
		sco_recv_scodata(conn, skb);
		return;
L
Linus Torvalds 已提交
2856
	} else {
2857
		BT_ERR("%s SCO packet for unknown connection handle %d",
2858
		       hdev->name, handle);
L
Linus Torvalds 已提交
2859 2860 2861 2862 2863
	}

	kfree_skb(skb);
}

2864
static void hci_rx_work(struct work_struct *work)
L
Linus Torvalds 已提交
2865
{
2866
	struct hci_dev *hdev = container_of(work, struct hci_dev, rx_work);
L
Linus Torvalds 已提交
2867 2868 2869 2870 2871
	struct sk_buff *skb;

	BT_DBG("%s", hdev->name);

	while ((skb = skb_dequeue(&hdev->rx_q))) {
2872 2873 2874
		/* Send copy to monitor */
		hci_send_to_monitor(hdev, skb);

L
Linus Torvalds 已提交
2875 2876
		if (atomic_read(&hdev->promisc)) {
			/* Send copy to the sockets */
2877
			hci_send_to_sock(hdev, skb);
L
Linus Torvalds 已提交
2878 2879 2880 2881 2882 2883 2884 2885 2886
		}

		if (test_bit(HCI_RAW, &hdev->flags)) {
			kfree_skb(skb);
			continue;
		}

		if (test_bit(HCI_INIT, &hdev->flags)) {
			/* Don't process data packets in this states. */
2887
			switch (bt_cb(skb)->pkt_type) {
L
Linus Torvalds 已提交
2888 2889 2890 2891
			case HCI_ACLDATA_PKT:
			case HCI_SCODATA_PKT:
				kfree_skb(skb);
				continue;
2892
			}
L
Linus Torvalds 已提交
2893 2894 2895
		}

		/* Process frame */
2896
		switch (bt_cb(skb)->pkt_type) {
L
Linus Torvalds 已提交
2897
		case HCI_EVENT_PKT:
2898
			BT_DBG("%s Event packet", hdev->name);
L
Linus Torvalds 已提交
2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918
			hci_event_packet(hdev, skb);
			break;

		case HCI_ACLDATA_PKT:
			BT_DBG("%s ACL data packet", hdev->name);
			hci_acldata_packet(hdev, skb);
			break;

		case HCI_SCODATA_PKT:
			BT_DBG("%s SCO data packet", hdev->name);
			hci_scodata_packet(hdev, skb);
			break;

		default:
			kfree_skb(skb);
			break;
		}
	}
}

2919
static void hci_cmd_work(struct work_struct *work)
L
Linus Torvalds 已提交
2920
{
2921
	struct hci_dev *hdev = container_of(work, struct hci_dev, cmd_work);
L
Linus Torvalds 已提交
2922 2923
	struct sk_buff *skb;

2924 2925
	BT_DBG("%s cmd_cnt %d cmd queued %d", hdev->name,
	       atomic_read(&hdev->cmd_cnt), skb_queue_len(&hdev->cmd_q));
L
Linus Torvalds 已提交
2926 2927

	/* Send queued commands */
2928 2929 2930 2931 2932
	if (atomic_read(&hdev->cmd_cnt)) {
		skb = skb_dequeue(&hdev->cmd_q);
		if (!skb)
			return;

2933
		kfree_skb(hdev->sent_cmd);
L
Linus Torvalds 已提交
2934

A
Andrei Emeltchenko 已提交
2935 2936
		hdev->sent_cmd = skb_clone(skb, GFP_ATOMIC);
		if (hdev->sent_cmd) {
L
Linus Torvalds 已提交
2937 2938
			atomic_dec(&hdev->cmd_cnt);
			hci_send_frame(skb);
2939 2940 2941 2942
			if (test_bit(HCI_RESET, &hdev->flags))
				del_timer(&hdev->cmd_timer);
			else
				mod_timer(&hdev->cmd_timer,
2943
					  jiffies + HCI_CMD_TIMEOUT);
L
Linus Torvalds 已提交
2944 2945
		} else {
			skb_queue_head(&hdev->cmd_q, skb);
2946
			queue_work(hdev->workqueue, &hdev->cmd_work);
L
Linus Torvalds 已提交
2947 2948 2949
		}
	}
}
A
Andre Guedes 已提交
2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961

int hci_do_inquiry(struct hci_dev *hdev, u8 length)
{
	/* General inquiry access code (GIAC) */
	u8 lap[3] = { 0x33, 0x8b, 0x9e };
	struct hci_cp_inquiry cp;

	BT_DBG("%s", hdev->name);

	if (test_bit(HCI_INQUIRY, &hdev->flags))
		return -EINPROGRESS;

2962 2963
	inquiry_cache_flush(hdev);

A
Andre Guedes 已提交
2964 2965 2966 2967 2968 2969
	memset(&cp, 0, sizeof(cp));
	memcpy(&cp.lap, lap, sizeof(cp.lap));
	cp.length  = length;

	return hci_send_cmd(hdev, HCI_OP_INQUIRY, sizeof(cp), &cp);
}
2970 2971 2972 2973 2974 2975

int hci_cancel_inquiry(struct hci_dev *hdev)
{
	BT_DBG("%s", hdev->name);

	if (!test_bit(HCI_INQUIRY, &hdev->flags))
2976
		return -EALREADY;
2977 2978 2979

	return hci_send_cmd(hdev, HCI_OP_INQUIRY_CANCEL, 0, NULL);
}
2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991

u8 bdaddr_to_le(u8 bdaddr_type)
{
	switch (bdaddr_type) {
	case BDADDR_LE_PUBLIC:
		return ADDR_LE_DEV_PUBLIC;

	default:
		/* Fallback to LE Random address type */
		return ADDR_LE_DEV_RANDOM;
	}
}