mgmt.c 39.2 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

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

LIST_HEAD(cmd_list);

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

52
	BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
53 54 55 56 57 58 59 60

	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);
61
	hdr->index = cpu_to_le16(index);
62 63 64 65 66 67 68 69 70 71 72 73
	hdr->len = cpu_to_le16(sizeof(*ev));

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

	if (sock_queue_rcv_skb(sk, skb) < 0)
		kfree_skb(skb);

	return 0;
}

74 75
static int cmd_complete(struct sock *sk, u16 index, u16 cmd, void *rp,
								size_t rp_len)
76 77 78 79 80 81 82
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;
	struct mgmt_ev_cmd_complete *ev;

	BT_DBG("sock %p", sk);

83
	skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_ATOMIC);
84 85 86 87 88
	if (!skb)
		return -ENOMEM;

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

89
	hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
90
	hdr->index = cpu_to_le16(index);
91
	hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
92

93 94
	ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
	put_unaligned_le16(cmd, &ev->opcode);
95 96 97

	if (rp)
		memcpy(ev->data, rp, rp_len);
98 99 100 101 102 103 104

	if (sock_queue_rcv_skb(sk, skb) < 0)
		kfree_skb(skb);

	return 0;
}

105 106 107 108 109 110 111 112 113
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);

114 115
	return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, &rp,
								sizeof(rp));
116 117
}

118 119 120 121
static int read_index_list(struct sock *sk)
{
	struct mgmt_rp_read_index_list *rp;
	struct list_head *p;
122
	size_t rp_len;
123
	u16 count;
124
	int i, err;
125 126 127 128 129 130 131 132 133 134

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

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

135 136 137
	rp_len = sizeof(*rp) + (2 * count);
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
138
		read_unlock(&hci_dev_list_lock);
139
		return -ENOMEM;
140
	}
141 142 143 144 145 146

	put_unaligned_le16(count, &rp->num_controllers);

	i = 0;
	list_for_each(p, &hci_dev_list) {
		struct hci_dev *d = list_entry(p, struct hci_dev, list);
147 148 149

		hci_del_off_timer(d);

150 151
		set_bit(HCI_MGMT, &d->flags);

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

155 156 157 158 159 160
		put_unaligned_le16(d->id, &rp->index[i++]);
		BT_DBG("Added hci%u", d->id);
	}

	read_unlock(&hci_dev_list_lock);

161 162
	err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, rp,
									rp_len);
163

164 165 166
	kfree(rp);

	return err;
167 168
}

169
static int read_controller_info(struct sock *sk, u16 index)
170
{
171
	struct mgmt_rp_read_info rp;
172
	struct hci_dev *hdev;
173

174
	BT_DBG("sock %p hci%u", sk, index);
175

176
	hdev = hci_dev_get(index);
177
	if (!hdev)
178
		return cmd_status(sk, index, MGMT_OP_READ_INFO, ENODEV);
179

180 181
	hci_del_off_timer(hdev);

182 183
	hci_dev_lock_bh(hdev);

184 185
	set_bit(HCI_MGMT, &hdev->flags);

186 187
	memset(&rp, 0, sizeof(rp));

188
	rp.type = hdev->dev_type;
189

190 191 192 193
	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);
194 195

	if (test_bit(HCI_AUTH, &hdev->flags))
196
		rp.sec_mode = 3;
197
	else if (hdev->ssp_mode > 0)
198
		rp.sec_mode = 4;
199
	else
200
		rp.sec_mode = 2;
201

202 203 204 205 206 207
	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);
208

209 210
	memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));

211 212
	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);
213

214
	return cmd_complete(sk, index, MGMT_OP_READ_INFO, &rp, sizeof(rp));
215 216
}

217 218 219
static void mgmt_pending_free(struct pending_cmd *cmd)
{
	sock_put(cmd->sk);
220
	kfree(cmd->param);
221 222 223
	kfree(cmd);
}

224 225
static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
						u16 index, void *data, u16 len)
226 227 228 229 230
{
	struct pending_cmd *cmd;

	cmd = kmalloc(sizeof(*cmd), GFP_ATOMIC);
	if (!cmd)
231
		return NULL;
232 233 234 235

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

236 237
	cmd->param = kmalloc(len, GFP_ATOMIC);
	if (!cmd->param) {
238
		kfree(cmd);
239
		return NULL;
240 241
	}

242 243
	if (data)
		memcpy(cmd->param, data, len);
244 245 246 247 248 249

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

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

250
	return cmd;
251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
}

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);

		if (cmd->opcode != opcode)
			continue;

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

		cb(cmd, data);
	}
}

static struct pending_cmd *mgmt_pending_find(u16 opcode, int index)
{
	struct list_head *p;

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

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

		if (cmd->opcode != opcode)
			continue;

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

		return cmd;
	}

	return NULL;
}

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

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

	cp = (void *) data;

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

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

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

	hci_dev_lock_bh(hdev);

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

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

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

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

343
	err = 0;
344 345 346 347

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

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

	cp = (void *) data;

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

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

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

	hci_dev_lock_bh(hdev);

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

378 379 380
	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);
381 382 383
		goto failed;
	}

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

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

	scan = SCAN_PAGE;

398
	if (cp->val)
399 400 401 402
		scan |= SCAN_INQUIRY;

	err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
	if (err < 0)
403
		mgmt_pending_remove(cmd);
404 405 406 407 408 409 410 411

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

	return err;
}

412 413
static int set_connectable(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
414
{
415
	struct mgmt_mode *cp;
416
	struct hci_dev *hdev;
417
	struct pending_cmd *cmd;
418 419 420 421 422
	u8 scan;
	int err;

	cp = (void *) data;

423
	BT_DBG("request for hci%u", index);
424

425 426 427
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, EINVAL);

428
	hdev = hci_dev_get(index);
429
	if (!hdev)
430
		return cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, ENODEV);
431 432 433 434

	hci_dev_lock_bh(hdev);

	if (!test_bit(HCI_UP, &hdev->flags)) {
435
		err = cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, ENETDOWN);
436 437 438
		goto failed;
	}

439 440 441
	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);
442 443 444
		goto failed;
	}

445
	if (cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
446
		err = cmd_status(sk, index, MGMT_OP_SET_CONNECTABLE, EALREADY);
447 448 449
		goto failed;
	}

450
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, index, data, len);
451 452
	if (!cmd) {
		err = -ENOMEM;
453
		goto failed;
454
	}
455

456
	if (cp->val)
457 458 459 460 461 462
		scan = SCAN_PAGE;
	else
		scan = 0;

	err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
	if (err < 0)
463
		mgmt_pending_remove(cmd);
464 465 466 467 468 469 470 471

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

	return err;
}

472 473
static int mgmt_event(u16 event, u16 index, void *data, u16 data_len,
							struct sock *skip_sk)
474 475 476 477 478 479 480 481 482 483 484 485
{
	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);
486
	hdr->index = cpu_to_le16(index);
487 488
	hdr->len = cpu_to_le16(data_len);

489 490
	if (data)
		memcpy(skb_put(skb, data_len), data, data_len);
491 492 493 494 495 496 497

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

	return 0;
}

498 499
static int send_mode_rsp(struct sock *sk, u16 opcode, u16 index, u8 val)
{
500
	struct mgmt_mode rp;
501

502
	rp.val = val;
503

504
	return cmd_complete(sk, index, opcode, &rp, sizeof(rp));
505 506
}

507 508
static int set_pairable(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
509 510 511 512 513 514 515
{
	struct mgmt_mode *cp, ev;
	struct hci_dev *hdev;
	int err;

	cp = (void *) data;

516
	BT_DBG("request for hci%u", index);
517

518 519 520
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_SET_PAIRABLE, EINVAL);

521
	hdev = hci_dev_get(index);
522
	if (!hdev)
523
		return cmd_status(sk, index, MGMT_OP_SET_PAIRABLE, ENODEV);
524 525 526 527 528 529 530 531

	hci_dev_lock_bh(hdev);

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

532
	err = send_mode_rsp(sk, MGMT_OP_SET_PAIRABLE, index, cp->val);
533 534 535 536 537
	if (err < 0)
		goto failed;

	ev.val = cp->val;

538
	err = mgmt_event(MGMT_EV_PAIRABLE, index, &ev, sizeof(ev), sk);
539 540 541 542 543 544 545 546

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

	return err;
}

547 548 549 550 551 552 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
static u8 get_service_classes(struct hci_dev *hdev)
{
	struct list_head *p;
	u8 val = 0;

	list_for_each(p, &hdev->uuids) {
		struct bt_uuid *uuid = list_entry(p, struct bt_uuid, list);

		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);
}

580
static int add_uuid(struct sock *sk, u16 index, unsigned char *data, u16 len)
581 582 583 584 585 586 587 588
{
	struct mgmt_cp_add_uuid *cp;
	struct hci_dev *hdev;
	struct bt_uuid *uuid;
	int err;

	cp = (void *) data;

589
	BT_DBG("request for hci%u", index);
590

591 592 593
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_ADD_UUID, EINVAL);

594
	hdev = hci_dev_get(index);
595
	if (!hdev)
596
		return cmd_status(sk, index, MGMT_OP_ADD_UUID, ENODEV);
597 598 599 600 601 602 603 604 605 606

	hci_dev_lock_bh(hdev);

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

	memcpy(uuid->uuid, cp->uuid, 16);
607
	uuid->svc_hint = cp->svc_hint;
608 609 610

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

611 612 613 614
	err = update_class(hdev);
	if (err < 0)
		goto failed;

615
	err = cmd_complete(sk, index, MGMT_OP_ADD_UUID, NULL, 0);
616 617 618 619 620 621 622 623

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

	return err;
}

624
static int remove_uuid(struct sock *sk, u16 index, unsigned char *data, u16 len)
625 626
{
	struct list_head *p, *n;
627
	struct mgmt_cp_remove_uuid *cp;
628 629 630 631 632 633
	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;

634
	BT_DBG("request for hci%u", index);
635

636 637 638
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_REMOVE_UUID, EINVAL);

639
	hdev = hci_dev_get(index);
640
	if (!hdev)
641
		return cmd_status(sk, index, MGMT_OP_REMOVE_UUID, ENODEV);
642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662

	hci_dev_lock_bh(hdev);

	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) {
663
		err = cmd_status(sk, index, MGMT_OP_REMOVE_UUID, ENOENT);
664 665 666
		goto unlock;
	}

667 668 669 670
	err = update_class(hdev);
	if (err < 0)
		goto unlock;

671
	err = cmd_complete(sk, index, MGMT_OP_REMOVE_UUID, NULL, 0);
672 673 674 675 676 677 678 679

unlock:
	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return err;
}

680 681
static int set_dev_class(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
682 683 684 685 686 687 688
{
	struct hci_dev *hdev;
	struct mgmt_cp_set_dev_class *cp;
	int err;

	cp = (void *) data;

689
	BT_DBG("request for hci%u", index);
690

691 692 693
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_SET_DEV_CLASS, EINVAL);

694
	hdev = hci_dev_get(index);
695
	if (!hdev)
696
		return cmd_status(sk, index, MGMT_OP_SET_DEV_CLASS, ENODEV);
697 698 699 700 701 702 703 704 705

	hci_dev_lock_bh(hdev);

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

	err = update_class(hdev);

	if (err == 0)
706
		err = cmd_complete(sk, index, MGMT_OP_SET_DEV_CLASS, NULL, 0);
707 708 709 710 711 712 713

	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return err;
}

714 715
static int set_service_cache(struct sock *sk, u16 index,  unsigned char *data,
									u16 len)
716 717 718 719 720 721 722
{
	struct hci_dev *hdev;
	struct mgmt_cp_set_service_cache *cp;
	int err;

	cp = (void *) data;

723
	if (len != sizeof(*cp))
724
		return cmd_status(sk, index, MGMT_OP_SET_SERVICE_CACHE, EINVAL);
725

726
	hdev = hci_dev_get(index);
727
	if (!hdev)
728
		return cmd_status(sk, index, MGMT_OP_SET_SERVICE_CACHE, ENODEV);
729 730 731

	hci_dev_lock_bh(hdev);

732
	BT_DBG("hci%u enable %d", index, cp->enable);
733 734 735 736 737 738 739 740 741 742

	if (cp->enable) {
		set_bit(HCI_SERVICE_CACHE, &hdev->flags);
		err = 0;
	} else {
		clear_bit(HCI_SERVICE_CACHE, &hdev->flags);
		err = update_class(hdev);
	}

	if (err == 0)
743 744
		err = cmd_complete(sk, index, MGMT_OP_SET_SERVICE_CACHE, NULL,
									0);
745 746 747 748 749 750 751

	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return err;
}

752
static int load_keys(struct sock *sk, u16 index, unsigned char *data, u16 len)
753 754 755
{
	struct hci_dev *hdev;
	struct mgmt_cp_load_keys *cp;
756
	u16 key_count, expected_len;
757 758 759
	int i;

	cp = (void *) data;
760 761 762 763

	if (len < sizeof(*cp))
		return -EINVAL;

764 765 766 767 768 769 770 771 772
	key_count = get_unaligned_le16(&cp->key_count);

	expected_len = sizeof(*cp) + key_count * sizeof(struct mgmt_key_info);
	if (expected_len != len) {
		BT_ERR("load_keys: expected %u bytes, got %u bytes",
							len, expected_len);
		return -EINVAL;
	}

773
	hdev = hci_dev_get(index);
774
	if (!hdev)
775
		return cmd_status(sk, index, MGMT_OP_LOAD_KEYS, ENODEV);
776

777
	BT_DBG("hci%u debug_keys %u key_count %u", index, cp->debug_keys,
778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
								key_count);

	hci_dev_lock_bh(hdev);

	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);

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

		hci_add_link_key(hdev, 0, &key->bdaddr, key->val, key->type,
								key->pin_len);
	}

	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return 0;
}

804
static int remove_key(struct sock *sk, u16 index, unsigned char *data, u16 len)
805 806 807 808 809 810 811 812
{
	struct hci_dev *hdev;
	struct mgmt_cp_remove_key *cp;
	struct hci_conn *conn;
	int err;

	cp = (void *) data;

813 814 815
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_REMOVE_KEY, EINVAL);

816
	hdev = hci_dev_get(index);
817
	if (!hdev)
818
		return cmd_status(sk, index, MGMT_OP_REMOVE_KEY, ENODEV);
819 820 821 822 823

	hci_dev_lock_bh(hdev);

	err = hci_remove_link_key(hdev, &cp->bdaddr);
	if (err < 0) {
824
		err = cmd_status(sk, index, MGMT_OP_REMOVE_KEY, -err);
825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848
		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 */
		err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, 0, NULL);
	}

unlock:
	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return err;
}

849
static int disconnect(struct sock *sk, u16 index, unsigned char *data, u16 len)
850 851 852 853
{
	struct hci_dev *hdev;
	struct mgmt_cp_disconnect *cp;
	struct hci_cp_disconnect dc;
854
	struct pending_cmd *cmd;
855 856 857 858 859 860 861
	struct hci_conn *conn;
	int err;

	BT_DBG("");

	cp = (void *) data;

862 863 864
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_DISCONNECT, EINVAL);

865
	hdev = hci_dev_get(index);
866
	if (!hdev)
867
		return cmd_status(sk, index, MGMT_OP_DISCONNECT, ENODEV);
868 869 870 871

	hci_dev_lock_bh(hdev);

	if (!test_bit(HCI_UP, &hdev->flags)) {
872
		err = cmd_status(sk, index, MGMT_OP_DISCONNECT, ENETDOWN);
873 874 875
		goto failed;
	}

876 877
	if (mgmt_pending_find(MGMT_OP_DISCONNECT, index)) {
		err = cmd_status(sk, index, MGMT_OP_DISCONNECT, EBUSY);
878 879 880 881 882
		goto failed;
	}

	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->bdaddr);
	if (!conn) {
883
		err = cmd_status(sk, index, MGMT_OP_DISCONNECT, ENOTCONN);
884 885 886
		goto failed;
	}

887
	cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, index, data, len);
888 889
	if (!cmd) {
		err = -ENOMEM;
890
		goto failed;
891
	}
892 893 894 895 896 897

	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)
898
		mgmt_pending_remove(cmd);
899 900 901 902 903 904 905 906

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

	return err;
}

907
static int get_connections(struct sock *sk, u16 index)
908 909 910 911
{
	struct mgmt_rp_get_connections *rp;
	struct hci_dev *hdev;
	struct list_head *p;
912
	size_t rp_len;
913
	u16 count;
914 915 916 917
	int i, err;

	BT_DBG("");

918
	hdev = hci_dev_get(index);
919
	if (!hdev)
920
		return cmd_status(sk, index, MGMT_OP_GET_CONNECTIONS, ENODEV);
921 922 923 924 925 926 927 928

	hci_dev_lock_bh(hdev);

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

929 930 931
	rp_len = sizeof(*rp) + (count * sizeof(bdaddr_t));
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948
		err = -ENOMEM;
		goto unlock;
	}

	put_unaligned_le16(count, &rp->conn_count);

	read_lock(&hci_dev_list_lock);

	i = 0;
	list_for_each(p, &hdev->conn_hash.list) {
		struct hci_conn *c = list_entry(p, struct hci_conn, list);

		bacpy(&rp->conn[i++], &c->dst);
	}

	read_unlock(&hci_dev_list_lock);

949
	err = cmd_complete(sk, index, MGMT_OP_GET_CONNECTIONS, rp, rp_len);
950 951

unlock:
952
	kfree(rp);
953 954 955 956 957
	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);
	return err;
}

958 959
static int pin_code_reply(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
960 961 962 963
{
	struct hci_dev *hdev;
	struct mgmt_cp_pin_code_reply *cp;
	struct hci_cp_pin_code_reply reply;
964
	struct pending_cmd *cmd;
965 966 967 968 969 970
	int err;

	BT_DBG("");

	cp = (void *) data;

971 972 973
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, EINVAL);

974
	hdev = hci_dev_get(index);
975
	if (!hdev)
976
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, ENODEV);
977 978 979 980

	hci_dev_lock_bh(hdev);

	if (!test_bit(HCI_UP, &hdev->flags)) {
981
		err = cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, ENETDOWN);
982 983 984
		goto failed;
	}

985
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, index, data, len);
986 987
	if (!cmd) {
		err = -ENOMEM;
988
		goto failed;
989
	}
990 991 992 993 994 995 996

	bacpy(&reply.bdaddr, &cp->bdaddr);
	reply.pin_len = cp->pin_len;
	memcpy(reply.pin_code, cp->pin_code, 16);

	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
	if (err < 0)
997
		mgmt_pending_remove(cmd);
998 999 1000 1001 1002 1003 1004 1005

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

	return err;
}

1006 1007
static int pin_code_neg_reply(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
1008 1009 1010
{
	struct hci_dev *hdev;
	struct mgmt_cp_pin_code_neg_reply *cp;
1011
	struct pending_cmd *cmd;
1012 1013 1014 1015 1016 1017
	int err;

	BT_DBG("");

	cp = (void *) data;

1018 1019 1020 1021
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
									EINVAL);

1022
	hdev = hci_dev_get(index);
1023
	if (!hdev)
1024 1025
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
									ENODEV);
1026 1027 1028 1029

	hci_dev_lock_bh(hdev);

	if (!test_bit(HCI_UP, &hdev->flags)) {
1030 1031
		err = cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
								ENETDOWN);
1032 1033 1034
		goto failed;
	}

1035
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, index,
1036
								data, len);
1037 1038
	if (!cmd) {
		err = -ENOMEM;
1039
		goto failed;
1040
	}
1041

1042
	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY, sizeof(cp->bdaddr),
1043 1044
								&cp->bdaddr);
	if (err < 0)
1045
		mgmt_pending_remove(cmd);
1046 1047 1048 1049 1050 1051 1052 1053

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

	return err;
}

1054 1055
static int set_io_capability(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
1056 1057 1058 1059 1060 1061 1062 1063
{
	struct hci_dev *hdev;
	struct mgmt_cp_set_io_capability *cp;

	BT_DBG("");

	cp = (void *) data;

1064
	if (len != sizeof(*cp))
1065
		return cmd_status(sk, index, MGMT_OP_SET_IO_CAPABILITY, EINVAL);
1066

1067
	hdev = hci_dev_get(index);
1068
	if (!hdev)
1069
		return cmd_status(sk, index, MGMT_OP_SET_IO_CAPABILITY, ENODEV);
1070 1071 1072 1073 1074 1075

	hci_dev_lock_bh(hdev);

	hdev->io_capability = cp->io_capability;

	BT_DBG("%s IO capability set to 0x%02x", hdev->name,
1076
							hdev->io_capability);
1077 1078 1079 1080

	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

1081
	return cmd_complete(sk, index, MGMT_OP_SET_IO_CAPABILITY, NULL, 0);
1082 1083
}

1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
static inline struct pending_cmd *find_pairing(struct hci_conn *conn)
{
	struct hci_dev *hdev = conn->hdev;
	struct list_head *p;

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

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

		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;

1117
	cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, &rp, sizeof(rp));
1118 1119 1120 1121 1122 1123 1124 1125

	/* 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);

1126
	mgmt_pending_remove(cmd);
1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143
}

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);
}

1144
static int pair_device(struct sock *sk, u16 index, unsigned char *data, u16 len)
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
{
	struct hci_dev *hdev;
	struct mgmt_cp_pair_device *cp;
	struct pending_cmd *cmd;
	u8 sec_level, auth_type;
	struct hci_conn *conn;
	int err;

	BT_DBG("");

	cp = (void *) data;

1157 1158 1159
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, EINVAL);

1160
	hdev = hci_dev_get(index);
1161
	if (!hdev)
1162
		return cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, ENODEV);
1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174

	hci_dev_lock_bh(hdev);

	if (cp->io_cap == 0x03) {
		sec_level = BT_SECURITY_MEDIUM;
		auth_type = HCI_AT_DEDICATED_BONDING;
	} else {
		sec_level = BT_SECURITY_HIGH;
		auth_type = HCI_AT_DEDICATED_BONDING_MITM;
	}

	conn = hci_connect(hdev, ACL_LINK, &cp->bdaddr, sec_level, auth_type);
1175 1176
	if (IS_ERR(conn)) {
		err = PTR_ERR(conn);
1177 1178 1179 1180 1181
		goto unlock;
	}

	if (conn->connect_cfm_cb) {
		hci_conn_put(conn);
1182
		err = cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, EBUSY);
1183 1184 1185
		goto unlock;
	}

1186
	cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, index, data, len);
1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211
	if (!cmd) {
		err = -ENOMEM;
		hci_conn_put(conn);
		goto unlock;
	}

	conn->connect_cfm_cb = pairing_complete_cb;
	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:
	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return err;
}

1212 1213
static int user_confirm_reply(struct sock *sk, u16 index, unsigned char *data,
							u16 len, int success)
1214 1215
{
	struct mgmt_cp_user_confirm_reply *cp = (void *) data;
1216
	u16 mgmt_op, hci_op;
1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
	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;
	}

1231 1232 1233
	if (len != sizeof(*cp))
		return cmd_status(sk, index, mgmt_op, EINVAL);

1234
	hdev = hci_dev_get(index);
1235
	if (!hdev)
1236
		return cmd_status(sk, index, mgmt_op, ENODEV);
1237 1238

	if (!test_bit(HCI_UP, &hdev->flags)) {
1239
		err = cmd_status(sk, index, mgmt_op, ENETDOWN);
1240 1241 1242
		goto failed;
	}

1243
	cmd = mgmt_pending_add(sk, mgmt_op, index, data, len);
1244 1245 1246 1247 1248 1249
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

	err = hci_send_cmd(hdev, hci_op, sizeof(cp->bdaddr), &cp->bdaddr);
1250 1251
	if (err < 0)
		mgmt_pending_remove(cmd);
1252 1253 1254 1255 1256 1257 1258 1259

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

	return err;
}

1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298
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);

	hci_dev_lock_bh(hdev);

	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:
	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return err;
}

1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347
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);

	hci_dev_lock_bh(hdev);

	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:
	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return err;
}

1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415
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);

	hci_dev_lock_bh(hdev);

	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);

	hci_dev_unlock_bh(hdev);
	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);

	hci_dev_lock_bh(hdev);

	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);

	hci_dev_unlock_bh(hdev);
	hci_dev_put(hdev);

	return err;
}

1416 1417 1418 1419
int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
{
	unsigned char *buf;
	struct mgmt_hdr *hdr;
1420
	u16 opcode, index, len;
1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438
	int err;

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

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

	buf = kmalloc(msglen, GFP_ATOMIC);
	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);
1439
	index = get_unaligned_le16(&hdr->index);
1440 1441 1442 1443 1444 1445 1446 1447
	len = get_unaligned_le16(&hdr->len);

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

	switch (opcode) {
1448 1449 1450
	case MGMT_OP_READ_VERSION:
		err = read_version(sk);
		break;
1451 1452 1453
	case MGMT_OP_READ_INDEX_LIST:
		err = read_index_list(sk);
		break;
1454
	case MGMT_OP_READ_INFO:
1455
		err = read_controller_info(sk, index);
1456
		break;
1457
	case MGMT_OP_SET_POWERED:
1458
		err = set_powered(sk, index, buf + sizeof(*hdr), len);
1459
		break;
1460
	case MGMT_OP_SET_DISCOVERABLE:
1461
		err = set_discoverable(sk, index, buf + sizeof(*hdr), len);
1462
		break;
1463
	case MGMT_OP_SET_CONNECTABLE:
1464
		err = set_connectable(sk, index, buf + sizeof(*hdr), len);
1465
		break;
1466
	case MGMT_OP_SET_PAIRABLE:
1467
		err = set_pairable(sk, index, buf + sizeof(*hdr), len);
1468
		break;
1469
	case MGMT_OP_ADD_UUID:
1470
		err = add_uuid(sk, index, buf + sizeof(*hdr), len);
1471 1472
		break;
	case MGMT_OP_REMOVE_UUID:
1473
		err = remove_uuid(sk, index, buf + sizeof(*hdr), len);
1474
		break;
1475
	case MGMT_OP_SET_DEV_CLASS:
1476
		err = set_dev_class(sk, index, buf + sizeof(*hdr), len);
1477 1478
		break;
	case MGMT_OP_SET_SERVICE_CACHE:
1479
		err = set_service_cache(sk, index, buf + sizeof(*hdr), len);
1480
		break;
1481
	case MGMT_OP_LOAD_KEYS:
1482
		err = load_keys(sk, index, buf + sizeof(*hdr), len);
1483 1484
		break;
	case MGMT_OP_REMOVE_KEY:
1485
		err = remove_key(sk, index, buf + sizeof(*hdr), len);
1486
		break;
1487
	case MGMT_OP_DISCONNECT:
1488
		err = disconnect(sk, index, buf + sizeof(*hdr), len);
1489
		break;
1490
	case MGMT_OP_GET_CONNECTIONS:
1491
		err = get_connections(sk, index);
1492
		break;
1493
	case MGMT_OP_PIN_CODE_REPLY:
1494
		err = pin_code_reply(sk, index, buf + sizeof(*hdr), len);
1495 1496
		break;
	case MGMT_OP_PIN_CODE_NEG_REPLY:
1497
		err = pin_code_neg_reply(sk, index, buf + sizeof(*hdr), len);
1498
		break;
1499
	case MGMT_OP_SET_IO_CAPABILITY:
1500
		err = set_io_capability(sk, index, buf + sizeof(*hdr), len);
1501
		break;
1502
	case MGMT_OP_PAIR_DEVICE:
1503
		err = pair_device(sk, index, buf + sizeof(*hdr), len);
1504
		break;
1505
	case MGMT_OP_USER_CONFIRM_REPLY:
1506
		err = user_confirm_reply(sk, index, buf + sizeof(*hdr), len, 1);
1507 1508
		break;
	case MGMT_OP_USER_CONFIRM_NEG_REPLY:
1509
		err = user_confirm_reply(sk, index, buf + sizeof(*hdr), len, 0);
1510
		break;
1511 1512 1513
	case MGMT_OP_SET_LOCAL_NAME:
		err = set_local_name(sk, index, buf + sizeof(*hdr), len);
		break;
1514 1515 1516
	case MGMT_OP_READ_LOCAL_OOB_DATA:
		err = read_local_oob_data(sk, index);
		break;
1517 1518 1519 1520 1521 1522 1523
	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;
1524

1525 1526
	default:
		BT_DBG("Unknown op %u", opcode);
1527
		err = cmd_status(sk, index, opcode, 0x01);
1528 1529 1530
		break;
	}

1531 1532 1533
	if (err < 0)
		goto done;

1534 1535 1536 1537 1538 1539
	err = msglen;

done:
	kfree(buf);
	return err;
}
1540 1541 1542

int mgmt_index_added(u16 index)
{
1543
	return mgmt_event(MGMT_EV_INDEX_ADDED, index, NULL, 0, NULL);
1544 1545 1546 1547
}

int mgmt_index_removed(u16 index)
{
1548
	return mgmt_event(MGMT_EV_INDEX_REMOVED, index, NULL, 0, NULL);
1549 1550
}

1551
struct cmd_lookup {
1552
	u8 val;
1553 1554 1555
	struct sock *sk;
};

1556
static void mode_rsp(struct pending_cmd *cmd, void *data)
1557
{
1558
	struct mgmt_mode *cp = cmd->param;
1559
	struct cmd_lookup *match = data;
1560

1561
	if (cp->val != match->val)
1562 1563
		return;

1564
	send_mode_rsp(cmd->sk, cmd->opcode, cmd->index, cp->val);
1565 1566 1567 1568 1569 1570 1571 1572 1573

	list_del(&cmd->list);

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

	mgmt_pending_free(cmd);
1574
}
1575 1576 1577

int mgmt_powered(u16 index, u8 powered)
{
1578
	struct mgmt_mode ev;
1579
	struct cmd_lookup match = { powered, NULL };
1580
	int ret;
1581

1582
	mgmt_pending_foreach(MGMT_OP_SET_POWERED, index, mode_rsp, &match);
1583

1584
	ev.val = powered;
1585

1586
	ret = mgmt_event(MGMT_EV_POWERED, index, &ev, sizeof(ev), match.sk);
1587 1588 1589 1590 1591

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

	return ret;
1592
}
1593 1594 1595

int mgmt_discoverable(u16 index, u8 discoverable)
{
1596
	struct mgmt_mode ev;
1597 1598 1599
	struct cmd_lookup match = { discoverable, NULL };
	int ret;

1600
	mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, index, mode_rsp, &match);
1601 1602

	ev.val = discoverable;
1603

1604 1605
	ret = mgmt_event(MGMT_EV_DISCOVERABLE, index, &ev, sizeof(ev),
								match.sk);
1606 1607 1608 1609 1610 1611

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

	return ret;
}
1612 1613 1614

int mgmt_connectable(u16 index, u8 connectable)
{
1615
	struct mgmt_mode ev;
1616 1617 1618
	struct cmd_lookup match = { connectable, NULL };
	int ret;

1619
	mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, index, mode_rsp, &match);
1620

1621
	ev.val = connectable;
1622

1623
	ret = mgmt_event(MGMT_EV_CONNECTABLE, index, &ev, sizeof(ev), match.sk);
1624 1625 1626 1627 1628 1629

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

	return ret;
}
1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642

int mgmt_new_key(u16 index, struct link_key *key, u8 old_key_type)
{
	struct mgmt_ev_new_key ev;

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

	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;
	ev.old_key_type = old_key_type;

1643
	return mgmt_event(MGMT_EV_NEW_KEY, index, &ev, sizeof(ev), NULL);
1644
}
1645 1646 1647 1648 1649 1650 1651

int mgmt_connected(u16 index, bdaddr_t *bdaddr)
{
	struct mgmt_ev_connected ev;

	bacpy(&ev.bdaddr, bdaddr);

1652
	return mgmt_event(MGMT_EV_CONNECTED, index, &ev, sizeof(ev), NULL);
1653 1654
}

1655 1656
static void disconnect_rsp(struct pending_cmd *cmd, void *data)
{
1657
	struct mgmt_cp_disconnect *cp = cmd->param;
1658
	struct sock **sk = data;
1659
	struct mgmt_rp_disconnect rp;
1660

1661
	bacpy(&rp.bdaddr, &cp->bdaddr);
1662

1663
	cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, &rp, sizeof(rp));
1664 1665 1666 1667

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

1668
	mgmt_pending_remove(cmd);
1669 1670
}

1671 1672 1673
int mgmt_disconnected(u16 index, bdaddr_t *bdaddr)
{
	struct mgmt_ev_disconnected ev;
1674 1675 1676 1677
	struct sock *sk = NULL;
	int err;

	mgmt_pending_foreach(MGMT_OP_DISCONNECT, index, disconnect_rsp, &sk);
1678 1679 1680

	bacpy(&ev.bdaddr, bdaddr);

1681
	err = mgmt_event(MGMT_EV_DISCONNECTED, index, &ev, sizeof(ev), sk);
1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697

	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;

1698
	err = cmd_status(cmd->sk, index, MGMT_OP_DISCONNECT, EIO);
1699

1700
	mgmt_pending_remove(cmd);
1701 1702

	return err;
1703
}
1704 1705 1706 1707 1708 1709 1710 1711

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

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

1712
	return mgmt_event(MGMT_EV_CONNECT_FAILED, index, &ev, sizeof(ev), NULL);
1713
}
1714 1715 1716 1717 1718 1719 1720

int mgmt_pin_code_request(u16 index, bdaddr_t *bdaddr)
{
	struct mgmt_ev_pin_code_request ev;

	bacpy(&ev.bdaddr, bdaddr);

1721 1722
	return mgmt_event(MGMT_EV_PIN_CODE_REQUEST, index, &ev, sizeof(ev),
									NULL);
1723 1724 1725 1726 1727
}

int mgmt_pin_code_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
{
	struct pending_cmd *cmd;
1728
	struct mgmt_rp_pin_code_reply rp;
1729 1730 1731 1732 1733 1734
	int err;

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

1735 1736 1737
	bacpy(&rp.bdaddr, bdaddr);
	rp.status = status;

1738 1739
	err = cmd_complete(cmd->sk, index, MGMT_OP_PIN_CODE_REPLY, &rp,
								sizeof(rp));
1740

1741
	mgmt_pending_remove(cmd);
1742 1743 1744 1745 1746 1747 1748

	return err;
}

int mgmt_pin_code_neg_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
{
	struct pending_cmd *cmd;
1749
	struct mgmt_rp_pin_code_reply rp;
1750 1751 1752 1753 1754 1755
	int err;

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

1756 1757 1758
	bacpy(&rp.bdaddr, bdaddr);
	rp.status = status;

1759 1760
	err = cmd_complete(cmd->sk, index, MGMT_OP_PIN_CODE_NEG_REPLY, &rp,
								sizeof(rp));
1761

1762
	mgmt_pending_remove(cmd);
1763 1764 1765

	return err;
}
1766 1767 1768 1769 1770 1771 1772 1773 1774 1775

int mgmt_user_confirm_request(u16 index, bdaddr_t *bdaddr, __le32 value)
{
	struct mgmt_ev_user_confirm_request ev;

	BT_DBG("hci%u", index);

	bacpy(&ev.bdaddr, bdaddr);
	put_unaligned_le32(value, &ev.value);

1776 1777
	return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, index, &ev, sizeof(ev),
									NULL);
1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792
}

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;
1793
	err = cmd_complete(cmd->sk, index, opcode, &rp, sizeof(rp));
1794

1795
	mgmt_pending_remove(cmd);
1796 1797 1798 1799 1800 1801 1802 1803 1804 1805

	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);
}

1806
int mgmt_user_confirm_neg_reply_complete(u16 index, bdaddr_t *bdaddr, u8 status)
1807 1808 1809 1810
{
	return confirm_reply_complete(index, bdaddr, status,
					MGMT_OP_USER_CONFIRM_NEG_REPLY);
}
1811 1812 1813 1814 1815 1816 1817 1818

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

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

1819
	return mgmt_event(MGMT_EV_AUTH_FAILED, index, &ev, sizeof(ev), NULL);
1820
}
1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853

int mgmt_set_local_name_complete(u16 index, u8 *name, u8 status)
{
	struct pending_cmd *cmd;
	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;
	}

	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;
}
1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883

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;
}