mgmt.c 51.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
struct pending_cmd {
	struct list_head list;
39
	u16 opcode;
40
	int index;
41
	void *param;
42
	struct sock *sk;
43
	void *user_data;
44 45
};

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

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

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

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

69 70
	err = sock_queue_rcv_skb(sk, skb);
	if (err < 0)
71 72
		kfree_skb(skb);

73
	return err;
74 75
}

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

	BT_DBG("sock %p", sk);

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

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

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

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

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

102 103
	err = sock_queue_rcv_skb(sk, skb);
	if (err < 0)
104 105
		kfree_skb(skb);

106
	return err;;
107 108
}

109 110 111 112 113 114 115 116 117
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);

118 119
	return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, &rp,
								sizeof(rp));
120 121
}

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

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

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

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

	put_unaligned_le16(count, &rp->num_controllers);

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

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

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

	read_unlock(&hci_dev_list_lock);

163 164
	err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, rp,
									rp_len);
165

166 167 168
	kfree(rp);

	return err;
169 170
}

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

176
	BT_DBG("sock %p hci%u", sk, index);
177

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

182 183
	if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->flags))
		cancel_delayed_work_sync(&hdev->power_off);
184

185
	hci_dev_lock_bh(hdev);
186

187 188
	set_bit(HCI_MGMT, &hdev->flags);

189 190
	memset(&rp, 0, sizeof(rp));

191
	rp.type = hdev->dev_type;
192

193 194 195 196
	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);
197 198

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

205 206 207 208 209 210
	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);
211

212 213
	memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));

214
	hci_dev_unlock_bh(hdev);
215
	hci_dev_put(hdev);
216

217
	return cmd_complete(sk, index, MGMT_OP_READ_INFO, &rp, sizeof(rp));
218 219
}

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

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

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

	cmd->opcode = opcode;
238
	cmd->index = hdev->id;
239

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

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

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

252
	list_add(&cmd->list, &hdev->mgmt_pending);
253

254
	return cmd;
255 256
}

257
static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
258 259 260 261 262
				void (*cb)(struct pending_cmd *cmd, void *data),
				void *data)
{
	struct list_head *p, *n;

263
	list_for_each_safe(p, n, &hdev->mgmt_pending) {
264 265 266 267
		struct pending_cmd *cmd;

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

268
		if (opcode > 0 && cmd->opcode != opcode)
269 270
			continue;

271
		if (hdev && cmd->index != hdev->id)
272 273 274 275 276 277
			continue;

		cb(cmd, data);
	}
}

278
static struct pending_cmd *mgmt_pending_find(u16 opcode, struct hci_dev *hdev)
279
{
280
	struct pending_cmd *cmd;
281

282
	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
283 284 285
		if (cmd->opcode != opcode)
			continue;

286
		if (hdev && cmd->index != hdev->id)
287 288 289 290 291 292 293 294
			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
	hci_dev_lock_bh(hdev);
320 321

	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
	if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
328
		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, hdev, data, len);
333 334
	if (!cmd) {
		err = -ENOMEM;
335
		goto failed;
336
	}
337

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

343
	err = 0;
344 345

failed:
346
	hci_dev_unlock_bh(hdev);
347
	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_cp_set_discoverable *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
	hci_dev_lock_bh(hdev);
372 373

	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
	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
			mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
380
		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, hdev, data, len);
391 392
	if (!cmd) {
		err = -ENOMEM;
393
		goto failed;
394
	}
395 396 397

	scan = SCAN_PAGE;

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

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

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

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

	return err;
}

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

	cp = (void *) data;

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

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

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

437
	hci_dev_lock_bh(hdev);
438 439

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

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

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

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

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

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

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

	return err;
}

477 478
static int mgmt_event(u16 event, struct hci_dev *hdev, void *data,
					u16 data_len, struct sock *skip_sk)
479 480 481 482 483 484 485 486 487 488 489 490
{
	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);
491 492 493 494
	if (hdev)
		hdr->index = cpu_to_le16(hdev->id);
	else
		hdr->index = cpu_to_le16(MGMT_INDEX_NONE);
495 496
	hdr->len = cpu_to_le16(data_len);

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

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

	return 0;
}

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

510
	rp.val = val;
511

512
	return cmd_complete(sk, index, opcode, &rp, sizeof(rp));
513 514
}

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

	cp = (void *) data;

524
	BT_DBG("request for hci%u", index);
525

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

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

533
	hci_dev_lock_bh(hdev);
534 535 536 537 538 539

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

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

	ev.val = cp->val;

546
	err = mgmt_event(MGMT_EV_PAIRABLE, hdev, &ev, sizeof(ev), sk);
547 548

failed:
549
	hci_dev_unlock_bh(hdev);
550 551 552 553 554
	hci_dev_put(hdev);

	return err;
}

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 597 598
#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;
599
	struct bt_uuid *uuid;
600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623
	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 */
624
	list_for_each_entry(uuid, &hdev->uuids, list) {
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 696 697
		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);
}

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

703
	list_for_each_entry(uuid, &hdev->uuids, list)
704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727
		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);
}

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

	cp = (void *) data;

737
	BT_DBG("request for hci%u", index);
738

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

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

746
	hci_dev_lock_bh(hdev);
747 748 749 750 751 752 753 754

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

	memcpy(uuid->uuid, cp->uuid, 16);
755
	uuid->svc_hint = cp->svc_hint;
756 757 758

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

759 760 761 762
	err = update_class(hdev);
	if (err < 0)
		goto failed;

763 764 765 766
	err = update_eir(hdev);
	if (err < 0)
		goto failed;

767
	err = cmd_complete(sk, index, MGMT_OP_ADD_UUID, NULL, 0);
768 769

failed:
770
	hci_dev_unlock_bh(hdev);
771 772 773 774 775
	hci_dev_put(hdev);

	return err;
}

776
static int remove_uuid(struct sock *sk, u16 index, unsigned char *data, u16 len)
777 778
{
	struct list_head *p, *n;
779
	struct mgmt_cp_remove_uuid *cp;
780 781 782 783 784 785
	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;

786
	BT_DBG("request for hci%u", index);
787

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

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

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

	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) {
815
		err = cmd_status(sk, index, MGMT_OP_REMOVE_UUID, ENOENT);
816 817 818
		goto unlock;
	}

819 820 821 822
	err = update_class(hdev);
	if (err < 0)
		goto unlock;

823 824 825 826
	err = update_eir(hdev);
	if (err < 0)
		goto unlock;

827
	err = cmd_complete(sk, index, MGMT_OP_REMOVE_UUID, NULL, 0);
828 829

unlock:
830
	hci_dev_unlock_bh(hdev);
831 832 833 834 835
	hci_dev_put(hdev);

	return err;
}

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

	cp = (void *) data;

845
	BT_DBG("request for hci%u", index);
846

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

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

854
	hci_dev_lock_bh(hdev);
855 856 857 858 859 860 861

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

	err = update_class(hdev);

	if (err == 0)
862
		err = cmd_complete(sk, index, MGMT_OP_SET_DEV_CLASS, NULL, 0);
863

864
	hci_dev_unlock_bh(hdev);
865 866 867 868 869
	hci_dev_put(hdev);

	return err;
}

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

	cp = (void *) data;

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

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

886
	hci_dev_lock_bh(hdev);
887

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

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

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

906

907
	hci_dev_unlock_bh(hdev);
908 909 910 911 912
	hci_dev_put(hdev);

	return err;
}

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

	cp = (void *) data;
922 923

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

926 927
	key_count = get_unaligned_le16(&cp->key_count);

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

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

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

943
	hci_dev_lock_bh(hdev);
944 945 946 947 948 949 950 951 952 953

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

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

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

961
	hci_dev_unlock_bh(hdev);
962 963
	hci_dev_put(hdev);

964
	return 0;
965 966
}

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

	cp = (void *) data;

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

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

984
	hci_dev_lock_bh(hdev);
985 986 987

	err = hci_remove_link_key(hdev, &cp->bdaddr);
	if (err < 0) {
988
		err = cmd_status(sk, index, MGMT_OP_REMOVE_KEYS, -err);
989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002
		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 */
1003
		err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1004 1005 1006
	}

unlock:
1007
	hci_dev_unlock_bh(hdev);
1008 1009 1010 1011 1012
	hci_dev_put(hdev);

	return err;
}

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

	BT_DBG("");

	cp = (void *) data;

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

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

1033
	hci_dev_lock_bh(hdev);
1034 1035

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

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

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

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

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

	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)
1065
		mgmt_pending_remove(cmd);
1066 1067

failed:
1068
	hci_dev_unlock_bh(hdev);
1069 1070 1071 1072 1073
	hci_dev_put(hdev);

	return err;
}

1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085
static u8 link_to_mgmt(u8 link_type)
{
	switch (link_type) {
	case LE_LINK:
		return MGMT_ADDR_LE;
	case ACL_LINK:
		return MGMT_ADDR_BREDR;
	default:
		return MGMT_ADDR_INVALID;
	}
}

1086
static int get_connections(struct sock *sk, u16 index)
1087 1088 1089
{
	struct mgmt_rp_get_connections *rp;
	struct hci_dev *hdev;
1090
	struct hci_conn *c;
1091
	struct list_head *p;
1092
	size_t rp_len;
1093
	u16 count;
1094 1095 1096 1097
	int i, err;

	BT_DBG("");

1098
	hdev = hci_dev_get(index);
1099
	if (!hdev)
1100
		return cmd_status(sk, index, MGMT_OP_GET_CONNECTIONS, ENODEV);
1101

1102
	hci_dev_lock_bh(hdev);
1103 1104 1105 1106 1107 1108

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

1109
	rp_len = sizeof(*rp) + (count * sizeof(struct mgmt_addr_info));
1110 1111
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
1112 1113 1114 1115 1116 1117 1118
		err = -ENOMEM;
		goto unlock;
	}

	put_unaligned_le16(count, &rp->conn_count);

	i = 0;
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
		bacpy(&rp->addr[i].bdaddr, &c->dst);
		rp->addr[i].type = link_to_mgmt(c->type);
		if (rp->addr[i].type == MGMT_ADDR_INVALID)
			continue;
		i++;
	}

	/* Recalculate length in case of filtered SCO connections, etc */
	rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
1129

1130
	err = cmd_complete(sk, index, MGMT_OP_GET_CONNECTIONS, rp, rp_len);
1131 1132

unlock:
1133
	kfree(rp);
1134
	hci_dev_unlock_bh(hdev);
1135 1136 1137 1138
	hci_dev_put(hdev);
	return err;
}

1139 1140 1141 1142 1143 1144
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;

1145
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157
								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;
}

1158 1159
static int pin_code_reply(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
1160 1161
{
	struct hci_dev *hdev;
1162
	struct hci_conn *conn;
1163
	struct mgmt_cp_pin_code_reply *cp;
1164
	struct mgmt_cp_pin_code_neg_reply ncp;
1165
	struct hci_cp_pin_code_reply reply;
1166
	struct pending_cmd *cmd;
1167 1168 1169 1170 1171 1172
	int err;

	BT_DBG("");

	cp = (void *) data;

1173 1174 1175
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, EINVAL);

1176
	hdev = hci_dev_get(index);
1177
	if (!hdev)
1178
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, ENODEV);
1179

1180
	hci_dev_lock_bh(hdev);
1181 1182

	if (!test_bit(HCI_UP, &hdev->flags)) {
1183
		err = cmd_status(sk, index, MGMT_OP_PIN_CODE_REPLY, ENETDOWN);
1184 1185 1186
		goto failed;
	}

1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205
	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;
	}

1206
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
1207 1208
	if (!cmd) {
		err = -ENOMEM;
1209
		goto failed;
1210
	}
1211 1212 1213

	bacpy(&reply.bdaddr, &cp->bdaddr);
	reply.pin_len = cp->pin_len;
1214
	memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
1215 1216 1217

	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
	if (err < 0)
1218
		mgmt_pending_remove(cmd);
1219 1220

failed:
1221
	hci_dev_unlock_bh(hdev);
1222 1223 1224 1225 1226
	hci_dev_put(hdev);

	return err;
}

1227 1228
static int pin_code_neg_reply(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
1229 1230 1231 1232 1233 1234 1235 1236 1237
{
	struct hci_dev *hdev;
	struct mgmt_cp_pin_code_neg_reply *cp;
	int err;

	BT_DBG("");

	cp = (void *) data;

1238 1239 1240 1241
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
									EINVAL);

1242
	hdev = hci_dev_get(index);
1243
	if (!hdev)
1244 1245
		return cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
									ENODEV);
1246

1247
	hci_dev_lock_bh(hdev);
1248 1249

	if (!test_bit(HCI_UP, &hdev->flags)) {
1250 1251
		err = cmd_status(sk, index, MGMT_OP_PIN_CODE_NEG_REPLY,
								ENETDOWN);
1252 1253 1254
		goto failed;
	}

1255
	err = send_pin_code_neg_reply(sk, index, hdev, cp);
1256 1257

failed:
1258
	hci_dev_unlock_bh(hdev);
1259 1260 1261 1262 1263
	hci_dev_put(hdev);

	return err;
}

1264 1265
static int set_io_capability(struct sock *sk, u16 index, unsigned char *data,
									u16 len)
1266 1267 1268 1269 1270 1271 1272 1273
{
	struct hci_dev *hdev;
	struct mgmt_cp_set_io_capability *cp;

	BT_DBG("");

	cp = (void *) data;

1274
	if (len != sizeof(*cp))
1275
		return cmd_status(sk, index, MGMT_OP_SET_IO_CAPABILITY, EINVAL);
1276

1277
	hdev = hci_dev_get(index);
1278
	if (!hdev)
1279
		return cmd_status(sk, index, MGMT_OP_SET_IO_CAPABILITY, ENODEV);
1280

1281
	hci_dev_lock_bh(hdev);
1282 1283 1284 1285

	hdev->io_capability = cp->io_capability;

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

1288
	hci_dev_unlock_bh(hdev);
1289 1290
	hci_dev_put(hdev);

1291
	return cmd_complete(sk, index, MGMT_OP_SET_IO_CAPABILITY, NULL, 0);
1292 1293
}

1294 1295 1296
static inline struct pending_cmd *find_pairing(struct hci_conn *conn)
{
	struct hci_dev *hdev = conn->hdev;
1297
	struct pending_cmd *cmd;
1298

1299
	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322
		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;

1323
	cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, &rp, sizeof(rp));
1324 1325 1326 1327 1328 1329 1330 1331

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

1332
	mgmt_pending_remove(cmd);
1333 1334 1335 1336 1337
}

static void pairing_complete_cb(struct hci_conn *conn, u8 status)
{
	struct pending_cmd *cmd;
1338
	struct hci_dev *hdev = conn->hdev;
1339 1340 1341

	BT_DBG("status %u", status);

1342 1343
	hci_dev_lock_bh(hdev);

1344
	cmd = find_pairing(conn);
1345
	if (!cmd)
1346
		BT_DBG("Unable to find a pending command");
1347 1348
	else
		pairing_complete(cmd, status);
1349

1350
	hci_dev_unlock_bh(hdev);
1351 1352
}

1353
static int pair_device(struct sock *sk, u16 index, unsigned char *data, u16 len)
1354 1355 1356 1357
{
	struct hci_dev *hdev;
	struct mgmt_cp_pair_device *cp;
	struct pending_cmd *cmd;
1358
	struct adv_entry *entry;
1359 1360 1361 1362 1363 1364 1365 1366
	u8 sec_level, auth_type;
	struct hci_conn *conn;
	int err;

	BT_DBG("");

	cp = (void *) data;

1367 1368 1369
	if (len != sizeof(*cp))
		return cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, EINVAL);

1370
	hdev = hci_dev_get(index);
1371
	if (!hdev)
1372
		return cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, ENODEV);
1373

1374
	hci_dev_lock_bh(hdev);
1375

1376 1377
	sec_level = BT_SECURITY_MEDIUM;
	if (cp->io_cap == 0x03)
1378
		auth_type = HCI_AT_DEDICATED_BONDING;
1379
	else
1380 1381
		auth_type = HCI_AT_DEDICATED_BONDING_MITM;

1382 1383 1384 1385 1386 1387 1388 1389
	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);

1390 1391
	if (IS_ERR(conn)) {
		err = PTR_ERR(conn);
1392 1393 1394 1395 1396
		goto unlock;
	}

	if (conn->connect_cfm_cb) {
		hci_conn_put(conn);
1397
		err = cmd_status(sk, index, MGMT_OP_PAIR_DEVICE, EBUSY);
1398 1399 1400
		goto unlock;
	}

1401
	cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
1402 1403 1404 1405 1406 1407
	if (!cmd) {
		err = -ENOMEM;
		hci_conn_put(conn);
		goto unlock;
	}

1408 1409 1410 1411
	/* For LE, just connecting isn't a proof that the pairing finished */
	if (!entry)
		conn->connect_cfm_cb = pairing_complete_cb;

1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423
	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:
1424
	hci_dev_unlock_bh(hdev);
1425 1426 1427 1428 1429
	hci_dev_put(hdev);

	return err;
}

1430 1431
static int user_confirm_reply(struct sock *sk, u16 index, unsigned char *data,
							u16 len, int success)
1432 1433
{
	struct mgmt_cp_user_confirm_reply *cp = (void *) data;
1434
	u16 mgmt_op, hci_op;
1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448
	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;
	}

1449 1450 1451
	if (len != sizeof(*cp))
		return cmd_status(sk, index, mgmt_op, EINVAL);

1452
	hdev = hci_dev_get(index);
1453
	if (!hdev)
1454
		return cmd_status(sk, index, mgmt_op, ENODEV);
1455

1456
	hci_dev_lock_bh(hdev);
1457

1458
	if (!test_bit(HCI_UP, &hdev->flags)) {
1459
		err = cmd_status(sk, index, mgmt_op, ENETDOWN);
1460 1461 1462
		goto failed;
	}

1463
	cmd = mgmt_pending_add(sk, mgmt_op, hdev, data, len);
1464 1465 1466 1467 1468 1469
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

	err = hci_send_cmd(hdev, hci_op, sizeof(cp->bdaddr), &cp->bdaddr);
1470 1471
	if (err < 0)
		mgmt_pending_remove(cmd);
1472 1473

failed:
1474
	hci_dev_unlock_bh(hdev);
1475 1476 1477 1478 1479
	hci_dev_put(hdev);

	return err;
}

1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
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);

1498
	hci_dev_lock_bh(hdev);
1499

1500
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512
	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:
1513
	hci_dev_unlock_bh(hdev);
1514 1515 1516 1517 1518
	hci_dev_put(hdev);

	return err;
}

1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531
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);

1532
	hci_dev_lock_bh(hdev);
1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545

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

1546
	if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
1547 1548 1549 1550
		err = cmd_status(sk, index, MGMT_OP_READ_LOCAL_OOB_DATA, EBUSY);
		goto unlock;
	}

1551
	cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
	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:
1562
	hci_dev_unlock_bh(hdev);
1563 1564 1565 1566 1567
	hci_dev_put(hdev);

	return err;
}

1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585
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);

1586
	hci_dev_lock_bh(hdev);
1587 1588 1589 1590 1591 1592 1593 1594 1595

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

1596
	hci_dev_unlock_bh(hdev);
1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619
	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);

1620
	hci_dev_lock_bh(hdev);
1621 1622 1623 1624 1625 1626 1627 1628 1629

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

1630
	hci_dev_unlock_bh(hdev);
1631 1632 1633 1634 1635
	hci_dev_put(hdev);

	return err;
}

1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649
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);

1650 1651 1652 1653 1654
	if (!test_bit(HCI_UP, &hdev->flags)) {
		err = cmd_status(sk, index, MGMT_OP_START_DISCOVERY, ENETDOWN);
		goto failed;
	}

1655
	cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, NULL, 0);
1656 1657 1658 1659 1660
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

A
Andre Guedes 已提交
1661
	err = hci_do_inquiry(hdev, INQUIRY_LEN_BREDR);
1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
	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);

1686
	cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, NULL, 0);
1687 1688 1689 1690 1691
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

1692
	err = hci_cancel_inquiry(hdev);
1693 1694 1695 1696 1697 1698 1699 1700 1701 1702
	if (err < 0)
		mgmt_pending_remove(cmd);

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

	return err;
}

1703 1704 1705 1706
static int block_device(struct sock *sk, u16 index, unsigned char *data,
								u16 len)
{
	struct hci_dev *hdev;
1707
	struct mgmt_cp_block_device *cp = (void *) data;
1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720
	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);

1721 1722
	hci_dev_lock_bh(hdev);

1723 1724 1725 1726 1727 1728
	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);
1729 1730

	hci_dev_unlock_bh(hdev);
1731 1732 1733 1734 1735 1736 1737 1738 1739
	hci_dev_put(hdev);

	return err;
}

static int unblock_device(struct sock *sk, u16 index, unsigned char *data,
								u16 len)
{
	struct hci_dev *hdev;
1740
	struct mgmt_cp_unblock_device *cp = (void *) data;
1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753
	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);

1754 1755
	hci_dev_lock_bh(hdev);

1756 1757 1758 1759 1760 1761 1762
	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);
1763 1764

	hci_dev_unlock_bh(hdev);
1765 1766 1767 1768 1769
	hci_dev_put(hdev);

	return err;
}

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 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825
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;
}

1826 1827 1828 1829
int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
{
	unsigned char *buf;
	struct mgmt_hdr *hdr;
1830
	u16 opcode, index, len;
1831 1832 1833 1834 1835 1836 1837
	int err;

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

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

1838
	buf = kmalloc(msglen, GFP_KERNEL);
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848
	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);
1849
	index = get_unaligned_le16(&hdr->index);
1850 1851 1852 1853 1854 1855 1856 1857
	len = get_unaligned_le16(&hdr->len);

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

	switch (opcode) {
1858 1859 1860
	case MGMT_OP_READ_VERSION:
		err = read_version(sk);
		break;
1861 1862 1863
	case MGMT_OP_READ_INDEX_LIST:
		err = read_index_list(sk);
		break;
1864
	case MGMT_OP_READ_INFO:
1865
		err = read_controller_info(sk, index);
1866
		break;
1867
	case MGMT_OP_SET_POWERED:
1868
		err = set_powered(sk, index, buf + sizeof(*hdr), len);
1869
		break;
1870
	case MGMT_OP_SET_DISCOVERABLE:
1871
		err = set_discoverable(sk, index, buf + sizeof(*hdr), len);
1872
		break;
1873
	case MGMT_OP_SET_CONNECTABLE:
1874
		err = set_connectable(sk, index, buf + sizeof(*hdr), len);
1875
		break;
1876
	case MGMT_OP_SET_PAIRABLE:
1877
		err = set_pairable(sk, index, buf + sizeof(*hdr), len);
1878
		break;
1879
	case MGMT_OP_ADD_UUID:
1880
		err = add_uuid(sk, index, buf + sizeof(*hdr), len);
1881 1882
		break;
	case MGMT_OP_REMOVE_UUID:
1883
		err = remove_uuid(sk, index, buf + sizeof(*hdr), len);
1884
		break;
1885
	case MGMT_OP_SET_DEV_CLASS:
1886
		err = set_dev_class(sk, index, buf + sizeof(*hdr), len);
1887 1888
		break;
	case MGMT_OP_SET_SERVICE_CACHE:
1889
		err = set_service_cache(sk, index, buf + sizeof(*hdr), len);
1890
		break;
1891 1892
	case MGMT_OP_LOAD_LINK_KEYS:
		err = load_link_keys(sk, index, buf + sizeof(*hdr), len);
1893
		break;
1894 1895
	case MGMT_OP_REMOVE_KEYS:
		err = remove_keys(sk, index, buf + sizeof(*hdr), len);
1896
		break;
1897
	case MGMT_OP_DISCONNECT:
1898
		err = disconnect(sk, index, buf + sizeof(*hdr), len);
1899
		break;
1900
	case MGMT_OP_GET_CONNECTIONS:
1901
		err = get_connections(sk, index);
1902
		break;
1903
	case MGMT_OP_PIN_CODE_REPLY:
1904
		err = pin_code_reply(sk, index, buf + sizeof(*hdr), len);
1905 1906
		break;
	case MGMT_OP_PIN_CODE_NEG_REPLY:
1907
		err = pin_code_neg_reply(sk, index, buf + sizeof(*hdr), len);
1908
		break;
1909
	case MGMT_OP_SET_IO_CAPABILITY:
1910
		err = set_io_capability(sk, index, buf + sizeof(*hdr), len);
1911
		break;
1912
	case MGMT_OP_PAIR_DEVICE:
1913
		err = pair_device(sk, index, buf + sizeof(*hdr), len);
1914
		break;
1915
	case MGMT_OP_USER_CONFIRM_REPLY:
1916
		err = user_confirm_reply(sk, index, buf + sizeof(*hdr), len, 1);
1917 1918
		break;
	case MGMT_OP_USER_CONFIRM_NEG_REPLY:
1919
		err = user_confirm_reply(sk, index, buf + sizeof(*hdr), len, 0);
1920
		break;
1921 1922 1923
	case MGMT_OP_SET_LOCAL_NAME:
		err = set_local_name(sk, index, buf + sizeof(*hdr), len);
		break;
1924 1925 1926
	case MGMT_OP_READ_LOCAL_OOB_DATA:
		err = read_local_oob_data(sk, index);
		break;
1927 1928 1929 1930 1931 1932 1933
	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;
1934 1935 1936 1937 1938 1939
	case MGMT_OP_START_DISCOVERY:
		err = start_discovery(sk, index);
		break;
	case MGMT_OP_STOP_DISCOVERY:
		err = stop_discovery(sk, index);
		break;
1940 1941 1942 1943 1944 1945
	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;
1946 1947 1948 1949
	case MGMT_OP_SET_FAST_CONNECTABLE:
		err = set_fast_connectable(sk, index, buf + sizeof(*hdr),
								len);
		break;
1950 1951
	default:
		BT_DBG("Unknown op %u", opcode);
1952
		err = cmd_status(sk, index, opcode, 0x01);
1953 1954 1955
		break;
	}

1956 1957 1958
	if (err < 0)
		goto done;

1959 1960 1961 1962 1963 1964
	err = msglen;

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

1966 1967 1968 1969 1970 1971 1972 1973
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);
}

1974
int mgmt_index_added(struct hci_dev *hdev)
1975
{
1976
	return mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
1977 1978
}

1979
int mgmt_index_removed(struct hci_dev *hdev)
1980
{
1981 1982
	u8 status = ENODEV;

1983
	mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
1984

1985
	return mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
1986 1987
}

1988
struct cmd_lookup {
1989
	u8 val;
1990 1991 1992
	struct sock *sk;
};

1993
static void mode_rsp(struct pending_cmd *cmd, void *data)
1994
{
1995
	struct mgmt_mode *cp = cmd->param;
1996
	struct cmd_lookup *match = data;
1997

1998
	if (cp->val != match->val)
1999 2000
		return;

2001
	send_mode_rsp(cmd->sk, cmd->opcode, cmd->index, cp->val);
2002 2003 2004 2005 2006 2007 2008 2009 2010

	list_del(&cmd->list);

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

	mgmt_pending_free(cmd);
2011
}
2012

2013
int mgmt_powered(struct hci_dev *hdev, u8 powered)
2014
{
2015
	struct mgmt_mode ev;
2016
	struct cmd_lookup match = { powered, NULL };
2017
	int ret;
2018

2019
	mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, mode_rsp, &match);
2020

2021 2022
	if (!powered) {
		u8 status = ENETDOWN;
2023
		mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
2024 2025
	}

2026
	ev.val = powered;
2027

2028
	ret = mgmt_event(MGMT_EV_POWERED, hdev, &ev, sizeof(ev), match.sk);
2029 2030 2031 2032 2033

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

	return ret;
2034
}
2035

2036
int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
2037
{
2038
	struct mgmt_mode ev;
2039 2040 2041
	struct cmd_lookup match = { discoverable, NULL };
	int ret;

2042
	mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev, mode_rsp, &match);
2043 2044

	ev.val = discoverable;
2045

2046
	ret = mgmt_event(MGMT_EV_DISCOVERABLE, hdev, &ev, sizeof(ev),
2047
								match.sk);
2048 2049 2050 2051 2052 2053

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

	return ret;
}
2054

2055
int mgmt_connectable(struct hci_dev *hdev, u8 connectable)
2056
{
2057
	struct mgmt_mode ev;
2058 2059 2060
	struct cmd_lookup match = { connectable, NULL };
	int ret;

2061
	mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev, mode_rsp, &match);
2062

2063
	ev.val = connectable;
2064

2065
	ret = mgmt_event(MGMT_EV_CONNECTABLE, hdev, &ev, sizeof(ev), match.sk);
2066 2067 2068 2069 2070 2071

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

	return ret;
}
2072

2073
int mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
2074 2075
{
	if (scan & SCAN_PAGE)
2076
		mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev,
2077 2078 2079
						cmd_status_rsp, &status);

	if (scan & SCAN_INQUIRY)
2080
		mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev,
2081 2082 2083 2084 2085
						cmd_status_rsp, &status);

	return 0;
}

2086 2087
int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
								u8 persistent)
2088
{
2089
	struct mgmt_ev_new_link_key ev;
2090

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

2093 2094 2095 2096 2097
	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;
2098

2099
	return mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
2100
}
2101

2102
int mgmt_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type)
2103
{
2104
	struct mgmt_addr_info ev;
2105 2106

	bacpy(&ev.bdaddr, bdaddr);
2107
	ev.type = link_to_mgmt(link_type);
2108

2109
	return mgmt_event(MGMT_EV_CONNECTED, hdev, &ev, sizeof(ev), NULL);
2110 2111
}

2112 2113
static void disconnect_rsp(struct pending_cmd *cmd, void *data)
{
2114
	struct mgmt_cp_disconnect *cp = cmd->param;
2115
	struct sock **sk = data;
2116
	struct mgmt_rp_disconnect rp;
2117

2118
	bacpy(&rp.bdaddr, &cp->bdaddr);
2119

2120
	cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, &rp, sizeof(rp));
2121 2122 2123 2124

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

2125
	mgmt_pending_remove(cmd);
2126 2127
}

2128
int mgmt_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
2129
{
2130
	struct mgmt_addr_info ev;
2131 2132 2133
	struct sock *sk = NULL;
	int err;

2134
	mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
2135 2136

	bacpy(&ev.bdaddr, bdaddr);
2137
	ev.type = link_to_mgmt(type);
2138

2139
	err = mgmt_event(MGMT_EV_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
2140 2141 2142 2143 2144 2145 2146

	if (sk)
		sock_put(sk);

	return err;
}

2147
int mgmt_disconnect_failed(struct hci_dev *hdev)
2148 2149 2150 2151
{
	struct pending_cmd *cmd;
	int err;

2152
	cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
2153 2154 2155
	if (!cmd)
		return -ENOENT;

2156
	err = cmd_status(cmd->sk, hdev->id, MGMT_OP_DISCONNECT, EIO);
2157

2158
	mgmt_pending_remove(cmd);
2159 2160

	return err;
2161
}
2162

2163 2164
int mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type,
								u8 status)
2165 2166 2167
{
	struct mgmt_ev_connect_failed ev;

2168 2169
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_mgmt(type);
2170 2171
	ev.status = status;

2172
	return mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
2173
}
2174

2175
int mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
2176 2177 2178 2179
{
	struct mgmt_ev_pin_code_request ev;

	bacpy(&ev.bdaddr, bdaddr);
2180
	ev.secure = secure;
2181

2182
	return mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev),
2183
									NULL);
2184 2185
}

2186 2187
int mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
								u8 status)
2188 2189
{
	struct pending_cmd *cmd;
2190
	struct mgmt_rp_pin_code_reply rp;
2191 2192
	int err;

2193
	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
2194 2195 2196
	if (!cmd)
		return -ENOENT;

2197 2198 2199
	bacpy(&rp.bdaddr, bdaddr);
	rp.status = status;

2200
	err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY, &rp,
2201
								sizeof(rp));
2202

2203
	mgmt_pending_remove(cmd);
2204 2205 2206 2207

	return err;
}

2208 2209
int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
								u8 status)
2210 2211
{
	struct pending_cmd *cmd;
2212
	struct mgmt_rp_pin_code_reply rp;
2213 2214
	int err;

2215
	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
2216 2217 2218
	if (!cmd)
		return -ENOENT;

2219 2220 2221
	bacpy(&rp.bdaddr, bdaddr);
	rp.status = status;

2222
	err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY, &rp,
2223
								sizeof(rp));
2224

2225
	mgmt_pending_remove(cmd);
2226 2227 2228

	return err;
}
2229

2230 2231
int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
						__le32 value, u8 confirm_hint)
2232 2233 2234
{
	struct mgmt_ev_user_confirm_request ev;

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

	bacpy(&ev.bdaddr, bdaddr);
2238
	ev.confirm_hint = confirm_hint;
2239 2240
	put_unaligned_le32(value, &ev.value);

2241
	return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
2242
									NULL);
2243 2244
}

2245 2246
static int confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
							u8 status, u8 opcode)
2247 2248 2249 2250 2251
{
	struct pending_cmd *cmd;
	struct mgmt_rp_user_confirm_reply rp;
	int err;

2252
	cmd = mgmt_pending_find(opcode, hdev);
2253 2254 2255 2256 2257
	if (!cmd)
		return -ENOENT;

	bacpy(&rp.bdaddr, bdaddr);
	rp.status = status;
2258
	err = cmd_complete(cmd->sk, hdev->id, opcode, &rp, sizeof(rp));
2259

2260
	mgmt_pending_remove(cmd);
2261 2262 2263 2264

	return err;
}

2265 2266
int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
								u8 status)
2267
{
2268
	return confirm_reply_complete(hdev, bdaddr, status,
2269 2270 2271
						MGMT_OP_USER_CONFIRM_REPLY);
}

2272 2273
int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev,
						bdaddr_t *bdaddr, u8 status)
2274
{
2275
	return confirm_reply_complete(hdev, bdaddr, status,
2276 2277
					MGMT_OP_USER_CONFIRM_NEG_REPLY);
}
2278

2279
int mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 status)
2280 2281 2282 2283 2284 2285
{
	struct mgmt_ev_auth_failed ev;

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

2286
	return mgmt_event(MGMT_EV_AUTH_FAILED, hdev, &ev, sizeof(ev), NULL);
2287
}
2288

2289
int mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
2290 2291 2292 2293 2294 2295 2296 2297
{
	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);

2298
	cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
2299 2300 2301 2302
	if (!cmd)
		goto send_event;

	if (status) {
2303 2304
		err = cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
									EIO);
2305 2306 2307
		goto failed;
	}

2308
	update_eir(hdev);
2309

2310
	err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, &ev,
2311 2312 2313 2314 2315
								sizeof(ev));
	if (err < 0)
		goto failed;

send_event:
2316
	err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
2317 2318 2319 2320 2321 2322 2323
							cmd ? cmd->sk : NULL);

failed:
	if (cmd)
		mgmt_pending_remove(cmd);
	return err;
}
2324

2325 2326
int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
						u8 *randomizer, u8 status)
2327 2328 2329 2330
{
	struct pending_cmd *cmd;
	int err;

2331
	BT_DBG("%s status %u", hdev->name, status);
2332

2333
	cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
2334 2335 2336 2337
	if (!cmd)
		return -ENOENT;

	if (status) {
2338 2339
		err = cmd_status(cmd->sk, hdev->id,
					MGMT_OP_READ_LOCAL_OOB_DATA, EIO);
2340 2341 2342 2343 2344 2345
	} else {
		struct mgmt_rp_read_local_oob_data rp;

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

2346 2347 2348
		err = cmd_complete(cmd->sk, hdev->id,
						MGMT_OP_READ_LOCAL_OOB_DATA,
						&rp, sizeof(rp));
2349 2350 2351 2352 2353 2354
	}

	mgmt_pending_remove(cmd);

	return err;
}
2355

2356 2357
int mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type,
					u8 *dev_class, s8 rssi, u8 *eir)
2358 2359 2360 2361 2362
{
	struct mgmt_ev_device_found ev;

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

2363 2364
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_mgmt(type);
2365 2366 2367 2368 2369
	ev.rssi = rssi;

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

2370 2371 2372
	if (dev_class)
		memcpy(ev.dev_class, dev_class, sizeof(ev.dev_class));

2373
	return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, &ev, sizeof(ev), NULL);
2374
}
2375

2376
int mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 *name)
2377 2378 2379 2380 2381 2382 2383 2384
{
	struct mgmt_ev_remote_name ev;

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

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

2385
	return mgmt_event(MGMT_EV_REMOTE_NAME, hdev, &ev, sizeof(ev), NULL);
2386
}
2387

2388
int mgmt_inquiry_failed(struct hci_dev *hdev, u8 status)
2389 2390 2391 2392
{
	struct pending_cmd *cmd;
	int err;

2393
	cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
2394 2395 2396
	if (!cmd)
		return -ENOENT;

2397
	err = cmd_status(cmd->sk, hdev->id, cmd->opcode, status);
2398 2399 2400 2401 2402
	mgmt_pending_remove(cmd);

	return err;
}

2403
int mgmt_discovering(struct hci_dev *hdev, u8 discovering)
2404
{
2405 2406 2407
	struct pending_cmd *cmd;

	if (discovering)
2408
		cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
2409
	else
2410
		cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
2411 2412

	if (cmd != NULL) {
2413
		cmd_complete(cmd->sk, hdev->id, cmd->opcode, NULL, 0);
2414 2415 2416
		mgmt_pending_remove(cmd);
	}

2417
	return mgmt_event(MGMT_EV_DISCOVERING, hdev, &discovering,
2418 2419
						sizeof(discovering), NULL);
}
2420

2421
int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr)
2422 2423 2424 2425
{
	struct pending_cmd *cmd;
	struct mgmt_ev_device_blocked ev;

2426
	cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, hdev);
2427 2428 2429

	bacpy(&ev.bdaddr, bdaddr);

2430 2431
	return mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &ev, sizeof(ev),
							cmd ? cmd->sk : NULL);
2432 2433
}

2434
int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr)
2435 2436 2437 2438
{
	struct pending_cmd *cmd;
	struct mgmt_ev_device_unblocked ev;

2439
	cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, hdev);
2440 2441 2442

	bacpy(&ev.bdaddr, bdaddr);

2443 2444
	return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &ev, sizeof(ev),
							cmd ? cmd->sk : NULL);
2445
}