mgmt.c 82.5 KB
Newer Older
1 2
/*
   BlueZ - Bluetooth protocol stack for Linux
3

4
   Copyright (C) 2010  Nokia Corporation
5
   Copyright (C) 2011-2012 Intel Corporation
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26

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

27
#include <linux/kernel.h>
28
#include <linux/uaccess.h>
29
#include <linux/module.h>
30 31 32 33 34
#include <asm/unaligned.h>

#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/hci_core.h>
#include <net/bluetooth/mgmt.h>
35
#include <net/bluetooth/smp.h>
36

37 38 39
bool enable_hs;
bool enable_le;

40 41
#define MGMT_VERSION	1
#define MGMT_REVISION	0
42

43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
static const u16 mgmt_commands[] = {
	MGMT_OP_READ_INDEX_LIST,
	MGMT_OP_READ_INFO,
	MGMT_OP_SET_POWERED,
	MGMT_OP_SET_DISCOVERABLE,
	MGMT_OP_SET_CONNECTABLE,
	MGMT_OP_SET_FAST_CONNECTABLE,
	MGMT_OP_SET_PAIRABLE,
	MGMT_OP_SET_LINK_SECURITY,
	MGMT_OP_SET_SSP,
	MGMT_OP_SET_HS,
	MGMT_OP_SET_LE,
	MGMT_OP_SET_DEV_CLASS,
	MGMT_OP_SET_LOCAL_NAME,
	MGMT_OP_ADD_UUID,
	MGMT_OP_REMOVE_UUID,
	MGMT_OP_LOAD_LINK_KEYS,
	MGMT_OP_LOAD_LONG_TERM_KEYS,
	MGMT_OP_DISCONNECT,
	MGMT_OP_GET_CONNECTIONS,
	MGMT_OP_PIN_CODE_REPLY,
	MGMT_OP_PIN_CODE_NEG_REPLY,
	MGMT_OP_SET_IO_CAPABILITY,
	MGMT_OP_PAIR_DEVICE,
	MGMT_OP_CANCEL_PAIR_DEVICE,
	MGMT_OP_UNPAIR_DEVICE,
	MGMT_OP_USER_CONFIRM_REPLY,
	MGMT_OP_USER_CONFIRM_NEG_REPLY,
	MGMT_OP_USER_PASSKEY_REPLY,
	MGMT_OP_USER_PASSKEY_NEG_REPLY,
	MGMT_OP_READ_LOCAL_OOB_DATA,
	MGMT_OP_ADD_REMOTE_OOB_DATA,
	MGMT_OP_REMOVE_REMOTE_OOB_DATA,
	MGMT_OP_START_DISCOVERY,
	MGMT_OP_STOP_DISCOVERY,
	MGMT_OP_CONFIRM_NAME,
	MGMT_OP_BLOCK_DEVICE,
	MGMT_OP_UNBLOCK_DEVICE,
81
	MGMT_OP_SET_DEVICE_ID,
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
};

static const u16 mgmt_events[] = {
	MGMT_EV_CONTROLLER_ERROR,
	MGMT_EV_INDEX_ADDED,
	MGMT_EV_INDEX_REMOVED,
	MGMT_EV_NEW_SETTINGS,
	MGMT_EV_CLASS_OF_DEV_CHANGED,
	MGMT_EV_LOCAL_NAME_CHANGED,
	MGMT_EV_NEW_LINK_KEY,
	MGMT_EV_NEW_LONG_TERM_KEY,
	MGMT_EV_DEVICE_CONNECTED,
	MGMT_EV_DEVICE_DISCONNECTED,
	MGMT_EV_CONNECT_FAILED,
	MGMT_EV_PIN_CODE_REQUEST,
	MGMT_EV_USER_CONFIRM_REQUEST,
	MGMT_EV_USER_PASSKEY_REQUEST,
	MGMT_EV_AUTH_FAILED,
	MGMT_EV_DEVICE_FOUND,
	MGMT_EV_DISCOVERING,
	MGMT_EV_DEVICE_BLOCKED,
	MGMT_EV_DEVICE_UNBLOCKED,
	MGMT_EV_DEVICE_UNPAIRED,
};

107 108 109 110 111 112 113 114
/*
 * These LE scan and inquiry parameters were chosen according to LE General
 * Discovery Procedure specification.
 */
#define LE_SCAN_TYPE			0x01
#define LE_SCAN_WIN			0x12
#define LE_SCAN_INT			0x12
#define LE_SCAN_TIMEOUT_LE_ONLY		10240	/* TGAP(gen_disc_scan_min) */
115
#define LE_SCAN_TIMEOUT_BREDR_LE	5120	/* TGAP(100)/2 */
116

A
Andre Guedes 已提交
117
#define INQUIRY_LEN_BREDR		0x08	/* TGAP(100) */
118
#define INQUIRY_LEN_BREDR_LE		0x04	/* TGAP(100)/2 */
A
Andre Guedes 已提交
119

120
#define CACHE_TIMEOUT	msecs_to_jiffies(2 * 1000)
121

122 123 124
#define hdev_is_powered(hdev) (test_bit(HCI_UP, &hdev->flags) && \
				!test_bit(HCI_AUTO_OFF, &hdev->dev_flags))

125 126
struct pending_cmd {
	struct list_head list;
127
	u16 opcode;
128
	int index;
129
	void *param;
130
	struct sock *sk;
131
	void *user_data;
132 133
};

134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
/* HCI to MGMT error code conversion table */
static u8 mgmt_status_table[] = {
	MGMT_STATUS_SUCCESS,
	MGMT_STATUS_UNKNOWN_COMMAND,	/* Unknown Command */
	MGMT_STATUS_NOT_CONNECTED,	/* No Connection */
	MGMT_STATUS_FAILED,		/* Hardware Failure */
	MGMT_STATUS_CONNECT_FAILED,	/* Page Timeout */
	MGMT_STATUS_AUTH_FAILED,	/* Authentication Failed */
	MGMT_STATUS_NOT_PAIRED,		/* PIN or Key Missing */
	MGMT_STATUS_NO_RESOURCES,	/* Memory Full */
	MGMT_STATUS_TIMEOUT,		/* Connection Timeout */
	MGMT_STATUS_NO_RESOURCES,	/* Max Number of Connections */
	MGMT_STATUS_NO_RESOURCES,	/* Max Number of SCO Connections */
	MGMT_STATUS_ALREADY_CONNECTED,	/* ACL Connection Exists */
	MGMT_STATUS_BUSY,		/* Command Disallowed */
	MGMT_STATUS_NO_RESOURCES,	/* Rejected Limited Resources */
	MGMT_STATUS_REJECTED,		/* Rejected Security */
	MGMT_STATUS_REJECTED,		/* Rejected Personal */
	MGMT_STATUS_TIMEOUT,		/* Host Timeout */
	MGMT_STATUS_NOT_SUPPORTED,	/* Unsupported Feature */
	MGMT_STATUS_INVALID_PARAMS,	/* Invalid Parameters */
	MGMT_STATUS_DISCONNECTED,	/* OE User Ended Connection */
	MGMT_STATUS_NO_RESOURCES,	/* OE Low Resources */
	MGMT_STATUS_DISCONNECTED,	/* OE Power Off */
	MGMT_STATUS_DISCONNECTED,	/* Connection Terminated */
	MGMT_STATUS_BUSY,		/* Repeated Attempts */
	MGMT_STATUS_REJECTED,		/* Pairing Not Allowed */
	MGMT_STATUS_FAILED,		/* Unknown LMP PDU */
	MGMT_STATUS_NOT_SUPPORTED,	/* Unsupported Remote Feature */
	MGMT_STATUS_REJECTED,		/* SCO Offset Rejected */
	MGMT_STATUS_REJECTED,		/* SCO Interval Rejected */
	MGMT_STATUS_REJECTED,		/* Air Mode Rejected */
	MGMT_STATUS_INVALID_PARAMS,	/* Invalid LMP Parameters */
	MGMT_STATUS_FAILED,		/* Unspecified Error */
	MGMT_STATUS_NOT_SUPPORTED,	/* Unsupported LMP Parameter Value */
	MGMT_STATUS_FAILED,		/* Role Change Not Allowed */
	MGMT_STATUS_TIMEOUT,		/* LMP Response Timeout */
	MGMT_STATUS_FAILED,		/* LMP Error Transaction Collision */
	MGMT_STATUS_FAILED,		/* LMP PDU Not Allowed */
	MGMT_STATUS_REJECTED,		/* Encryption Mode Not Accepted */
	MGMT_STATUS_FAILED,		/* Unit Link Key Used */
	MGMT_STATUS_NOT_SUPPORTED,	/* QoS Not Supported */
	MGMT_STATUS_TIMEOUT,		/* Instant Passed */
	MGMT_STATUS_NOT_SUPPORTED,	/* Pairing Not Supported */
	MGMT_STATUS_FAILED,		/* Transaction Collision */
	MGMT_STATUS_INVALID_PARAMS,	/* Unacceptable Parameter */
	MGMT_STATUS_REJECTED,		/* QoS Rejected */
	MGMT_STATUS_NOT_SUPPORTED,	/* Classification Not Supported */
	MGMT_STATUS_REJECTED,		/* Insufficient Security */
	MGMT_STATUS_INVALID_PARAMS,	/* Parameter Out Of Range */
	MGMT_STATUS_BUSY,		/* Role Switch Pending */
	MGMT_STATUS_FAILED,		/* Slot Violation */
	MGMT_STATUS_FAILED,		/* Role Switch Failed */
	MGMT_STATUS_INVALID_PARAMS,	/* EIR Too Large */
	MGMT_STATUS_NOT_SUPPORTED,	/* Simple Pairing Not Supported */
	MGMT_STATUS_BUSY,		/* Host Busy Pairing */
	MGMT_STATUS_REJECTED,		/* Rejected, No Suitable Channel */
	MGMT_STATUS_BUSY,		/* Controller Busy */
	MGMT_STATUS_INVALID_PARAMS,	/* Unsuitable Connection Interval */
	MGMT_STATUS_TIMEOUT,		/* Directed Advertising Timeout */
	MGMT_STATUS_AUTH_FAILED,	/* Terminated Due to MIC Failure */
	MGMT_STATUS_CONNECT_FAILED,	/* Connection Establishment Failed */
	MGMT_STATUS_CONNECT_FAILED,	/* MAC Connection Failed */
};

static u8 mgmt_status(u8 hci_status)
{
	if (hci_status < ARRAY_SIZE(mgmt_status_table))
		return mgmt_status_table[hci_status];

	return MGMT_STATUS_FAILED;
}

207
static int cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
208 209 210 211
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;
	struct mgmt_ev_cmd_status *ev;
212
	int err;
213

214
	BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
215 216 217 218 219 220 221 222

	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);
223
	hdr->index = cpu_to_le16(index);
224 225 226 227
	hdr->len = cpu_to_le16(sizeof(*ev));

	ev = (void *) skb_put(skb, sizeof(*ev));
	ev->status = status;
228
	ev->opcode = cpu_to_le16(cmd);
229

230 231
	err = sock_queue_rcv_skb(sk, skb);
	if (err < 0)
232 233
		kfree_skb(skb);

234
	return err;
235 236
}

237
static int cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status,
238
			void *rp, size_t rp_len)
239 240 241 242
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;
	struct mgmt_ev_cmd_complete *ev;
243
	int err;
244 245 246

	BT_DBG("sock %p", sk);

247
	skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_ATOMIC);
248 249 250 251 252
	if (!skb)
		return -ENOMEM;

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

253
	hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
254
	hdr->index = cpu_to_le16(index);
255
	hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
256

257
	ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
258
	ev->opcode = cpu_to_le16(cmd);
259
	ev->status = status;
260 261 262

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

264 265
	err = sock_queue_rcv_skb(sk, skb);
	if (err < 0)
266 267
		kfree_skb(skb);

268
	return err;
269 270
}

271 272
static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
			u16 data_len)
273 274 275 276 277 278
{
	struct mgmt_rp_read_version rp;

	BT_DBG("sock %p", sk);

	rp.version = MGMT_VERSION;
279
	rp.revision = __constant_cpu_to_le16(MGMT_REVISION);
280

281
	return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0, &rp,
282
			    sizeof(rp));
283 284
}

285 286
static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 data_len)
287 288
{
	struct mgmt_rp_read_commands *rp;
289 290
	const u16 num_commands = ARRAY_SIZE(mgmt_commands);
	const u16 num_events = ARRAY_SIZE(mgmt_events);
291 292 293 294 295 296 297 298 299 300 301 302
	u16 *opcode;
	size_t rp_size;
	int i, err;

	BT_DBG("sock %p", sk);

	rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));

	rp = kmalloc(rp_size, GFP_KERNEL);
	if (!rp)
		return -ENOMEM;

303 304
	rp->num_commands = __constant_cpu_to_le16(num_commands);
	rp->num_events = __constant_cpu_to_le16(num_events);
305 306 307 308 309 310 311

	for (i = 0, opcode = rp->opcodes; i < num_commands; i++, opcode++)
		put_unaligned_le16(mgmt_commands[i], opcode);

	for (i = 0; i < num_events; i++, opcode++)
		put_unaligned_le16(mgmt_events[i], opcode);

312
	err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0, rp,
313
			   rp_size);
314 315 316 317 318
	kfree(rp);

	return err;
}

319 320
static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
321 322 323
{
	struct mgmt_rp_read_index_list *rp;
	struct list_head *p;
324
	struct hci_dev *d;
325
	size_t rp_len;
326
	u16 count;
327
	int i, err;
328 329 330 331 332 333 334 335 336 337

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

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

338 339 340
	rp_len = sizeof(*rp) + (2 * count);
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
341
		read_unlock(&hci_dev_list_lock);
342
		return -ENOMEM;
343
	}
344

345
	rp->num_controllers = cpu_to_le16(count);
346 347

	i = 0;
348
	list_for_each_entry(d, &hci_dev_list, list) {
349
		if (test_bit(HCI_SETUP, &d->dev_flags))
350 351
			continue;

352
		rp->index[i++] = cpu_to_le16(d->id);
353 354 355 356 357
		BT_DBG("Added hci%u", d->id);
	}

	read_unlock(&hci_dev_list_lock);

358
	err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, 0, rp,
359
			   rp_len);
360

361 362 363
	kfree(rp);

	return err;
364 365
}

366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
static u32 get_supported_settings(struct hci_dev *hdev)
{
	u32 settings = 0;

	settings |= MGMT_SETTING_POWERED;
	settings |= MGMT_SETTING_CONNECTABLE;
	settings |= MGMT_SETTING_FAST_CONNECTABLE;
	settings |= MGMT_SETTING_DISCOVERABLE;
	settings |= MGMT_SETTING_PAIRABLE;

	if (hdev->features[6] & LMP_SIMPLE_PAIR)
		settings |= MGMT_SETTING_SSP;

	if (!(hdev->features[4] & LMP_NO_BREDR)) {
		settings |= MGMT_SETTING_BREDR;
		settings |= MGMT_SETTING_LINK_SECURITY;
	}

384 385 386 387 388 389 390
	if (enable_hs)
		settings |= MGMT_SETTING_HS;

	if (enable_le) {
		if (hdev->features[4] & LMP_LE)
			settings |= MGMT_SETTING_LE;
	}
391 392 393 394 395 396 397 398

	return settings;
}

static u32 get_current_settings(struct hci_dev *hdev)
{
	u32 settings = 0;

399
	if (hdev_is_powered(hdev))
400 401
		settings |= MGMT_SETTING_POWERED;

402
	if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
403 404
		settings |= MGMT_SETTING_CONNECTABLE;

405
	if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
406 407
		settings |= MGMT_SETTING_DISCOVERABLE;

408
	if (test_bit(HCI_PAIRABLE, &hdev->dev_flags))
409 410 411 412 413
		settings |= MGMT_SETTING_PAIRABLE;

	if (!(hdev->features[4] & LMP_NO_BREDR))
		settings |= MGMT_SETTING_BREDR;

414
	if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
415 416
		settings |= MGMT_SETTING_LE;

417
	if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
418 419
		settings |= MGMT_SETTING_LINK_SECURITY;

420
	if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
421 422
		settings |= MGMT_SETTING_SSP;

423 424 425
	if (test_bit(HCI_HS_ENABLED, &hdev->dev_flags))
		settings |= MGMT_SETTING_HS;

426 427 428
	return settings;
}

429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
#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;
	struct bt_uuid *uuid;
	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);
	}

483 484 485 486 487 488 489 490 491
	if (hdev->inq_tx_power) {
		ptr[0] = 2;
		ptr[1] = EIR_TX_POWER;
		ptr[2] = (u8) hdev->inq_tx_power;

		eir_len += 3;
		ptr += 3;
	}

492 493 494 495 496 497 498 499 500 501 502 503 504
	if (hdev->devid_source > 0) {
		ptr[0] = 9;
		ptr[1] = EIR_DEVICE_ID;

		put_unaligned_le16(hdev->devid_source, ptr + 2);
		put_unaligned_le16(hdev->devid_vendor, ptr + 4);
		put_unaligned_le16(hdev->devid_product, ptr + 6);
		put_unaligned_le16(hdev->devid_version, ptr + 8);

		eir_len += 10;
		ptr += 10;
	}

505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560
	memset(uuid16_list, 0, sizeof(uuid16_list));

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

561
	if (!hdev_is_powered(hdev))
562 563
		return 0;

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

567
	if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
568 569
		return 0;

570
	if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
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
		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);
}

static u8 get_service_classes(struct hci_dev *hdev)
{
	struct bt_uuid *uuid;
	u8 val = 0;

	list_for_each_entry(uuid, &hdev->uuids, list)
		val |= uuid->svc_hint;

	return val;
}

static int update_class(struct hci_dev *hdev)
{
	u8 cod[3];
599
	int err;
600 601 602

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

603
	if (!hdev_is_powered(hdev))
604 605
		return 0;

606
	if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
607 608 609 610 611 612 613 614 615
		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;

616 617 618 619 620
	err = hci_send_cmd(hdev, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
	if (err == 0)
		set_bit(HCI_PENDING_CLASS, &hdev->dev_flags);

	return err;
621 622
}

623 624 625
static void service_cache_off(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
626
					    service_cache.work);
627

628
	if (!test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
629 630 631 632 633 634 635 636 637 638
		return;

	hci_dev_lock(hdev);

	update_eir(hdev);
	update_class(hdev);

	hci_dev_unlock(hdev);
}

639
static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
640
{
641
	if (test_and_set_bit(HCI_MGMT, &hdev->dev_flags))
642 643
		return;

644
	INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
645

646 647 648 649 650 651
	/* Non-mgmt controlled devices get this bit set
	 * implicitly so that pairing works for them, however
	 * for mgmt we require user-space to explicitly enable
	 * it
	 */
	clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
652 653
}

654
static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
655
				void *data, u16 data_len)
656
{
657
	struct mgmt_rp_read_info rp;
658

659
	BT_DBG("sock %p %s", sk, hdev->name);
660

661
	hci_dev_lock(hdev);
662

663 664
	memset(&rp, 0, sizeof(rp));

665
	bacpy(&rp.bdaddr, &hdev->bdaddr);
666

667
	rp.version = hdev->hci_ver;
668
	rp.manufacturer = cpu_to_le16(hdev->manufacturer);
669 670 671

	rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
	rp.current_settings = cpu_to_le32(get_current_settings(hdev));
672

673
	memcpy(rp.dev_class, hdev->dev_class, 3);
674

675
	memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
676
	memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
677

678
	hci_dev_unlock(hdev);
679

680
	return cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
681
			    sizeof(rp));
682 683
}

684 685 686
static void mgmt_pending_free(struct pending_cmd *cmd)
{
	sock_put(cmd->sk);
687
	kfree(cmd->param);
688 689 690
	kfree(cmd);
}

691
static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
692 693
					    struct hci_dev *hdev, void *data,
					    u16 len)
694 695 696 697 698
{
	struct pending_cmd *cmd;

	cmd = kmalloc(sizeof(*cmd), GFP_ATOMIC);
	if (!cmd)
699
		return NULL;
700 701

	cmd->opcode = opcode;
702
	cmd->index = hdev->id;
703

704 705
	cmd->param = kmalloc(len, GFP_ATOMIC);
	if (!cmd->param) {
706
		kfree(cmd);
707
		return NULL;
708 709
	}

710 711
	if (data)
		memcpy(cmd->param, data, len);
712 713 714 715

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

716
	list_add(&cmd->list, &hdev->mgmt_pending);
717

718
	return cmd;
719 720
}

721
static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
722 723
				 void (*cb)(struct pending_cmd *cmd, void *data),
				 void *data)
724 725 726
{
	struct list_head *p, *n;

727
	list_for_each_safe(p, n, &hdev->mgmt_pending) {
728 729 730 731
		struct pending_cmd *cmd;

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

732
		if (opcode > 0 && cmd->opcode != opcode)
733 734 735 736 737 738
			continue;

		cb(cmd, data);
	}
}

739
static struct pending_cmd *mgmt_pending_find(u16 opcode, struct hci_dev *hdev)
740
{
741
	struct pending_cmd *cmd;
742

743
	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
744 745
		if (cmd->opcode == opcode)
			return cmd;
746 747 748 749 750
	}

	return NULL;
}

751
static void mgmt_pending_remove(struct pending_cmd *cmd)
752 753 754 755 756
{
	list_del(&cmd->list);
	mgmt_pending_free(cmd);
}

757
static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
758
{
759
	__le32 settings = cpu_to_le32(get_current_settings(hdev));
760

761
	return cmd_complete(sk, hdev->id, opcode, 0, &settings,
762
			    sizeof(settings));
763 764
}

765
static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
766
		       u16 len)
767
{
768
	struct mgmt_mode *cp = data;
769
	struct pending_cmd *cmd;
770
	int err;
771

772
	BT_DBG("request for %s", hdev->name);
773

774
	hci_dev_lock(hdev);
775

776 777 778 779 780 781 782 783 784 785
	if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) {
		cancel_delayed_work(&hdev->power_off);

		if (cp->val) {
			err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
			mgmt_powered(hdev, 1);
			goto failed;
		}
	}

786
	if (!!cp->val == hdev_is_powered(hdev)) {
787
		err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
788 789 790
		goto failed;
	}

791
	if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
792
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
793
				 MGMT_STATUS_BUSY);
794 795 796
		goto failed;
	}

797
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
798 799
	if (!cmd) {
		err = -ENOMEM;
800
		goto failed;
801
	}
802

803
	if (cp->val)
804
		schedule_work(&hdev->power_on);
805
	else
806
		schedule_work(&hdev->power_off.work);
807

808
	err = 0;
809 810

failed:
811
	hci_dev_unlock(hdev);
812
	return err;
813 814
}

815 816
static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 data_len,
		      struct sock *skip_sk)
817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;

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

	hdr = (void *) skb_put(skb, sizeof(*hdr));
	hdr->opcode = cpu_to_le16(event);
	if (hdev)
		hdr->index = cpu_to_le16(hdev->id);
	else
		hdr->index = cpu_to_le16(MGMT_INDEX_NONE);
	hdr->len = cpu_to_le16(data_len);

	if (data)
		memcpy(skb_put(skb, data_len), data, data_len);

836 837 838
	/* Time stamp */
	__net_timestamp(skb);

839 840 841 842 843 844 845 846 847 848 849 850 851 852 853
	hci_send_to_control(skb, skip_sk);
	kfree_skb(skb);

	return 0;
}

static int new_settings(struct hci_dev *hdev, struct sock *skip)
{
	__le32 ev;

	ev = cpu_to_le32(get_current_settings(hdev));

	return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip);
}

854
static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
855
			    u16 len)
856
{
857
	struct mgmt_cp_set_discoverable *cp = data;
858
	struct pending_cmd *cmd;
859
	u16 timeout;
860 861 862
	u8 scan;
	int err;

863
	BT_DBG("request for %s", hdev->name);
864

865 866
	timeout = get_unaligned_le16(&cp->timeout);
	if (!cp->val && timeout > 0)
867
		return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
868
				  MGMT_STATUS_INVALID_PARAMS);
869

870
	hci_dev_lock(hdev);
871

872
	if (!hdev_is_powered(hdev) && timeout > 0) {
873
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
874
				 MGMT_STATUS_NOT_POWERED);
875 876 877
		goto failed;
	}

878 879
	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
			mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
880
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
881
				 MGMT_STATUS_BUSY);
882 883 884
		goto failed;
	}

885
	if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) {
886
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
887
				 MGMT_STATUS_REJECTED);
888 889 890 891
		goto failed;
	}

	if (!hdev_is_powered(hdev)) {
892 893 894 895 896 897 898
		bool changed = false;

		if (!!cp->val != test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
			change_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
			changed = true;
		}

899
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
900 901 902 903 904 905
		if (err < 0)
			goto failed;

		if (changed)
			err = new_settings(hdev, sk);

906 907 908 909
		goto failed;
	}

	if (!!cp->val == test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
910 911 912 913 914 915 916 917 918 919 920
		if (hdev->discov_timeout > 0) {
			cancel_delayed_work(&hdev->discov_off);
			hdev->discov_timeout = 0;
		}

		if (cp->val && timeout > 0) {
			hdev->discov_timeout = timeout;
			queue_delayed_work(hdev->workqueue, &hdev->discov_off,
				msecs_to_jiffies(hdev->discov_timeout * 1000));
		}

921
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
922 923 924
		goto failed;
	}

925
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
926 927
	if (!cmd) {
		err = -ENOMEM;
928
		goto failed;
929
	}
930 931 932

	scan = SCAN_PAGE;

933
	if (cp->val)
934
		scan |= SCAN_INQUIRY;
935
	else
936
		cancel_delayed_work(&hdev->discov_off);
937 938 939

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

942
	if (cp->val)
943
		hdev->discov_timeout = timeout;
944

945
failed:
946
	hci_dev_unlock(hdev);
947 948 949
	return err;
}

950
static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
951
			   u16 len)
952
{
953
	struct mgmt_mode *cp = data;
954
	struct pending_cmd *cmd;
955 956 957
	u8 scan;
	int err;

958
	BT_DBG("request for %s", hdev->name);
959

960
	hci_dev_lock(hdev);
961

962
	if (!hdev_is_powered(hdev)) {
963 964 965 966 967
		bool changed = false;

		if (!!cp->val != test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
			changed = true;

968
		if (cp->val) {
969
			set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
970
		} else {
971 972 973
			clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
			clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
		}
974

975
		err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
976 977 978 979 980 981
		if (err < 0)
			goto failed;

		if (changed)
			err = new_settings(hdev, sk);

982 983 984
		goto failed;
	}

985 986
	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
			mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
987
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
988
				 MGMT_STATUS_BUSY);
989 990 991
		goto failed;
	}

992
	if (!!cp->val == test_bit(HCI_PSCAN, &hdev->flags)) {
993
		err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
994 995 996
		goto failed;
	}

997
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
998 999
	if (!cmd) {
		err = -ENOMEM;
1000
		goto failed;
1001
	}
1002

1003
	if (cp->val) {
1004
		scan = SCAN_PAGE;
1005
	} else {
1006 1007
		scan = 0;

1008 1009 1010 1011 1012
		if (test_bit(HCI_ISCAN, &hdev->flags) &&
						hdev->discov_timeout > 0)
			cancel_delayed_work(&hdev->discov_off);
	}

1013 1014
	err = hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
	if (err < 0)
1015
		mgmt_pending_remove(cmd);
1016 1017

failed:
1018
	hci_dev_unlock(hdev);
1019 1020 1021
	return err;
}

1022
static int set_pairable(struct sock *sk, struct hci_dev *hdev, void *data,
1023
			u16 len)
1024
{
1025
	struct mgmt_mode *cp = data;
1026 1027
	int err;

1028
	BT_DBG("request for %s", hdev->name);
1029

1030
	hci_dev_lock(hdev);
1031 1032

	if (cp->val)
1033
		set_bit(HCI_PAIRABLE, &hdev->dev_flags);
1034
	else
1035
		clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
1036

1037
	err = send_settings_rsp(sk, MGMT_OP_SET_PAIRABLE, hdev);
1038 1039 1040
	if (err < 0)
		goto failed;

1041
	err = new_settings(hdev, sk);
1042 1043

failed:
1044
	hci_dev_unlock(hdev);
1045 1046 1047
	return err;
}

1048 1049
static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
1050 1051 1052
{
	struct mgmt_mode *cp = data;
	struct pending_cmd *cmd;
1053
	u8 val;
1054 1055
	int err;

1056
	BT_DBG("request for %s", hdev->name);
1057 1058 1059

	hci_dev_lock(hdev);

1060
	if (!hdev_is_powered(hdev)) {
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075
		bool changed = false;

		if (!!cp->val != test_bit(HCI_LINK_SECURITY,
							&hdev->dev_flags)) {
			change_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
			changed = true;
		}

		err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
		if (err < 0)
			goto failed;

		if (changed)
			err = new_settings(hdev, sk);

1076 1077 1078 1079
		goto failed;
	}

	if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
1080
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1081
				 MGMT_STATUS_BUSY);
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
		goto failed;
	}

	val = !!cp->val;

	if (test_bit(HCI_AUTH, &hdev->flags) == val) {
		err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
		goto failed;
	}

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

	err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

1109
static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
1110 1111 1112
{
	struct mgmt_mode *cp = data;
	struct pending_cmd *cmd;
1113
	u8 val;
1114 1115
	int err;

1116
	BT_DBG("request for %s", hdev->name);
1117 1118 1119

	hci_dev_lock(hdev);

1120
	if (!(hdev->features[6] & LMP_SIMPLE_PAIR)) {
1121
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1122
				 MGMT_STATUS_NOT_SUPPORTED);
1123 1124 1125
		goto failed;
	}

1126 1127
	val = !!cp->val;

1128
	if (!hdev_is_powered(hdev)) {
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
		bool changed = false;

		if (val != test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
			change_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
			changed = true;
		}

		err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
		if (err < 0)
			goto failed;

		if (changed)
			err = new_settings(hdev, sk);

1143 1144 1145 1146
		goto failed;
	}

	if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev)) {
1147 1148
	     err = cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
			      MGMT_STATUS_BUSY);
1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173
		goto failed;
	}

	if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) == val) {
		err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
		goto failed;
	}

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

	err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, sizeof(val), &val);
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

1174
static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
1175 1176 1177
{
	struct mgmt_mode *cp = data;

1178
	BT_DBG("request for %s", hdev->name);
1179

1180 1181
	if (!enable_hs)
		return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1182
				  MGMT_STATUS_NOT_SUPPORTED);
1183 1184 1185 1186 1187 1188

	if (cp->val)
		set_bit(HCI_HS_ENABLED, &hdev->dev_flags);
	else
		clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);

1189
	return send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
1190 1191
}

1192
static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
1193 1194 1195 1196 1197
{
	struct mgmt_mode *cp = data;
	struct hci_cp_write_le_host_supported hci_cp;
	struct pending_cmd *cmd;
	int err;
1198
	u8 val, enabled;
1199

1200
	BT_DBG("request for %s", hdev->name);
1201

1202 1203
	hci_dev_lock(hdev);

1204
	if (!enable_le || !(hdev->features[4] & LMP_LE)) {
1205
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1206
				 MGMT_STATUS_NOT_SUPPORTED);
1207
		goto unlock;
1208 1209 1210
	}

	val = !!cp->val;
1211
	enabled = !!(hdev->host_features[0] & LMP_HOST_LE);
1212

1213
	if (!hdev_is_powered(hdev) || val == enabled) {
1214 1215 1216 1217 1218 1219 1220 1221 1222
		bool changed = false;

		if (val != test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
			change_bit(HCI_LE_ENABLED, &hdev->dev_flags);
			changed = true;
		}

		err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
		if (err < 0)
1223
			goto unlock;
1224 1225 1226 1227

		if (changed)
			err = new_settings(hdev, sk);

1228
		goto unlock;
1229 1230 1231
	}

	if (mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
1232
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1233
				 MGMT_STATUS_BUSY);
1234
		goto unlock;
1235 1236 1237 1238 1239
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
1240
		goto unlock;
1241 1242 1243 1244 1245 1246 1247 1248 1249
	}

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

	if (val) {
		hci_cp.le = val;
		hci_cp.simul = !!(hdev->features[6] & LMP_SIMUL_LE_BR);
	}

1250 1251
	err = hci_send_cmd(hdev, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
			   &hci_cp);
1252 1253
	if (err < 0) {
		mgmt_pending_remove(cmd);
1254
		goto unlock;
1255 1256
	}

1257 1258
unlock:
	hci_dev_unlock(hdev);
1259 1260 1261
	return err;
}

1262
static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
1263
{
1264
	struct mgmt_cp_add_uuid *cp = data;
1265
	struct pending_cmd *cmd;
1266 1267 1268
	struct bt_uuid *uuid;
	int err;

1269
	BT_DBG("request for %s", hdev->name);
1270

1271
	hci_dev_lock(hdev);
1272

1273
	if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
1274
		err = cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
1275
				 MGMT_STATUS_BUSY);
1276 1277 1278
		goto failed;
	}

1279 1280 1281 1282 1283 1284 1285
	uuid = kmalloc(sizeof(*uuid), GFP_ATOMIC);
	if (!uuid) {
		err = -ENOMEM;
		goto failed;
	}

	memcpy(uuid->uuid, cp->uuid, 16);
1286
	uuid->svc_hint = cp->svc_hint;
1287 1288 1289

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

1290 1291 1292 1293
	err = update_class(hdev);
	if (err < 0)
		goto failed;

1294 1295 1296 1297
	err = update_eir(hdev);
	if (err < 0)
		goto failed;

1298
	if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
1299
		err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
1300
				   hdev->dev_class, 3);
1301 1302 1303 1304 1305 1306 1307 1308
		goto failed;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}
1309 1310

failed:
1311
	hci_dev_unlock(hdev);
1312 1313 1314
	return err;
}

1315 1316 1317 1318 1319 1320
static bool enable_service_cache(struct hci_dev *hdev)
{
	if (!hdev_is_powered(hdev))
		return false;

	if (!test_and_set_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
1321
		schedule_delayed_work(&hdev->service_cache, CACHE_TIMEOUT);
1322 1323 1324 1325 1326 1327
		return true;
	}

	return false;
}

1328 1329
static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
								u16 len)
1330
{
1331
	struct mgmt_cp_remove_uuid *cp = data;
1332
	struct pending_cmd *cmd;
1333 1334 1335 1336
	struct list_head *p, *n;
	u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
	int err, found;

1337
	BT_DBG("request for %s", hdev->name);
1338

1339
	hci_dev_lock(hdev);
1340

1341
	if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
1342
		err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
1343
				 MGMT_STATUS_BUSY);
1344 1345 1346
		goto unlock;
	}

1347 1348
	if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
		err = hci_uuids_clear(hdev);
1349

1350
		if (enable_service_cache(hdev)) {
1351
			err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID,
1352
					   0, hdev->dev_class, 3);
1353 1354
			goto unlock;
		}
1355

1356
		goto update_class;
1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371
	}

	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) {
1372
		err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
1373
				 MGMT_STATUS_INVALID_PARAMS);
1374 1375 1376
		goto unlock;
	}

1377
update_class:
1378 1379 1380 1381
	err = update_class(hdev);
	if (err < 0)
		goto unlock;

1382 1383 1384 1385
	err = update_eir(hdev);
	if (err < 0)
		goto unlock;

1386
	if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
1387
		err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
1388
				   hdev->dev_class, 3);
1389 1390 1391 1392 1393 1394 1395 1396
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}
1397 1398

unlock:
1399
	hci_dev_unlock(hdev);
1400 1401 1402
	return err;
}

1403
static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
1404
			 u16 len)
1405
{
1406
	struct mgmt_cp_set_dev_class *cp = data;
1407
	struct pending_cmd *cmd;
1408 1409
	int err;

1410
	BT_DBG("request for %s", hdev->name);
1411

1412
	hci_dev_lock(hdev);
1413

1414
	if (test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
1415
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
1416
				 MGMT_STATUS_BUSY);
1417 1418 1419
		goto unlock;
	}

1420 1421 1422
	hdev->major_class = cp->major;
	hdev->minor_class = cp->minor;

1423
	if (!hdev_is_powered(hdev)) {
1424
		err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
1425
				   hdev->dev_class, 3);
1426 1427 1428
		goto unlock;
	}

1429
	if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
1430 1431 1432
		hci_dev_unlock(hdev);
		cancel_delayed_work_sync(&hdev->service_cache);
		hci_dev_lock(hdev);
1433
		update_eir(hdev);
1434
	}
1435

1436
	err = update_class(hdev);
1437 1438
	if (err < 0)
		goto unlock;
1439

1440
	if (!test_bit(HCI_PENDING_CLASS, &hdev->dev_flags)) {
1441
		err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
1442
				   hdev->dev_class, 3);
1443 1444 1445 1446 1447 1448 1449 1450
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}
1451

1452
unlock:
1453
	hci_dev_unlock(hdev);
1454 1455 1456
	return err;
}

1457 1458
static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
								u16 len)
1459
{
1460
	struct mgmt_cp_load_link_keys *cp = data;
1461
	u16 key_count, expected_len;
1462
	int i;
1463 1464 1465

	key_count = get_unaligned_le16(&cp->key_count);

1466 1467
	expected_len = sizeof(*cp) + key_count *
					sizeof(struct mgmt_link_key_info);
1468
	if (expected_len != len) {
1469
		BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
1470
							len, expected_len);
1471
		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
1472
				  MGMT_STATUS_INVALID_PARAMS);
1473 1474
	}

1475
	BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
1476 1477
								key_count);

1478
	hci_dev_lock(hdev);
1479 1480 1481

	hci_link_keys_clear(hdev);

1482
	set_bit(HCI_LINK_KEYS, &hdev->dev_flags);
1483 1484

	if (cp->debug_keys)
1485
		set_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
1486
	else
1487
		clear_bit(HCI_DEBUG_KEYS, &hdev->dev_flags);
1488

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

1492
		hci_add_link_key(hdev, NULL, 0, &key->addr.bdaddr, key->val,
1493
				 key->type, key->pin_len);
1494 1495
	}

1496
	cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
1497

1498
	hci_dev_unlock(hdev);
1499

1500
	return 0;
1501 1502
}

1503
static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
1504
			   u8 addr_type, struct sock *skip_sk)
1505 1506 1507 1508 1509 1510 1511
{
	struct mgmt_ev_device_unpaired ev;

	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = addr_type;

	return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
1512
			  skip_sk);
1513 1514
}

1515
static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
1516
			 u16 len)
1517
{
1518 1519
	struct mgmt_cp_unpair_device *cp = data;
	struct mgmt_rp_unpair_device rp;
1520 1521
	struct hci_cp_disconnect dc;
	struct pending_cmd *cmd;
1522 1523 1524
	struct hci_conn *conn;
	int err;

1525
	hci_dev_lock(hdev);
1526

1527
	memset(&rp, 0, sizeof(rp));
1528 1529
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;
1530

1531
	if (!hdev_is_powered(hdev)) {
1532
		err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
1533
				   MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
1534 1535 1536
		goto unlock;
	}

1537 1538 1539 1540
	if (cp->addr.type == MGMT_ADDR_BREDR)
		err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
	else
		err = hci_remove_ltk(hdev, &cp->addr.bdaddr);
1541

1542
	if (err < 0) {
1543
		err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
1544
				   MGMT_STATUS_NOT_PAIRED, &rp, sizeof(rp));
1545 1546 1547
		goto unlock;
	}

1548 1549 1550
	if (cp->disconnect) {
		if (cp->addr.type == MGMT_ADDR_BREDR)
			conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
1551
							&cp->addr.bdaddr);
1552 1553
		else
			conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
1554
							&cp->addr.bdaddr);
1555 1556 1557
	} else {
		conn = NULL;
	}
1558

1559
	if (!conn) {
1560
		err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
1561
				   &rp, sizeof(rp));
1562
		device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
1563 1564
		goto unlock;
	}
1565

1566
	cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
1567
			       sizeof(*cp));
1568 1569 1570
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
1571 1572
	}

1573
	dc.handle = cpu_to_le16(conn->handle);
1574 1575 1576 1577 1578
	dc.reason = 0x13; /* Remote User Terminated Connection */
	err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
	if (err < 0)
		mgmt_pending_remove(cmd);

1579
unlock:
1580
	hci_dev_unlock(hdev);
1581 1582 1583
	return err;
}

1584
static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
1585
		      u16 len)
1586
{
1587
	struct mgmt_cp_disconnect *cp = data;
1588
	struct hci_cp_disconnect dc;
1589
	struct pending_cmd *cmd;
1590 1591 1592 1593 1594
	struct hci_conn *conn;
	int err;

	BT_DBG("");

1595
	hci_dev_lock(hdev);
1596 1597

	if (!test_bit(HCI_UP, &hdev->flags)) {
1598
		err = cmd_status(sk, hdev->id, MGMT_OP_DISCONNECT,
1599
				 MGMT_STATUS_NOT_POWERED);
1600 1601 1602
		goto failed;
	}

1603
	if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) {
1604
		err = cmd_status(sk, hdev->id, MGMT_OP_DISCONNECT,
1605
				 MGMT_STATUS_BUSY);
1606 1607 1608
		goto failed;
	}

1609 1610 1611 1612
	if (cp->addr.type == MGMT_ADDR_BREDR)
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
	else
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
1613

1614
	if (!conn) {
1615
		err = cmd_status(sk, hdev->id, MGMT_OP_DISCONNECT,
1616
				 MGMT_STATUS_NOT_CONNECTED);
1617 1618 1619
		goto failed;
	}

1620
	cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
1621 1622
	if (!cmd) {
		err = -ENOMEM;
1623
		goto failed;
1624
	}
1625

1626
	dc.handle = cpu_to_le16(conn->handle);
1627 1628 1629 1630
	dc.reason = 0x13; /* Remote User Terminated Connection */

	err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
	if (err < 0)
1631
		mgmt_pending_remove(cmd);
1632 1633

failed:
1634
	hci_dev_unlock(hdev);
1635 1636 1637
	return err;
}

1638
static u8 link_to_mgmt(u8 link_type, u8 addr_type)
1639 1640 1641
{
	switch (link_type) {
	case LE_LINK:
1642 1643 1644 1645 1646 1647 1648 1649
		switch (addr_type) {
		case ADDR_LE_DEV_PUBLIC:
			return MGMT_ADDR_LE_PUBLIC;
		case ADDR_LE_DEV_RANDOM:
			return MGMT_ADDR_LE_RANDOM;
		default:
			return MGMT_ADDR_INVALID;
		}
1650 1651 1652 1653 1654 1655 1656
	case ACL_LINK:
		return MGMT_ADDR_BREDR;
	default:
		return MGMT_ADDR_INVALID;
	}
}

1657 1658
static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
1659 1660
{
	struct mgmt_rp_get_connections *rp;
1661
	struct hci_conn *c;
1662
	size_t rp_len;
1663 1664
	int err;
	u16 i;
1665 1666 1667

	BT_DBG("");

1668
	hci_dev_lock(hdev);
1669

1670
	if (!hdev_is_powered(hdev)) {
1671
		err = cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
1672
				 MGMT_STATUS_NOT_POWERED);
1673 1674 1675
		goto unlock;
	}

1676
	i = 0;
1677 1678
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
		if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
1679
			i++;
1680 1681
	}

1682
	rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
1683 1684
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
1685 1686 1687 1688 1689
		err = -ENOMEM;
		goto unlock;
	}

	i = 0;
1690
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
1691 1692
		if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
			continue;
1693
		bacpy(&rp->addr[i].bdaddr, &c->dst);
1694
		rp->addr[i].type = link_to_mgmt(c->type, c->dst_type);
1695 1696 1697 1698 1699
		if (rp->addr[i].type == MGMT_ADDR_INVALID)
			continue;
		i++;
	}

1700
	rp->conn_count = cpu_to_le16(i);
1701

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

1705
	err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
1706
			   rp_len);
1707

1708
	kfree(rp);
1709 1710

unlock:
1711
	hci_dev_unlock(hdev);
1712 1713 1714
	return err;
}

1715
static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
1716
				   struct mgmt_cp_pin_code_neg_reply *cp)
1717 1718 1719 1720
{
	struct pending_cmd *cmd;
	int err;

1721
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
1722
			       sizeof(*cp));
1723 1724 1725
	if (!cmd)
		return -ENOMEM;

1726
	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
1727
			   sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
1728 1729 1730 1731 1732 1733
	if (err < 0)
		mgmt_pending_remove(cmd);

	return err;
}

1734
static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
1735
			  u16 len)
1736
{
1737
	struct hci_conn *conn;
1738
	struct mgmt_cp_pin_code_reply *cp = data;
1739
	struct hci_cp_pin_code_reply reply;
1740
	struct pending_cmd *cmd;
1741 1742 1743 1744
	int err;

	BT_DBG("");

1745
	hci_dev_lock(hdev);
1746

1747
	if (!hdev_is_powered(hdev)) {
1748
		err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
1749
				 MGMT_STATUS_NOT_POWERED);
1750 1751 1752
		goto failed;
	}

1753
	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
1754
	if (!conn) {
1755
		err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
1756
				 MGMT_STATUS_NOT_CONNECTED);
1757 1758 1759 1760
		goto failed;
	}

	if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
1761 1762 1763
		struct mgmt_cp_pin_code_neg_reply ncp;

		memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
1764 1765 1766

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

1767
		err = send_pin_code_neg_reply(sk, hdev, &ncp);
1768
		if (err >= 0)
1769
			err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
1770
					 MGMT_STATUS_INVALID_PARAMS);
1771 1772 1773 1774

		goto failed;
	}

1775
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
1776 1777
	if (!cmd) {
		err = -ENOMEM;
1778
		goto failed;
1779
	}
1780

1781
	bacpy(&reply.bdaddr, &cp->addr.bdaddr);
1782
	reply.pin_len = cp->pin_len;
1783
	memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
1784 1785 1786

	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
	if (err < 0)
1787
		mgmt_pending_remove(cmd);
1788 1789

failed:
1790
	hci_dev_unlock(hdev);
1791 1792 1793
	return err;
}

1794
static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
1795
			      void *data, u16 len)
1796
{
1797
	struct mgmt_cp_pin_code_neg_reply *cp = data;
1798 1799 1800 1801
	int err;

	BT_DBG("");

1802
	hci_dev_lock(hdev);
1803

1804
	if (!hdev_is_powered(hdev)) {
1805
		err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY,
1806
				 MGMT_STATUS_NOT_POWERED);
1807 1808 1809
		goto failed;
	}

1810
	err = send_pin_code_neg_reply(sk, hdev, cp);
1811 1812

failed:
1813
	hci_dev_unlock(hdev);
1814 1815 1816
	return err;
}

1817 1818
static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
1819
{
1820
	struct mgmt_cp_set_io_capability *cp = data;
1821 1822 1823

	BT_DBG("");

1824
	hci_dev_lock(hdev);
1825 1826 1827 1828

	hdev->io_capability = cp->io_capability;

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

1831
	hci_dev_unlock(hdev);
1832

1833 1834
	return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0, NULL,
			    0);
1835 1836
}

1837 1838 1839
static inline struct pending_cmd *find_pairing(struct hci_conn *conn)
{
	struct hci_dev *hdev = conn->hdev;
1840
	struct pending_cmd *cmd;
1841

1842
	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859
		if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
			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;

1860 1861
	bacpy(&rp.addr.bdaddr, &conn->dst);
	rp.addr.type = link_to_mgmt(conn->type, conn->dst_type);
1862

1863
	cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, status,
1864
		     &rp, sizeof(rp));
1865 1866 1867 1868 1869 1870 1871 1872

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

1873
	mgmt_pending_remove(cmd);
1874 1875 1876 1877 1878 1879 1880 1881 1882
}

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

	BT_DBG("status %u", status);

	cmd = find_pairing(conn);
1883
	if (!cmd)
1884
		BT_DBG("Unable to find a pending command");
1885
	else
1886
		pairing_complete(cmd, mgmt_status(status));
1887 1888
}

1889
static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
1890
		       u16 len)
1891
{
1892
	struct mgmt_cp_pair_device *cp = data;
1893
	struct mgmt_rp_pair_device rp;
1894 1895 1896 1897 1898 1899 1900
	struct pending_cmd *cmd;
	u8 sec_level, auth_type;
	struct hci_conn *conn;
	int err;

	BT_DBG("");

1901
	hci_dev_lock(hdev);
1902

1903
	if (!hdev_is_powered(hdev)) {
1904
		err = cmd_status(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
1905
				 MGMT_STATUS_NOT_POWERED);
1906 1907 1908
		goto unlock;
	}

1909 1910
	sec_level = BT_SECURITY_MEDIUM;
	if (cp->io_cap == 0x03)
1911
		auth_type = HCI_AT_DEDICATED_BONDING;
1912
	else
1913 1914
		auth_type = HCI_AT_DEDICATED_BONDING_MITM;

1915 1916
	if (cp->addr.type == MGMT_ADDR_BREDR)
		conn = hci_connect(hdev, ACL_LINK, &cp->addr.bdaddr, sec_level,
1917
				   auth_type);
1918
	else
1919
		conn = hci_connect(hdev, LE_LINK, &cp->addr.bdaddr, sec_level,
1920
				   auth_type);
1921

1922 1923 1924 1925
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

1926
	if (IS_ERR(conn)) {
1927
		err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
1928 1929
				   MGMT_STATUS_CONNECT_FAILED, &rp,
				   sizeof(rp));
1930 1931 1932 1933 1934
		goto unlock;
	}

	if (conn->connect_cfm_cb) {
		hci_conn_put(conn);
1935
		err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
1936
				   MGMT_STATUS_BUSY, &rp, sizeof(rp));
1937 1938 1939
		goto unlock;
	}

1940
	cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
1941 1942 1943 1944 1945 1946
	if (!cmd) {
		err = -ENOMEM;
		hci_conn_put(conn);
		goto unlock;
	}

1947
	/* For LE, just connecting isn't a proof that the pairing finished */
1948
	if (cp->addr.type == MGMT_ADDR_BREDR)
1949 1950
		conn->connect_cfm_cb = pairing_complete_cb;

1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962
	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:
1963
	hci_dev_unlock(hdev);
1964 1965 1966
	return err;
}

1967 1968
static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
1969
{
1970
	struct mgmt_addr_info *addr = data;
1971 1972 1973 1974 1975 1976 1977 1978
	struct pending_cmd *cmd;
	struct hci_conn *conn;
	int err;

	BT_DBG("");

	hci_dev_lock(hdev);

1979
	if (!hdev_is_powered(hdev)) {
1980
		err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
1981
				 MGMT_STATUS_NOT_POWERED);
1982 1983 1984
		goto unlock;
	}

1985 1986
	cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
	if (!cmd) {
1987
		err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
1988
				 MGMT_STATUS_INVALID_PARAMS);
1989 1990 1991 1992 1993 1994
		goto unlock;
	}

	conn = cmd->user_data;

	if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
1995
		err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
1996
				 MGMT_STATUS_INVALID_PARAMS);
1997 1998 1999 2000 2001
		goto unlock;
	}

	pairing_complete(cmd, MGMT_STATUS_CANCELLED);

2002
	err = cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
2003
			   addr, sizeof(*addr));
2004 2005 2006 2007 2008
unlock:
	hci_dev_unlock(hdev);
	return err;
}

2009
static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
2010 2011
			     bdaddr_t *bdaddr, u8 type, u16 mgmt_op,
			     u16 hci_op, __le32 passkey)
2012 2013
{
	struct pending_cmd *cmd;
2014
	struct hci_conn *conn;
2015 2016
	int err;

2017
	hci_dev_lock(hdev);
2018

2019
	if (!hdev_is_powered(hdev)) {
2020
		err = cmd_status(sk, hdev->id, mgmt_op,
2021
				 MGMT_STATUS_NOT_POWERED);
2022
		goto done;
2023 2024
	}

2025 2026 2027
	if (type == MGMT_ADDR_BREDR)
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, bdaddr);
	else
2028
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, bdaddr);
2029 2030

	if (!conn) {
2031
		err = cmd_status(sk, hdev->id, mgmt_op,
2032
				 MGMT_STATUS_NOT_CONNECTED);
2033 2034
		goto done;
	}
2035

2036
	if (type == MGMT_ADDR_LE_PUBLIC || type == MGMT_ADDR_LE_RANDOM) {
2037
		/* Continue with pairing via SMP */
2038 2039 2040
		err = smp_user_confirm_reply(conn, mgmt_op, passkey);

		if (!err)
2041
			err = cmd_status(sk, hdev->id, mgmt_op,
2042
					 MGMT_STATUS_SUCCESS);
2043
		else
2044
			err = cmd_status(sk, hdev->id, mgmt_op,
2045
					 MGMT_STATUS_FAILED);
2046 2047 2048 2049

		goto done;
	}

2050
	cmd = mgmt_pending_add(sk, mgmt_op, hdev, bdaddr, sizeof(*bdaddr));
2051 2052
	if (!cmd) {
		err = -ENOMEM;
2053
		goto done;
2054 2055
	}

2056
	/* Continue with pairing via HCI */
2057 2058 2059 2060 2061 2062 2063 2064 2065
	if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
		struct hci_cp_user_passkey_reply cp;

		bacpy(&cp.bdaddr, bdaddr);
		cp.passkey = passkey;
		err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
	} else
		err = hci_send_cmd(hdev, hci_op, sizeof(*bdaddr), bdaddr);

2066 2067
	if (err < 0)
		mgmt_pending_remove(cmd);
2068

2069
done:
2070
	hci_dev_unlock(hdev);
2071 2072 2073
	return err;
}

2074 2075
static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
2076
{
2077
	struct mgmt_cp_user_confirm_reply *cp = data;
2078 2079 2080 2081

	BT_DBG("");

	if (len != sizeof(*cp))
2082
		return cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
2083
				  MGMT_STATUS_INVALID_PARAMS);
2084

2085
	return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
2086 2087
				 MGMT_OP_USER_CONFIRM_REPLY,
				 HCI_OP_USER_CONFIRM_REPLY, 0);
2088 2089
}

2090
static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
2091
				  void *data, u16 len)
2092
{
2093
	struct mgmt_cp_user_confirm_neg_reply *cp = data;
2094 2095 2096

	BT_DBG("");

2097
	return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
2098 2099
				 MGMT_OP_USER_CONFIRM_NEG_REPLY,
				 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
2100 2101
}

2102 2103
static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
2104
{
2105
	struct mgmt_cp_user_passkey_reply *cp = data;
2106 2107 2108

	BT_DBG("");

2109
	return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
2110 2111
				 MGMT_OP_USER_PASSKEY_REPLY,
				 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
2112 2113
}

2114
static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
2115
				  void *data, u16 len)
2116
{
2117
	struct mgmt_cp_user_passkey_neg_reply *cp = data;
2118 2119 2120

	BT_DBG("");

2121
	return user_pairing_resp(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
2122 2123
				 MGMT_OP_USER_PASSKEY_NEG_REPLY,
				 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
2124 2125
}

2126 2127 2128 2129 2130 2131 2132 2133 2134
static int update_name(struct hci_dev *hdev, const char *name)
{
	struct hci_cp_write_local_name cp;

	memcpy(cp.name, name, sizeof(cp.name));

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

2135
static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
2136
			  u16 len)
2137
{
2138
	struct mgmt_cp_set_local_name *cp = data;
2139 2140 2141 2142 2143
	struct pending_cmd *cmd;
	int err;

	BT_DBG("");

2144
	hci_dev_lock(hdev);
2145

2146
	memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
2147

2148
	if (!hdev_is_powered(hdev)) {
2149
		memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
2150 2151

		err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
2152
				   data, len);
2153 2154 2155 2156
		if (err < 0)
			goto failed;

		err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
2157
				 sk);
2158

2159 2160 2161
		goto failed;
	}

2162
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
2163 2164 2165 2166 2167
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

2168
	err = update_name(hdev, cp->name);
2169 2170 2171 2172
	if (err < 0)
		mgmt_pending_remove(cmd);

failed:
2173
	hci_dev_unlock(hdev);
2174 2175 2176
	return err;
}

2177
static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
2178
			       void *data, u16 data_len)
2179 2180 2181 2182
{
	struct pending_cmd *cmd;
	int err;

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

2185
	hci_dev_lock(hdev);
2186

2187
	if (!hdev_is_powered(hdev)) {
2188
		err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
2189
				 MGMT_STATUS_NOT_POWERED);
2190 2191 2192 2193
		goto unlock;
	}

	if (!(hdev->features[6] & LMP_SIMPLE_PAIR)) {
2194
		err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
2195
				 MGMT_STATUS_NOT_SUPPORTED);
2196 2197 2198
		goto unlock;
	}

2199
	if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
2200
		err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
2201
				 MGMT_STATUS_BUSY);
2202 2203 2204
		goto unlock;
	}

2205
	cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
2206 2207 2208 2209 2210 2211 2212 2213 2214 2215
	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:
2216
	hci_dev_unlock(hdev);
2217 2218 2219
	return err;
}

2220
static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
2221
			       void *data, u16 len)
2222
{
2223
	struct mgmt_cp_add_remote_oob_data *cp = data;
2224
	u8 status;
2225 2226
	int err;

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

2229
	hci_dev_lock(hdev);
2230

2231
	if (!hdev_is_powered(hdev)) {
2232
		err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
2233 2234
				   MGMT_STATUS_NOT_POWERED, &cp->addr,
				   sizeof(cp->addr));
2235 2236 2237
		goto unlock;
	}

2238
	err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr, cp->hash,
2239
				      cp->randomizer);
2240
	if (err < 0)
2241
		status = MGMT_STATUS_FAILED;
2242
	else
2243 2244
		status = 0;

2245
	err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA, status,
2246
			   &cp->addr, sizeof(cp->addr));
2247

2248
unlock:
2249
	hci_dev_unlock(hdev);
2250 2251 2252
	return err;
}

2253
static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
2254
						void *data, u16 len)
2255
{
2256
	struct mgmt_cp_remove_remote_oob_data *cp = data;
2257
	u8 status;
2258 2259
	int err;

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

2262
	hci_dev_lock(hdev);
2263

2264
	if (!hdev_is_powered(hdev)) {
2265
		err = cmd_complete(sk, hdev->id,
2266 2267 2268
				   MGMT_OP_REMOVE_REMOTE_OOB_DATA,
				   MGMT_STATUS_NOT_POWERED, &cp->addr,
				   sizeof(cp->addr));
2269 2270 2271
		goto unlock;
	}

2272
	err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr);
2273
	if (err < 0)
2274
		status = MGMT_STATUS_INVALID_PARAMS;
2275
	else
2276 2277
		status = 0;

2278
	err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
2279
			   status, &cp->addr, sizeof(cp->addr));
2280

2281
unlock:
2282
	hci_dev_unlock(hdev);
2283 2284 2285
	return err;
}

2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302
int mgmt_interleaved_discovery(struct hci_dev *hdev)
{
	int err;

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

	hci_dev_lock(hdev);

	err = hci_do_inquiry(hdev, INQUIRY_LEN_BREDR_LE);
	if (err < 0)
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);

	hci_dev_unlock(hdev);

	return err;
}

2303
static int start_discovery(struct sock *sk, struct hci_dev *hdev,
2304
			   void *data, u16 len)
2305
{
2306
	struct mgmt_cp_start_discovery *cp = data;
2307 2308 2309
	struct pending_cmd *cmd;
	int err;

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

2312
	hci_dev_lock(hdev);
2313

2314
	if (!hdev_is_powered(hdev)) {
2315
		err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2316
				 MGMT_STATUS_NOT_POWERED);
2317 2318 2319
		goto failed;
	}

2320
	if (hdev->discovery.state != DISCOVERY_STOPPED) {
2321
		err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
2322
				 MGMT_STATUS_BUSY);
2323 2324 2325
		goto failed;
	}

2326
	cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, NULL, 0);
2327 2328 2329 2330 2331
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

A
Andre Guedes 已提交
2332 2333 2334
	hdev->discovery.type = cp->type;

	switch (hdev->discovery.type) {
2335
	case DISCOV_TYPE_BREDR:
2336 2337 2338 2339
		if (lmp_bredr_capable(hdev))
			err = hci_do_inquiry(hdev, INQUIRY_LEN_BREDR);
		else
			err = -ENOTSUPP;
2340 2341 2342
		break;

	case DISCOV_TYPE_LE:
2343 2344
		if (lmp_host_le_capable(hdev))
			err = hci_le_scan(hdev, LE_SCAN_TYPE, LE_SCAN_INT,
2345
					  LE_SCAN_WIN, LE_SCAN_TIMEOUT_LE_ONLY);
2346 2347
		else
			err = -ENOTSUPP;
2348 2349
		break;

2350
	case DISCOV_TYPE_INTERLEAVED:
2351 2352
		if (lmp_host_le_capable(hdev) && lmp_bredr_capable(hdev))
			err = hci_le_scan(hdev, LE_SCAN_TYPE, LE_SCAN_INT,
2353 2354
					  LE_SCAN_WIN,
					  LE_SCAN_TIMEOUT_BREDR_LE);
2355 2356
		else
			err = -ENOTSUPP;
2357 2358
		break;

2359
	default:
2360
		err = -EINVAL;
2361
	}
2362

2363 2364
	if (err < 0)
		mgmt_pending_remove(cmd);
2365 2366
	else
		hci_discovery_set_state(hdev, DISCOVERY_STARTING);
2367 2368

failed:
2369
	hci_dev_unlock(hdev);
2370 2371 2372
	return err;
}

2373
static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
2374
			  u16 len)
2375
{
2376
	struct mgmt_cp_stop_discovery *mgmt_cp = data;
2377
	struct pending_cmd *cmd;
2378 2379
	struct hci_cp_remote_name_req_cancel cp;
	struct inquiry_entry *e;
2380 2381
	int err;

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

2384
	hci_dev_lock(hdev);
2385

2386
	if (!hci_discovery_active(hdev)) {
2387
		err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
2388 2389
				   MGMT_STATUS_REJECTED, &mgmt_cp->type,
				   sizeof(mgmt_cp->type));
2390 2391 2392 2393
		goto unlock;
	}

	if (hdev->discovery.type != mgmt_cp->type) {
2394
		err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
2395 2396
				   MGMT_STATUS_INVALID_PARAMS, &mgmt_cp->type,
				   sizeof(mgmt_cp->type));
2397
		goto unlock;
2398 2399
	}

2400
	cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, NULL, 0);
2401 2402
	if (!cmd) {
		err = -ENOMEM;
2403 2404 2405
		goto unlock;
	}

2406
	if (hdev->discovery.state == DISCOVERY_FINDING) {
2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417
		err = hci_cancel_inquiry(hdev);
		if (err < 0)
			mgmt_pending_remove(cmd);
		else
			hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
		goto unlock;
	}

	e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY, NAME_PENDING);
	if (!e) {
		mgmt_pending_remove(cmd);
2418
		err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
2419
				   &mgmt_cp->type, sizeof(mgmt_cp->type));
2420 2421
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
		goto unlock;
2422 2423
	}

2424
	bacpy(&cp.bdaddr, &e->data.bdaddr);
2425 2426
	err = hci_send_cmd(hdev, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp),
			   &cp);
2427 2428
	if (err < 0)
		mgmt_pending_remove(cmd);
2429 2430
	else
		hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
2431

2432
unlock:
2433
	hci_dev_unlock(hdev);
2434 2435 2436
	return err;
}

2437
static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
2438
			u16 len)
2439
{
2440
	struct mgmt_cp_confirm_name *cp = data;
2441 2442 2443
	struct inquiry_entry *e;
	int err;

2444
	BT_DBG("%s", hdev->name);
2445 2446 2447

	hci_dev_lock(hdev);

2448
	if (!hci_discovery_active(hdev)) {
2449
		err = cmd_status(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
2450
				 MGMT_STATUS_FAILED);
2451 2452 2453
		goto failed;
	}

2454
	e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
2455
	if (!e) {
2456
		err = cmd_status(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
2457
				 MGMT_STATUS_INVALID_PARAMS);
2458 2459 2460 2461 2462 2463 2464 2465
		goto failed;
	}

	if (cp->name_known) {
		e->name_state = NAME_KNOWN;
		list_del(&e->list);
	} else {
		e->name_state = NAME_NEEDED;
2466
		hci_inquiry_cache_update_resolve(hdev, e);
2467 2468 2469 2470 2471 2472 2473 2474 2475
	}

	err = 0;

failed:
	hci_dev_unlock(hdev);
	return err;
}

2476
static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
2477
			u16 len)
2478
{
2479
	struct mgmt_cp_block_device *cp = data;
2480
	u8 status;
2481 2482
	int err;

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

2485
	hci_dev_lock(hdev);
2486

2487
	err = hci_blacklist_add(hdev, &cp->addr.bdaddr, cp->addr.type);
2488
	if (err < 0)
2489
		status = MGMT_STATUS_FAILED;
2490
	else
2491 2492
		status = 0;

2493
	err = cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
2494
			   &cp->addr, sizeof(cp->addr));
2495

2496
	hci_dev_unlock(hdev);
2497 2498 2499 2500

	return err;
}

2501
static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
2502
			  u16 len)
2503
{
2504
	struct mgmt_cp_unblock_device *cp = data;
2505
	u8 status;
2506 2507
	int err;

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

2510
	hci_dev_lock(hdev);
2511

2512
	err = hci_blacklist_del(hdev, &cp->addr.bdaddr, cp->addr.type);
2513
	if (err < 0)
2514
		status = MGMT_STATUS_INVALID_PARAMS;
2515
	else
2516 2517
		status = 0;

2518
	err = cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
2519
			   &cp->addr, sizeof(cp->addr));
2520

2521
	hci_dev_unlock(hdev);
2522 2523 2524 2525

	return err;
}

2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549
static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 len)
{
	struct mgmt_cp_set_device_id *cp = data;
	int err;

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

	hci_dev_lock(hdev);

	hdev->devid_source = __le16_to_cpu(cp->source);
	hdev->devid_vendor = __le16_to_cpu(cp->vendor);
	hdev->devid_product = __le16_to_cpu(cp->product);
	hdev->devid_version = __le16_to_cpu(cp->version);

	err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0, NULL, 0);

	update_eir(hdev);

	hci_dev_unlock(hdev);

	return err;
}

2550
static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
2551
				void *data, u16 len)
2552
{
2553
	struct mgmt_mode *cp = data;
2554 2555 2556 2557
	struct hci_cp_write_page_scan_activity acp;
	u8 type;
	int err;

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

2560
	if (!hdev_is_powered(hdev))
2561
		return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
2562
				  MGMT_STATUS_NOT_POWERED);
2563 2564

	if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
2565
		return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
2566
				  MGMT_STATUS_REJECTED);
2567 2568 2569

	hci_dev_lock(hdev);

2570
	if (cp->val) {
2571
		type = PAGE_SCAN_TYPE_INTERLACED;
2572 2573 2574

		/* 22.5 msec page scan interval */
		acp.interval = __constant_cpu_to_le16(0x0024);
2575 2576
	} else {
		type = PAGE_SCAN_TYPE_STANDARD;	/* default */
2577 2578 2579

		/* default 1.28 sec page scan */
		acp.interval = __constant_cpu_to_le16(0x0800);
2580 2581
	}

2582 2583
	/* default 11.25 msec page scan window */
	acp.window = __constant_cpu_to_le16(0x0012);
2584

2585 2586
	err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY, sizeof(acp),
			   &acp);
2587
	if (err < 0) {
2588
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
2589
				 MGMT_STATUS_FAILED);
2590 2591 2592 2593 2594
		goto done;
	}

	err = hci_send_cmd(hdev, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
	if (err < 0) {
2595
		err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
2596
				 MGMT_STATUS_FAILED);
2597 2598 2599
		goto done;
	}

2600
	err = cmd_complete(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE, 0,
2601
			   NULL, 0);
2602 2603 2604 2605 2606
done:
	hci_dev_unlock(hdev);
	return err;
}

2607
static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
2608
			       void *cp_data, u16 len)
2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620
{
	struct mgmt_cp_load_long_term_keys *cp = cp_data;
	u16 key_count, expected_len;
	int i;

	key_count = get_unaligned_le16(&cp->key_count);

	expected_len = sizeof(*cp) + key_count *
					sizeof(struct mgmt_ltk_info);
	if (expected_len != len) {
		BT_ERR("load_keys: expected %u bytes, got %u bytes",
							len, expected_len);
2621
		return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
2622
				  EINVAL);
2623 2624
	}

2625
	BT_DBG("%s key_count %u", hdev->name, key_count);
2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640

	hci_dev_lock(hdev);

	hci_smp_ltks_clear(hdev);

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

		if (key->master)
			type = HCI_SMP_LTK;
		else
			type = HCI_SMP_LTK_SLAVE;

		hci_add_ltk(hdev, &key->addr.bdaddr, key->addr.type,
2641 2642
			    type, 0, key->authenticated, key->val,
			    key->enc_size, key->ediv, key->rand);
2643 2644 2645 2646 2647 2648 2649
	}

	hci_dev_unlock(hdev);

	return 0;
}

2650
struct mgmt_handler {
2651 2652
	int (*func) (struct sock *sk, struct hci_dev *hdev, void *data,
		     u16 data_len);
2653 2654
	bool var_len;
	size_t data_len;
2655 2656
} mgmt_handlers[] = {
	{ NULL }, /* 0x0000 (no command) */
2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695
	{ read_version,           false, MGMT_READ_VERSION_SIZE },
	{ read_commands,          false, MGMT_READ_COMMANDS_SIZE },
	{ read_index_list,        false, MGMT_READ_INDEX_LIST_SIZE },
	{ read_controller_info,   false, MGMT_READ_INFO_SIZE },
	{ set_powered,            false, MGMT_SETTING_SIZE },
	{ set_discoverable,       false, MGMT_SET_DISCOVERABLE_SIZE },
	{ set_connectable,        false, MGMT_SETTING_SIZE },
	{ set_fast_connectable,   false, MGMT_SETTING_SIZE },
	{ set_pairable,           false, MGMT_SETTING_SIZE },
	{ set_link_security,      false, MGMT_SETTING_SIZE },
	{ set_ssp,                false, MGMT_SETTING_SIZE },
	{ set_hs,                 false, MGMT_SETTING_SIZE },
	{ set_le,                 false, MGMT_SETTING_SIZE },
	{ set_dev_class,          false, MGMT_SET_DEV_CLASS_SIZE },
	{ set_local_name,         false, MGMT_SET_LOCAL_NAME_SIZE },
	{ add_uuid,               false, MGMT_ADD_UUID_SIZE },
	{ remove_uuid,            false, MGMT_REMOVE_UUID_SIZE },
	{ load_link_keys,         true,  MGMT_LOAD_LINK_KEYS_SIZE },
	{ load_long_term_keys,    true,  MGMT_LOAD_LONG_TERM_KEYS_SIZE },
	{ disconnect,             false, MGMT_DISCONNECT_SIZE },
	{ get_connections,        false, MGMT_GET_CONNECTIONS_SIZE },
	{ pin_code_reply,         false, MGMT_PIN_CODE_REPLY_SIZE },
	{ pin_code_neg_reply,     false, MGMT_PIN_CODE_NEG_REPLY_SIZE },
	{ set_io_capability,      false, MGMT_SET_IO_CAPABILITY_SIZE },
	{ pair_device,            false, MGMT_PAIR_DEVICE_SIZE },
	{ cancel_pair_device,     false, MGMT_CANCEL_PAIR_DEVICE_SIZE },
	{ unpair_device,          false, MGMT_UNPAIR_DEVICE_SIZE },
	{ user_confirm_reply,     false, MGMT_USER_CONFIRM_REPLY_SIZE },
	{ user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
	{ user_passkey_reply,     false, MGMT_USER_PASSKEY_REPLY_SIZE },
	{ user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
	{ read_local_oob_data,    false, MGMT_READ_LOCAL_OOB_DATA_SIZE },
	{ add_remote_oob_data,    false, MGMT_ADD_REMOTE_OOB_DATA_SIZE },
	{ remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
	{ start_discovery,        false, MGMT_START_DISCOVERY_SIZE },
	{ stop_discovery,         false, MGMT_STOP_DISCOVERY_SIZE },
	{ confirm_name,           false, MGMT_CONFIRM_NAME_SIZE },
	{ block_device,           false, MGMT_BLOCK_DEVICE_SIZE },
	{ unblock_device,         false, MGMT_UNBLOCK_DEVICE_SIZE },
2696
	{ set_device_id,          false, MGMT_SET_DEVICE_ID_SIZE },
2697 2698 2699
};


2700 2701
int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
{
2702 2703
	void *buf;
	u8 *cp;
2704
	struct mgmt_hdr *hdr;
2705
	u16 opcode, index, len;
2706
	struct hci_dev *hdev = NULL;
2707
	struct mgmt_handler *handler;
2708 2709 2710 2711 2712 2713 2714
	int err;

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

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

2715
	buf = kmalloc(msglen, GFP_KERNEL);
2716 2717 2718 2719 2720 2721 2722 2723
	if (!buf)
		return -ENOMEM;

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

2724
	hdr = buf;
2725
	opcode = get_unaligned_le16(&hdr->opcode);
2726
	index = get_unaligned_le16(&hdr->index);
2727 2728 2729 2730 2731 2732 2733
	len = get_unaligned_le16(&hdr->len);

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

2734
	if (index != MGMT_INDEX_NONE) {
2735 2736 2737
		hdev = hci_dev_get(index);
		if (!hdev) {
			err = cmd_status(sk, index, opcode,
2738
					 MGMT_STATUS_INVALID_INDEX);
2739 2740 2741 2742
			goto done;
		}
	}

2743 2744
	if (opcode >= ARRAY_SIZE(mgmt_handlers) ||
					mgmt_handlers[opcode].func == NULL) {
2745
		BT_DBG("Unknown op %u", opcode);
2746
		err = cmd_status(sk, index, opcode,
2747
				 MGMT_STATUS_UNKNOWN_COMMAND);
2748 2749 2750 2751 2752 2753
		goto done;
	}

	if ((hdev && opcode < MGMT_OP_READ_INFO) ||
			(!hdev && opcode >= MGMT_OP_READ_INFO)) {
		err = cmd_status(sk, index, opcode,
2754
				 MGMT_STATUS_INVALID_INDEX);
2755
		goto done;
2756 2757
	}

2758 2759 2760 2761 2762
	handler = &mgmt_handlers[opcode];

	if ((handler->var_len && len < handler->data_len) ||
			(!handler->var_len && len != handler->data_len)) {
		err = cmd_status(sk, index, opcode,
2763
				 MGMT_STATUS_INVALID_PARAMS);
2764 2765 2766
		goto done;
	}

2767 2768 2769 2770 2771
	if (hdev)
		mgmt_init_hdev(sk, hdev);

	cp = buf + sizeof(*hdr);

2772
	err = handler->func(sk, hdev, cp, len);
2773 2774 2775
	if (err < 0)
		goto done;

2776 2777 2778
	err = msglen;

done:
2779 2780 2781
	if (hdev)
		hci_dev_put(hdev);

2782 2783 2784
	kfree(buf);
	return err;
}
2785

2786 2787 2788 2789 2790 2791 2792 2793
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);
}

2794
int mgmt_index_added(struct hci_dev *hdev)
2795
{
2796
	return mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
2797 2798
}

2799
int mgmt_index_removed(struct hci_dev *hdev)
2800
{
2801
	u8 status = MGMT_STATUS_INVALID_INDEX;
2802

2803
	mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
2804

2805
	return mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
2806 2807
}

2808
struct cmd_lookup {
2809
	struct sock *sk;
2810
	struct hci_dev *hdev;
2811
	u8 mgmt_status;
2812 2813
};

2814
static void settings_rsp(struct pending_cmd *cmd, void *data)
2815
{
2816
	struct cmd_lookup *match = data;
2817

2818
	send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
2819 2820 2821 2822 2823 2824 2825 2826 2827

	list_del(&cmd->list);

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

	mgmt_pending_free(cmd);
2828
}
2829

2830
int mgmt_powered(struct hci_dev *hdev, u8 powered)
2831
{
2832
	struct cmd_lookup match = { NULL, hdev };
2833
	int err;
2834

2835 2836 2837
	if (!test_bit(HCI_MGMT, &hdev->dev_flags))
		return 0;

2838
	mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
2839

2840 2841 2842 2843 2844 2845 2846 2847 2848 2849
	if (powered) {
		u8 scan = 0;

		if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
			scan |= SCAN_PAGE;
		if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
			scan |= SCAN_INQUIRY;

		if (scan)
			hci_send_cmd(hdev, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
2850 2851

		update_class(hdev);
2852
		update_name(hdev, hdev->dev_name);
2853
		update_eir(hdev);
2854
	} else {
2855
		u8 status = MGMT_STATUS_NOT_POWERED;
2856
		mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
2857 2858
	}

2859
	err = new_settings(hdev, match.sk);
2860 2861 2862 2863

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

2864
	return err;
2865
}
2866

2867
int mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
2868
{
2869
	struct cmd_lookup match = { NULL, hdev };
2870 2871
	bool changed = false;
	int err = 0;
2872

2873 2874 2875 2876 2877 2878 2879
	if (discoverable) {
		if (!test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
			changed = true;
	} else {
		if (test_and_clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
			changed = true;
	}
2880

2881
	mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev, settings_rsp,
2882
			     &match);
2883

2884 2885
	if (changed)
		err = new_settings(hdev, match.sk);
2886

2887 2888 2889
	if (match.sk)
		sock_put(match.sk);

2890
	return err;
2891
}
2892

2893
int mgmt_connectable(struct hci_dev *hdev, u8 connectable)
2894
{
2895
	struct cmd_lookup match = { NULL, hdev };
2896 2897
	bool changed = false;
	int err = 0;
2898

2899 2900 2901 2902 2903 2904 2905
	if (connectable) {
		if (!test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags))
			changed = true;
	} else {
		if (test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags))
			changed = true;
	}
2906

2907
	mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev, settings_rsp,
2908
			     &match);
2909

2910 2911
	if (changed)
		err = new_settings(hdev, match.sk);
2912 2913 2914 2915

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

2916
	return err;
2917
}
2918

2919
int mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
2920
{
2921 2922
	u8 mgmt_err = mgmt_status(status);

2923
	if (scan & SCAN_PAGE)
2924
		mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev,
2925
				     cmd_status_rsp, &mgmt_err);
2926 2927

	if (scan & SCAN_INQUIRY)
2928
		mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev,
2929
				     cmd_status_rsp, &mgmt_err);
2930 2931 2932 2933

	return 0;
}

2934
int mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key, bool persistent)
2935
{
2936
	struct mgmt_ev_new_link_key ev;
2937

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

2940
	ev.store_hint = persistent;
2941 2942
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
	ev.key.addr.type = MGMT_ADDR_BREDR;
2943 2944 2945
	ev.key.type = key->type;
	memcpy(ev.key.val, key->val, 16);
	ev.key.pin_len = key->pin_len;
2946

2947
	return mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
2948
}
2949

2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968
int mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, u8 persistent)
{
	struct mgmt_ev_new_long_term_key ev;

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

	ev.store_hint = persistent;
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
	ev.key.addr.type = key->bdaddr_type;
	ev.key.authenticated = key->authenticated;
	ev.key.enc_size = key->enc_size;
	ev.key.ediv = key->ediv;

	if (key->type == HCI_SMP_LTK)
		ev.key.master = 1;

	memcpy(ev.key.rand, key->rand, sizeof(key->rand));
	memcpy(ev.key.val, key->val, sizeof(key->val));

2969 2970
	return mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev),
			  NULL);
2971 2972
}

2973
int mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
2974 2975
			  u8 addr_type, u32 flags, u8 *name, u8 name_len,
			  u8 *dev_class)
2976
{
2977 2978 2979
	char buf[512];
	struct mgmt_ev_device_connected *ev = (void *) buf;
	u16 eir_len = 0;
2980

2981 2982
	bacpy(&ev->addr.bdaddr, bdaddr);
	ev->addr.type = link_to_mgmt(link_type, addr_type);
2983

2984
	ev->flags = __cpu_to_le32(flags);
2985

2986 2987
	if (name_len > 0)
		eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
2988
					  name, name_len);
2989 2990

	if (dev_class && memcmp(dev_class, "\0\0\0", 3) != 0)
2991
		eir_len = eir_append_data(ev->eir, eir_len,
2992
					  EIR_CLASS_OF_DEV, dev_class, 3);
2993

2994
	ev->eir_len = cpu_to_le16(eir_len);
2995 2996

	return mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
2997
			  sizeof(*ev) + eir_len, NULL);
2998 2999
}

3000 3001
static void disconnect_rsp(struct pending_cmd *cmd, void *data)
{
3002
	struct mgmt_cp_disconnect *cp = cmd->param;
3003
	struct sock **sk = data;
3004
	struct mgmt_rp_disconnect rp;
3005

3006 3007
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;
3008

3009
	cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, 0, &rp,
3010
		     sizeof(rp));
3011 3012 3013 3014

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

3015
	mgmt_pending_remove(cmd);
3016 3017
}

3018
static void unpair_device_rsp(struct pending_cmd *cmd, void *data)
3019
{
3020
	struct hci_dev *hdev = data;
3021 3022
	struct mgmt_cp_unpair_device *cp = cmd->param;
	struct mgmt_rp_unpair_device rp;
3023 3024

	memset(&rp, 0, sizeof(rp));
3025 3026
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;
3027

3028 3029
	device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);

3030
	cmd_complete(cmd->sk, cmd->index, cmd->opcode, 0, &rp, sizeof(rp));
3031 3032 3033 3034

	mgmt_pending_remove(cmd);
}

3035
int mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
3036
			     u8 link_type, u8 addr_type)
3037
{
3038
	struct mgmt_addr_info ev;
3039 3040 3041
	struct sock *sk = NULL;
	int err;

3042
	mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
3043 3044

	bacpy(&ev.bdaddr, bdaddr);
3045
	ev.type = link_to_mgmt(link_type, addr_type);
3046

3047
	err = mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev),
3048
			 sk);
3049 3050

	if (sk)
3051
	  sock_put(sk);
3052

3053
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
3054
			     hdev);
3055

3056 3057 3058
	return err;
}

3059
int mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
3060
			   u8 link_type, u8 addr_type, u8 status)
3061
{
3062
	struct mgmt_rp_disconnect rp;
3063 3064 3065
	struct pending_cmd *cmd;
	int err;

3066
	cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
3067 3068 3069
	if (!cmd)
		return -ENOENT;

3070 3071
	bacpy(&rp.addr.bdaddr, bdaddr);
	rp.addr.type = link_to_mgmt(link_type, addr_type);
3072

3073
	err = cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT,
3074
			   mgmt_status(status), &rp, sizeof(rp));
3075

3076
	mgmt_pending_remove(cmd);
3077

3078 3079
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
									hdev);
3080
	return err;
3081
}
3082

3083
int mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
3084
			u8 addr_type, u8 status)
3085 3086 3087
{
	struct mgmt_ev_connect_failed ev;

3088
	bacpy(&ev.addr.bdaddr, bdaddr);
3089
	ev.addr.type = link_to_mgmt(link_type, addr_type);
3090
	ev.status = mgmt_status(status);
3091

3092
	return mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
3093
}
3094

3095
int mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
3096 3097 3098
{
	struct mgmt_ev_pin_code_request ev;

3099 3100
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = MGMT_ADDR_BREDR;
3101
	ev.secure = secure;
3102

3103
	return mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev),
3104
			  NULL);
3105 3106
}

3107
int mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
3108
				 u8 status)
3109 3110
{
	struct pending_cmd *cmd;
3111
	struct mgmt_rp_pin_code_reply rp;
3112 3113
	int err;

3114
	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
3115 3116 3117
	if (!cmd)
		return -ENOENT;

3118 3119
	bacpy(&rp.addr.bdaddr, bdaddr);
	rp.addr.type = MGMT_ADDR_BREDR;
3120

3121
	err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3122
			   mgmt_status(status), &rp, sizeof(rp));
3123

3124
	mgmt_pending_remove(cmd);
3125 3126 3127 3128

	return err;
}

3129
int mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
3130
				     u8 status)
3131 3132
{
	struct pending_cmd *cmd;
3133
	struct mgmt_rp_pin_code_reply rp;
3134 3135
	int err;

3136
	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
3137 3138 3139
	if (!cmd)
		return -ENOENT;

3140 3141
	bacpy(&rp.addr.bdaddr, bdaddr);
	rp.addr.type = MGMT_ADDR_BREDR;
3142

3143
	err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY,
3144
			   mgmt_status(status), &rp, sizeof(rp));
3145

3146
	mgmt_pending_remove(cmd);
3147 3148 3149

	return err;
}
3150

3151
int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
3152 3153
			      u8 link_type, u8 addr_type, __le32 value,
			      u8 confirm_hint)
3154 3155 3156
{
	struct mgmt_ev_user_confirm_request ev;

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

3159 3160
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_mgmt(link_type, addr_type);
3161
	ev.confirm_hint = confirm_hint;
3162
	ev.value = value;
3163

3164
	return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
3165
			  NULL);
3166 3167
}

3168 3169
int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
						u8 link_type, u8 addr_type)
3170 3171 3172 3173 3174
{
	struct mgmt_ev_user_passkey_request ev;

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

3175 3176
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_mgmt(link_type, addr_type);
3177 3178

	return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
3179
			  NULL);
3180 3181
}

3182
static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
3183 3184
					u8 link_type, u8 addr_type, u8 status,
					u8 opcode)
3185 3186 3187 3188 3189
{
	struct pending_cmd *cmd;
	struct mgmt_rp_user_confirm_reply rp;
	int err;

3190
	cmd = mgmt_pending_find(opcode, hdev);
3191 3192 3193
	if (!cmd)
		return -ENOENT;

3194 3195
	bacpy(&rp.addr.bdaddr, bdaddr);
	rp.addr.type = link_to_mgmt(link_type, addr_type);
3196
	err = cmd_complete(cmd->sk, hdev->id, opcode, mgmt_status(status),
3197
			   &rp, sizeof(rp));
3198

3199
	mgmt_pending_remove(cmd);
3200 3201 3202 3203

	return err;
}

3204
int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
3205
				     u8 link_type, u8 addr_type, u8 status)
3206
{
3207
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
3208
					  status, MGMT_OP_USER_CONFIRM_REPLY);
3209 3210
}

3211
int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
3212
					 u8 link_type, u8 addr_type, u8 status)
3213
{
3214
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
3215
					  status, MGMT_OP_USER_CONFIRM_NEG_REPLY);
3216
}
3217

3218
int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
3219
				     u8 link_type, u8 addr_type, u8 status)
3220
{
3221
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
3222
					  status, MGMT_OP_USER_PASSKEY_REPLY);
3223 3224
}

3225
int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
3226
					 u8 link_type, u8 addr_type, u8 status)
3227
{
3228
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
3229
					  status, MGMT_OP_USER_PASSKEY_NEG_REPLY);
3230 3231
}

3232
int mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
3233
		     u8 addr_type, u8 status)
3234 3235 3236
{
	struct mgmt_ev_auth_failed ev;

3237 3238
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_mgmt(link_type, addr_type);
3239
	ev.status = mgmt_status(status);
3240

3241
	return mgmt_event(MGMT_EV_AUTH_FAILED, hdev, &ev, sizeof(ev), NULL);
3242
}
3243

3244 3245 3246
int mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
{
	struct cmd_lookup match = { NULL, hdev };
3247 3248
	bool changed = false;
	int err = 0;
3249 3250 3251 3252

	if (status) {
		u8 mgmt_err = mgmt_status(status);
		mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
3253
				     cmd_status_rsp, &mgmt_err);
3254 3255 3256
		return 0;
	}

3257 3258 3259 3260 3261 3262 3263 3264
	if (test_bit(HCI_AUTH, &hdev->flags)) {
		if (!test_and_set_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
			changed = true;
	} else {
		if (test_and_clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
			changed = true;
	}

3265
	mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
3266
			     &match);
3267

3268 3269
	if (changed)
		err = new_settings(hdev, match.sk);
3270 3271 3272 3273 3274 3275 3276

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

	return err;
}

3277 3278 3279 3280 3281 3282 3283
static int clear_eir(struct hci_dev *hdev)
{
	struct hci_cp_write_eir cp;

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

3284 3285
	memset(hdev->eir, 0, sizeof(hdev->eir));

3286 3287 3288 3289 3290
	memset(&cp, 0, sizeof(cp));

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

3291
int mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
3292 3293
{
	struct cmd_lookup match = { NULL, hdev };
3294 3295
	bool changed = false;
	int err = 0;
3296 3297 3298

	if (status) {
		u8 mgmt_err = mgmt_status(status);
3299 3300

		if (enable && test_and_clear_bit(HCI_SSP_ENABLED,
3301
						 &hdev->dev_flags))
3302 3303
			err = new_settings(hdev, NULL);

3304 3305
		mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
				     &mgmt_err);
3306 3307 3308 3309 3310 3311 3312 3313 3314 3315

		return err;
	}

	if (enable) {
		if (!test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
			changed = true;
	} else {
		if (test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
			changed = true;
3316 3317 3318 3319
	}

	mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);

3320 3321
	if (changed)
		err = new_settings(hdev, match.sk);
3322

3323
	if (match.sk)
3324 3325
		sock_put(match.sk);

3326 3327 3328 3329
	if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
		update_eir(hdev);
	else
		clear_eir(hdev);
3330

3331 3332 3333
	return err;
}

3334 3335 3336 3337 3338
static void class_rsp(struct pending_cmd *cmd, void *data)
{
	struct cmd_lookup *match = data;

	cmd_complete(cmd->sk, cmd->index, cmd->opcode, match->mgmt_status,
3339
		     match->hdev->dev_class, 3);
3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350

	list_del(&cmd->list);

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

	mgmt_pending_free(cmd);
}

3351
int mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
3352
				   u8 status)
3353
{
3354 3355
	struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
	int err = 0;
3356

3357 3358
	clear_bit(HCI_PENDING_CLASS, &hdev->dev_flags);

3359 3360 3361 3362 3363
	mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, class_rsp, &match);
	mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, class_rsp, &match);
	mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, class_rsp, &match);

	if (!status)
3364 3365
		err = mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class,
				 3, NULL);
3366 3367 3368

	if (match.sk)
		sock_put(match.sk);
3369 3370 3371 3372

	return err;
}

3373
int mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
3374 3375 3376
{
	struct pending_cmd *cmd;
	struct mgmt_cp_set_local_name ev;
3377 3378 3379 3380 3381 3382 3383
	bool changed = false;
	int err = 0;

	if (memcmp(name, hdev->dev_name, sizeof(hdev->dev_name)) != 0) {
		memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
		changed = true;
	}
3384 3385 3386

	memset(&ev, 0, sizeof(ev));
	memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
3387
	memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
3388

3389
	cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
3390 3391 3392
	if (!cmd)
		goto send_event;

3393 3394 3395 3396
	/* Always assume that either the short or the complete name has
	 * changed if there was a pending mgmt command */
	changed = true;

3397
	if (status) {
3398
		err = cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3399
				 mgmt_status(status));
3400 3401 3402
		goto failed;
	}

3403
	err = cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0, &ev,
3404
			   sizeof(ev));
3405 3406 3407 3408
	if (err < 0)
		goto failed;

send_event:
3409 3410
	if (changed)
		err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev,
3411
				 sizeof(ev), cmd ? cmd->sk : NULL);
3412

3413
	update_eir(hdev);
3414 3415 3416 3417 3418 3419

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

3421
int mgmt_read_local_oob_data_reply_complete(struct hci_dev *hdev, u8 *hash,
3422
					    u8 *randomizer, u8 status)
3423 3424 3425 3426
{
	struct pending_cmd *cmd;
	int err;

3427
	BT_DBG("%s status %u", hdev->name, status);
3428

3429
	cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
3430 3431 3432 3433
	if (!cmd)
		return -ENOENT;

	if (status) {
3434 3435
		err = cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				 mgmt_status(status));
3436 3437 3438 3439 3440 3441
	} else {
		struct mgmt_rp_read_local_oob_data rp;

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

3442
		err = cmd_complete(cmd->sk, hdev->id,
3443 3444
				   MGMT_OP_READ_LOCAL_OOB_DATA, 0, &rp,
				   sizeof(rp));
3445 3446 3447 3448 3449 3450
	}

	mgmt_pending_remove(cmd);

	return err;
}
3451

3452 3453 3454 3455 3456 3457 3458 3459 3460 3461
int mgmt_le_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
{
	struct cmd_lookup match = { NULL, hdev };
	bool changed = false;
	int err = 0;

	if (status) {
		u8 mgmt_err = mgmt_status(status);

		if (enable && test_and_clear_bit(HCI_LE_ENABLED,
3462 3463
						 &hdev->dev_flags))
		  err = new_settings(hdev, NULL);
3464 3465

		mgmt_pending_foreach(MGMT_OP_SET_LE, hdev,
3466
				     cmd_status_rsp, &mgmt_err);
3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489

		return err;
	}

	if (enable) {
		if (!test_and_set_bit(HCI_LE_ENABLED, &hdev->dev_flags))
			changed = true;
	} else {
		if (test_and_clear_bit(HCI_LE_ENABLED, &hdev->dev_flags))
			changed = true;
	}

	mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);

	if (changed)
		err = new_settings(hdev, match.sk);

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

	return err;
}

3490
int mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
3491 3492
		      u8 addr_type, u8 *dev_class, s8 rssi, u8 cfm_name, u8
		      ssp, u8 *eir, u16 eir_len)
3493
{
3494 3495
	char buf[512];
	struct mgmt_ev_device_found *ev = (void *) buf;
3496
	size_t ev_size;
3497

3498 3499
	/* Leave 5 bytes for a potential CoD field */
	if (sizeof(*ev) + eir_len + 5 > sizeof(buf))
3500 3501
		return -EINVAL;

3502 3503
	memset(buf, 0, sizeof(buf));

3504 3505 3506
	bacpy(&ev->addr.bdaddr, bdaddr);
	ev->addr.type = link_to_mgmt(link_type, addr_type);
	ev->rssi = rssi;
3507 3508
	if (cfm_name)
		ev->flags[0] |= MGMT_DEV_FOUND_CONFIRM_NAME;
3509 3510
	if (!ssp)
		ev->flags[0] |= MGMT_DEV_FOUND_LEGACY_PAIRING;
3511

3512
	if (eir_len > 0)
3513
		memcpy(ev->eir, eir, eir_len);
3514

3515 3516
	if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
		eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
3517
					  dev_class, 3);
3518

3519
	ev->eir_len = cpu_to_le16(eir_len);
3520 3521

	ev_size = sizeof(*ev) + eir_len;
3522

3523
	return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
3524
}
3525

3526
int mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
3527
		     u8 addr_type, s8 rssi, u8 *name, u8 name_len)
3528
{
3529 3530 3531
	struct mgmt_ev_device_found *ev;
	char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
	u16 eir_len;
3532

3533
	ev = (struct mgmt_ev_device_found *) buf;
3534

3535 3536 3537 3538 3539 3540 3541
	memset(buf, 0, sizeof(buf));

	bacpy(&ev->addr.bdaddr, bdaddr);
	ev->addr.type = link_to_mgmt(link_type, addr_type);
	ev->rssi = rssi;

	eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
3542
				  name_len);
3543

3544
	ev->eir_len = cpu_to_le16(eir_len);
3545

3546
	return mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev,
3547
			  sizeof(*ev) + eir_len, NULL);
3548
}
3549

3550
int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status)
3551 3552
{
	struct pending_cmd *cmd;
3553
	u8 type;
3554 3555
	int err;

3556 3557
	hci_discovery_set_state(hdev, DISCOVERY_STOPPED);

3558
	cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
3559 3560 3561
	if (!cmd)
		return -ENOENT;

3562 3563 3564
	type = hdev->discovery.type;

	err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
3565
			   &type, sizeof(type));
3566 3567 3568 3569 3570
	mgmt_pending_remove(cmd);

	return err;
}

3571 3572 3573 3574 3575 3576 3577 3578 3579
int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status)
{
	struct pending_cmd *cmd;
	int err;

	cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
	if (!cmd)
		return -ENOENT;

3580
	err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
3581
			   &hdev->discovery.type, sizeof(hdev->discovery.type));
3582 3583 3584 3585 3586
	mgmt_pending_remove(cmd);

	return err;
}

3587
int mgmt_discovering(struct hci_dev *hdev, u8 discovering)
3588
{
3589
	struct mgmt_ev_discovering ev;
3590 3591
	struct pending_cmd *cmd;

3592 3593
	BT_DBG("%s discovering %u", hdev->name, discovering);

3594
	if (discovering)
3595
		cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
3596
	else
3597
		cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
3598 3599

	if (cmd != NULL) {
3600 3601
		u8 type = hdev->discovery.type;

3602 3603
		cmd_complete(cmd->sk, hdev->id, cmd->opcode, 0, &type,
			     sizeof(type));
3604 3605 3606
		mgmt_pending_remove(cmd);
	}

3607 3608 3609 3610 3611
	memset(&ev, 0, sizeof(ev));
	ev.type = hdev->discovery.type;
	ev.discovering = discovering;

	return mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
3612
}
3613

3614
int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
3615 3616 3617 3618
{
	struct pending_cmd *cmd;
	struct mgmt_ev_device_blocked ev;

3619
	cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, hdev);
3620

3621 3622
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = type;
3623

3624
	return mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &ev, sizeof(ev),
3625
			  cmd ? cmd->sk : NULL);
3626 3627
}

3628
int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
3629 3630 3631 3632
{
	struct pending_cmd *cmd;
	struct mgmt_ev_device_unblocked ev;

3633
	cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, hdev);
3634

3635 3636
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = type;
3637

3638
	return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &ev, sizeof(ev),
3639
			  cmd ? cmd->sk : NULL);
3640
}
3641 3642 3643 3644 3645 3646

module_param(enable_hs, bool, 0644);
MODULE_PARM_DESC(enable_hs, "Enable High Speed support");

module_param(enable_le, bool, 0644);
MODULE_PARM_DESC(enable_le, "Enable Low Energy support");