mgmt.c 50.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
   BlueZ - Bluetooth protocol stack for Linux
   Copyright (C) 2010  Nokia Corporation

   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
   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
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
   SOFTWARE IS DISCLAIMED.
*/

/* Bluetooth HCI Management interface */

25
#include <linux/uaccess.h>
26 27 28 29 30 31
#include <asm/unaligned.h>

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

32 33 34
#define MGMT_VERSION	0
#define MGMT_REVISION	1

A
Andre Guedes 已提交
35 36
#define INQUIRY_LEN_BREDR 0x08 /* TGAP(100) */

37 38 39 40
struct pending_cmd {
	struct list_head list;
	__u16 opcode;
	int index;
41
	void *param;
42
	struct sock *sk;
43
	void *user_data;
44 45
};

46
static LIST_HEAD(cmd_list);
47

48
static int cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
49 50 51 52
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;
	struct mgmt_ev_cmd_status *ev;
53
	int err;
54

55
	BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
56 57 58 59 60 61 62 63

	skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_ATOMIC);
	if (!skb)
		return -ENOMEM;

	hdr = (void *) skb_put(skb, sizeof(*hdr));

	hdr->opcode = cpu_to_le16(MGMT_EV_CMD_STATUS);
64
	hdr->index = cpu_to_le16(index);
65 66 67 68 69 70
	hdr->len = cpu_to_le16(sizeof(*ev));

	ev = (void *) skb_put(skb, sizeof(*ev));
	ev->status = status;
	put_unaligned_le16(cmd, &ev->opcode);

71 72
	err = sock_queue_rcv_skb(sk, skb);
	if (err < 0)
73 74
		kfree_skb(skb);

75
	return err;
76 77
}

78 79
static int cmd_complete(struct sock *sk, u16 index, u16 cmd, void *rp,
								size_t rp_len)
80 81 82 83
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;
	struct mgmt_ev_cmd_complete *ev;
84
	int err;
85 86 87

	BT_DBG("sock %p", sk);

88
	skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_ATOMIC);
89 90 91 92 93
	if (!skb)
		return -ENOMEM;

	hdr = (void *) skb_put(skb, sizeof(*hdr));

94
	hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
95
	hdr->index = cpu_to_le16(index);
96
	hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
97

98 99
	ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
	put_unaligned_le16(cmd, &ev->opcode);
100 101 102

	if (rp)
		memcpy(ev->data, rp, rp_len);
103

104 105
	err = sock_queue_rcv_skb(sk, skb);
	if (err < 0)
106 107
		kfree_skb(skb);

108
	return err;;
109 110
}

111 112 113 114 115 116 117 118 119
static int read_version(struct sock *sk)
{
	struct mgmt_rp_read_version rp;

	BT_DBG("sock %p", sk);

	rp.version = MGMT_VERSION;
	put_unaligned_le16(MGMT_REVISION, &rp.revision);

120 121
	return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, &rp,
								sizeof(rp));
122 123
}

124 125 126 127
static int read_index_list(struct sock *sk)
{
	struct mgmt_rp_read_index_list *rp;
	struct list_head *p;
128
	struct hci_dev *d;
129
	size_t rp_len;
130
	u16 count;
131
	int i, err;
132 133 134 135 136 137 138 139 140 141

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

	count = 0;
	list_for_each(p, &hci_dev_list) {
		count++;
	}

142 143 144
	rp_len = sizeof(*rp) + (2 * count);
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
145
		read_unlock(&hci_dev_list_lock);
146
		return -ENOMEM;
147
	}
148 149 150 151

	put_unaligned_le16(count, &rp->num_controllers);

	i = 0;
152
	list_for_each_entry(d, &hci_dev_list, list) {
153 154
		if (test_and_clear_bit(HCI_AUTO_OFF, &d->flags))
			cancel_delayed_work_sync(&d->power_off);
155 156 157 158

		if (test_bit(HCI_SETUP, &d->flags))
			continue;

159 160 161 162 163 164
		put_unaligned_le16(d->id, &rp->index[i++]);
		BT_DBG("Added hci%u", d->id);
	}

	read_unlock(&hci_dev_list_lock);

165 166
	err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, rp,
									rp_len);
167

168 169 170
	kfree(rp);

	return err;
171 172
}

173
static int read_controller_info(struct sock *sk, u16 index)
174
{
175
	struct mgmt_rp_read_info rp;
176
	struct hci_dev *hdev;
177

178
	BT_DBG("sock %p hci%u", sk, index);
179

180
	hdev = hci_dev_get(index);
181
	if (!hdev)
182
		return cmd_status(sk, index, MGMT_OP_READ_INFO, ENODEV);
183

184 185
	if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->flags))
		cancel_delayed_work_sync(&hdev->power_off);
186

187
	hci_dev_lock_bh(hdev);
188

189 190
	set_bit(HCI_MGMT, &hdev->flags);

191 192
	memset(&rp, 0, sizeof(rp));

193
	rp.type = hdev->dev_type;
194

195 196 197 198
	rp.powered = test_bit(HCI_UP, &hdev->flags);
	rp.connectable = test_bit(HCI_PSCAN, &hdev->flags);
	rp.discoverable = test_bit(HCI_ISCAN, &hdev->flags);
	rp.pairable = test_bit(HCI_PSCAN, &hdev->flags);
199 200

	if (test_bit(HCI_AUTH, &hdev->flags))
201
		rp.sec_mode = 3;
202
	else if (hdev->ssp_mode > 0)
203
		rp.sec_mode = 4;
204
	else
205
		rp.sec_mode = 2;
206

207 208 209 210 211 212
	bacpy(&rp.bdaddr, &hdev->bdaddr);
	memcpy(rp.features, hdev->features, 8);
	memcpy(rp.dev_class, hdev->dev_class, 3);
	put_unaligned_le16(hdev->manufacturer, &rp.manufacturer);
	rp.hci_ver = hdev->hci_ver;
	put_unaligned_le16(hdev->hci_rev, &rp.hci_rev);
213

214 215
	memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));

216
	hci_dev_unlock_bh(hdev);
217
	hci_dev_put(hdev);
218

219
	return cmd_complete(sk, index, MGMT_OP_READ_INFO, &rp, sizeof(rp));
220 221
}

222 223 224
static void mgmt_pending_free(struct pending_cmd *cmd)
{
	sock_put(cmd->sk);
225
	kfree(cmd->param);
226 227 228
	kfree(cmd);
}

229 230
static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
						u16 index, void *data, u16 len)
231 232 233 234 235
{
	struct pending_cmd *cmd;

	cmd = kmalloc(sizeof(*cmd), GFP_ATOMIC);
	if (!cmd)
236
		return NULL;
237 238 239 240

	cmd->opcode = opcode;
	cmd->index = index;

241 242
	cmd->param = kmalloc(len, GFP_ATOMIC);
	if (!cmd->param) {
243
		kfree(cmd);
244
		return NULL;
245 246
	}

247 248
	if (data)
		memcpy(cmd->param, data, len);
249 250 251 252 253 254

	cmd->sk = sk;
	sock_hold(sk);

	list_add(&cmd->list, &cmd_list);

255
	return cmd;
256 257 258 259 260 261 262 263 264 265 266 267 268
}

static void mgmt_pending_foreach(u16 opcode, int index,
				void (*cb)(struct pending_cmd *cmd, void *data),
				void *data)
{
	struct list_head *p, *n;

	list_for_each_safe(p, n, &cmd_list) {
		struct pending_cmd *cmd;

		cmd = list_entry(p, struct pending_cmd, list);

269
		if (opcode > 0 && cmd->opcode != opcode)
270 271 272 273 274 275 276 277 278 279 280
			continue;

		if (index >= 0 && cmd->index != index)
			continue;

		cb(cmd, data);
	}
}

static struct pending_cmd *mgmt_pending_find(u16 opcode, int index)
{
281
	struct pending_cmd *cmd;
282

283
	list_for_each_entry(cmd, &cmd_list, list) {
284 285 286 287 288 289 290 291 292 293 294 295
		if (cmd->opcode != opcode)
			continue;

		if (index >= 0 && cmd->index != index)
			continue;

		return cmd;
	}

	return NULL;
}

296
static void mgmt_pending_remove(struct pending_cmd *cmd)
297 298 299 300 301
{
	list_del(&cmd->list);
	mgmt_pending_free(cmd);
}

302
static int set_powered(struct sock *sk, u16 index, unsigned char *data, u16 len)
303
{
304
	struct mgmt_mode *cp;
305
	struct hci_dev *hdev;
306 307
	struct pending_cmd *cmd;
	int err, up;
308 309 310

	cp = (void *) data;

311
	BT_DBG("request for hci%u", index);
312

313 314 315
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_SET_POWERED, EINVAL);

316
	hdev = hci_dev_get(index);
317
	if (!hdev)
318
		return cmd_status(sk, index, MGMT_OP_SET_POWERED, ENODEV);
319

320
	hci_dev_lock_bh(hdev);
321 322

	up = test_bit(HCI_UP, &hdev->flags);
323
	if ((cp->val && up) || (!cp->val && !up)) {
324
		err = cmd_status(sk, index, MGMT_OP_SET_POWERED, EALREADY);
325 326 327
		goto failed;
	}

328 329
	if (mgmt_pending_find(MGMT_OP_SET_POWERED, index)) {
		err = cmd_status(sk, index, MGMT_OP_SET_POWERED, EBUSY);
330 331 332
		goto failed;
	}

333
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, index, data, len);
334 335
	if (!cmd) {
		err = -ENOMEM;
336
		goto failed;
337
	}
338

339
	if (cp->val)
340 341
		queue_work(hdev->workqueue, &hdev->power_on);
	else
342
		queue_work(hdev->workqueue, &hdev->power_off.work);
343

344
	err = 0;
345 346

failed:
347
	hci_dev_unlock_bh(hdev);
348
	hci_dev_put(hdev);
349
	return err;
350 351
}

352 353
static int set_discoverable(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
354
{
355
	struct mgmt_cp_set_discoverable *cp;
356
	struct hci_dev *hdev;
357
	struct pending_cmd *cmd;
358 359 360 361 362
	u8 scan;
	int err;

	cp = (void *) data;

363
	BT_DBG("request for hci%u", index);
364

365 366 367
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, EINVAL);

368
	hdev = hci_dev_get(index);
369
	if (!hdev)
370
		return cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, ENODEV);
371

372
	hci_dev_lock_bh(hdev);
373 374

	if (!test_bit(HCI_UP, &hdev->flags)) {
375
		err = cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, ENETDOWN);
376 377 378
		goto failed;
	}

379 380 381
	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, index) ||
			mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, index)) {
		err = cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, EBUSY);
382 383 384
		goto failed;
	}

385
	if (cp->val == test_bit(HCI_ISCAN, &hdev->flags) &&
386
					test_bit(HCI_PSCAN, &hdev->flags)) {
387
		err = cmd_status(sk, index, MGMT_OP_SET_DISCOVERABLE, EALREADY);
388 389 390
		goto failed;
	}

391
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, index, data, len);
392 393
	if (!cmd) {
		err = -ENOMEM;
394
		goto failed;
395
	}
396 397 398

	scan = SCAN_PAGE;

399
	if (cp->val)
400
		scan |= SCAN_INQUIRY;
401 402
	else
		cancel_delayed_work_sync(&hdev->discov_off);
403 404 405

	err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
	if (err < 0)
406
		mgmt_pending_remove(cmd);
407

408 409 410
	if (cp->val)
		hdev->discov_timeout = get_unaligned_le16(&cp->timeout);

411
failed:
412
	hci_dev_unlock_bh(hdev);
413 414 415 416 417
	hci_dev_put(hdev);

	return err;
}

418 419
static int set_connectable(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
420
{
421
	struct mgmt_mode *cp;
422
	struct hci_dev *hdev;
423
	struct pending_cmd *cmd;
424 425 426 427 428
	u8 scan;
	int err;

	cp = (void *) data;

429
	BT_DBG("request for hci%u", index);
430

431 432 433
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, EINVAL);

434
	hdev = hci_dev_get(index);
435
	if (!hdev)
436
		return cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, ENODEV);
437

438
	hci_dev_lock_bh(hdev);
439 440

	if (!test_bit(HCI_UP, &hdev->flags)) {
441
		err = cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, ENETDOWN);
442 443 444
		goto failed;
	}

445 446 447
	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, index) ||
			mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, index)) {
		err = cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, EBUSY);
448 449 450
		goto failed;
	}

451
	if (cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
452
		err = cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, EALREADY);
453 454 455
		goto failed;
	}

456
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, index, data, len);
457 458
	if (!cmd) {
		err = -ENOMEM;
459
		goto failed;
460
	}
461

462
	if (cp->val)
463 464 465 466 467 468
		scan = SCAN_PAGE;
	else
		scan = 0;

	err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
	if (err < 0)
469
		mgmt_pending_remove(cmd);
470 471

failed:
472
	hci_dev_unlock_bh(hdev);
473 474 475 476 477
	hci_dev_put(hdev);

	return err;
}

478 479
static int mgmt_event(u16 event, u16 index, void *data, u16 data_len,
							struct sock *skip_sk)
480 481 482 483 484 485 486 487 488 489 490 491
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;

	skb = alloc_skb(sizeof(*hdr) + data_len, GFP_ATOMIC);
	if (!skb)
		return -ENOMEM;

	bt_cb(skb)->channel = HCI_CHANNEL_CONTROL;

	hdr = (void *) skb_put(skb, sizeof(*hdr));
	hdr->opcode = cpu_to_le16(event);
492
	hdr->index = cpu_to_le16(index);
493 494
	hdr->len = cpu_to_le16(data_len);

495 496
	if (data)
		memcpy(skb_put(skb, data_len), data, data_len);
497 498 499 500 501 502 503

	hci_send_to_sock(NULL, skb, skip_sk);
	kfree_skb(skb);

	return 0;
}

504 505
static int send_mode_rsp(struct sock *sk, u16 opcode, u16 index, u8 val)
{
506
	struct mgmt_mode rp;
507

508
	rp.val = val;
509

510
	return cmd_complete(sk, index, opcode, &rp, sizeof(rp));
511 512
}

513 514
static int set_pairable(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
515 516 517 518 519 520 521
{
	struct mgmt_mode *cp, ev;
	struct hci_dev *hdev;
	int err;

	cp = (void *) data;

522
	BT_DBG("request for hci%u", index);
523

524 525 526
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_SET_PAIRABLE, EINVAL);

527
	hdev = hci_dev_get(index);
528
	if (!hdev)
529
		return cmd_status(sk, index, MGMT_OP_SET_PAIRABLE, ENODEV);
530

531
	hci_dev_lock_bh(hdev);
532 533 534 535 536 537

	if (cp->val)
		set_bit(HCI_PAIRABLE, &hdev->flags);
	else
		clear_bit(HCI_PAIRABLE, &hdev->flags);

538
	err = send_mode_rsp(sk, MGMT_OP_SET_PAIRABLE, index, cp->val);
539 540 541 542 543
	if (err < 0)
		goto failed;

	ev.val = cp->val;

544
	err = mgmt_event(MGMT_EV_PAIRABLE, index, &ev, sizeof(ev), sk);
545 546

failed:
547
	hci_dev_unlock_bh(hdev);
548 549 550 551 552
	hci_dev_put(hdev);

	return err;
}

553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596
#define EIR_FLAGS		0x01 /* flags */
#define EIR_UUID16_SOME		0x02 /* 16-bit UUID, more available */
#define EIR_UUID16_ALL		0x03 /* 16-bit UUID, all listed */
#define EIR_UUID32_SOME		0x04 /* 32-bit UUID, more available */
#define EIR_UUID32_ALL		0x05 /* 32-bit UUID, all listed */
#define EIR_UUID128_SOME	0x06 /* 128-bit UUID, more available */
#define EIR_UUID128_ALL		0x07 /* 128-bit UUID, all listed */
#define EIR_NAME_SHORT		0x08 /* shortened local name */
#define EIR_NAME_COMPLETE	0x09 /* complete local name */
#define EIR_TX_POWER		0x0A /* transmit power level */
#define EIR_DEVICE_ID		0x10 /* device ID */

#define PNP_INFO_SVCLASS_ID		0x1200

static u8 bluetooth_base_uuid[] = {
			0xFB, 0x34, 0x9B, 0x5F, 0x80, 0x00, 0x00, 0x80,
			0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
};

static u16 get_uuid16(u8 *uuid128)
{
	u32 val;
	int i;

	for (i = 0; i < 12; i++) {
		if (bluetooth_base_uuid[i] != uuid128[i])
			return 0;
	}

	memcpy(&val, &uuid128[12], 4);

	val = le32_to_cpu(val);
	if (val > 0xffff)
		return 0;

	return (u16) val;
}

static void create_eir(struct hci_dev *hdev, u8 *data)
{
	u8 *ptr = data;
	u16 eir_len = 0;
	u16 uuid16_list[HCI_MAX_EIR_LENGTH / sizeof(u16)];
	int i, truncated = 0;
597
	struct bt_uuid *uuid;
598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621
	size_t name_len;

	name_len = strlen(hdev->dev_name);

	if (name_len > 0) {
		/* EIR Data type */
		if (name_len > 48) {
			name_len = 48;
			ptr[1] = EIR_NAME_SHORT;
		} else
			ptr[1] = EIR_NAME_COMPLETE;

		/* EIR Data length */
		ptr[0] = name_len + 1;

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

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

	memset(uuid16_list, 0, sizeof(uuid16_list));

	/* Group all UUID16 types */
622
	list_for_each_entry(uuid, &hdev->uuids, list) {
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 693 694 695
		u16 uuid16;

		uuid16 = get_uuid16(uuid->uuid);
		if (uuid16 == 0)
			return;

		if (uuid16 < 0x1100)
			continue;

		if (uuid16 == PNP_INFO_SVCLASS_ID)
			continue;

		/* Stop if not enough space to put next UUID */
		if (eir_len + 2 + sizeof(u16) > HCI_MAX_EIR_LENGTH) {
			truncated = 1;
			break;
		}

		/* Check for duplicates */
		for (i = 0; uuid16_list[i] != 0; i++)
			if (uuid16_list[i] == uuid16)
				break;

		if (uuid16_list[i] == 0) {
			uuid16_list[i] = uuid16;
			eir_len += sizeof(u16);
		}
	}

	if (uuid16_list[0] != 0) {
		u8 *length = ptr;

		/* EIR Data type */
		ptr[1] = truncated ? EIR_UUID16_SOME : EIR_UUID16_ALL;

		ptr += 2;
		eir_len += 2;

		for (i = 0; uuid16_list[i] != 0; i++) {
			*ptr++ = (uuid16_list[i] & 0x00ff);
			*ptr++ = (uuid16_list[i] & 0xff00) >> 8;
		}

		/* EIR Data length */
		*length = (i * sizeof(u16)) + 1;
	}
}

static int update_eir(struct hci_dev *hdev)
{
	struct hci_cp_write_eir cp;

	if (!(hdev->features[6] & LMP_EXT_INQ))
		return 0;

	if (hdev->ssp_mode == 0)
		return 0;

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

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

	create_eir(hdev, cp.data);

	if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
		return 0;

	memcpy(hdev->eir, cp.data, sizeof(cp.data));

	return hci_send_cmd(hdev, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
}

696 697
static u8 get_service_classes(struct hci_dev *hdev)
{
698
	struct bt_uuid *uuid;
699 700
	u8 val = 0;

701
	list_for_each_entry(uuid, &hdev->uuids, list)
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725
		val |= uuid->svc_hint;

	return val;
}

static int update_class(struct hci_dev *hdev)
{
	u8 cod[3];

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

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

	cod[0] = hdev->minor_class;
	cod[1] = hdev->major_class;
	cod[2] = get_service_classes(hdev);

	if (memcmp(cod, hdev->dev_class, 3) == 0)
		return 0;

	return hci_send_cmd(hdev, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
}

726
static int add_uuid(struct sock *sk, u16 index, unsigned char *data, u16 len)
727 728 729 730 731 732 733 734
{
	struct mgmt_cp_add_uuid *cp;
	struct hci_dev *hdev;
	struct bt_uuid *uuid;
	int err;

	cp = (void *) data;

735
	BT_DBG("request for hci%u", index);
736

737 738 739
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_ADD_UUID, EINVAL);

740
	hdev = hci_dev_get(index);
741
	if (!hdev)
742
		return cmd_status(sk, index, MGMT_OP_ADD_UUID, ENODEV);
743

744
	hci_dev_lock_bh(hdev);
745 746 747 748 749 750 751 752

	uuid = kmalloc(sizeof(*uuid), GFP_ATOMIC);
	if (!uuid) {
		err = -ENOMEM;
		goto failed;
	}

	memcpy(uuid->uuid, cp->uuid, 16);
753
	uuid->svc_hint = cp->svc_hint;
754 755 756

	list_add(&uuid->list, &hdev->uuids);

757 758 759 760
	err = update_class(hdev);
	if (err < 0)
		goto failed;

761 762 763 764
	err = update_eir(hdev);
	if (err < 0)
		goto failed;

765
	err = cmd_complete(sk, index, MGMT_OP_ADD_UUID, NULL, 0);
766 767

failed:
768
	hci_dev_unlock_bh(hdev);
769 770 771 772 773
	hci_dev_put(hdev);

	return err;
}

774
static int remove_uuid(struct sock *sk, u16 index, unsigned char *data, u16 len)
775 776
{
	struct list_head *p, *n;
777
	struct mgmt_cp_remove_uuid *cp;
778 779 780 781 782 783
	struct hci_dev *hdev;
	u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
	int err, found;

	cp = (void *) data;

784
	BT_DBG("request for hci%u", index);
785

786 787 788
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_REMOVE_UUID, EINVAL);

789
	hdev = hci_dev_get(index);
790
	if (!hdev)
791
		return cmd_status(sk, index, MGMT_OP_REMOVE_UUID, ENODEV);
792

793
	hci_dev_lock_bh(hdev);
794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812

	if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
		err = hci_uuids_clear(hdev);
		goto unlock;
	}

	found = 0;

	list_for_each_safe(p, n, &hdev->uuids) {
		struct bt_uuid *match = list_entry(p, struct bt_uuid, list);

		if (memcmp(match->uuid, cp->uuid, 16) != 0)
			continue;

		list_del(&match->list);
		found++;
	}

	if (found == 0) {
813
		err = cmd_status(sk, index, MGMT_OP_REMOVE_UUID, ENOENT);
814 815 816
		goto unlock;
	}

817 818 819 820
	err = update_class(hdev);
	if (err < 0)
		goto unlock;

821 822 823 824
	err = update_eir(hdev);
	if (err < 0)
		goto unlock;

825
	err = cmd_complete(sk, index, MGMT_OP_REMOVE_UUID, NULL, 0);
826 827

unlock:
828
	hci_dev_unlock_bh(hdev);
829 830 831 832 833
	hci_dev_put(hdev);

	return err;
}

834 835
static int set_dev_class(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
836 837 838 839 840 841 842
{
	struct hci_dev *hdev;
	struct mgmt_cp_set_dev_class *cp;
	int err;

	cp = (void *) data;

843
	BT_DBG("request for hci%u", index);
844

845 846 847
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_SET_DEV_CLASS, EINVAL);

848
	hdev = hci_dev_get(index);
849
	if (!hdev)
850
		return cmd_status(sk, index, MGMT_OP_SET_DEV_CLASS, ENODEV);
851

852
	hci_dev_lock_bh(hdev);
853 854 855 856 857 858 859

	hdev->major_class = cp->major;
	hdev->minor_class = cp->minor;

	err = update_class(hdev);

	if (err == 0)
860
		err = cmd_complete(sk, index, MGMT_OP_SET_DEV_CLASS, NULL, 0);
861

862
	hci_dev_unlock_bh(hdev);
863 864 865 866 867
	hci_dev_put(hdev);

	return err;
}

868 869
static int set_service_cache(struct sock *sk, u16 index,  unsigned char *data,
									u16 len)
870 871 872 873 874 875 876
{
	struct hci_dev *hdev;
	struct mgmt_cp_set_service_cache *cp;
	int err;

	cp = (void *) data;

877
	if (len != sizeof(*cp))
878
		return cmd_status(sk, index, MGMT_OP_SET_SERVICE_CACHE, EINVAL);
879

880
	hdev = hci_dev_get(index);
881
	if (!hdev)
882
		return cmd_status(sk, index, MGMT_OP_SET_SERVICE_CACHE, ENODEV);
883

884
	hci_dev_lock_bh(hdev);
885

886
	BT_DBG("hci%u enable %d", index, cp->enable);
887 888 889 890 891 892 893

	if (cp->enable) {
		set_bit(HCI_SERVICE_CACHE, &hdev->flags);
		err = 0;
	} else {
		clear_bit(HCI_SERVICE_CACHE, &hdev->flags);
		err = update_class(hdev);
894 895
		if (err == 0)
			err = update_eir(hdev);
896 897 898
	}

	if (err == 0)
899 900
		err = cmd_complete(sk, index, MGMT_OP_SET_SERVICE_CACHE, NULL,
									0);
901 902 903
	else
		cmd_status(sk, index, MGMT_OP_SET_SERVICE_CACHE, -err);

904

905
	hci_dev_unlock_bh(hdev);
906 907 908 909 910
	hci_dev_put(hdev);

	return err;
}

911 912
static int load_link_keys(struct sock *sk, u16 index, unsigned char *data,
								u16 len)
913 914
{
	struct hci_dev *hdev;
915
	struct mgmt_cp_load_link_keys *cp;
916
	u16 key_count, expected_len;
917
	int i;
918 919

	cp = (void *) data;
920 921

	if (len < sizeof(*cp))
922
		return cmd_status(sk, index, MGMT_OP_LOAD_LINK_KEYS, EINVAL);
923

924 925
	key_count = get_unaligned_le16(&cp->key_count);

926 927
	expected_len = sizeof(*cp) + key_count *
					sizeof(struct mgmt_link_key_info);
928
	if (expected_len != len) {
929
		BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
930
							len, expected_len);
931
		return cmd_status(sk, index, MGMT_OP_LOAD_LINK_KEYS, EINVAL);
932 933
	}

934
	hdev = hci_dev_get(index);
935
	if (!hdev)
936
		return cmd_status(sk, index, MGMT_OP_LOAD_LINK_KEYS, ENODEV);
937

938
	BT_DBG("hci%u debug_keys %u key_count %u", index, cp->debug_keys,
939 940
								key_count);

941
	hci_dev_lock_bh(hdev);
942 943 944 945 946 947 948 949 950 951

	hci_link_keys_clear(hdev);

	set_bit(HCI_LINK_KEYS, &hdev->flags);

	if (cp->debug_keys)
		set_bit(HCI_DEBUG_KEYS, &hdev->flags);
	else
		clear_bit(HCI_DEBUG_KEYS, &hdev->flags);

952
	for (i = 0; i < key_count; i++) {
953
		struct mgmt_link_key_info *key = &cp->keys[i];
954

955
		hci_add_link_key(hdev, NULL, 0, &key->bdaddr, key->val, key->type,
956 957 958
								key->pin_len);
	}

959
	hci_dev_unlock_bh(hdev);
960 961
	hci_dev_put(hdev);

962
	return 0;
963 964
}

965 966
static int remove_keys(struct sock *sk, u16 index, unsigned char *data,
								u16 len)
967 968
{
	struct hci_dev *hdev;
969
	struct mgmt_cp_remove_keys *cp;
970 971 972 973 974
	struct hci_conn *conn;
	int err;

	cp = (void *) data;

975
	if (len != sizeof(*cp))
976
		return cmd_status(sk, index, MGMT_OP_REMOVE_KEYS, EINVAL);
977

978
	hdev = hci_dev_get(index);
979
	if (!hdev)
980
		return cmd_status(sk, index, MGMT_OP_REMOVE_KEYS, ENODEV);
981

982
	hci_dev_lock_bh(hdev);
983 984 985

	err = hci_remove_link_key(hdev, &cp->bdaddr);
	if (err < 0) {
986
		err = cmd_status(sk, index, MGMT_OP_REMOVE_KEYS, -err);
987 988 989 990 991 992 993 994 995 996 997 998 999 1000
		goto unlock;
	}

	err = 0;

	if (!test_bit(HCI_UP, &hdev->flags) || !cp->disconnect)
		goto unlock;

	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
	if (conn) {
		struct hci_cp_disconnect dc;

		put_unaligned_le16(conn->handle, &dc.handle);
		dc.reason = 0x13; /* Remote User Terminated Connection */
1001
		err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1002 1003 1004
	}

unlock:
1005
	hci_dev_unlock_bh(hdev);
1006 1007 1008 1009 1010
	hci_dev_put(hdev);

	return err;
}

1011
static int disconnect(struct sock *sk, u16 index, unsigned char *data, u16 len)
1012 1013 1014 1015
{
	struct hci_dev *hdev;
	struct mgmt_cp_disconnect *cp;
	struct hci_cp_disconnect dc;
1016
	struct pending_cmd *cmd;
1017 1018 1019 1020 1021 1022 1023
	struct hci_conn *conn;
	int err;

	BT_DBG("");

	cp = (void *) data;

1024 1025 1026
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_DISCONNECT, EINVAL);

1027
	hdev = hci_dev_get(index);
1028
	if (!hdev)
1029
		return cmd_status(sk, index, MGMT_OP_DISCONNECT, ENODEV);
1030

1031
	hci_dev_lock_bh(hdev);
1032 1033

	if (!test_bit(HCI_UP, &hdev->flags)) {
1034
		err = cmd_status(sk, index, MGMT_OP_DISCONNECT, ENETDOWN);
1035 1036 1037
		goto failed;
	}

1038 1039
	if (mgmt_pending_find(MGMT_OP_DISCONNECT, index)) {
		err = cmd_status(sk, index, MGMT_OP_DISCONNECT, EBUSY);
1040 1041 1042 1043
		goto failed;
	}

	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
1044 1045 1046
	if (!conn)
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->bdaddr);

1047
	if (!conn) {
1048
		err = cmd_status(sk, index, MGMT_OP_DISCONNECT, ENOTCONN);
1049 1050 1051
		goto failed;
	}

1052
	cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, index, data, len);
1053 1054
	if (!cmd) {
		err = -ENOMEM;
1055
		goto failed;
1056
	}
1057 1058 1059 1060 1061 1062

	put_unaligned_le16(conn->handle, &dc.handle);
	dc.reason = 0x13; /* Remote User Terminated Connection */

	err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
	if (err < 0)
1063
		mgmt_pending_remove(cmd);
1064 1065

failed:
1066
	hci_dev_unlock_bh(hdev);
1067 1068 1069 1070 1071
	hci_dev_put(hdev);

	return err;
}

1072
static int get_connections(struct sock *sk, u16 index)
1073 1074 1075
{
	struct mgmt_rp_get_connections *rp;
	struct hci_dev *hdev;
1076
	struct hci_conn *c;
1077
	struct list_head *p;
1078
	size_t rp_len;
1079
	u16 count;
1080 1081 1082 1083
	int i, err;

	BT_DBG("");

1084
	hdev = hci_dev_get(index);
1085
	if (!hdev)
1086
		return cmd_status(sk, index, MGMT_OP_GET_CONNECTIONS, ENODEV);
1087

1088
	hci_dev_lock_bh(hdev);
1089 1090 1091 1092 1093 1094

	count = 0;
	list_for_each(p, &hdev->conn_hash.list) {
		count++;
	}

1095 1096 1097
	rp_len = sizeof(*rp) + (count * sizeof(bdaddr_t));
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
1098 1099 1100 1101 1102 1103 1104
		err = -ENOMEM;
		goto unlock;
	}

	put_unaligned_le16(count, &rp->conn_count);

	i = 0;
1105
	list_for_each_entry(c, &hdev->conn_hash.list, list)
1106 1107
		bacpy(&rp->conn[i++], &c->dst);

1108
	err = cmd_complete(sk, index, MGMT_OP_GET_CONNECTIONS, rp, rp_len);
1109 1110

unlock:
1111
	kfree(rp);
1112
	hci_dev_unlock_bh(hdev);
1113 1114 1115 1116
	hci_dev_put(hdev);
	return err;
}

1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135
static int send_pin_code_neg_reply(struct sock *sk, u16 index,
		struct hci_dev *hdev, struct mgmt_cp_pin_code_neg_reply *cp)
{
	struct pending_cmd *cmd;
	int err;

	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, index, cp,
								sizeof(*cp));
	if (!cmd)
		return -ENOMEM;

	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY, sizeof(cp->bdaddr),
								&cp->bdaddr);
	if (err < 0)
		mgmt_pending_remove(cmd);

	return err;
}

1136 1137
static int pin_code_reply(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
1138 1139
{
	struct hci_dev *hdev;
1140
	struct hci_conn *conn;
1141
	struct mgmt_cp_pin_code_reply *cp;
1142
	struct mgmt_cp_pin_code_neg_reply ncp;
1143
	struct hci_cp_pin_code_reply reply;
1144
	struct pending_cmd *cmd;
1145 1146 1147 1148 1149 1150
	int err;

	BT_DBG("");

	cp = (void *) data;

1151 1152 1153
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, EINVAL);

1154
	hdev = hci_dev_get(index);
1155
	if (!hdev)
1156
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, ENODEV);
1157

1158
	hci_dev_lock_bh(hdev);
1159 1160

	if (!test_bit(HCI_UP, &hdev->flags)) {
1161
		err = cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, ENETDOWN);
1162 1163 1164
		goto failed;
	}

1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
	if (!conn) {
		err = cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, ENOTCONN);
		goto failed;
	}

	if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
		bacpy(&ncp.bdaddr, &cp->bdaddr);

		BT_ERR("PIN code is not 16 bytes long");

		err = send_pin_code_neg_reply(sk, index, hdev, &ncp);
		if (err >= 0)
			err = cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY,
								EINVAL);

		goto failed;
	}

1184
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, index, data, len);
1185 1186
	if (!cmd) {
		err = -ENOMEM;
1187
		goto failed;
1188
	}
1189 1190 1191

	bacpy(&reply.bdaddr, &cp->bdaddr);
	reply.pin_len = cp->pin_len;
1192
	memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
1193 1194 1195

	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
	if (err < 0)
1196
		mgmt_pending_remove(cmd);
1197 1198

failed:
1199
	hci_dev_unlock_bh(hdev);
1200 1201 1202 1203 1204
	hci_dev_put(hdev);

	return err;
}

1205 1206
static int pin_code_neg_reply(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
1207 1208 1209 1210 1211 1212 1213 1214 1215
{
	struct hci_dev *hdev;
	struct mgmt_cp_pin_code_neg_reply *cp;
	int err;

	BT_DBG("");

	cp = (void *) data;

1216 1217 1218 1219
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
									EINVAL);

1220
	hdev = hci_dev_get(index);
1221
	if (!hdev)
1222 1223
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
									ENODEV);
1224

1225
	hci_dev_lock_bh(hdev);
1226 1227

	if (!test_bit(HCI_UP, &hdev->flags)) {
1228 1229
		err = cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
								ENETDOWN);
1230 1231 1232
		goto failed;
	}

1233
	err = send_pin_code_neg_reply(sk, index, hdev, cp);
1234 1235

failed:
1236
	hci_dev_unlock_bh(hdev);
1237 1238 1239 1240 1241
	hci_dev_put(hdev);

	return err;
}

1242 1243
static int set_io_capability(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
1244 1245 1246 1247 1248 1249 1250 1251
{
	struct hci_dev *hdev;
	struct mgmt_cp_set_io_capability *cp;

	BT_DBG("");

	cp = (void *) data;

1252
	if (len != sizeof(*cp))
1253
		return cmd_status(sk, index, MGMT_OP_SET_IO_CAPABILITY, EINVAL);
1254

1255
	hdev = hci_dev_get(index);
1256
	if (!hdev)
1257
		return cmd_status(sk, index, MGMT_OP_SET_IO_CAPABILITY, ENODEV);
1258

1259
	hci_dev_lock_bh(hdev);
1260 1261 1262 1263

	hdev->io_capability = cp->io_capability;

	BT_DBG("%s IO capability set to 0x%02x", hdev->name,
1264
							hdev->io_capability);
1265

1266
	hci_dev_unlock_bh(hdev);
1267 1268
	hci_dev_put(hdev);

1269
	return cmd_complete(sk, index, MGMT_OP_SET_IO_CAPABILITY, NULL, 0);
1270 1271
}

1272 1273 1274
static inline struct pending_cmd *find_pairing(struct hci_conn *conn)
{
	struct hci_dev *hdev = conn->hdev;
1275
	struct pending_cmd *cmd;
1276

1277
	list_for_each_entry(cmd, &cmd_list, list) {
1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300
		if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
			continue;

		if (cmd->index != hdev->id)
			continue;

		if (cmd->user_data != conn)
			continue;

		return cmd;
	}

	return NULL;
}

static void pairing_complete(struct pending_cmd *cmd, u8 status)
{
	struct mgmt_rp_pair_device rp;
	struct hci_conn *conn = cmd->user_data;

	bacpy(&rp.bdaddr, &conn->dst);
	rp.status = status;

1301
	cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, &rp, sizeof(rp));
1302 1303 1304 1305 1306 1307 1308 1309

	/* So we don't get further callbacks for this connection */
	conn->connect_cfm_cb = NULL;
	conn->security_cfm_cb = NULL;
	conn->disconn_cfm_cb = NULL;

	hci_conn_put(conn);

1310
	mgmt_pending_remove(cmd);
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
}

static void pairing_complete_cb(struct hci_conn *conn, u8 status)
{
	struct pending_cmd *cmd;

	BT_DBG("status %u", status);

	cmd = find_pairing(conn);
	if (!cmd) {
		BT_DBG("Unable to find a pending command");
		return;
	}

	pairing_complete(cmd, status);
}

1328
static int pair_device(struct sock *sk, u16 index, unsigned char *data, u16 len)
1329 1330 1331 1332
{
	struct hci_dev *hdev;
	struct mgmt_cp_pair_device *cp;
	struct pending_cmd *cmd;
1333
	struct adv_entry *entry;
1334 1335 1336 1337 1338 1339 1340 1341
	u8 sec_level, auth_type;
	struct hci_conn *conn;
	int err;

	BT_DBG("");

	cp = (void *) data;

1342 1343 1344
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, EINVAL);

1345
	hdev = hci_dev_get(index);
1346
	if (!hdev)
1347
		return cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, ENODEV);
1348

1349
	hci_dev_lock_bh(hdev);
1350

1351 1352
	sec_level = BT_SECURITY_MEDIUM;
	if (cp->io_cap == 0x03)
1353
		auth_type = HCI_AT_DEDICATED_BONDING;
1354
	else
1355 1356
		auth_type = HCI_AT_DEDICATED_BONDING_MITM;

1357 1358 1359 1360 1361 1362 1363 1364
	entry = hci_find_adv_entry(hdev, &cp->bdaddr);
	if (entry)
		conn = hci_connect(hdev, LE_LINK, &cp->bdaddr, sec_level,
								auth_type);
	else
		conn = hci_connect(hdev, ACL_LINK, &cp->bdaddr, sec_level,
								auth_type);

1365 1366
	if (IS_ERR(conn)) {
		err = PTR_ERR(conn);
1367 1368 1369 1370 1371
		goto unlock;
	}

	if (conn->connect_cfm_cb) {
		hci_conn_put(conn);
1372
		err = cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, EBUSY);
1373 1374 1375
		goto unlock;
	}

1376
	cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, index, data, len);
1377 1378 1379 1380 1381 1382
	if (!cmd) {
		err = -ENOMEM;
		hci_conn_put(conn);
		goto unlock;
	}

1383 1384 1385 1386
	/* For LE, just connecting isn't a proof that the pairing finished */
	if (!entry)
		conn->connect_cfm_cb = pairing_complete_cb;

1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398
	conn->security_cfm_cb = pairing_complete_cb;
	conn->disconn_cfm_cb = pairing_complete_cb;
	conn->io_capability = cp->io_cap;
	cmd->user_data = conn;

	if (conn->state == BT_CONNECTED &&
				hci_conn_security(conn, sec_level, auth_type))
		pairing_complete(cmd, 0);

	err = 0;

unlock:
1399
	hci_dev_unlock_bh(hdev);
1400 1401 1402 1403 1404
	hci_dev_put(hdev);

	return err;
}

1405 1406
static int user_confirm_reply(struct sock *sk, u16 index, unsigned char *data,
							u16 len, int success)
1407 1408
{
	struct mgmt_cp_user_confirm_reply *cp = (void *) data;
1409
	u16 mgmt_op, hci_op;
1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
	struct pending_cmd *cmd;
	struct hci_dev *hdev;
	int err;

	BT_DBG("");

	if (success) {
		mgmt_op = MGMT_OP_USER_CONFIRM_REPLY;
		hci_op = HCI_OP_USER_CONFIRM_REPLY;
	} else {
		mgmt_op = MGMT_OP_USER_CONFIRM_NEG_REPLY;
		hci_op = HCI_OP_USER_CONFIRM_NEG_REPLY;
	}

1424 1425 1426
	if (len != sizeof(*cp))
		return cmd_status(sk, index, mgmt_op, EINVAL);

1427
	hdev = hci_dev_get(index);
1428
	if (!hdev)
1429
		return cmd_status(sk, index, mgmt_op, ENODEV);
1430

1431
	hci_dev_lock_bh(hdev);
1432

1433
	if (!test_bit(HCI_UP, &hdev->flags)) {
1434
		err = cmd_status(sk, index, mgmt_op, ENETDOWN);
1435 1436 1437
		goto failed;
	}

1438
	cmd = mgmt_pending_add(sk, mgmt_op, index, data, len);
1439 1440 1441 1442 1443 1444
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

	err = hci_send_cmd(hdev, hci_op, sizeof(cp->bdaddr), &cp->bdaddr);
1445 1446
	if (err < 0)
		mgmt_pending_remove(cmd);
1447 1448

failed:
1449
	hci_dev_unlock_bh(hdev);
1450 1451 1452 1453 1454
	hci_dev_put(hdev);

	return err;
}

1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472
static int set_local_name(struct sock *sk, u16 index, unsigned char *data,
								u16 len)
{
	struct mgmt_cp_set_local_name *mgmt_cp = (void *) data;
	struct hci_cp_write_local_name hci_cp;
	struct hci_dev *hdev;
	struct pending_cmd *cmd;
	int err;

	BT_DBG("");

	if (len != sizeof(*mgmt_cp))
		return cmd_status(sk, index, MGMT_OP_SET_LOCAL_NAME, EINVAL);

	hdev = hci_dev_get(index);
	if (!hdev)
		return cmd_status(sk, index, MGMT_OP_SET_LOCAL_NAME, ENODEV);

1473
	hci_dev_lock_bh(hdev);
1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487

	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, index, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

	memcpy(hci_cp.name, mgmt_cp->name, sizeof(hci_cp.name));
	err = hci_send_cmd(hdev, HCI_OP_WRITE_LOCAL_NAME, sizeof(hci_cp),
								&hci_cp);
	if (err < 0)
		mgmt_pending_remove(cmd);

failed:
1488
	hci_dev_unlock_bh(hdev);
1489 1490 1491 1492 1493
	hci_dev_put(hdev);

	return err;
}

1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506
static int read_local_oob_data(struct sock *sk, u16 index)
{
	struct hci_dev *hdev;
	struct pending_cmd *cmd;
	int err;

	BT_DBG("hci%u", index);

	hdev = hci_dev_get(index);
	if (!hdev)
		return cmd_status(sk, index, MGMT_OP_READ_LOCAL_OOB_DATA,
									ENODEV);

1507
	hci_dev_lock_bh(hdev);
1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536

	if (!test_bit(HCI_UP, &hdev->flags)) {
		err = cmd_status(sk, index, MGMT_OP_READ_LOCAL_OOB_DATA,
								ENETDOWN);
		goto unlock;
	}

	if (!(hdev->features[6] & LMP_SIMPLE_PAIR)) {
		err = cmd_status(sk, index, MGMT_OP_READ_LOCAL_OOB_DATA,
								EOPNOTSUPP);
		goto unlock;
	}

	if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, index)) {
		err = cmd_status(sk, index, MGMT_OP_READ_LOCAL_OOB_DATA, EBUSY);
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, index, NULL, 0);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

	err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
1537
	hci_dev_unlock_bh(hdev);
1538 1539 1540 1541 1542
	hci_dev_put(hdev);

	return err;
}

1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
static int add_remote_oob_data(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
{
	struct hci_dev *hdev;
	struct mgmt_cp_add_remote_oob_data *cp = (void *) data;
	int err;

	BT_DBG("hci%u ", index);

	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_ADD_REMOTE_OOB_DATA,
									EINVAL);

	hdev = hci_dev_get(index);
	if (!hdev)
		return cmd_status(sk, index, MGMT_OP_ADD_REMOTE_OOB_DATA,
									ENODEV);

1561
	hci_dev_lock_bh(hdev);
1562 1563 1564 1565 1566 1567 1568 1569 1570

	err = hci_add_remote_oob_data(hdev, &cp->bdaddr, cp->hash,
								cp->randomizer);
	if (err < 0)
		err = cmd_status(sk, index, MGMT_OP_ADD_REMOTE_OOB_DATA, -err);
	else
		err = cmd_complete(sk, index, MGMT_OP_ADD_REMOTE_OOB_DATA, NULL,
									0);

1571
	hci_dev_unlock_bh(hdev);
1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594
	hci_dev_put(hdev);

	return err;
}

static int remove_remote_oob_data(struct sock *sk, u16 index,
						unsigned char *data, u16 len)
{
	struct hci_dev *hdev;
	struct mgmt_cp_remove_remote_oob_data *cp = (void *) data;
	int err;

	BT_DBG("hci%u ", index);

	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
									EINVAL);

	hdev = hci_dev_get(index);
	if (!hdev)
		return cmd_status(sk, index, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
									ENODEV);

1595
	hci_dev_lock_bh(hdev);
1596 1597 1598 1599 1600 1601 1602 1603 1604

	err = hci_remove_remote_oob_data(hdev, &cp->bdaddr);
	if (err < 0)
		err = cmd_status(sk, index, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
									-err);
	else
		err = cmd_complete(sk, index, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
								NULL, 0);

1605
	hci_dev_unlock_bh(hdev);
1606 1607 1608 1609 1610
	hci_dev_put(hdev);

	return err;
}

1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
static int start_discovery(struct sock *sk, u16 index)
{
	struct pending_cmd *cmd;
	struct hci_dev *hdev;
	int err;

	BT_DBG("hci%u", index);

	hdev = hci_dev_get(index);
	if (!hdev)
		return cmd_status(sk, index, MGMT_OP_START_DISCOVERY, ENODEV);

	hci_dev_lock_bh(hdev);

1625 1626 1627 1628 1629
	if (!test_bit(HCI_UP, &hdev->flags)) {
		err = cmd_status(sk, index, MGMT_OP_START_DISCOVERY, ENETDOWN);
		goto failed;
	}

1630 1631 1632 1633 1634 1635
	cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, index, NULL, 0);
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

A
Andre Guedes 已提交
1636
	err = hci_do_inquiry(hdev, INQUIRY_LEN_BREDR);
1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666
	if (err < 0)
		mgmt_pending_remove(cmd);

failed:
	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return err;
}

static int stop_discovery(struct sock *sk, u16 index)
{
	struct hci_dev *hdev;
	struct pending_cmd *cmd;
	int err;

	BT_DBG("hci%u", index);

	hdev = hci_dev_get(index);
	if (!hdev)
		return cmd_status(sk, index, MGMT_OP_STOP_DISCOVERY, ENODEV);

	hci_dev_lock_bh(hdev);

	cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, index, NULL, 0);
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

1667
	err = hci_cancel_inquiry(hdev);
1668 1669 1670 1671 1672 1673 1674 1675 1676 1677
	if (err < 0)
		mgmt_pending_remove(cmd);

failed:
	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return err;
}

1678 1679 1680 1681
static int block_device(struct sock *sk, u16 index, unsigned char *data,
								u16 len)
{
	struct hci_dev *hdev;
1682
	struct mgmt_cp_block_device *cp = (void *) data;
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
	int err;

	BT_DBG("hci%u", index);

	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_BLOCK_DEVICE,
							EINVAL);

	hdev = hci_dev_get(index);
	if (!hdev)
		return cmd_status(sk, index, MGMT_OP_BLOCK_DEVICE,
							ENODEV);

1696 1697
	hci_dev_lock_bh(hdev);

1698 1699 1700 1701 1702 1703
	err = hci_blacklist_add(hdev, &cp->bdaddr);
	if (err < 0)
		err = cmd_status(sk, index, MGMT_OP_BLOCK_DEVICE, -err);
	else
		err = cmd_complete(sk, index, MGMT_OP_BLOCK_DEVICE,
							NULL, 0);
1704 1705

	hci_dev_unlock_bh(hdev);
1706 1707 1708 1709 1710 1711 1712 1713 1714
	hci_dev_put(hdev);

	return err;
}

static int unblock_device(struct sock *sk, u16 index, unsigned char *data,
								u16 len)
{
	struct hci_dev *hdev;
1715
	struct mgmt_cp_unblock_device *cp = (void *) data;
1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728
	int err;

	BT_DBG("hci%u", index);

	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_UNBLOCK_DEVICE,
								EINVAL);

	hdev = hci_dev_get(index);
	if (!hdev)
		return cmd_status(sk, index, MGMT_OP_UNBLOCK_DEVICE,
								ENODEV);

1729 1730
	hci_dev_lock_bh(hdev);

1731 1732 1733 1734 1735 1736 1737
	err = hci_blacklist_del(hdev, &cp->bdaddr);

	if (err < 0)
		err = cmd_status(sk, index, MGMT_OP_UNBLOCK_DEVICE, -err);
	else
		err = cmd_complete(sk, index, MGMT_OP_UNBLOCK_DEVICE,
								NULL, 0);
1738 1739

	hci_dev_unlock_bh(hdev);
1740 1741 1742 1743 1744
	hci_dev_put(hdev);

	return err;
}

1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800
static int set_fast_connectable(struct sock *sk, u16 index,
					unsigned char *data, u16 len)
{
	struct hci_dev *hdev;
	struct mgmt_cp_set_fast_connectable *cp = (void *) data;
	struct hci_cp_write_page_scan_activity acp;
	u8 type;
	int err;

	BT_DBG("hci%u", index);

	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_SET_FAST_CONNECTABLE,
								EINVAL);

	hdev = hci_dev_get(index);
	if (!hdev)
		return cmd_status(sk, index, MGMT_OP_SET_FAST_CONNECTABLE,
								ENODEV);

	hci_dev_lock(hdev);

	if (cp->enable) {
		type = PAGE_SCAN_TYPE_INTERLACED;
		acp.interval = 0x0024;	/* 22.5 msec page scan interval */
	} else {
		type = PAGE_SCAN_TYPE_STANDARD;	/* default */
		acp.interval = 0x0800;	/* default 1.28 sec page scan */
	}

	acp.window = 0x0012;	/* default 11.25 msec page scan window */

	err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
						sizeof(acp), &acp);
	if (err < 0) {
		err = cmd_status(sk, index, MGMT_OP_SET_FAST_CONNECTABLE,
								-err);
		goto done;
	}

	err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
	if (err < 0) {
		err = cmd_status(sk, index, MGMT_OP_SET_FAST_CONNECTABLE,
								-err);
		goto done;
	}

	err = cmd_complete(sk, index, MGMT_OP_SET_FAST_CONNECTABLE,
							NULL, 0);
done:
	hci_dev_unlock(hdev);
	hci_dev_put(hdev);

	return err;
}

1801 1802 1803 1804
int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
{
	unsigned char *buf;
	struct mgmt_hdr *hdr;
1805
	u16 opcode, index, len;
1806 1807 1808 1809 1810 1811 1812
	int err;

	BT_DBG("got %zu bytes", msglen);

	if (msglen < sizeof(*hdr))
		return -EINVAL;

1813
	buf = kmalloc(msglen, GFP_KERNEL);
1814 1815 1816 1817 1818 1819 1820 1821 1822 1823
	if (!buf)
		return -ENOMEM;

	if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
		err = -EFAULT;
		goto done;
	}

	hdr = (struct mgmt_hdr *) buf;
	opcode = get_unaligned_le16(&hdr->opcode);
1824
	index = get_unaligned_le16(&hdr->index);
1825 1826 1827 1828 1829 1830 1831 1832
	len = get_unaligned_le16(&hdr->len);

	if (len != msglen - sizeof(*hdr)) {
		err = -EINVAL;
		goto done;
	}

	switch (opcode) {
1833 1834 1835
	case MGMT_OP_READ_VERSION:
		err = read_version(sk);
		break;
1836 1837 1838
	case MGMT_OP_READ_INDEX_LIST:
		err = read_index_list(sk);
		break;
1839
	case MGMT_OP_READ_INFO:
1840
		err = read_controller_info(sk, index);
1841
		break;
1842
	case MGMT_OP_SET_POWERED:
1843
		err = set_powered(sk, index, buf + sizeof(*hdr), len);
1844
		break;
1845
	case MGMT_OP_SET_DISCOVERABLE:
1846
		err = set_discoverable(sk, index, buf + sizeof(*hdr), len);
1847
		break;
1848
	case MGMT_OP_SET_CONNECTABLE:
1849
		err = set_connectable(sk, index, buf + sizeof(*hdr), len);
1850
		break;
1851
	case MGMT_OP_SET_PAIRABLE:
1852
		err = set_pairable(sk, index, buf + sizeof(*hdr), len);
1853
		break;
1854
	case MGMT_OP_ADD_UUID:
1855
		err = add_uuid(sk, index, buf + sizeof(*hdr), len);
1856 1857
		break;
	case MGMT_OP_REMOVE_UUID:
1858
		err = remove_uuid(sk, index, buf + sizeof(*hdr), len);
1859
		break;
1860
	case MGMT_OP_SET_DEV_CLASS:
1861
		err = set_dev_class(sk, index, buf + sizeof(*hdr), len);
1862 1863
		break;
	case MGMT_OP_SET_SERVICE_CACHE:
1864
		err = set_service_cache(sk, index, buf + sizeof(*hdr), len);
1865
		break;
1866 1867
	case MGMT_OP_LOAD_LINK_KEYS:
		err = load_link_keys(sk, index, buf + sizeof(*hdr), len);
1868
		break;
1869 1870
	case MGMT_OP_REMOVE_KEYS:
		err = remove_keys(sk, index, buf + sizeof(*hdr), len);
1871
		break;
1872
	case MGMT_OP_DISCONNECT:
1873
		err = disconnect(sk, index, buf + sizeof(*hdr), len);
1874
		break;
1875
	case MGMT_OP_GET_CONNECTIONS:
1876
		err = get_connections(sk, index);
1877
		break;
1878
	case MGMT_OP_PIN_CODE_REPLY:
1879
		err = pin_code_reply(sk, index, buf + sizeof(*hdr), len);
1880 1881
		break;
	case MGMT_OP_PIN_CODE_NEG_REPLY:
1882
		err = pin_code_neg_reply(sk, index, buf + sizeof(*hdr), len);
1883
		break;
1884
	case MGMT_OP_SET_IO_CAPABILITY:
1885
		err = set_io_capability(sk, index, buf + sizeof(*hdr), len);
1886
		break;
1887
	case MGMT_OP_PAIR_DEVICE:
1888
		err = pair_device(sk, index, buf + sizeof(*hdr), len);
1889
		break;
1890
	case MGMT_OP_USER_CONFIRM_REPLY:
1891
		err = user_confirm_reply(sk, index, buf + sizeof(*hdr), len, 1);
1892 1893
		break;
	case MGMT_OP_USER_CONFIRM_NEG_REPLY:
1894
		err = user_confirm_reply(sk, index, buf + sizeof(*hdr), len, 0);
1895
		break;
1896 1897 1898
	case MGMT_OP_SET_LOCAL_NAME:
		err = set_local_name(sk, index, buf + sizeof(*hdr), len);
		break;
1899 1900 1901
	case MGMT_OP_READ_LOCAL_OOB_DATA:
		err = read_local_oob_data(sk, index);
		break;
1902 1903 1904 1905 1906 1907 1908
	case MGMT_OP_ADD_REMOTE_OOB_DATA:
		err = add_remote_oob_data(sk, index, buf + sizeof(*hdr), len);
		break;
	case MGMT_OP_REMOVE_REMOTE_OOB_DATA:
		err = remove_remote_oob_data(sk, index, buf + sizeof(*hdr),
									len);
		break;
1909 1910 1911 1912 1913 1914
	case MGMT_OP_START_DISCOVERY:
		err = start_discovery(sk, index);
		break;
	case MGMT_OP_STOP_DISCOVERY:
		err = stop_discovery(sk, index);
		break;
1915 1916 1917 1918 1919 1920
	case MGMT_OP_BLOCK_DEVICE:
		err = block_device(sk, index, buf + sizeof(*hdr), len);
		break;
	case MGMT_OP_UNBLOCK_DEVICE:
		err = unblock_device(sk, index, buf + sizeof(*hdr), len);
		break;
1921 1922 1923 1924
	case MGMT_OP_SET_FAST_CONNECTABLE:
		err = set_fast_connectable(sk, index, buf + sizeof(*hdr),
								len);
		break;
1925 1926
	default:
		BT_DBG("Unknown op %u", opcode);
1927
		err = cmd_status(sk, index, opcode, 0x01);
1928 1929 1930
		break;
	}

1931 1932 1933
	if (err < 0)
		goto done;

1934 1935 1936 1937 1938 1939
	err = msglen;

done:
	kfree(buf);
	return err;
}
1940

1941 1942 1943 1944 1945 1946 1947 1948
static void cmd_status_rsp(struct pending_cmd *cmd, void *data)
{
	u8 *status = data;

	cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
	mgmt_pending_remove(cmd);
}

1949 1950
int mgmt_index_added(u16 index)
{
1951
	return mgmt_event(MGMT_EV_INDEX_ADDED, index, NULL, 0, NULL);
1952 1953 1954 1955
}

int mgmt_index_removed(u16 index)
{
1956 1957 1958 1959
	u8 status = ENODEV;

	mgmt_pending_foreach(0, index, cmd_status_rsp, &status);

1960
	return mgmt_event(MGMT_EV_INDEX_REMOVED, index, NULL, 0, NULL);
1961 1962
}

1963
struct cmd_lookup {
1964
	u8 val;
1965 1966 1967
	struct sock *sk;
};

1968
static void mode_rsp(struct pending_cmd *cmd, void *data)
1969
{
1970
	struct mgmt_mode *cp = cmd->param;
1971
	struct cmd_lookup *match = data;
1972

1973
	if (cp->val != match->val)
1974 1975
		return;

1976
	send_mode_rsp(cmd->sk, cmd->opcode, cmd->index, cp->val);
1977 1978 1979 1980 1981 1982 1983 1984 1985

	list_del(&cmd->list);

	if (match->sk == NULL) {
		match->sk = cmd->sk;
		sock_hold(match->sk);
	}

	mgmt_pending_free(cmd);
1986
}
1987 1988 1989

int mgmt_powered(u16 index, u8 powered)
{
1990
	struct mgmt_mode ev;
1991
	struct cmd_lookup match = { powered, NULL };
1992
	int ret;
1993

1994
	mgmt_pending_foreach(MGMT_OP_SET_POWERED, index, mode_rsp, &match);
1995

1996 1997 1998 1999 2000
	if (!powered) {
		u8 status = ENETDOWN;
		mgmt_pending_foreach(0, index, cmd_status_rsp, &status);
	}

2001
	ev.val = powered;
2002

2003
	ret = mgmt_event(MGMT_EV_POWERED, index, &ev, sizeof(ev), match.sk);
2004 2005 2006 2007 2008

	if (match.sk)
		sock_put(match.sk);

	return ret;
2009
}
2010 2011 2012

int mgmt_discoverable(u16 index, u8 discoverable)
{
2013
	struct mgmt_mode ev;
2014 2015 2016
	struct cmd_lookup match = { discoverable, NULL };
	int ret;

2017
	mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, index, mode_rsp, &match);
2018 2019

	ev.val = discoverable;
2020

2021 2022
	ret = mgmt_event(MGMT_EV_DISCOVERABLE, index, &ev, sizeof(ev),
								match.sk);
2023 2024 2025 2026 2027 2028

	if (match.sk)
		sock_put(match.sk);

	return ret;
}
2029 2030 2031

int mgmt_connectable(u16 index, u8 connectable)
{
2032
	struct mgmt_mode ev;
2033 2034 2035
	struct cmd_lookup match = { connectable, NULL };
	int ret;

2036
	mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, index, mode_rsp, &match);
2037

2038
	ev.val = connectable;
2039

2040
	ret = mgmt_event(MGMT_EV_CONNECTABLE, index, &ev, sizeof(ev), match.sk);
2041 2042 2043 2044 2045 2046

	if (match.sk)
		sock_put(match.sk);

	return ret;
}
2047

2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060
int mgmt_write_scan_failed(u16 index, u8 scan, u8 status)
{
	if (scan & SCAN_PAGE)
		mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, index,
						cmd_status_rsp, &status);

	if (scan & SCAN_INQUIRY)
		mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, index,
						cmd_status_rsp, &status);

	return 0;
}

2061
int mgmt_new_link_key(u16 index, struct link_key *key, u8 persistent)
2062
{
2063
	struct mgmt_ev_new_link_key ev;
2064

2065
	memset(&ev, 0, sizeof(ev));
2066

2067 2068 2069 2070 2071
	ev.store_hint = persistent;
	bacpy(&ev.key.bdaddr, &key->bdaddr);
	ev.key.type = key->type;
	memcpy(ev.key.val, key->val, 16);
	ev.key.pin_len = key->pin_len;
2072

2073
	return mgmt_event(MGMT_EV_NEW_LINK_KEY, index, &ev, sizeof(ev), NULL);
2074
}
2075

2076
int mgmt_connected(u16 index, bdaddr_t *bdaddr, u8 link_type)
2077 2078 2079 2080
{
	struct mgmt_ev_connected ev;

	bacpy(&ev.bdaddr, bdaddr);
2081
	ev.link_type = link_type;
2082

2083
	return mgmt_event(MGMT_EV_CONNECTED, index, &ev, sizeof(ev), NULL);
2084 2085
}

2086 2087
static void disconnect_rsp(struct pending_cmd *cmd, void *data)
{
2088
	struct mgmt_cp_disconnect *cp = cmd->param;
2089
	struct sock **sk = data;
2090
	struct mgmt_rp_disconnect rp;
2091

2092
	bacpy(&rp.bdaddr, &cp->bdaddr);
2093

2094
	cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, &rp, sizeof(rp));
2095 2096 2097 2098

	*sk = cmd->sk;
	sock_hold(*sk);

2099
	mgmt_pending_remove(cmd);
2100 2101
}

2102 2103 2104
int mgmt_disconnected(u16 index, bdaddr_t *bdaddr)
{
	struct mgmt_ev_disconnected ev;
2105 2106 2107 2108
	struct sock *sk = NULL;
	int err;

	mgmt_pending_foreach(MGMT_OP_DISCONNECT, index, disconnect_rsp, &sk);
2109 2110 2111

	bacpy(&ev.bdaddr, bdaddr);

2112
	err = mgmt_event(MGMT_EV_DISCONNECTED, index, &ev, sizeof(ev), sk);
2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128

	if (sk)
		sock_put(sk);

	return err;
}

int mgmt_disconnect_failed(u16 index)
{
	struct pending_cmd *cmd;
	int err;

	cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, index);
	if (!cmd)
		return -ENOENT;

2129
	err = cmd_status(cmd->sk, index, MGMT_OP_DISCONNECT, EIO);
2130

2131
	mgmt_pending_remove(cmd);
2132 2133

	return err;
2134
}
2135 2136 2137 2138 2139 2140 2141 2142

int mgmt_connect_failed(u16 index, bdaddr_t *bdaddr, u8 status)
{
	struct mgmt_ev_connect_failed ev;

	bacpy(&ev.bdaddr, bdaddr);
	ev.status = status;

2143
	return mgmt_event(MGMT_EV_CONNECT_FAILED, index, &ev, sizeof(ev), NULL);
2144
}
2145

2146
int mgmt_pin_code_request(u16 index, bdaddr_t *bdaddr, u8 secure)
2147 2148 2149 2150
{
	struct mgmt_ev_pin_code_request ev;

	bacpy(&ev.bdaddr, bdaddr);
2151
	ev.secure = secure;
2152

2153 2154
	return mgmt_event(MGMT_EV_PIN_CODE_REQUEST, index, &ev, sizeof(ev),
									NULL);
2155 2156 2157 2158 2159
}

int mgmt_pin_code_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
{
	struct pending_cmd *cmd;
2160
	struct mgmt_rp_pin_code_reply rp;
2161 2162 2163 2164 2165 2166
	int err;

	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, index);
	if (!cmd)
		return -ENOENT;

2167 2168 2169
	bacpy(&rp.bdaddr, bdaddr);
	rp.status = status;

2170 2171
	err = cmd_complete(cmd->sk, index, MGMT_OP_PIN_CODE_REPLY, &rp,
								sizeof(rp));
2172

2173
	mgmt_pending_remove(cmd);
2174 2175 2176 2177 2178 2179 2180

	return err;
}

int mgmt_pin_code_neg_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
{
	struct pending_cmd *cmd;
2181
	struct mgmt_rp_pin_code_reply rp;
2182 2183 2184 2185 2186 2187
	int err;

	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, index);
	if (!cmd)
		return -ENOENT;

2188 2189 2190
	bacpy(&rp.bdaddr, bdaddr);
	rp.status = status;

2191 2192
	err = cmd_complete(cmd->sk, index, MGMT_OP_PIN_CODE_NEG_REPLY, &rp,
								sizeof(rp));
2193

2194
	mgmt_pending_remove(cmd);
2195 2196 2197

	return err;
}
2198

2199 2200
int mgmt_user_confirm_request(u16 index, bdaddr_t *bdaddr, __le32 value,
							u8 confirm_hint)
2201 2202 2203 2204 2205 2206
{
	struct mgmt_ev_user_confirm_request ev;

	BT_DBG("hci%u", index);

	bacpy(&ev.bdaddr, bdaddr);
2207
	ev.confirm_hint = confirm_hint;
2208 2209
	put_unaligned_le32(value, &ev.value);

2210 2211
	return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, index, &ev, sizeof(ev),
									NULL);
2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226
}

static int confirm_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status,
								u8 opcode)
{
	struct pending_cmd *cmd;
	struct mgmt_rp_user_confirm_reply rp;
	int err;

	cmd = mgmt_pending_find(opcode, index);
	if (!cmd)
		return -ENOENT;

	bacpy(&rp.bdaddr, bdaddr);
	rp.status = status;
2227
	err = cmd_complete(cmd->sk, index, opcode, &rp, sizeof(rp));
2228

2229
	mgmt_pending_remove(cmd);
2230 2231 2232 2233 2234 2235 2236 2237 2238 2239

	return err;
}

int mgmt_user_confirm_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
{
	return confirm_reply_complete(index, bdaddr, status,
						MGMT_OP_USER_CONFIRM_REPLY);
}

2240
int mgmt_user_confirm_neg_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
2241 2242 2243 2244
{
	return confirm_reply_complete(index, bdaddr, status,
					MGMT_OP_USER_CONFIRM_NEG_REPLY);
}
2245 2246 2247 2248 2249 2250 2251 2252

int mgmt_auth_failed(u16 index, bdaddr_t *bdaddr, u8 status)
{
	struct mgmt_ev_auth_failed ev;

	bacpy(&ev.bdaddr, bdaddr);
	ev.status = status;

2253
	return mgmt_event(MGMT_EV_AUTH_FAILED, index, &ev, sizeof(ev), NULL);
2254
}
2255 2256 2257 2258

int mgmt_set_local_name_complete(u16 index, u8 *name, u8 status)
{
	struct pending_cmd *cmd;
2259
	struct hci_dev *hdev;
2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274
	struct mgmt_cp_set_local_name ev;
	int err;

	memset(&ev, 0, sizeof(ev));
	memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);

	cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, index);
	if (!cmd)
		goto send_event;

	if (status) {
		err = cmd_status(cmd->sk, index, MGMT_OP_SET_LOCAL_NAME, EIO);
		goto failed;
	}

2275 2276 2277 2278 2279 2280 2281 2282
	hdev = hci_dev_get(index);
	if (hdev) {
		hci_dev_lock_bh(hdev);
		update_eir(hdev);
		hci_dev_unlock_bh(hdev);
		hci_dev_put(hdev);
	}

2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296
	err = cmd_complete(cmd->sk, index, MGMT_OP_SET_LOCAL_NAME, &ev,
								sizeof(ev));
	if (err < 0)
		goto failed;

send_event:
	err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, index, &ev, sizeof(ev),
							cmd ? cmd->sk : NULL);

failed:
	if (cmd)
		mgmt_pending_remove(cmd);
	return err;
}
2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326

int mgmt_read_local_oob_data_reply_complete(u16 index, u8 *hash, u8 *randomizer,
								u8 status)
{
	struct pending_cmd *cmd;
	int err;

	BT_DBG("hci%u status %u", index, status);

	cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, index);
	if (!cmd)
		return -ENOENT;

	if (status) {
		err = cmd_status(cmd->sk, index, MGMT_OP_READ_LOCAL_OOB_DATA,
									EIO);
	} else {
		struct mgmt_rp_read_local_oob_data rp;

		memcpy(rp.hash, hash, sizeof(rp.hash));
		memcpy(rp.randomizer, randomizer, sizeof(rp.randomizer));

		err = cmd_complete(cmd->sk, index, MGMT_OP_READ_LOCAL_OOB_DATA,
							&rp, sizeof(rp));
	}

	mgmt_pending_remove(cmd);

	return err;
}
2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340

int mgmt_device_found(u16 index, bdaddr_t *bdaddr, u8 *dev_class, s8 rssi,
								u8 *eir)
{
	struct mgmt_ev_device_found ev;

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

	bacpy(&ev.bdaddr, bdaddr);
	ev.rssi = rssi;

	if (eir)
		memcpy(ev.eir, eir, sizeof(ev.eir));

2341 2342 2343
	if (dev_class)
		memcpy(ev.dev_class, dev_class, sizeof(ev.dev_class));

2344 2345
	return mgmt_event(MGMT_EV_DEVICE_FOUND, index, &ev, sizeof(ev), NULL);
}
2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357

int mgmt_remote_name(u16 index, bdaddr_t *bdaddr, u8 *name)
{
	struct mgmt_ev_remote_name ev;

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

	bacpy(&ev.bdaddr, bdaddr);
	memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);

	return mgmt_event(MGMT_EV_REMOTE_NAME, index, &ev, sizeof(ev), NULL);
}
2358

2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373
int mgmt_inquiry_failed(u16 index, u8 status)
{
	struct pending_cmd *cmd;
	int err;

	cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, index);
	if (!cmd)
		return -ENOENT;

	err = cmd_status(cmd->sk, index, cmd->opcode, status);
	mgmt_pending_remove(cmd);

	return err;
}

2374 2375
int mgmt_discovering(u16 index, u8 discovering)
{
2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387
	struct pending_cmd *cmd;

	if (discovering)
		cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, index);
	else
		cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, index);

	if (cmd != NULL) {
		cmd_complete(cmd->sk, index, cmd->opcode, NULL, 0);
		mgmt_pending_remove(cmd);
	}

2388 2389 2390
	return mgmt_event(MGMT_EV_DISCOVERING, index, &discovering,
						sizeof(discovering), NULL);
}
2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416

int mgmt_device_blocked(u16 index, bdaddr_t *bdaddr)
{
	struct pending_cmd *cmd;
	struct mgmt_ev_device_blocked ev;

	cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, index);

	bacpy(&ev.bdaddr, bdaddr);

	return mgmt_event(MGMT_EV_DEVICE_BLOCKED, index, &ev, sizeof(ev),
						cmd ? cmd->sk : NULL);
}

int mgmt_device_unblocked(u16 index, bdaddr_t *bdaddr)
{
	struct pending_cmd *cmd;
	struct mgmt_ev_device_unblocked ev;

	cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, index);

	bacpy(&ev.bdaddr, bdaddr);

	return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, index, &ev, sizeof(ev),
						cmd ? cmd->sk : NULL);
}