mgmt.c 184.6 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/module.h>
28 29 30 31
#include <asm/unaligned.h>

#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/hci_core.h>
32
#include <net/bluetooth/hci_sock.h>
33
#include <net/bluetooth/l2cap.h>
34
#include <net/bluetooth/mgmt.h>
35

36
#include "hci_request.h"
37
#include "smp.h"
38

39
#define MGMT_VERSION	1
40
#define MGMT_REVISION	9
41

42 43 44 45 46 47 48
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,
49
	MGMT_OP_SET_BONDABLE,
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
	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,
80
	MGMT_OP_SET_DEVICE_ID,
81
	MGMT_OP_SET_ADVERTISING,
82
	MGMT_OP_SET_BREDR,
83
	MGMT_OP_SET_STATIC_ADDRESS,
84
	MGMT_OP_SET_SCAN_PARAMS,
85
	MGMT_OP_SET_SECURE_CONN,
86
	MGMT_OP_SET_DEBUG_KEYS,
87
	MGMT_OP_SET_PRIVACY,
88
	MGMT_OP_LOAD_IRKS,
89
	MGMT_OP_GET_CONN_INFO,
90
	MGMT_OP_GET_CLOCK_INFO,
91 92
	MGMT_OP_ADD_DEVICE,
	MGMT_OP_REMOVE_DEVICE,
93
	MGMT_OP_LOAD_CONN_PARAM,
94
	MGMT_OP_READ_UNCONF_INDEX_LIST,
95
	MGMT_OP_READ_CONFIG_INFO,
96
	MGMT_OP_SET_EXTERNAL_CONFIG,
97
	MGMT_OP_SET_PUBLIC_ADDRESS,
98
	MGMT_OP_START_SERVICE_DISCOVERY,
99
	MGMT_OP_READ_EXT_INDEX_LIST,
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122
};

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,
123
	MGMT_EV_PASSKEY_NOTIFY,
124
	MGMT_EV_NEW_IRK,
125
	MGMT_EV_NEW_CSRK,
126 127
	MGMT_EV_DEVICE_ADDED,
	MGMT_EV_DEVICE_REMOVED,
128
	MGMT_EV_NEW_CONN_PARAM,
129
	MGMT_EV_UNCONF_INDEX_ADDED,
130
	MGMT_EV_UNCONF_INDEX_REMOVED,
131
	MGMT_EV_NEW_CONFIG_OPTIONS,
132 133
	MGMT_EV_EXT_INDEX_ADDED,
	MGMT_EV_EXT_INDEX_REMOVED,
134 135
};

136
#define CACHE_TIMEOUT	msecs_to_jiffies(2 * 1000)
137

138 139 140
#define ZERO_KEY "\x00\x00\x00\x00\x00\x00\x00\x00" \
		 "\x00\x00\x00\x00\x00\x00\x00\x00"

141
struct mgmt_pending_cmd {
142
	struct list_head list;
143
	u16 opcode;
144
	int index;
145
	void *param;
146
	size_t param_len;
147
	struct sock *sk;
148
	void *user_data;
149
	int (*cmd_complete)(struct mgmt_pending_cmd *cmd, u8 status);
150 151
};

152 153 154 155 156 157 158 159
/* 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 */
160
	MGMT_STATUS_AUTH_FAILED,	/* PIN or Key Missing */
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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
	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;
}

225 226 227
static int mgmt_send_event(u16 event, struct hci_dev *hdev,
			   unsigned short channel, void *data, u16 data_len,
			   struct sock *skip_sk)
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;

	skb = alloc_skb(sizeof(*hdr) + data_len, GFP_KERNEL);
	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);

	/* Time stamp */
	__net_timestamp(skb);

250
	hci_send_to_channel(channel, skb, skip_sk);
251 252 253 254 255
	kfree_skb(skb);

	return 0;
}

256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
static int mgmt_index_event(u16 event, struct hci_dev *hdev,
			    void *data, u16 data_len, int flag)
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;

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

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

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

	/* Time stamp */
	__net_timestamp(skb);

	hci_send_to_flagged_channel(HCI_CHANNEL_CONTROL, skb, flag);
	kfree_skb(skb);

	return 0;
}

283 284 285 286 287 288 289
static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 len,
		      struct sock *skip_sk)
{
	return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
			       skip_sk);
}

290
static int mgmt_cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
291 292 293 294
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;
	struct mgmt_ev_cmd_status *ev;
295
	int err;
296

297
	BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
298

299
	skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL);
300 301 302 303 304
	if (!skb)
		return -ENOMEM;

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

305
	hdr->opcode = cpu_to_le16(MGMT_EV_CMD_STATUS);
306
	hdr->index = cpu_to_le16(index);
307 308 309 310
	hdr->len = cpu_to_le16(sizeof(*ev));

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

313 314
	err = sock_queue_rcv_skb(sk, skb);
	if (err < 0)
315 316
		kfree_skb(skb);

317
	return err;
318 319
}

320 321
static int mgmt_cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status,
			     void *rp, size_t rp_len)
322 323 324 325
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;
	struct mgmt_ev_cmd_complete *ev;
326
	int err;
327 328 329

	BT_DBG("sock %p", sk);

330
	skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_KERNEL);
331 332 333 334 335
	if (!skb)
		return -ENOMEM;

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

336
	hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
337
	hdr->index = cpu_to_le16(index);
338
	hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
339

340
	ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
341
	ev->opcode = cpu_to_le16(cmd);
342
	ev->status = status;
343 344 345

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

347 348
	err = sock_queue_rcv_skb(sk, skb);
	if (err < 0)
349 350
		kfree_skb(skb);

351
	return err;
352 353
}

354 355
static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
			u16 data_len)
356 357 358 359 360 361
{
	struct mgmt_rp_read_version rp;

	BT_DBG("sock %p", sk);

	rp.version = MGMT_VERSION;
362
	rp.revision = cpu_to_le16(MGMT_REVISION);
363

364 365
	return mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0,
				 &rp, sizeof(rp));
366 367
}

368 369
static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 data_len)
370 371
{
	struct mgmt_rp_read_commands *rp;
372 373
	const u16 num_commands = ARRAY_SIZE(mgmt_commands);
	const u16 num_events = ARRAY_SIZE(mgmt_events);
374
	__le16 *opcode;
375 376 377 378 379 380 381 382 383 384 385
	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;

386 387
	rp->num_commands = cpu_to_le16(num_commands);
	rp->num_events = cpu_to_le16(num_events);
388 389 390 391 392 393 394

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

395 396
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0,
				rp, rp_size);
397 398 399 400 401
	kfree(rp);

	return err;
}

402 403
static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
404 405
{
	struct mgmt_rp_read_index_list *rp;
406
	struct hci_dev *d;
407
	size_t rp_len;
408
	u16 count;
409
	int err;
410 411 412 413 414 415

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

	count = 0;
416
	list_for_each_entry(d, &hci_dev_list, list) {
417
		if (d->dev_type == HCI_BREDR &&
418
		    !hci_dev_test_flag(d, HCI_UNCONFIGURED))
419
			count++;
420 421
	}

422 423 424
	rp_len = sizeof(*rp) + (2 * count);
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
425
		read_unlock(&hci_dev_list_lock);
426
		return -ENOMEM;
427
	}
428

429
	count = 0;
430
	list_for_each_entry(d, &hci_dev_list, list) {
431 432 433
		if (hci_dev_test_flag(d, HCI_SETUP) ||
		    hci_dev_test_flag(d, HCI_CONFIG) ||
		    hci_dev_test_flag(d, HCI_USER_CHANNEL))
434 435
			continue;

436 437 438 439
		/* Devices marked as raw-only are neither configured
		 * nor unconfigured controllers.
		 */
		if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
440 441
			continue;

442
		if (d->dev_type == HCI_BREDR &&
443
		    !hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
444 445 446
			rp->index[count++] = cpu_to_le16(d->id);
			BT_DBG("Added hci%u", d->id);
		}
447 448
	}

449 450 451
	rp->num_controllers = cpu_to_le16(count);
	rp_len = sizeof(*rp) + (2 * count);

452 453
	read_unlock(&hci_dev_list_lock);

454 455
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST,
				0, rp, rp_len);
456

457 458 459
	kfree(rp);

	return err;
460 461
}

462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477
static int read_unconf_index_list(struct sock *sk, struct hci_dev *hdev,
				  void *data, u16 data_len)
{
	struct mgmt_rp_read_unconf_index_list *rp;
	struct hci_dev *d;
	size_t rp_len;
	u16 count;
	int err;

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

	count = 0;
	list_for_each_entry(d, &hci_dev_list, list) {
		if (d->dev_type == HCI_BREDR &&
478
		    hci_dev_test_flag(d, HCI_UNCONFIGURED))
479 480 481 482 483 484 485 486 487 488 489 490
			count++;
	}

	rp_len = sizeof(*rp) + (2 * count);
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
		read_unlock(&hci_dev_list_lock);
		return -ENOMEM;
	}

	count = 0;
	list_for_each_entry(d, &hci_dev_list, list) {
491 492 493
		if (hci_dev_test_flag(d, HCI_SETUP) ||
		    hci_dev_test_flag(d, HCI_CONFIG) ||
		    hci_dev_test_flag(d, HCI_USER_CHANNEL))
494 495 496 497 498 499 500 501 502
			continue;

		/* Devices marked as raw-only are neither configured
		 * nor unconfigured controllers.
		 */
		if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
			continue;

		if (d->dev_type == HCI_BREDR &&
503
		    hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
504 505 506 507 508 509 510 511 512 513
			rp->index[count++] = cpu_to_le16(d->id);
			BT_DBG("Added hci%u", d->id);
		}
	}

	rp->num_controllers = cpu_to_le16(count);
	rp_len = sizeof(*rp) + (2 * count);

	read_unlock(&hci_dev_list_lock);

514 515
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
				MGMT_OP_READ_UNCONF_INDEX_LIST, 0, rp, rp_len);
516 517 518 519 520 521

	kfree(rp);

	return err;
}

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 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
static int read_ext_index_list(struct sock *sk, struct hci_dev *hdev,
			       void *data, u16 data_len)
{
	struct mgmt_rp_read_ext_index_list *rp;
	struct hci_dev *d;
	size_t rp_len;
	u16 count;
	int err;

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

	count = 0;
	list_for_each_entry(d, &hci_dev_list, list) {
		if (d->dev_type == HCI_BREDR || d->dev_type == HCI_AMP)
			count++;
	}

	rp_len = sizeof(*rp) + (sizeof(rp->entry[0]) * count);
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
		read_unlock(&hci_dev_list_lock);
		return -ENOMEM;
	}

	count = 0;
	list_for_each_entry(d, &hci_dev_list, list) {
		if (hci_dev_test_flag(d, HCI_SETUP) ||
		    hci_dev_test_flag(d, HCI_CONFIG) ||
		    hci_dev_test_flag(d, HCI_USER_CHANNEL))
			continue;

		/* Devices marked as raw-only are neither configured
		 * nor unconfigured controllers.
		 */
		if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
			continue;

		if (d->dev_type == HCI_BREDR) {
			if (hci_dev_test_flag(d, HCI_UNCONFIGURED))
				rp->entry[count].type = 0x01;
			else
				rp->entry[count].type = 0x00;
		} else if (d->dev_type == HCI_AMP) {
			rp->entry[count].type = 0x02;
		} else {
			continue;
		}

		rp->entry[count].bus = d->bus;
		rp->entry[count++].index = cpu_to_le16(d->id);
		BT_DBG("Added hci%u", d->id);
	}

	rp->num_controllers = cpu_to_le16(count);
	rp_len = sizeof(*rp) + (sizeof(rp->entry[0]) * count);

	read_unlock(&hci_dev_list_lock);

	/* If this command is called at least once, then all the
	 * default index and unconfigured index events are disabled
	 * and from now on only extended index events are used.
	 */
	hci_sock_set_flag(sk, HCI_MGMT_EXT_INDEX_EVENTS);
	hci_sock_clear_flag(sk, HCI_MGMT_INDEX_EVENTS);
	hci_sock_clear_flag(sk, HCI_MGMT_UNCONF_INDEX_EVENTS);

	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
				MGMT_OP_READ_EXT_INDEX_LIST, 0, rp, rp_len);

	kfree(rp);

	return err;
}

598 599 600
static bool is_configured(struct hci_dev *hdev)
{
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
601
	    !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
602 603 604 605 606 607 608 609 610
		return false;

	if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
	    !bacmp(&hdev->public_addr, BDADDR_ANY))
		return false;

	return true;
}

611 612 613 614
static __le32 get_missing_options(struct hci_dev *hdev)
{
	u32 options = 0;

615
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
616
	    !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
617 618
		options |= MGMT_OPTION_EXTERNAL_CONFIG;

619 620 621 622 623 624 625
	if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
	    !bacmp(&hdev->public_addr, BDADDR_ANY))
		options |= MGMT_OPTION_PUBLIC_ADDRESS;

	return cpu_to_le32(options);
}

626 627 628 629 630 631 632 633
static int new_options(struct hci_dev *hdev, struct sock *skip)
{
	__le32 options = get_missing_options(hdev);

	return mgmt_event(MGMT_EV_NEW_CONFIG_OPTIONS, hdev, &options,
			  sizeof(options), skip);
}

634 635 636 637
static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
{
	__le32 options = get_missing_options(hdev);

638 639
	return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &options,
				 sizeof(options));
640 641
}

642 643 644 645
static int read_config_info(struct sock *sk, struct hci_dev *hdev,
			    void *data, u16 data_len)
{
	struct mgmt_rp_read_config_info rp;
646
	u32 options = 0;
647 648 649 650 651 652 653

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

	hci_dev_lock(hdev);

	memset(&rp, 0, sizeof(rp));
	rp.manufacturer = cpu_to_le16(hdev->manufacturer);
654

655 656 657
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
		options |= MGMT_OPTION_EXTERNAL_CONFIG;

658
	if (hdev->set_bdaddr)
659 660 661 662
		options |= MGMT_OPTION_PUBLIC_ADDRESS;

	rp.supported_options = cpu_to_le32(options);
	rp.missing_options = get_missing_options(hdev);
663 664 665

	hci_dev_unlock(hdev);

666 667
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0,
				 &rp, sizeof(rp));
668 669
}

670 671 672 673 674
static u32 get_supported_settings(struct hci_dev *hdev)
{
	u32 settings = 0;

	settings |= MGMT_SETTING_POWERED;
675
	settings |= MGMT_SETTING_BONDABLE;
676
	settings |= MGMT_SETTING_DEBUG_KEYS;
677 678
	settings |= MGMT_SETTING_CONNECTABLE;
	settings |= MGMT_SETTING_DISCOVERABLE;
679

680
	if (lmp_bredr_capable(hdev)) {
681 682
		if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
			settings |= MGMT_SETTING_FAST_CONNECTABLE;
683 684
		settings |= MGMT_SETTING_BREDR;
		settings |= MGMT_SETTING_LINK_SECURITY;
685 686 687 688 689

		if (lmp_ssp_capable(hdev)) {
			settings |= MGMT_SETTING_SSP;
			settings |= MGMT_SETTING_HS;
		}
690

691
		if (lmp_sc_capable(hdev))
692
			settings |= MGMT_SETTING_SECURE_CONN;
693
	}
694

695
	if (lmp_le_capable(hdev)) {
696
		settings |= MGMT_SETTING_LE;
697
		settings |= MGMT_SETTING_ADVERTISING;
698
		settings |= MGMT_SETTING_SECURE_CONN;
699
		settings |= MGMT_SETTING_PRIVACY;
700
		settings |= MGMT_SETTING_STATIC_ADDRESS;
701
	}
702

703 704
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
	    hdev->set_bdaddr)
705 706
		settings |= MGMT_SETTING_CONFIGURATION;

707 708 709 710 711 712 713
	return settings;
}

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

714
	if (hdev_is_powered(hdev))
715 716
		settings |= MGMT_SETTING_POWERED;

717
	if (hci_dev_test_flag(hdev, HCI_CONNECTABLE))
718 719
		settings |= MGMT_SETTING_CONNECTABLE;

720
	if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
721 722
		settings |= MGMT_SETTING_FAST_CONNECTABLE;

723
	if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
724 725
		settings |= MGMT_SETTING_DISCOVERABLE;

726
	if (hci_dev_test_flag(hdev, HCI_BONDABLE))
727
		settings |= MGMT_SETTING_BONDABLE;
728

729
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
730 731
		settings |= MGMT_SETTING_BREDR;

732
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
733 734
		settings |= MGMT_SETTING_LE;

735
	if (hci_dev_test_flag(hdev, HCI_LINK_SECURITY))
736 737
		settings |= MGMT_SETTING_LINK_SECURITY;

738
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
739 740
		settings |= MGMT_SETTING_SSP;

741
	if (hci_dev_test_flag(hdev, HCI_HS_ENABLED))
742 743
		settings |= MGMT_SETTING_HS;

744
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
745 746
		settings |= MGMT_SETTING_ADVERTISING;

747
	if (hci_dev_test_flag(hdev, HCI_SC_ENABLED))
748 749
		settings |= MGMT_SETTING_SECURE_CONN;

750
	if (hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS))
751 752
		settings |= MGMT_SETTING_DEBUG_KEYS;

753
	if (hci_dev_test_flag(hdev, HCI_PRIVACY))
754 755
		settings |= MGMT_SETTING_PRIVACY;

756 757 758 759 760 761 762 763 764 765 766 767
	/* The current setting for static address has two purposes. The
	 * first is to indicate if the static address will be used and
	 * the second is to indicate if it is actually set.
	 *
	 * This means if the static address is not configured, this flag
	 * will never bet set. If the address is configured, then if the
	 * address is actually used decides if the flag is set or not.
	 *
	 * For single mode LE only controllers and dual-mode controllers
	 * with BR/EDR disabled, the existence of the static address will
	 * be evaluated.
	 */
768
	if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
769
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
770 771 772 773 774
	    !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
		if (bacmp(&hdev->static_addr, BDADDR_ANY))
			settings |= MGMT_SETTING_STATIC_ADDRESS;
	}

775 776 777
	return settings;
}

778 779
#define PNP_INFO_SVCLASS_ID		0x1200

780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821
static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
{
	u8 *ptr = data, *uuids_start = NULL;
	struct bt_uuid *uuid;

	if (len < 4)
		return ptr;

	list_for_each_entry(uuid, &hdev->uuids, list) {
		u16 uuid16;

		if (uuid->size != 16)
			continue;

		uuid16 = get_unaligned_le16(&uuid->uuid[12]);
		if (uuid16 < 0x1100)
			continue;

		if (uuid16 == PNP_INFO_SVCLASS_ID)
			continue;

		if (!uuids_start) {
			uuids_start = ptr;
			uuids_start[0] = 1;
			uuids_start[1] = EIR_UUID16_ALL;
			ptr += 2;
		}

		/* Stop if not enough space to put next UUID */
		if ((ptr - data) + sizeof(u16) > len) {
			uuids_start[1] = EIR_UUID16_SOME;
			break;
		}

		*ptr++ = (uuid16 & 0x00ff);
		*ptr++ = (uuid16 & 0xff00) >> 8;
		uuids_start[0] += sizeof(uuid16);
	}

	return ptr;
}

822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854
static u8 *create_uuid32_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
{
	u8 *ptr = data, *uuids_start = NULL;
	struct bt_uuid *uuid;

	if (len < 6)
		return ptr;

	list_for_each_entry(uuid, &hdev->uuids, list) {
		if (uuid->size != 32)
			continue;

		if (!uuids_start) {
			uuids_start = ptr;
			uuids_start[0] = 1;
			uuids_start[1] = EIR_UUID32_ALL;
			ptr += 2;
		}

		/* Stop if not enough space to put next UUID */
		if ((ptr - data) + sizeof(u32) > len) {
			uuids_start[1] = EIR_UUID32_SOME;
			break;
		}

		memcpy(ptr, &uuid->uuid[12], sizeof(u32));
		ptr += sizeof(u32);
		uuids_start[0] += sizeof(u32);
	}

	return ptr;
}

855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887
static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
{
	u8 *ptr = data, *uuids_start = NULL;
	struct bt_uuid *uuid;

	if (len < 18)
		return ptr;

	list_for_each_entry(uuid, &hdev->uuids, list) {
		if (uuid->size != 128)
			continue;

		if (!uuids_start) {
			uuids_start = ptr;
			uuids_start[0] = 1;
			uuids_start[1] = EIR_UUID128_ALL;
			ptr += 2;
		}

		/* Stop if not enough space to put next UUID */
		if ((ptr - data) + 16 > len) {
			uuids_start[1] = EIR_UUID128_SOME;
			break;
		}

		memcpy(ptr, uuid->uuid, 16);
		ptr += 16;
		uuids_start[0] += 16;
	}

	return ptr;
}

888 889
static struct mgmt_pending_cmd *mgmt_pending_find(u16 opcode,
						  struct hci_dev *hdev)
890
{
891
	struct mgmt_pending_cmd *cmd;
892 893 894 895 896 897 898 899 900

	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
		if (cmd->opcode == opcode)
			return cmd;
	}

	return NULL;
}

901 902 903
static struct mgmt_pending_cmd *mgmt_pending_find_data(u16 opcode,
						       struct hci_dev *hdev,
						       const void *data)
904
{
905
	struct mgmt_pending_cmd *cmd;
906 907 908 909 910 911 912 913 914 915 916

	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
		if (cmd->user_data != data)
			continue;
		if (cmd->opcode == opcode)
			return cmd;
	}

	return NULL;
}

917 918
static u8 create_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
{
919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940
	u8 ad_len = 0;
	size_t name_len;

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

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

		ptr[0] = name_len + 1;

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

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

	return ad_len;
941 942 943 944 945 946 947 948
}

static void update_scan_rsp_data(struct hci_request *req)
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_scan_rsp_data cp;
	u8 len;

949
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
950 951 952 953 954 955
		return;

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

	len = create_scan_rsp_data(hdev, cp.data);

956 957
	if (hdev->scan_rsp_data_len == len &&
	    memcmp(cp.data, hdev->scan_rsp_data, len) == 0)
958 959
		return;

960 961
	memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
	hdev->scan_rsp_data_len = len;
962 963 964 965 966 967

	cp.length = len;

	hci_req_add(req, HCI_OP_LE_SET_SCAN_RSP_DATA, sizeof(cp), &cp);
}

968 969
static u8 get_adv_discov_flags(struct hci_dev *hdev)
{
970
	struct mgmt_pending_cmd *cmd;
971 972 973 974 975 976 977 978 979 980 981 982

	/* If there's a pending mgmt command the flags will not yet have
	 * their final values, so check for this first.
	 */
	cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
	if (cmd) {
		struct mgmt_mode *cp = cmd->param;
		if (cp->val == 0x01)
			return LE_AD_GENERAL;
		else if (cp->val == 0x02)
			return LE_AD_LIMITED;
	} else {
983
		if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
984
			return LE_AD_LIMITED;
985
		else if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
986 987 988 989 990 991
			return LE_AD_GENERAL;
	}

	return 0;
}

992
static u8 create_adv_data(struct hci_dev *hdev, u8 *ptr)
993 994 995
{
	u8 ad_len = 0, flags = 0;

996
	flags |= get_adv_discov_flags(hdev);
997

998
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023
		flags |= LE_AD_NO_BREDR;

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

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

		ad_len += 3;
		ptr += 3;
	}

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

		ad_len += 3;
		ptr += 3;
	}

	return ad_len;
}

1024
static void update_adv_data(struct hci_request *req)
1025 1026 1027 1028 1029
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_adv_data cp;
	u8 len;

1030
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1031 1032 1033 1034
		return;

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

1035
	len = create_adv_data(hdev, cp.data);
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048

	if (hdev->adv_data_len == len &&
	    memcmp(cp.data, hdev->adv_data, len) == 0)
		return;

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

	cp.length = len;

	hci_req_add(req, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);
}

1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
int mgmt_update_adv_data(struct hci_dev *hdev)
{
	struct hci_request req;

	hci_req_init(&req, hdev);
	update_adv_data(&req);

	return hci_req_run(&req, NULL);
}

1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
static void create_eir(struct hci_dev *hdev, u8 *data)
{
	u8 *ptr = data;
	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);

		ptr += (name_len + 2);
	}

1082
	if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
1083 1084 1085 1086 1087 1088 1089
		ptr[0] = 2;
		ptr[1] = EIR_TX_POWER;
		ptr[2] = (u8) hdev->inq_tx_power;

		ptr += 3;
	}

1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101
	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);

		ptr += 10;
	}

1102
	ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
1103
	ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
1104
	ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
1105 1106
}

1107
static void update_eir(struct hci_request *req)
1108
{
1109
	struct hci_dev *hdev = req->hdev;
1110 1111
	struct hci_cp_write_eir cp;

1112
	if (!hdev_is_powered(hdev))
1113
		return;
1114

1115
	if (!lmp_ext_inq_capable(hdev))
1116
		return;
1117

1118
	if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
1119
		return;
1120

1121
	if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
1122
		return;
1123 1124 1125 1126 1127 1128

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

	create_eir(hdev, cp.data);

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

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

1133
	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146
}

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

1147
static void update_class(struct hci_request *req)
1148
{
1149
	struct hci_dev *hdev = req->hdev;
1150 1151 1152 1153
	u8 cod[3];

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

1154
	if (!hdev_is_powered(hdev))
1155
		return;
1156

1157
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1158 1159
		return;

1160
	if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
1161
		return;
1162 1163 1164 1165 1166

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

1167
	if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
1168 1169
		cod[1] |= 0x20;

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

1173
	hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
1174 1175
}

1176
static bool get_connectable(struct hci_dev *hdev)
1177
{
1178
	struct mgmt_pending_cmd *cmd;
1179 1180 1181 1182 1183 1184 1185

	/* If there's a pending mgmt command the flag will not yet have
	 * it's final value, so check for this first.
	 */
	cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
	if (cmd) {
		struct mgmt_mode *cp = cmd->param;
1186
		return cp->val;
1187 1188
	}

1189
	return hci_dev_test_flag(hdev, HCI_CONNECTABLE);
1190 1191
}

1192 1193 1194 1195 1196 1197 1198
static void disable_advertising(struct hci_request *req)
{
	u8 enable = 0x00;

	hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
}

1199 1200 1201 1202
static void enable_advertising(struct hci_request *req)
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_adv_param cp;
1203
	u8 own_addr_type, enable = 0x01;
1204
	bool connectable;
1205

1206 1207 1208
	if (hci_conn_num(hdev, LE_LINK) > 0)
		return;

1209
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
1210 1211
		disable_advertising(req);

1212
	/* Clear the HCI_LE_ADV bit temporarily so that the
1213 1214 1215 1216
	 * hci_update_random_address knows that it's safe to go ahead
	 * and write a new random address. The flag will be set back on
	 * as soon as the SET_ADV_ENABLE HCI command completes.
	 */
1217
	hci_dev_clear_flag(hdev, HCI_LE_ADV);
1218

1219
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE))
1220 1221 1222
		connectable = true;
	else
		connectable = get_connectable(hdev);
1223

1224 1225 1226 1227 1228
	/* Set require_privacy to true only when non-connectable
	 * advertising is used. In that case it is fine to use a
	 * non-resolvable private address.
	 */
	if (hci_update_random_address(req, !connectable, &own_addr_type) < 0)
1229 1230
		return;

1231
	memset(&cp, 0, sizeof(cp));
1232 1233
	cp.min_interval = cpu_to_le16(hdev->le_adv_min_interval);
	cp.max_interval = cpu_to_le16(hdev->le_adv_max_interval);
1234
	cp.type = connectable ? LE_ADV_IND : LE_ADV_NONCONN_IND;
1235
	cp.own_address_type = own_addr_type;
1236 1237 1238 1239 1240 1241 1242
	cp.channel_map = hdev->le_adv_channel_map;

	hci_req_add(req, HCI_OP_LE_SET_ADV_PARAM, sizeof(cp), &cp);

	hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
}

1243 1244 1245
static void service_cache_off(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
1246
					    service_cache.work);
1247
	struct hci_request req;
1248

1249
	if (!hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
1250 1251
		return;

1252 1253
	hci_req_init(&req, hdev);

1254 1255
	hci_dev_lock(hdev);

1256 1257
	update_eir(&req);
	update_class(&req);
1258 1259

	hci_dev_unlock(hdev);
1260 1261

	hci_req_run(&req, NULL);
1262 1263
}

1264 1265 1266 1267 1268 1269 1270 1271
static void rpa_expired(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
					    rpa_expired.work);
	struct hci_request req;

	BT_DBG("");

1272
	hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
1273

1274
	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
1275 1276 1277 1278 1279 1280 1281 1282 1283 1284
		return;

	/* The generation of a new RPA and programming it into the
	 * controller happens in the enable_advertising() function.
	 */
	hci_req_init(&req, hdev);
	enable_advertising(&req);
	hci_req_run(&req, NULL);
}

1285
static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
1286
{
1287
	if (hci_dev_test_and_set_flag(hdev, HCI_MGMT))
1288 1289
		return;

1290
	INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
1291
	INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
1292

1293 1294 1295 1296 1297
	/* 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
	 */
1298
	hci_dev_clear_flag(hdev, HCI_BONDABLE);
1299 1300
}

1301
static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
1302
				void *data, u16 data_len)
1303
{
1304
	struct mgmt_rp_read_info rp;
1305

1306
	BT_DBG("sock %p %s", sk, hdev->name);
1307

1308
	hci_dev_lock(hdev);
1309

1310 1311
	memset(&rp, 0, sizeof(rp));

1312
	bacpy(&rp.bdaddr, &hdev->bdaddr);
1313

1314
	rp.version = hdev->hci_ver;
1315
	rp.manufacturer = cpu_to_le16(hdev->manufacturer);
1316 1317 1318

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

1320
	memcpy(rp.dev_class, hdev->dev_class, 3);
1321

1322
	memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
1323
	memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
1324

1325
	hci_dev_unlock(hdev);
1326

1327 1328
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
				 sizeof(rp));
1329 1330
}

1331
static void mgmt_pending_free(struct mgmt_pending_cmd *cmd)
1332 1333
{
	sock_put(cmd->sk);
1334
	kfree(cmd->param);
1335 1336 1337
	kfree(cmd);
}

1338 1339 1340
static struct mgmt_pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
						 struct hci_dev *hdev,
						 void *data, u16 len)
1341
{
1342
	struct mgmt_pending_cmd *cmd;
1343

1344
	cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1345
	if (!cmd)
1346
		return NULL;
1347 1348

	cmd->opcode = opcode;
1349
	cmd->index = hdev->id;
1350

1351
	cmd->param = kmemdup(data, len, GFP_KERNEL);
1352
	if (!cmd->param) {
1353
		kfree(cmd);
1354
		return NULL;
1355 1356
	}

1357
	cmd->param_len = len;
1358 1359 1360 1361

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

1362
	list_add(&cmd->list, &hdev->mgmt_pending);
1363

1364
	return cmd;
1365 1366
}

1367
static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
1368
				 void (*cb)(struct mgmt_pending_cmd *cmd,
1369
					    void *data),
1370
				 void *data)
1371
{
1372
	struct mgmt_pending_cmd *cmd, *tmp;
1373

1374
	list_for_each_entry_safe(cmd, tmp, &hdev->mgmt_pending, list) {
1375
		if (opcode > 0 && cmd->opcode != opcode)
1376 1377 1378 1379 1380 1381
			continue;

		cb(cmd, data);
	}
}

1382
static void mgmt_pending_remove(struct mgmt_pending_cmd *cmd)
1383 1384 1385 1386 1387
{
	list_del(&cmd->list);
	mgmt_pending_free(cmd);
}

1388
static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
1389
{
1390
	__le32 settings = cpu_to_le32(get_current_settings(hdev));
1391

1392 1393
	return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &settings,
				 sizeof(settings));
1394 1395
}

1396
static void clean_up_hci_complete(struct hci_dev *hdev, u8 status, u16 opcode)
1397 1398 1399
{
	BT_DBG("%s status 0x%02x", hdev->name, status);

1400 1401
	if (hci_conn_count(hdev) == 0) {
		cancel_delayed_work(&hdev->power_off);
1402
		queue_work(hdev->req_workqueue, &hdev->power_off.work);
1403
	}
1404 1405
}

1406
static bool hci_stop_discovery(struct hci_request *req)
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_remote_name_req_cancel cp;
	struct inquiry_entry *e;

	switch (hdev->discovery.state) {
	case DISCOVERY_FINDING:
		if (test_bit(HCI_INQUIRY, &hdev->flags)) {
			hci_req_add(req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
		} else {
			cancel_delayed_work(&hdev->le_scan_disable);
			hci_req_add_le_scan_disable(req);
		}

1421
		return true;
1422 1423 1424 1425 1426

	case DISCOVERY_RESOLVING:
		e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
						     NAME_PENDING);
		if (!e)
1427
			break;
1428 1429 1430 1431 1432

		bacpy(&cp.bdaddr, &e->data.bdaddr);
		hci_req_add(req, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp),
			    &cp);

1433
		return true;
1434 1435 1436

	default:
		/* Passive scanning */
1437
		if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
1438
			hci_req_add_le_scan_disable(req);
1439 1440 1441
			return true;
		}

1442 1443
		break;
	}
1444 1445

	return false;
1446 1447
}

1448 1449 1450 1451
static int clean_up_hci_state(struct hci_dev *hdev)
{
	struct hci_request req;
	struct hci_conn *conn;
1452 1453
	bool discov_stopped;
	int err;
1454 1455 1456 1457 1458 1459 1460 1461 1462

	hci_req_init(&req, hdev);

	if (test_bit(HCI_ISCAN, &hdev->flags) ||
	    test_bit(HCI_PSCAN, &hdev->flags)) {
		u8 scan = 0x00;
		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
	}

1463
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
1464 1465
		disable_advertising(&req);

1466
	discov_stopped = hci_stop_discovery(&req);
1467 1468 1469

	list_for_each_entry(conn, &hdev->conn_hash.list, list) {
		struct hci_cp_disconnect dc;
1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497
		struct hci_cp_reject_conn_req rej;

		switch (conn->state) {
		case BT_CONNECTED:
		case BT_CONFIG:
			dc.handle = cpu_to_le16(conn->handle);
			dc.reason = 0x15; /* Terminated due to Power Off */
			hci_req_add(&req, HCI_OP_DISCONNECT, sizeof(dc), &dc);
			break;
		case BT_CONNECT:
			if (conn->type == LE_LINK)
				hci_req_add(&req, HCI_OP_LE_CREATE_CONN_CANCEL,
					    0, NULL);
			else if (conn->type == ACL_LINK)
				hci_req_add(&req, HCI_OP_CREATE_CONN_CANCEL,
					    6, &conn->dst);
			break;
		case BT_CONNECT2:
			bacpy(&rej.bdaddr, &conn->dst);
			rej.reason = 0x15; /* Terminated due to Power Off */
			if (conn->type == ACL_LINK)
				hci_req_add(&req, HCI_OP_REJECT_CONN_REQ,
					    sizeof(rej), &rej);
			else if (conn->type == SCO_LINK)
				hci_req_add(&req, HCI_OP_REJECT_SYNC_CONN_REQ,
					    sizeof(rej), &rej);
			break;
		}
1498 1499
	}

1500 1501 1502 1503 1504
	err = hci_req_run(&req, clean_up_hci_complete);
	if (!err && discov_stopped)
		hci_discovery_set_state(hdev, DISCOVERY_STOPPING);

	return err;
1505 1506
}

1507
static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
1508
		       u16 len)
1509
{
1510
	struct mgmt_mode *cp = data;
1511
	struct mgmt_pending_cmd *cmd;
1512
	int err;
1513

1514
	BT_DBG("request for %s", hdev->name);
1515

1516
	if (cp->val != 0x00 && cp->val != 0x01)
1517 1518
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
				       MGMT_STATUS_INVALID_PARAMS);
1519

1520
	hci_dev_lock(hdev);
1521

1522
	if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
1523 1524
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
				      MGMT_STATUS_BUSY);
1525 1526 1527
		goto failed;
	}

1528
	if (hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) {
1529 1530 1531
		cancel_delayed_work(&hdev->power_off);

		if (cp->val) {
1532 1533 1534
			mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
					 data, len);
			err = mgmt_powered(hdev, 1);
1535 1536 1537 1538
			goto failed;
		}
	}

1539
	if (!!cp->val == hdev_is_powered(hdev)) {
1540
		err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
1541 1542 1543
		goto failed;
	}

1544
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1545 1546
	if (!cmd) {
		err = -ENOMEM;
1547
		goto failed;
1548
	}
1549

1550
	if (cp->val) {
1551
		queue_work(hdev->req_workqueue, &hdev->power_on);
1552 1553 1554 1555
		err = 0;
	} else {
		/* Disconnect connections, stop scans, etc */
		err = clean_up_hci_state(hdev);
1556 1557 1558
		if (!err)
			queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
					   HCI_POWER_OFF_TIMEOUT);
1559

1560 1561
		/* ENODATA means there were no HCI commands queued */
		if (err == -ENODATA) {
1562
			cancel_delayed_work(&hdev->power_off);
1563 1564 1565 1566
			queue_work(hdev->req_workqueue, &hdev->power_off.work);
			err = 0;
		}
	}
1567 1568

failed:
1569
	hci_dev_unlock(hdev);
1570
	return err;
1571 1572
}

1573 1574 1575 1576 1577 1578 1579 1580 1581
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);
}

1582 1583 1584 1585 1586
int mgmt_new_settings(struct hci_dev *hdev)
{
	return new_settings(hdev, NULL);
}

1587 1588 1589 1590 1591 1592
struct cmd_lookup {
	struct sock *sk;
	struct hci_dev *hdev;
	u8 mgmt_status;
};

1593
static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data)
1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608
{
	struct cmd_lookup *match = data;

	send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);

	list_del(&cmd->list);

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

	mgmt_pending_free(cmd);
}

1609
static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data)
1610 1611 1612
{
	u8 *status = data;

1613
	mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
1614 1615 1616
	mgmt_pending_remove(cmd);
}

1617
static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data)
1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630
{
	if (cmd->cmd_complete) {
		u8 *status = data;

		cmd->cmd_complete(cmd, *status);
		mgmt_pending_remove(cmd);

		return;
	}

	cmd_status_rsp(cmd, data);
}

1631
static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
1632
{
1633 1634
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, cmd->param_len);
1635 1636
}

1637
static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
1638
{
1639 1640
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, sizeof(struct mgmt_addr_info));
1641 1642
}

1643 1644 1645 1646
static u8 mgmt_bredr_support(struct hci_dev *hdev)
{
	if (!lmp_bredr_capable(hdev))
		return MGMT_STATUS_NOT_SUPPORTED;
1647
	else if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1648 1649 1650 1651 1652 1653 1654 1655 1656
		return MGMT_STATUS_REJECTED;
	else
		return MGMT_STATUS_SUCCESS;
}

static u8 mgmt_le_support(struct hci_dev *hdev)
{
	if (!lmp_le_capable(hdev))
		return MGMT_STATUS_NOT_SUPPORTED;
1657
	else if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1658 1659 1660 1661 1662
		return MGMT_STATUS_REJECTED;
	else
		return MGMT_STATUS_SUCCESS;
}

1663 1664
static void set_discoverable_complete(struct hci_dev *hdev, u8 status,
				      u16 opcode)
1665
{
1666
	struct mgmt_pending_cmd *cmd;
1667
	struct mgmt_mode *cp;
1668
	struct hci_request req;
1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680
	bool changed;

	BT_DBG("status 0x%02x", status);

	hci_dev_lock(hdev);

	cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
	if (!cmd)
		goto unlock;

	if (status) {
		u8 mgmt_err = mgmt_status(status);
1681
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1682
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1683 1684 1685 1686
		goto remove_cmd;
	}

	cp = cmd->param;
1687
	if (cp->val) {
1688
		changed = !hci_dev_test_and_set_flag(hdev, HCI_DISCOVERABLE);
1689 1690 1691 1692 1693 1694 1695

		if (hdev->discov_timeout > 0) {
			int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
			queue_delayed_work(hdev->workqueue, &hdev->discov_off,
					   to);
		}
	} else {
1696
		changed = hci_dev_test_and_clear_flag(hdev, HCI_DISCOVERABLE);
1697
	}
1698 1699 1700 1701 1702 1703

	send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev);

	if (changed)
		new_settings(hdev, cmd->sk);

1704 1705
	/* When the discoverable mode gets changed, make sure
	 * that class of device has the limited discoverable
1706 1707
	 * bit correctly set. Also update page scan based on whitelist
	 * entries.
1708 1709
	 */
	hci_req_init(&req, hdev);
1710
	__hci_update_page_scan(&req);
1711 1712 1713
	update_class(&req);
	hci_req_run(&req, NULL);

1714 1715 1716 1717 1718 1719 1720
remove_cmd:
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

1721
static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
1722
			    u16 len)
1723
{
1724
	struct mgmt_cp_set_discoverable *cp = data;
1725
	struct mgmt_pending_cmd *cmd;
1726
	struct hci_request req;
1727
	u16 timeout;
1728
	u8 scan;
1729 1730
	int err;

1731
	BT_DBG("request for %s", hdev->name);
1732

1733 1734
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1735 1736
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_REJECTED);
1737

1738
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
1739 1740
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1741

1742
	timeout = __le16_to_cpu(cp->timeout);
1743 1744 1745 1746 1747 1748

	/* Disabling discoverable requires that no timeout is set,
	 * and enabling limited discoverable requires a timeout.
	 */
	if ((cp->val == 0x00 && timeout > 0) ||
	    (cp->val == 0x02 && timeout == 0))
1749 1750
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1751

1752
	hci_dev_lock(hdev);
1753

1754
	if (!hdev_is_powered(hdev) && timeout > 0) {
1755 1756
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_NOT_POWERED);
1757 1758 1759
		goto failed;
	}

1760
	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
1761
	    mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
1762 1763
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_BUSY);
1764 1765 1766
		goto failed;
	}

1767
	if (!hci_dev_test_flag(hdev, HCI_CONNECTABLE)) {
1768 1769
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_REJECTED);
1770 1771 1772 1773
		goto failed;
	}

	if (!hdev_is_powered(hdev)) {
1774 1775
		bool changed = false;

1776 1777 1778 1779
		/* Setting limited discoverable when powered off is
		 * not a valid operation since it requires a timeout
		 * and so no need to check HCI_LIMITED_DISCOVERABLE.
		 */
1780
		if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
1781
			hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
1782 1783 1784
			changed = true;
		}

1785
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1786 1787 1788 1789 1790 1791
		if (err < 0)
			goto failed;

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

1792 1793 1794
		goto failed;
	}

1795 1796 1797 1798
	/* If the current mode is the same, then just update the timeout
	 * value with the new value. And if only the timeout gets updated,
	 * then no need for any HCI transactions.
	 */
1799 1800 1801
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
	    (cp->val == 0x02) == hci_dev_test_flag(hdev,
						   HCI_LIMITED_DISCOVERABLE)) {
1802 1803
		cancel_delayed_work(&hdev->discov_off);
		hdev->discov_timeout = timeout;
1804

1805 1806
		if (cp->val && hdev->discov_timeout > 0) {
			int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1807
			queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1808
					   to);
1809 1810
		}

1811
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1812 1813 1814
		goto failed;
	}

1815
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1816 1817
	if (!cmd) {
		err = -ENOMEM;
1818
		goto failed;
1819
	}
1820

1821 1822 1823 1824 1825 1826 1827
	/* Cancel any potential discoverable timeout that might be
	 * still active and store new timeout value. The arming of
	 * the timeout happens in the complete handler.
	 */
	cancel_delayed_work(&hdev->discov_off);
	hdev->discov_timeout = timeout;

1828 1829
	/* Limited discoverable mode */
	if (cp->val == 0x02)
1830
		hci_dev_set_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1831
	else
1832
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1833

1834 1835
	hci_req_init(&req, hdev);

1836 1837 1838
	/* The procedure for LE-only controllers is much simpler - just
	 * update the advertising data.
	 */
1839
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1840 1841
		goto update_ad;

1842 1843
	scan = SCAN_PAGE;

1844 1845 1846 1847 1848
	if (cp->val) {
		struct hci_cp_write_current_iac_lap hci_cp;

		if (cp->val == 0x02) {
			/* Limited discoverable mode */
1849
			hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866
			hci_cp.iac_lap[0] = 0x00;	/* LIAC */
			hci_cp.iac_lap[1] = 0x8b;
			hci_cp.iac_lap[2] = 0x9e;
			hci_cp.iac_lap[3] = 0x33;	/* GIAC */
			hci_cp.iac_lap[4] = 0x8b;
			hci_cp.iac_lap[5] = 0x9e;
		} else {
			/* General discoverable mode */
			hci_cp.num_iac = 1;
			hci_cp.iac_lap[0] = 0x33;	/* GIAC */
			hci_cp.iac_lap[1] = 0x8b;
			hci_cp.iac_lap[2] = 0x9e;
		}

		hci_req_add(&req, HCI_OP_WRITE_CURRENT_IAC_LAP,
			    (hci_cp.num_iac * 3) + 1, &hci_cp);

1867
		scan |= SCAN_INQUIRY;
1868
	} else {
1869
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1870
	}
1871

1872
	hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
1873

1874 1875 1876
update_ad:
	update_adv_data(&req);

1877
	err = hci_req_run(&req, set_discoverable_complete);
1878
	if (err < 0)
1879
		mgmt_pending_remove(cmd);
1880 1881

failed:
1882
	hci_dev_unlock(hdev);
1883 1884 1885
	return err;
}

1886 1887
static void write_fast_connectable(struct hci_request *req, bool enable)
{
1888
	struct hci_dev *hdev = req->hdev;
1889 1890 1891
	struct hci_cp_write_page_scan_activity acp;
	u8 type;

1892
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1893 1894
		return;

1895 1896 1897
	if (hdev->hci_ver < BLUETOOTH_VER_1_2)
		return;

1898 1899 1900 1901
	if (enable) {
		type = PAGE_SCAN_TYPE_INTERLACED;

		/* 160 msec page scan interval */
1902
		acp.interval = cpu_to_le16(0x0100);
1903 1904 1905 1906
	} else {
		type = PAGE_SCAN_TYPE_STANDARD;	/* default */

		/* default 1.28 sec page scan */
1907
		acp.interval = cpu_to_le16(0x0800);
1908 1909
	}

1910
	acp.window = cpu_to_le16(0x0012);
1911

1912 1913 1914 1915 1916 1917 1918
	if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval ||
	    __cpu_to_le16(hdev->page_scan_window) != acp.window)
		hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
			    sizeof(acp), &acp);

	if (hdev->page_scan_type != type)
		hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
1919 1920
}

1921 1922
static void set_connectable_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
1923
{
1924
	struct mgmt_pending_cmd *cmd;
1925
	struct mgmt_mode *cp;
1926
	bool conn_changed, discov_changed;
1927 1928 1929 1930 1931 1932 1933 1934 1935

	BT_DBG("status 0x%02x", status);

	hci_dev_lock(hdev);

	cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
	if (!cmd)
		goto unlock;

1936 1937
	if (status) {
		u8 mgmt_err = mgmt_status(status);
1938
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1939 1940 1941
		goto remove_cmd;
	}

1942
	cp = cmd->param;
1943
	if (cp->val) {
1944 1945
		conn_changed = !hci_dev_test_and_set_flag(hdev,
							  HCI_CONNECTABLE);
1946 1947
		discov_changed = false;
	} else {
1948 1949 1950 1951
		conn_changed = hci_dev_test_and_clear_flag(hdev,
							   HCI_CONNECTABLE);
		discov_changed = hci_dev_test_and_clear_flag(hdev,
							     HCI_DISCOVERABLE);
1952
	}
1953

1954 1955
	send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);

1956
	if (conn_changed || discov_changed) {
1957
		new_settings(hdev, cmd->sk);
1958
		hci_update_page_scan(hdev);
1959 1960
		if (discov_changed)
			mgmt_update_adv_data(hdev);
1961 1962
		hci_update_background_scan(hdev);
	}
1963

1964
remove_cmd:
1965 1966 1967 1968 1969 1970
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

1971 1972 1973 1974 1975 1976
static int set_connectable_update_settings(struct hci_dev *hdev,
					   struct sock *sk, u8 val)
{
	bool changed = false;
	int err;

1977
	if (!!val != hci_dev_test_flag(hdev, HCI_CONNECTABLE))
1978 1979 1980
		changed = true;

	if (val) {
1981
		hci_dev_set_flag(hdev, HCI_CONNECTABLE);
1982
	} else {
1983 1984
		hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
		hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
1985 1986 1987 1988 1989 1990
	}

	err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
	if (err < 0)
		return err;

1991
	if (changed) {
1992
		hci_update_page_scan(hdev);
1993
		hci_update_background_scan(hdev);
1994
		return new_settings(hdev, sk);
1995
	}
1996 1997 1998 1999

	return 0;
}

2000
static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
2001
			   u16 len)
2002
{
2003
	struct mgmt_mode *cp = data;
2004
	struct mgmt_pending_cmd *cmd;
2005
	struct hci_request req;
2006
	u8 scan;
2007 2008
	int err;

2009
	BT_DBG("request for %s", hdev->name);
2010

2011 2012
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
2013 2014
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				       MGMT_STATUS_REJECTED);
2015

2016
	if (cp->val != 0x00 && cp->val != 0x01)
2017 2018
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				       MGMT_STATUS_INVALID_PARAMS);
2019

2020
	hci_dev_lock(hdev);
2021

2022
	if (!hdev_is_powered(hdev)) {
2023
		err = set_connectable_update_settings(hdev, sk, cp->val);
2024 2025 2026
		goto failed;
	}

2027
	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
2028
	    mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
2029 2030
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				      MGMT_STATUS_BUSY);
2031 2032 2033
		goto failed;
	}

2034
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
2035 2036
	if (!cmd) {
		err = -ENOMEM;
2037
		goto failed;
2038
	}
2039

2040
	hci_req_init(&req, hdev);
2041

2042 2043 2044 2045
	/* If BR/EDR is not enabled and we disable advertising as a
	 * by-product of disabling connectable, we need to update the
	 * advertising flags.
	 */
2046
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
2047
		if (!cp->val) {
2048 2049
			hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
			hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
2050 2051 2052
		}
		update_adv_data(&req);
	} else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
2053 2054 2055
		if (cp->val) {
			scan = SCAN_PAGE;
		} else {
2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067
			/* If we don't have any whitelist entries just
			 * disable all scanning. If there are entries
			 * and we had both page and inquiry scanning
			 * enabled then fall back to only page scanning.
			 * Otherwise no changes are needed.
			 */
			if (list_empty(&hdev->whitelist))
				scan = SCAN_DISABLED;
			else if (test_bit(HCI_ISCAN, &hdev->flags))
				scan = SCAN_PAGE;
			else
				goto no_scan_update;
2068 2069

			if (test_bit(HCI_ISCAN, &hdev->flags) &&
2070
			    hdev->discov_timeout > 0)
2071 2072
				cancel_delayed_work(&hdev->discov_off);
		}
2073

2074 2075
		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
	}
2076

2077
no_scan_update:
2078
	/* Update the advertising parameters if necessary */
2079
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
2080 2081
		enable_advertising(&req);

2082
	err = hci_req_run(&req, set_connectable_complete);
2083
	if (err < 0) {
2084
		mgmt_pending_remove(cmd);
2085
		if (err == -ENODATA)
2086 2087
			err = set_connectable_update_settings(hdev, sk,
							      cp->val);
2088 2089
		goto failed;
	}
2090 2091

failed:
2092
	hci_dev_unlock(hdev);
2093 2094 2095
	return err;
}

2096
static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
2097
			u16 len)
2098
{
2099
	struct mgmt_mode *cp = data;
2100
	bool changed;
2101 2102
	int err;

2103
	BT_DBG("request for %s", hdev->name);
2104

2105
	if (cp->val != 0x00 && cp->val != 0x01)
2106 2107
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE,
				       MGMT_STATUS_INVALID_PARAMS);
2108

2109
	hci_dev_lock(hdev);
2110 2111

	if (cp->val)
2112
		changed = !hci_dev_test_and_set_flag(hdev, HCI_BONDABLE);
2113
	else
2114
		changed = hci_dev_test_and_clear_flag(hdev, HCI_BONDABLE);
2115

2116
	err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
2117
	if (err < 0)
2118
		goto unlock;
2119

2120 2121
	if (changed)
		err = new_settings(hdev, sk);
2122

2123
unlock:
2124
	hci_dev_unlock(hdev);
2125 2126 2127
	return err;
}

2128 2129
static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
2130 2131
{
	struct mgmt_mode *cp = data;
2132
	struct mgmt_pending_cmd *cmd;
2133
	u8 val, status;
2134 2135
	int err;

2136
	BT_DBG("request for %s", hdev->name);
2137

2138 2139
	status = mgmt_bredr_support(hdev);
	if (status)
2140 2141
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				       status);
2142

2143
	if (cp->val != 0x00 && cp->val != 0x01)
2144 2145
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				       MGMT_STATUS_INVALID_PARAMS);
2146

2147 2148
	hci_dev_lock(hdev);

2149
	if (!hdev_is_powered(hdev)) {
2150 2151
		bool changed = false;

2152
		if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
2153
			hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
2154 2155 2156 2157 2158 2159 2160 2161 2162 2163
			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);

2164 2165 2166 2167
		goto failed;
	}

	if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
2168 2169
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				      MGMT_STATUS_BUSY);
2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196
		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;
}

2197
static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2198 2199
{
	struct mgmt_mode *cp = data;
2200
	struct mgmt_pending_cmd *cmd;
2201
	u8 status;
2202 2203
	int err;

2204
	BT_DBG("request for %s", hdev->name);
2205

2206 2207
	status = mgmt_bredr_support(hdev);
	if (status)
2208
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
2209

2210
	if (!lmp_ssp_capable(hdev))
2211 2212
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				       MGMT_STATUS_NOT_SUPPORTED);
2213

2214
	if (cp->val != 0x00 && cp->val != 0x01)
2215 2216
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				       MGMT_STATUS_INVALID_PARAMS);
2217

2218
	hci_dev_lock(hdev);
2219

2220
	if (!hdev_is_powered(hdev)) {
2221
		bool changed;
2222

2223
		if (cp->val) {
2224 2225
			changed = !hci_dev_test_and_set_flag(hdev,
							     HCI_SSP_ENABLED);
2226
		} else {
2227 2228
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_SSP_ENABLED);
2229
			if (!changed)
2230 2231
				changed = hci_dev_test_and_clear_flag(hdev,
								      HCI_HS_ENABLED);
2232
			else
2233
				hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
2234 2235 2236 2237 2238 2239 2240 2241 2242
		}

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

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

2243 2244 2245
		goto failed;
	}

2246
	if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev)) {
2247 2248
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				      MGMT_STATUS_BUSY);
2249 2250 2251
		goto failed;
	}

2252
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
2253 2254 2255 2256 2257 2258 2259 2260 2261 2262
		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;
	}

2263
	if (!cp->val && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
2264 2265 2266
		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
			     sizeof(cp->val), &cp->val);

2267
	err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
2268 2269 2270 2271 2272 2273 2274 2275 2276 2277
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

2278
static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2279 2280
{
	struct mgmt_mode *cp = data;
2281
	bool changed;
2282
	u8 status;
2283
	int err;
2284

2285
	BT_DBG("request for %s", hdev->name);
2286

2287 2288
	status = mgmt_bredr_support(hdev);
	if (status)
2289
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
2290

2291
	if (!lmp_ssp_capable(hdev))
2292 2293
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_NOT_SUPPORTED);
2294

2295
	if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
2296 2297
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_REJECTED);
2298

2299
	if (cp->val != 0x00 && cp->val != 0x01)
2300 2301
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_INVALID_PARAMS);
2302

2303 2304
	hci_dev_lock(hdev);

2305
	if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev)) {
2306 2307
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				      MGMT_STATUS_BUSY);
2308 2309 2310
		goto unlock;
	}

2311
	if (cp->val) {
2312
		changed = !hci_dev_test_and_set_flag(hdev, HCI_HS_ENABLED);
2313 2314
	} else {
		if (hdev_is_powered(hdev)) {
2315 2316
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
					      MGMT_STATUS_REJECTED);
2317 2318 2319
			goto unlock;
		}

2320
		changed = hci_dev_test_and_clear_flag(hdev, HCI_HS_ENABLED);
2321
	}
2322 2323 2324 2325 2326 2327 2328

	err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
	if (err < 0)
		goto unlock;

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

2330 2331 2332
unlock:
	hci_dev_unlock(hdev);
	return err;
2333 2334
}

2335
static void le_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2336 2337 2338
{
	struct cmd_lookup match = { NULL, hdev };

2339 2340
	hci_dev_lock(hdev);

2341 2342 2343 2344 2345
	if (status) {
		u8 mgmt_err = mgmt_status(status);

		mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
				     &mgmt_err);
2346
		goto unlock;
2347 2348 2349 2350 2351 2352 2353 2354
	}

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

	new_settings(hdev, match.sk);

	if (match.sk)
		sock_put(match.sk);
2355 2356 2357 2358 2359 2360

	/* Make sure the controller has a good default for
	 * advertising data. Restrict the update to when LE
	 * has actually been enabled. During power on, the
	 * update in powered_update_hci will take care of it.
	 */
2361
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
2362 2363 2364
		struct hci_request req;

		hci_req_init(&req, hdev);
2365
		update_adv_data(&req);
2366
		update_scan_rsp_data(&req);
2367
		__hci_update_background_scan(&req);
2368 2369
		hci_req_run(&req, NULL);
	}
2370 2371 2372

unlock:
	hci_dev_unlock(hdev);
2373 2374
}

2375
static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2376 2377 2378
{
	struct mgmt_mode *cp = data;
	struct hci_cp_write_le_host_supported hci_cp;
2379
	struct mgmt_pending_cmd *cmd;
2380
	struct hci_request req;
2381
	int err;
2382
	u8 val, enabled;
2383

2384
	BT_DBG("request for %s", hdev->name);
2385

2386
	if (!lmp_le_capable(hdev))
2387 2388
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_NOT_SUPPORTED);
2389

2390
	if (cp->val != 0x00 && cp->val != 0x01)
2391 2392
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_INVALID_PARAMS);
2393

2394
	/* LE-only devices do not allow toggling LE on/off */
2395
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
2396 2397
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_REJECTED);
2398

2399
	hci_dev_lock(hdev);
2400 2401

	val = !!cp->val;
2402
	enabled = lmp_host_le_capable(hdev);
2403

2404
	if (!hdev_is_powered(hdev) || val == enabled) {
2405 2406
		bool changed = false;

2407
		if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
2408
			hci_dev_change_flag(hdev, HCI_LE_ENABLED);
2409 2410 2411
			changed = true;
		}

2412
		if (!val && hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
2413
			hci_dev_clear_flag(hdev, HCI_ADVERTISING);
2414 2415 2416
			changed = true;
		}

2417 2418
		err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
		if (err < 0)
2419
			goto unlock;
2420 2421 2422 2423

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

2424
		goto unlock;
2425 2426
	}

2427 2428
	if (mgmt_pending_find(MGMT_OP_SET_LE, hdev) ||
	    mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
2429 2430
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				      MGMT_STATUS_BUSY);
2431
		goto unlock;
2432 2433 2434 2435 2436
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
2437
		goto unlock;
2438 2439
	}

2440 2441
	hci_req_init(&req, hdev);

2442 2443 2444 2445
	memset(&hci_cp, 0, sizeof(hci_cp));

	if (val) {
		hci_cp.le = val;
2446
		hci_cp.simul = 0x00;
2447
	} else {
2448
		if (hci_dev_test_flag(hdev, HCI_LE_ADV))
2449
			disable_advertising(&req);
2450 2451
	}

2452 2453 2454 2455
	hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
		    &hci_cp);

	err = hci_req_run(&req, le_enable_complete);
2456
	if (err < 0)
2457 2458
		mgmt_pending_remove(cmd);

2459 2460
unlock:
	hci_dev_unlock(hdev);
2461 2462 2463
	return err;
}

2464 2465 2466 2467 2468 2469 2470 2471
/* This is a helper function to test for pending mgmt commands that can
 * cause CoD or EIR HCI commands. We can only allow one such pending
 * mgmt command at a time since otherwise we cannot easily track what
 * the current values are, will be, and based on that calculate if a new
 * HCI command needs to be sent and if yes with what value.
 */
static bool pending_eir_or_class(struct hci_dev *hdev)
{
2472
	struct mgmt_pending_cmd *cmd;
2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486

	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
		switch (cmd->opcode) {
		case MGMT_OP_ADD_UUID:
		case MGMT_OP_REMOVE_UUID:
		case MGMT_OP_SET_DEV_CLASS:
		case MGMT_OP_SET_POWERED:
			return true;
		}
	}

	return false;
}

2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505
static const u8 bluetooth_base_uuid[] = {
			0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
			0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
};

static u8 get_uuid_size(const u8 *uuid)
{
	u32 val;

	if (memcmp(uuid, bluetooth_base_uuid, 12))
		return 128;

	val = get_unaligned_le32(&uuid[12]);
	if (val > 0xffff)
		return 32;

	return 16;
}

2506 2507
static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
{
2508
	struct mgmt_pending_cmd *cmd;
2509 2510 2511 2512 2513 2514 2515

	hci_dev_lock(hdev);

	cmd = mgmt_pending_find(mgmt_op, hdev);
	if (!cmd)
		goto unlock;

2516 2517
	mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
			  mgmt_status(status), hdev->dev_class, 3);
2518 2519 2520 2521 2522 2523 2524

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

2525
static void add_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2526 2527 2528 2529 2530 2531
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
}

2532
static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2533
{
2534
	struct mgmt_cp_add_uuid *cp = data;
2535
	struct mgmt_pending_cmd *cmd;
2536
	struct hci_request req;
2537 2538 2539
	struct bt_uuid *uuid;
	int err;

2540
	BT_DBG("request for %s", hdev->name);
2541

2542
	hci_dev_lock(hdev);
2543

2544
	if (pending_eir_or_class(hdev)) {
2545 2546
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
				      MGMT_STATUS_BUSY);
2547 2548 2549
		goto failed;
	}

2550
	uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
2551 2552 2553 2554 2555 2556
	if (!uuid) {
		err = -ENOMEM;
		goto failed;
	}

	memcpy(uuid->uuid, cp->uuid, 16);
2557
	uuid->svc_hint = cp->svc_hint;
2558
	uuid->size = get_uuid_size(cp->uuid);
2559

2560
	list_add_tail(&uuid->list, &hdev->uuids);
2561

2562
	hci_req_init(&req, hdev);
2563

2564 2565 2566
	update_class(&req);
	update_eir(&req);

2567 2568 2569 2570
	err = hci_req_run(&req, add_uuid_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto failed;
2571

2572 2573
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
					hdev->dev_class, 3);
2574 2575 2576 2577
		goto failed;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
2578
	if (!cmd) {
2579
		err = -ENOMEM;
2580 2581 2582 2583
		goto failed;
	}

	err = 0;
2584 2585

failed:
2586
	hci_dev_unlock(hdev);
2587 2588 2589
	return err;
}

2590 2591 2592 2593 2594
static bool enable_service_cache(struct hci_dev *hdev)
{
	if (!hdev_is_powered(hdev))
		return false;

2595
	if (!hci_dev_test_and_set_flag(hdev, HCI_SERVICE_CACHE)) {
2596 2597
		queue_delayed_work(hdev->workqueue, &hdev->service_cache,
				   CACHE_TIMEOUT);
2598 2599 2600 2601 2602 2603
		return true;
	}

	return false;
}

2604
static void remove_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2605 2606 2607 2608 2609 2610
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
}

2611
static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
2612
		       u16 len)
2613
{
2614
	struct mgmt_cp_remove_uuid *cp = data;
2615
	struct mgmt_pending_cmd *cmd;
2616
	struct bt_uuid *match, *tmp;
2617
	u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2618
	struct hci_request req;
2619 2620
	int err, found;

2621
	BT_DBG("request for %s", hdev->name);
2622

2623
	hci_dev_lock(hdev);
2624

2625
	if (pending_eir_or_class(hdev)) {
2626 2627
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
				      MGMT_STATUS_BUSY);
2628 2629 2630
		goto unlock;
	}

2631
	if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
2632
		hci_uuids_clear(hdev);
2633

2634
		if (enable_service_cache(hdev)) {
2635 2636 2637
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_UUID,
						0, hdev->dev_class, 3);
2638 2639
			goto unlock;
		}
2640

2641
		goto update_class;
2642 2643 2644 2645
	}

	found = 0;

2646
	list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
2647 2648 2649 2650
		if (memcmp(match->uuid, cp->uuid, 16) != 0)
			continue;

		list_del(&match->list);
2651
		kfree(match);
2652 2653 2654 2655
		found++;
	}

	if (found == 0) {
2656 2657
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
				      MGMT_STATUS_INVALID_PARAMS);
2658 2659 2660
		goto unlock;
	}

2661
update_class:
2662
	hci_req_init(&req, hdev);
2663

2664 2665 2666
	update_class(&req);
	update_eir(&req);

2667 2668 2669 2670
	err = hci_req_run(&req, remove_uuid_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto unlock;
2671

2672 2673
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
					hdev->dev_class, 3);
2674 2675 2676 2677
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
2678
	if (!cmd) {
2679
		err = -ENOMEM;
2680 2681 2682 2683
		goto unlock;
	}

	err = 0;
2684 2685

unlock:
2686
	hci_dev_unlock(hdev);
2687 2688 2689
	return err;
}

2690
static void set_class_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2691 2692 2693 2694 2695 2696
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
}

2697
static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
2698
			 u16 len)
2699
{
2700
	struct mgmt_cp_set_dev_class *cp = data;
2701
	struct mgmt_pending_cmd *cmd;
2702
	struct hci_request req;
2703 2704
	int err;

2705
	BT_DBG("request for %s", hdev->name);
2706

2707
	if (!lmp_bredr_capable(hdev))
2708 2709
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				       MGMT_STATUS_NOT_SUPPORTED);
2710

2711
	hci_dev_lock(hdev);
2712

2713
	if (pending_eir_or_class(hdev)) {
2714 2715
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				      MGMT_STATUS_BUSY);
2716 2717
		goto unlock;
	}
2718

2719
	if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
2720 2721
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				      MGMT_STATUS_INVALID_PARAMS);
2722 2723
		goto unlock;
	}
2724

2725 2726 2727
	hdev->major_class = cp->major;
	hdev->minor_class = cp->minor;

2728
	if (!hdev_is_powered(hdev)) {
2729 2730
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
					hdev->dev_class, 3);
2731 2732 2733
		goto unlock;
	}

2734 2735
	hci_req_init(&req, hdev);

2736
	if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) {
2737 2738 2739
		hci_dev_unlock(hdev);
		cancel_delayed_work_sync(&hdev->service_cache);
		hci_dev_lock(hdev);
2740
		update_eir(&req);
2741
	}
2742

2743 2744
	update_class(&req);

2745 2746 2747 2748
	err = hci_req_run(&req, set_class_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto unlock;
2749

2750 2751
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
					hdev->dev_class, 3);
2752 2753 2754 2755
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
2756
	if (!cmd) {
2757
		err = -ENOMEM;
2758 2759 2760 2761
		goto unlock;
	}

	err = 0;
2762

2763
unlock:
2764
	hci_dev_unlock(hdev);
2765 2766 2767
	return err;
}

2768
static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
2769
			  u16 len)
2770
{
2771
	struct mgmt_cp_load_link_keys *cp = data;
2772 2773
	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_link_key_info));
2774
	u16 key_count, expected_len;
2775
	bool changed;
2776
	int i;
2777

2778 2779 2780
	BT_DBG("request for %s", hdev->name);

	if (!lmp_bredr_capable(hdev))
2781 2782
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_NOT_SUPPORTED);
2783

2784
	key_count = __le16_to_cpu(cp->key_count);
2785 2786 2787
	if (key_count > max_key_count) {
		BT_ERR("load_link_keys: too big key_count value %u",
		       key_count);
2788 2789
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2790
	}
2791

2792 2793
	expected_len = sizeof(*cp) + key_count *
					sizeof(struct mgmt_link_key_info);
2794
	if (expected_len != len) {
2795
		BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
2796
		       expected_len, len);
2797 2798
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2799 2800
	}

2801
	if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
2802 2803
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2804

2805
	BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
2806
	       key_count);
2807

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

2811
		if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
2812 2813 2814
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_LINK_KEYS,
					       MGMT_STATUS_INVALID_PARAMS);
2815 2816
	}

2817
	hci_dev_lock(hdev);
2818 2819 2820 2821

	hci_link_keys_clear(hdev);

	if (cp->debug_keys)
2822
		changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
2823
	else
2824 2825
		changed = hci_dev_test_and_clear_flag(hdev,
						      HCI_KEEP_DEBUG_KEYS);
2826 2827 2828

	if (changed)
		new_settings(hdev, NULL);
2829

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

2833 2834 2835 2836 2837 2838
		/* Always ignore debug keys and require a new pairing if
		 * the user wants to use them.
		 */
		if (key->type == HCI_LK_DEBUG_COMBINATION)
			continue;

2839 2840
		hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
				 key->type, key->pin_len, NULL);
2841 2842
	}

2843
	mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
2844

2845
	hci_dev_unlock(hdev);
2846

2847
	return 0;
2848 2849
}

2850
static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
2851
			   u8 addr_type, struct sock *skip_sk)
2852 2853 2854 2855 2856 2857 2858
{
	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),
2859
			  skip_sk);
2860 2861
}

2862
static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2863
			 u16 len)
2864
{
2865 2866
	struct mgmt_cp_unpair_device *cp = data;
	struct mgmt_rp_unpair_device rp;
2867
	struct hci_cp_disconnect dc;
2868
	struct mgmt_pending_cmd *cmd;
2869 2870 2871
	struct hci_conn *conn;
	int err;

2872
	memset(&rp, 0, sizeof(rp));
2873 2874
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;
2875

2876
	if (!bdaddr_type_is_valid(cp->addr.type))
2877 2878 2879
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2880

2881
	if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
2882 2883 2884
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2885

2886 2887
	hci_dev_lock(hdev);

2888
	if (!hdev_is_powered(hdev)) {
2889 2890 2891
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
2892 2893 2894
		goto unlock;
	}

2895
	if (cp->addr.type == BDADDR_BREDR) {
2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908
		/* If disconnection is requested, then look up the
		 * connection. If the remote device is connected, it
		 * will be later used to terminate the link.
		 *
		 * Setting it to NULL explicitly will cause no
		 * termination of the link.
		 */
		if (cp->disconnect)
			conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
						       &cp->addr.bdaddr);
		else
			conn = NULL;

2909
		err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
2910 2911 2912
	} else {
		u8 addr_type;

2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
					       &cp->addr.bdaddr);
		if (conn) {
			/* Defer clearing up the connection parameters
			 * until closing to give a chance of keeping
			 * them if a repairing happens.
			 */
			set_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);

			/* If disconnection is not requested, then
			 * clear the connection variable so that the
			 * link is not terminated.
			 */
			if (!cp->disconnect)
				conn = NULL;
		}

2930 2931 2932 2933 2934
		if (cp->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;

2935 2936
		hci_remove_irk(hdev, &cp->addr.bdaddr, addr_type);

2937 2938
		err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
	}
2939

2940
	if (err < 0) {
2941 2942 2943
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					MGMT_STATUS_NOT_PAIRED, &rp,
					sizeof(rp));
2944 2945 2946
		goto unlock;
	}

2947 2948 2949
	/* If the connection variable is set, then termination of the
	 * link is requested.
	 */
2950
	if (!conn) {
2951 2952
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
					&rp, sizeof(rp));
2953
		device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
2954 2955
		goto unlock;
	}
2956

2957
	cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
2958
			       sizeof(*cp));
2959 2960 2961
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
2962 2963
	}

2964 2965
	cmd->cmd_complete = addr_cmd_complete;

2966
	dc.handle = cpu_to_le16(conn->handle);
2967 2968 2969 2970 2971
	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);

2972
unlock:
2973
	hci_dev_unlock(hdev);
2974 2975 2976
	return err;
}

2977
static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
2978
		      u16 len)
2979
{
2980
	struct mgmt_cp_disconnect *cp = data;
2981
	struct mgmt_rp_disconnect rp;
2982
	struct mgmt_pending_cmd *cmd;
2983 2984 2985 2986 2987
	struct hci_conn *conn;
	int err;

	BT_DBG("");

2988 2989 2990 2991
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

2992
	if (!bdaddr_type_is_valid(cp->addr.type))
2993 2994 2995
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2996

2997
	hci_dev_lock(hdev);
2998 2999

	if (!test_bit(HCI_UP, &hdev->flags)) {
3000 3001 3002
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
3003 3004 3005
		goto failed;
	}

3006
	if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) {
3007 3008
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
3009 3010 3011
		goto failed;
	}

3012
	if (cp->addr.type == BDADDR_BREDR)
3013 3014
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
					       &cp->addr.bdaddr);
3015 3016
	else
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
3017

3018
	if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
3019 3020 3021
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_NOT_CONNECTED, &rp,
					sizeof(rp));
3022 3023 3024
		goto failed;
	}

3025
	cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
3026 3027
	if (!cmd) {
		err = -ENOMEM;
3028
		goto failed;
3029
	}
3030

3031 3032
	cmd->cmd_complete = generic_cmd_complete;

3033
	err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
3034
	if (err < 0)
3035
		mgmt_pending_remove(cmd);
3036 3037

failed:
3038
	hci_dev_unlock(hdev);
3039 3040 3041
	return err;
}

3042
static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
3043 3044 3045
{
	switch (link_type) {
	case LE_LINK:
3046 3047
		switch (addr_type) {
		case ADDR_LE_DEV_PUBLIC:
3048
			return BDADDR_LE_PUBLIC;
3049

3050
		default:
3051
			/* Fallback to LE Random address type */
3052
			return BDADDR_LE_RANDOM;
3053
		}
3054

3055
	default:
3056
		/* Fallback to BR/EDR type */
3057
		return BDADDR_BREDR;
3058 3059 3060
	}
}

3061 3062
static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
3063 3064
{
	struct mgmt_rp_get_connections *rp;
3065
	struct hci_conn *c;
3066
	size_t rp_len;
3067 3068
	int err;
	u16 i;
3069 3070 3071

	BT_DBG("");

3072
	hci_dev_lock(hdev);
3073

3074
	if (!hdev_is_powered(hdev)) {
3075 3076
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
				      MGMT_STATUS_NOT_POWERED);
3077 3078 3079
		goto unlock;
	}

3080
	i = 0;
3081 3082
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
		if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
3083
			i++;
3084 3085
	}

3086
	rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
3087
	rp = kmalloc(rp_len, GFP_KERNEL);
3088
	if (!rp) {
3089 3090 3091 3092 3093
		err = -ENOMEM;
		goto unlock;
	}

	i = 0;
3094
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
3095 3096
		if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
			continue;
3097
		bacpy(&rp->addr[i].bdaddr, &c->dst);
3098
		rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
3099
		if (c->type == SCO_LINK || c->type == ESCO_LINK)
3100 3101 3102 3103
			continue;
		i++;
	}

3104
	rp->conn_count = cpu_to_le16(i);
3105

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

3109 3110
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
				rp_len);
3111

3112
	kfree(rp);
3113 3114

unlock:
3115
	hci_dev_unlock(hdev);
3116 3117 3118
	return err;
}

3119
static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3120
				   struct mgmt_cp_pin_code_neg_reply *cp)
3121
{
3122
	struct mgmt_pending_cmd *cmd;
3123 3124
	int err;

3125
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
3126
			       sizeof(*cp));
3127 3128 3129
	if (!cmd)
		return -ENOMEM;

3130
	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
3131
			   sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
3132 3133 3134 3135 3136 3137
	if (err < 0)
		mgmt_pending_remove(cmd);

	return err;
}

3138
static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3139
			  u16 len)
3140
{
3141
	struct hci_conn *conn;
3142
	struct mgmt_cp_pin_code_reply *cp = data;
3143
	struct hci_cp_pin_code_reply reply;
3144
	struct mgmt_pending_cmd *cmd;
3145 3146 3147 3148
	int err;

	BT_DBG("");

3149
	hci_dev_lock(hdev);
3150

3151
	if (!hdev_is_powered(hdev)) {
3152 3153
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
				      MGMT_STATUS_NOT_POWERED);
3154 3155 3156
		goto failed;
	}

3157
	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
3158
	if (!conn) {
3159 3160
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
				      MGMT_STATUS_NOT_CONNECTED);
3161 3162 3163 3164
		goto failed;
	}

	if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
3165 3166 3167
		struct mgmt_cp_pin_code_neg_reply ncp;

		memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
3168 3169 3170

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

3171
		err = send_pin_code_neg_reply(sk, hdev, &ncp);
3172
		if (err >= 0)
3173 3174
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
					      MGMT_STATUS_INVALID_PARAMS);
3175 3176 3177 3178

		goto failed;
	}

3179
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
3180 3181
	if (!cmd) {
		err = -ENOMEM;
3182
		goto failed;
3183
	}
3184

3185 3186
	cmd->cmd_complete = addr_cmd_complete;

3187
	bacpy(&reply.bdaddr, &cp->addr.bdaddr);
3188
	reply.pin_len = cp->pin_len;
3189
	memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
3190 3191 3192

	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
	if (err < 0)
3193
		mgmt_pending_remove(cmd);
3194 3195

failed:
3196
	hci_dev_unlock(hdev);
3197 3198 3199
	return err;
}

3200 3201
static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
3202
{
3203
	struct mgmt_cp_set_io_capability *cp = data;
3204 3205 3206

	BT_DBG("");

3207
	if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
3208 3209
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
					 MGMT_STATUS_INVALID_PARAMS, NULL, 0);
3210

3211
	hci_dev_lock(hdev);
3212 3213 3214 3215

	hdev->io_capability = cp->io_capability;

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

3218
	hci_dev_unlock(hdev);
3219

3220 3221
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0,
				 NULL, 0);
3222 3223
}

3224
static struct mgmt_pending_cmd *find_pairing(struct hci_conn *conn)
3225 3226
{
	struct hci_dev *hdev = conn->hdev;
3227
	struct mgmt_pending_cmd *cmd;
3228

3229
	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241
		if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
			continue;

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

		return cmd;
	}

	return NULL;
}

3242
static int pairing_complete(struct mgmt_pending_cmd *cmd, u8 status)
3243 3244 3245
{
	struct mgmt_rp_pair_device rp;
	struct hci_conn *conn = cmd->user_data;
3246
	int err;
3247

3248 3249
	bacpy(&rp.addr.bdaddr, &conn->dst);
	rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
3250

3251 3252
	err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE,
				status, &rp, sizeof(rp));
3253 3254 3255 3256 3257 3258

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

3259
	hci_conn_drop(conn);
3260 3261 3262 3263 3264

	/* The device is paired so there is no need to remove
	 * its connection parameters anymore.
	 */
	clear_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
3265 3266

	hci_conn_put(conn);
3267 3268

	return err;
3269 3270
}

3271 3272 3273
void mgmt_smp_complete(struct hci_conn *conn, bool complete)
{
	u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
3274
	struct mgmt_pending_cmd *cmd;
3275 3276

	cmd = find_pairing(conn);
3277
	if (cmd) {
3278
		cmd->cmd_complete(cmd, status);
3279 3280
		mgmt_pending_remove(cmd);
	}
3281 3282
}

3283 3284
static void pairing_complete_cb(struct hci_conn *conn, u8 status)
{
3285
	struct mgmt_pending_cmd *cmd;
3286 3287 3288 3289

	BT_DBG("status %u", status);

	cmd = find_pairing(conn);
3290
	if (!cmd) {
3291
		BT_DBG("Unable to find a pending command");
3292 3293 3294 3295 3296
		return;
	}

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);
3297 3298
}

3299
static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
3300
{
3301
	struct mgmt_pending_cmd *cmd;
3302 3303 3304 3305 3306 3307 3308

	BT_DBG("status %u", status);

	if (!status)
		return;

	cmd = find_pairing(conn);
3309
	if (!cmd) {
3310
		BT_DBG("Unable to find a pending command");
3311 3312 3313 3314 3315
		return;
	}

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);
3316 3317
}

3318
static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3319
		       u16 len)
3320
{
3321
	struct mgmt_cp_pair_device *cp = data;
3322
	struct mgmt_rp_pair_device rp;
3323
	struct mgmt_pending_cmd *cmd;
3324 3325 3326 3327 3328 3329
	u8 sec_level, auth_type;
	struct hci_conn *conn;
	int err;

	BT_DBG("");

3330 3331 3332 3333
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

3334
	if (!bdaddr_type_is_valid(cp->addr.type))
3335 3336 3337
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3338

3339
	if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
3340 3341 3342
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3343

3344
	hci_dev_lock(hdev);
3345

3346
	if (!hdev_is_powered(hdev)) {
3347 3348 3349
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
3350 3351 3352
		goto unlock;
	}

3353 3354 3355 3356 3357 3358 3359
	if (hci_bdaddr_is_paired(hdev, &cp->addr.bdaddr, cp->addr.type)) {
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_ALREADY_PAIRED, &rp,
					sizeof(rp));
		goto unlock;
	}

3360
	sec_level = BT_SECURITY_MEDIUM;
3361
	auth_type = HCI_AT_DEDICATED_BONDING;
3362

3363
	if (cp->addr.type == BDADDR_BREDR) {
3364 3365
		conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
				       auth_type);
3366 3367 3368 3369 3370 3371 3372 3373 3374 3375
	} else {
		u8 addr_type;

		/* Convert from L2CAP channel address type to HCI address type
		 */
		if (cp->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;

3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386
		/* When pairing a new device, it is expected to remember
		 * this device for future connections. Adding the connection
		 * parameter information ahead of time allows tracking
		 * of the slave preferred values and will speed up any
		 * further connection establishment.
		 *
		 * If connection parameters already exist, then they
		 * will be kept and this function does nothing.
		 */
		hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);

3387
		conn = hci_connect_le(hdev, &cp->addr.bdaddr, addr_type,
3388 3389
				      sec_level, HCI_LE_CONN_TIMEOUT,
				      HCI_ROLE_MASTER);
3390
	}
3391

3392
	if (IS_ERR(conn)) {
3393 3394 3395 3396
		int status;

		if (PTR_ERR(conn) == -EBUSY)
			status = MGMT_STATUS_BUSY;
3397 3398 3399 3400
		else if (PTR_ERR(conn) == -EOPNOTSUPP)
			status = MGMT_STATUS_NOT_SUPPORTED;
		else if (PTR_ERR(conn) == -ECONNREFUSED)
			status = MGMT_STATUS_REJECTED;
3401 3402 3403
		else
			status = MGMT_STATUS_CONNECT_FAILED;

3404 3405
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					status, &rp, sizeof(rp));
3406 3407 3408 3409
		goto unlock;
	}

	if (conn->connect_cfm_cb) {
3410
		hci_conn_drop(conn);
3411 3412
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
3413 3414 3415
		goto unlock;
	}

3416
	cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
3417 3418
	if (!cmd) {
		err = -ENOMEM;
3419
		hci_conn_drop(conn);
3420 3421 3422
		goto unlock;
	}

3423 3424
	cmd->cmd_complete = pairing_complete;

3425
	/* For LE, just connecting isn't a proof that the pairing finished */
3426
	if (cp->addr.type == BDADDR_BREDR) {
3427
		conn->connect_cfm_cb = pairing_complete_cb;
3428 3429 3430 3431 3432 3433 3434
		conn->security_cfm_cb = pairing_complete_cb;
		conn->disconn_cfm_cb = pairing_complete_cb;
	} else {
		conn->connect_cfm_cb = le_pairing_complete_cb;
		conn->security_cfm_cb = le_pairing_complete_cb;
		conn->disconn_cfm_cb = le_pairing_complete_cb;
	}
3435

3436
	conn->io_capability = cp->io_cap;
3437
	cmd->user_data = hci_conn_get(conn);
3438

3439
	if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
3440 3441 3442 3443
	    hci_conn_security(conn, sec_level, auth_type, true)) {
		cmd->cmd_complete(cmd, 0);
		mgmt_pending_remove(cmd);
	}
3444 3445 3446 3447

	err = 0;

unlock:
3448
	hci_dev_unlock(hdev);
3449 3450 3451
	return err;
}

3452 3453
static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3454
{
3455
	struct mgmt_addr_info *addr = data;
3456
	struct mgmt_pending_cmd *cmd;
3457 3458 3459 3460 3461 3462 3463
	struct hci_conn *conn;
	int err;

	BT_DBG("");

	hci_dev_lock(hdev);

3464
	if (!hdev_is_powered(hdev)) {
3465 3466
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_NOT_POWERED);
3467 3468 3469
		goto unlock;
	}

3470 3471
	cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
	if (!cmd) {
3472 3473
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_INVALID_PARAMS);
3474 3475 3476 3477 3478 3479
		goto unlock;
	}

	conn = cmd->user_data;

	if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
3480 3481
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_INVALID_PARAMS);
3482 3483 3484
		goto unlock;
	}

3485 3486
	cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
	mgmt_pending_remove(cmd);
3487

3488 3489
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
				addr, sizeof(*addr));
3490 3491 3492 3493 3494
unlock:
	hci_dev_unlock(hdev);
	return err;
}

3495
static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
3496
			     struct mgmt_addr_info *addr, u16 mgmt_op,
3497
			     u16 hci_op, __le32 passkey)
3498
{
3499
	struct mgmt_pending_cmd *cmd;
3500
	struct hci_conn *conn;
3501 3502
	int err;

3503
	hci_dev_lock(hdev);
3504

3505
	if (!hdev_is_powered(hdev)) {
3506 3507 3508
		err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
					MGMT_STATUS_NOT_POWERED, addr,
					sizeof(*addr));
3509
		goto done;
3510 3511
	}

3512 3513
	if (addr->type == BDADDR_BREDR)
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
3514
	else
3515
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr);
3516 3517

	if (!conn) {
3518 3519 3520
		err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
					MGMT_STATUS_NOT_CONNECTED, addr,
					sizeof(*addr));
3521 3522
		goto done;
	}
3523

3524
	if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
3525 3526
		err = smp_user_confirm_reply(conn, mgmt_op, passkey);
		if (!err)
3527 3528 3529
			err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
						MGMT_STATUS_SUCCESS, addr,
						sizeof(*addr));
3530
		else
3531 3532 3533
			err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
						MGMT_STATUS_FAILED, addr,
						sizeof(*addr));
3534 3535 3536 3537

		goto done;
	}

3538
	cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
3539 3540
	if (!cmd) {
		err = -ENOMEM;
3541
		goto done;
3542 3543
	}

3544 3545
	cmd->cmd_complete = addr_cmd_complete;

3546
	/* Continue with pairing via HCI */
3547 3548 3549
	if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
		struct hci_cp_user_passkey_reply cp;

3550
		bacpy(&cp.bdaddr, &addr->bdaddr);
3551 3552 3553
		cp.passkey = passkey;
		err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
	} else
3554 3555
		err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
				   &addr->bdaddr);
3556

3557 3558
	if (err < 0)
		mgmt_pending_remove(cmd);
3559

3560
done:
3561
	hci_dev_unlock(hdev);
3562 3563 3564
	return err;
}

3565 3566 3567 3568 3569 3570 3571
static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
			      void *data, u16 len)
{
	struct mgmt_cp_pin_code_neg_reply *cp = data;

	BT_DBG("");

3572
	return user_pairing_resp(sk, hdev, &cp->addr,
3573 3574 3575 3576
				MGMT_OP_PIN_CODE_NEG_REPLY,
				HCI_OP_PIN_CODE_NEG_REPLY, 0);
}

3577 3578
static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3579
{
3580
	struct mgmt_cp_user_confirm_reply *cp = data;
3581 3582 3583 3584

	BT_DBG("");

	if (len != sizeof(*cp))
3585 3586
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
				       MGMT_STATUS_INVALID_PARAMS);
3587

3588
	return user_pairing_resp(sk, hdev, &cp->addr,
3589 3590
				 MGMT_OP_USER_CONFIRM_REPLY,
				 HCI_OP_USER_CONFIRM_REPLY, 0);
3591 3592
}

3593
static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
3594
				  void *data, u16 len)
3595
{
3596
	struct mgmt_cp_user_confirm_neg_reply *cp = data;
3597 3598 3599

	BT_DBG("");

3600
	return user_pairing_resp(sk, hdev, &cp->addr,
3601 3602
				 MGMT_OP_USER_CONFIRM_NEG_REPLY,
				 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
3603 3604
}

3605 3606
static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3607
{
3608
	struct mgmt_cp_user_passkey_reply *cp = data;
3609 3610 3611

	BT_DBG("");

3612
	return user_pairing_resp(sk, hdev, &cp->addr,
3613 3614
				 MGMT_OP_USER_PASSKEY_REPLY,
				 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
3615 3616
}

3617
static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
3618
				  void *data, u16 len)
3619
{
3620
	struct mgmt_cp_user_passkey_neg_reply *cp = data;
3621 3622 3623

	BT_DBG("");

3624
	return user_pairing_resp(sk, hdev, &cp->addr,
3625 3626
				 MGMT_OP_USER_PASSKEY_NEG_REPLY,
				 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
3627 3628
}

3629
static void update_name(struct hci_request *req)
3630
{
3631
	struct hci_dev *hdev = req->hdev;
3632 3633
	struct hci_cp_write_local_name cp;

3634
	memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
3635

3636
	hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
3637 3638
}

3639
static void set_name_complete(struct hci_dev *hdev, u8 status, u16 opcode)
3640 3641
{
	struct mgmt_cp_set_local_name *cp;
3642
	struct mgmt_pending_cmd *cmd;
3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654

	BT_DBG("status 0x%02x", status);

	hci_dev_lock(hdev);

	cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
	if (!cmd)
		goto unlock;

	cp = cmd->param;

	if (status)
3655 3656
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
			        mgmt_status(status));
3657
	else
3658 3659
		mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
				  cp, sizeof(*cp));
3660 3661 3662 3663 3664 3665 3666

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

3667
static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
3668
			  u16 len)
3669
{
3670
	struct mgmt_cp_set_local_name *cp = data;
3671
	struct mgmt_pending_cmd *cmd;
3672
	struct hci_request req;
3673 3674 3675 3676
	int err;

	BT_DBG("");

3677
	hci_dev_lock(hdev);
3678

3679 3680 3681 3682 3683 3684
	/* If the old values are the same as the new ones just return a
	 * direct command complete event.
	 */
	if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
	    !memcmp(hdev->short_name, cp->short_name,
		    sizeof(hdev->short_name))) {
3685 3686
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
					data, len);
3687 3688 3689
		goto failed;
	}

3690
	memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
3691

3692
	if (!hdev_is_powered(hdev)) {
3693
		memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3694

3695 3696
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
					data, len);
3697 3698 3699 3700
		if (err < 0)
			goto failed;

		err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
3701
				 sk);
3702

3703 3704 3705
		goto failed;
	}

3706
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
3707 3708 3709 3710 3711
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

3712 3713
	memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));

3714
	hci_req_init(&req, hdev);
3715 3716 3717 3718 3719 3720

	if (lmp_bredr_capable(hdev)) {
		update_name(&req);
		update_eir(&req);
	}

3721 3722 3723
	/* The name is stored in the scan response data and so
	 * no need to udpate the advertising data here.
	 */
3724
	if (lmp_le_capable(hdev))
3725
		update_scan_rsp_data(&req);
3726

3727
	err = hci_req_run(&req, set_name_complete);
3728 3729 3730 3731
	if (err < 0)
		mgmt_pending_remove(cmd);

failed:
3732
	hci_dev_unlock(hdev);
3733 3734 3735
	return err;
}

3736
static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
3737
			       void *data, u16 data_len)
3738
{
3739
	struct mgmt_pending_cmd *cmd;
3740 3741
	int err;

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

3744
	hci_dev_lock(hdev);
3745

3746
	if (!hdev_is_powered(hdev)) {
3747 3748
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_NOT_POWERED);
3749 3750 3751
		goto unlock;
	}

3752
	if (!lmp_ssp_capable(hdev)) {
3753 3754
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_NOT_SUPPORTED);
3755 3756 3757
		goto unlock;
	}

3758
	if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
3759 3760
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_BUSY);
3761 3762 3763
		goto unlock;
	}

3764
	cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
3765 3766 3767 3768 3769
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

3770
	if (bredr_sc_enabled(hdev))
3771 3772 3773 3774 3775
		err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_EXT_DATA,
				   0, NULL);
	else
		err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);

3776 3777 3778 3779
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
3780
	hci_dev_unlock(hdev);
3781 3782 3783
	return err;
}

3784
static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
3785
			       void *data, u16 len)
3786
{
3787
	struct mgmt_addr_info *addr = data;
3788 3789
	int err;

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

3792
	if (!bdaddr_type_is_valid(addr->type))
3793 3794 3795 3796
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_ADD_REMOTE_OOB_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 addr, sizeof(*addr));
3797

3798
	hci_dev_lock(hdev);
3799

3800 3801 3802
	if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
		struct mgmt_cp_add_remote_oob_data *cp = data;
		u8 status;
3803

3804
		if (cp->addr.type != BDADDR_BREDR) {
3805 3806 3807 3808
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_ADD_REMOTE_OOB_DATA,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
3809 3810 3811
			goto unlock;
		}

3812
		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
3813 3814
					      cp->addr.type, cp->hash,
					      cp->rand, NULL, NULL);
3815 3816 3817 3818 3819
		if (err < 0)
			status = MGMT_STATUS_FAILED;
		else
			status = MGMT_STATUS_SUCCESS;

3820 3821 3822
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_REMOTE_OOB_DATA, status,
					&cp->addr, sizeof(cp->addr));
3823 3824
	} else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
		struct mgmt_cp_add_remote_oob_ext_data *cp = data;
3825
		u8 *rand192, *hash192, *rand256, *hash256;
3826 3827
		u8 status;

3828
		if (bdaddr_type_is_le(cp->addr.type)) {
3829 3830 3831 3832 3833
			/* Enforce zero-valued 192-bit parameters as
			 * long as legacy SMP OOB isn't implemented.
			 */
			if (memcmp(cp->rand192, ZERO_KEY, 16) ||
			    memcmp(cp->hash192, ZERO_KEY, 16)) {
3834 3835 3836 3837
				err = mgmt_cmd_complete(sk, hdev->id,
							MGMT_OP_ADD_REMOTE_OOB_DATA,
							MGMT_STATUS_INVALID_PARAMS,
							addr, sizeof(*addr));
3838 3839 3840
				goto unlock;
			}

3841 3842 3843
			rand192 = NULL;
			hash192 = NULL;
		} else {
3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866
			/* In case one of the P-192 values is set to zero,
			 * then just disable OOB data for P-192.
			 */
			if (!memcmp(cp->rand192, ZERO_KEY, 16) ||
			    !memcmp(cp->hash192, ZERO_KEY, 16)) {
				rand192 = NULL;
				hash192 = NULL;
			} else {
				rand192 = cp->rand192;
				hash192 = cp->hash192;
			}
		}

		/* In case one of the P-256 values is set to zero, then just
		 * disable OOB data for P-256.
		 */
		if (!memcmp(cp->rand256, ZERO_KEY, 16) ||
		    !memcmp(cp->hash256, ZERO_KEY, 16)) {
			rand256 = NULL;
			hash256 = NULL;
		} else {
			rand256 = cp->rand256;
			hash256 = cp->hash256;
3867 3868
		}

3869
		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
3870
					      cp->addr.type, hash192, rand192,
3871
					      hash256, rand256);
3872 3873 3874 3875 3876
		if (err < 0)
			status = MGMT_STATUS_FAILED;
		else
			status = MGMT_STATUS_SUCCESS;

3877 3878 3879
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_REMOTE_OOB_DATA,
					status, &cp->addr, sizeof(cp->addr));
3880 3881
	} else {
		BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
3882 3883
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
				      MGMT_STATUS_INVALID_PARAMS);
3884
	}
3885

3886
unlock:
3887
	hci_dev_unlock(hdev);
3888 3889 3890
	return err;
}

3891
static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
3892
				  void *data, u16 len)
3893
{
3894
	struct mgmt_cp_remove_remote_oob_data *cp = data;
3895
	u8 status;
3896 3897
	int err;

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

3900
	if (cp->addr.type != BDADDR_BREDR)
3901 3902 3903 3904
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
3905

3906
	hci_dev_lock(hdev);
3907

3908 3909 3910 3911 3912 3913
	if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
		hci_remote_oob_data_clear(hdev);
		status = MGMT_STATUS_SUCCESS;
		goto done;
	}

3914
	err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
3915
	if (err < 0)
3916
		status = MGMT_STATUS_INVALID_PARAMS;
3917
	else
3918
		status = MGMT_STATUS_SUCCESS;
3919

3920
done:
3921 3922
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
				status, &cp->addr, sizeof(cp->addr));
3923

3924
	hci_dev_unlock(hdev);
3925 3926 3927
	return err;
}

3928
static bool trigger_discovery(struct hci_request *req, u8 *status)
3929
{
3930 3931 3932 3933 3934 3935 3936
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_scan_param param_cp;
	struct hci_cp_le_set_scan_enable enable_cp;
	struct hci_cp_inquiry inq_cp;
	/* General inquiry access code (GIAC) */
	u8 lap[3] = { 0x33, 0x8b, 0x9e };
	u8 own_addr_type;
3937 3938
	int err;

3939 3940 3941 3942 3943
	switch (hdev->discovery.type) {
	case DISCOV_TYPE_BREDR:
		*status = mgmt_bredr_support(hdev);
		if (*status)
			return false;
3944

3945 3946 3947 3948
		if (test_bit(HCI_INQUIRY, &hdev->flags)) {
			*status = MGMT_STATUS_BUSY;
			return false;
		}
3949

3950
		hci_inquiry_cache_flush(hdev);
3951

3952 3953 3954 3955 3956
		memset(&inq_cp, 0, sizeof(inq_cp));
		memcpy(&inq_cp.lap, lap, sizeof(inq_cp.lap));
		inq_cp.length = DISCOV_BREDR_INQUIRY_LEN;
		hci_req_add(req, HCI_OP_INQUIRY, sizeof(inq_cp), &inq_cp);
		break;
3957

3958 3959 3960 3961 3962 3963 3964
	case DISCOV_TYPE_LE:
	case DISCOV_TYPE_INTERLEAVED:
		*status = mgmt_le_support(hdev);
		if (*status)
			return false;

		if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
3965
		    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
3966 3967 3968 3969
			*status = MGMT_STATUS_NOT_SUPPORTED;
			return false;
		}

3970
		if (hci_dev_test_flag(hdev, HCI_LE_ADV)) {
3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987
			/* Don't let discovery abort an outgoing
			 * connection attempt that's using directed
			 * advertising.
			 */
			if (hci_conn_hash_lookup_state(hdev, LE_LINK,
						       BT_CONNECT)) {
				*status = MGMT_STATUS_REJECTED;
				return false;
			}

			disable_advertising(req);
		}

		/* If controller is scanning, it means the background scanning
		 * is running. Thus, we should temporarily stop it in order to
		 * set the discovery scanning parameters.
		 */
3988
		if (hci_dev_test_flag(hdev, HCI_LE_SCAN))
3989 3990 3991 3992 3993 3994
			hci_req_add_le_scan_disable(req);

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

		/* All active scans will be done with either a resolvable
		 * private address (when privacy feature has been enabled)
3995
		 * or non-resolvable private address.
3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022
		 */
		err = hci_update_random_address(req, true, &own_addr_type);
		if (err < 0) {
			*status = MGMT_STATUS_FAILED;
			return false;
		}

		param_cp.type = LE_SCAN_ACTIVE;
		param_cp.interval = cpu_to_le16(DISCOV_LE_SCAN_INT);
		param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
		param_cp.own_address_type = own_addr_type;
		hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
			    &param_cp);

		memset(&enable_cp, 0, sizeof(enable_cp));
		enable_cp.enable = LE_SCAN_ENABLE;
		enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
		hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
			    &enable_cp);
		break;

	default:
		*status = MGMT_STATUS_INVALID_PARAMS;
		return false;
	}

	return true;
4023 4024
}

4025 4026
static void start_discovery_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
4027
{
4028
	struct mgmt_pending_cmd *cmd;
4029
	unsigned long timeout;
4030

4031 4032
	BT_DBG("status %d", status);

4033
	hci_dev_lock(hdev);
4034

4035
	cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
4036 4037 4038
	if (!cmd)
		cmd = mgmt_pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);

4039
	if (cmd) {
4040
		cmd->cmd_complete(cmd, mgmt_status(status));
4041 4042
		mgmt_pending_remove(cmd);
	}
4043 4044

	if (status) {
4045 4046
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
		goto unlock;
4047 4048 4049 4050
	}

	hci_discovery_set_state(hdev, DISCOVERY_FINDING);

4051 4052 4053
	/* If the scan involves LE scan, pick proper timeout to schedule
	 * hdev->le_scan_disable that will stop it.
	 */
4054 4055
	switch (hdev->discovery.type) {
	case DISCOV_TYPE_LE:
4056
		timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
4057 4058
		break;
	case DISCOV_TYPE_INTERLEAVED:
4059
		timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
4060 4061
		break;
	case DISCOV_TYPE_BREDR:
4062
		timeout = 0;
4063 4064 4065
		break;
	default:
		BT_ERR("Invalid discovery type %d", hdev->discovery.type);
4066 4067
		timeout = 0;
		break;
4068
	}
4069

4070 4071 4072 4073 4074 4075 4076 4077
	if (timeout) {
		/* When service discovery is used and the controller has
		 * a strict duplicate filter, it is important to remember
		 * the start and duration of the scan. This is required
		 * for restarting scanning during the discovery phase.
		 */
		if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER,
			     &hdev->quirks) &&
4078
		    hdev->discovery.result_filtering) {
4079 4080 4081 4082
			hdev->discovery.scan_start = jiffies;
			hdev->discovery.scan_duration = timeout;
		}

4083 4084
		queue_delayed_work(hdev->workqueue,
				   &hdev->le_scan_disable, timeout);
4085
	}
4086

4087 4088
unlock:
	hci_dev_unlock(hdev);
4089 4090
}

4091
static int start_discovery(struct sock *sk, struct hci_dev *hdev,
4092
			   void *data, u16 len)
4093
{
4094
	struct mgmt_cp_start_discovery *cp = data;
4095
	struct mgmt_pending_cmd *cmd;
4096
	struct hci_request req;
4097
	u8 status;
4098 4099
	int err;

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

4102
	hci_dev_lock(hdev);
4103

4104
	if (!hdev_is_powered(hdev)) {
4105 4106 4107
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					MGMT_STATUS_NOT_POWERED,
					&cp->type, sizeof(cp->type));
4108 4109 4110
		goto failed;
	}

4111
	if (hdev->discovery.state != DISCOVERY_STOPPED ||
4112
	    hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
4113 4114 4115
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					MGMT_STATUS_BUSY, &cp->type,
					sizeof(cp->type));
4116 4117 4118
		goto failed;
	}

4119
	cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, data, len);
4120 4121 4122 4123 4124
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

4125 4126
	cmd->cmd_complete = generic_cmd_complete;

4127 4128 4129 4130 4131
	/* Clear the discovery filter first to free any previously
	 * allocated memory for the UUID list.
	 */
	hci_discovery_filter_clear(hdev);

A
Andre Guedes 已提交
4132
	hdev->discovery.type = cp->type;
4133
	hdev->discovery.report_invalid_rssi = false;
A
Andre Guedes 已提交
4134

4135 4136
	hci_req_init(&req, hdev);

4137
	if (!trigger_discovery(&req, &status)) {
4138 4139
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					status, &cp->type, sizeof(cp->type));
4140 4141
		mgmt_pending_remove(cmd);
		goto failed;
4142
	}
4143

4144
	err = hci_req_run(&req, start_discovery_complete);
4145
	if (err < 0) {
4146
		mgmt_pending_remove(cmd);
4147 4148
		goto failed;
	}
4149

4150
	hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4151

4152
failed:
4153
	hci_dev_unlock(hdev);
4154 4155
	return err;
}
4156

4157 4158
static int service_discovery_cmd_complete(struct mgmt_pending_cmd *cmd,
					  u8 status)
4159
{
4160 4161
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, 1);
4162
}
4163

4164 4165 4166 4167
static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
				   void *data, u16 len)
{
	struct mgmt_cp_start_service_discovery *cp = data;
4168
	struct mgmt_pending_cmd *cmd;
4169 4170 4171 4172 4173
	struct hci_request req;
	const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
	u16 uuid_count, expected_len;
	u8 status;
	int err;
4174

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

4177
	hci_dev_lock(hdev);
4178

4179
	if (!hdev_is_powered(hdev)) {
4180 4181 4182 4183
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_NOT_POWERED,
					&cp->type, sizeof(cp->type));
4184 4185
		goto failed;
	}
4186

4187
	if (hdev->discovery.state != DISCOVERY_STOPPED ||
4188
	    hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
4189 4190 4191 4192
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_BUSY, &cp->type,
					sizeof(cp->type));
4193 4194
		goto failed;
	}
4195

4196 4197 4198 4199
	uuid_count = __le16_to_cpu(cp->uuid_count);
	if (uuid_count > max_uuid_count) {
		BT_ERR("service_discovery: too big uuid_count value %u",
		       uuid_count);
4200 4201 4202 4203
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS, &cp->type,
					sizeof(cp->type));
4204 4205 4206 4207 4208 4209 4210
		goto failed;
	}

	expected_len = sizeof(*cp) + uuid_count * 16;
	if (expected_len != len) {
		BT_ERR("service_discovery: expected %u bytes, got %u bytes",
		       expected_len, len);
4211 4212 4213 4214
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS, &cp->type,
					sizeof(cp->type));
4215 4216 4217 4218
		goto failed;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
4219
			       hdev, data, len);
4220 4221 4222 4223 4224
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

4225 4226
	cmd->cmd_complete = service_discovery_cmd_complete;

4227 4228 4229 4230 4231
	/* Clear the discovery filter first to free any previously
	 * allocated memory for the UUID list.
	 */
	hci_discovery_filter_clear(hdev);

4232
	hdev->discovery.result_filtering = true;
4233 4234 4235 4236 4237 4238 4239 4240
	hdev->discovery.type = cp->type;
	hdev->discovery.rssi = cp->rssi;
	hdev->discovery.uuid_count = uuid_count;

	if (uuid_count > 0) {
		hdev->discovery.uuids = kmemdup(cp->uuids, uuid_count * 16,
						GFP_KERNEL);
		if (!hdev->discovery.uuids) {
4241 4242 4243 4244
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_START_SERVICE_DISCOVERY,
						MGMT_STATUS_FAILED,
						&cp->type, sizeof(cp->type));
4245 4246 4247
			mgmt_pending_remove(cmd);
			goto failed;
		}
4248
	}
4249

4250
	hci_req_init(&req, hdev);
4251

4252
	if (!trigger_discovery(&req, &status)) {
4253 4254 4255
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					status, &cp->type, sizeof(cp->type));
4256 4257
		mgmt_pending_remove(cmd);
		goto failed;
4258
	}
4259

4260
	err = hci_req_run(&req, start_discovery_complete);
4261
	if (err < 0) {
4262
		mgmt_pending_remove(cmd);
4263 4264 4265 4266
		goto failed;
	}

	hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4267 4268

failed:
4269
	hci_dev_unlock(hdev);
4270 4271 4272
	return err;
}

4273
static void stop_discovery_complete(struct hci_dev *hdev, u8 status, u16 opcode)
4274
{
4275
	struct mgmt_pending_cmd *cmd;
4276

4277 4278 4279 4280
	BT_DBG("status %d", status);

	hci_dev_lock(hdev);

4281 4282
	cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
	if (cmd) {
4283
		cmd->cmd_complete(cmd, mgmt_status(status));
4284
		mgmt_pending_remove(cmd);
4285 4286
	}

4287 4288
	if (!status)
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4289 4290 4291 4292

	hci_dev_unlock(hdev);
}

4293
static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
4294
			  u16 len)
4295
{
4296
	struct mgmt_cp_stop_discovery *mgmt_cp = data;
4297
	struct mgmt_pending_cmd *cmd;
4298
	struct hci_request req;
4299 4300
	int err;

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

4303
	hci_dev_lock(hdev);
4304

4305
	if (!hci_discovery_active(hdev)) {
4306 4307 4308
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
					MGMT_STATUS_REJECTED, &mgmt_cp->type,
					sizeof(mgmt_cp->type));
4309 4310 4311 4312
		goto unlock;
	}

	if (hdev->discovery.type != mgmt_cp->type) {
4313 4314 4315
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS,
					&mgmt_cp->type, sizeof(mgmt_cp->type));
4316
		goto unlock;
4317 4318
	}

4319
	cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
4320 4321
	if (!cmd) {
		err = -ENOMEM;
4322 4323 4324
		goto unlock;
	}

4325 4326
	cmd->cmd_complete = generic_cmd_complete;

4327 4328
	hci_req_init(&req, hdev);

4329
	hci_stop_discovery(&req);
4330

4331 4332 4333
	err = hci_req_run(&req, stop_discovery_complete);
	if (!err) {
		hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
4334
		goto unlock;
4335 4336
	}

4337 4338 4339 4340
	mgmt_pending_remove(cmd);

	/* If no HCI commands were sent we're done */
	if (err == -ENODATA) {
4341 4342
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
					&mgmt_cp->type, sizeof(mgmt_cp->type));
4343 4344
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
	}
4345

4346
unlock:
4347
	hci_dev_unlock(hdev);
4348 4349 4350
	return err;
}

4351
static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
4352
			u16 len)
4353
{
4354
	struct mgmt_cp_confirm_name *cp = data;
4355 4356 4357
	struct inquiry_entry *e;
	int err;

4358
	BT_DBG("%s", hdev->name);
4359 4360 4361

	hci_dev_lock(hdev);

4362
	if (!hci_discovery_active(hdev)) {
4363 4364 4365
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
					MGMT_STATUS_FAILED, &cp->addr,
					sizeof(cp->addr));
4366 4367 4368
		goto failed;
	}

4369
	e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
4370
	if (!e) {
4371 4372 4373
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
					MGMT_STATUS_INVALID_PARAMS, &cp->addr,
					sizeof(cp->addr));
4374 4375 4376 4377 4378 4379 4380 4381
		goto failed;
	}

	if (cp->name_known) {
		e->name_state = NAME_KNOWN;
		list_del(&e->list);
	} else {
		e->name_state = NAME_NEEDED;
4382
		hci_inquiry_cache_update_resolve(hdev, e);
4383 4384
	}

4385 4386
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
				&cp->addr, sizeof(cp->addr));
4387 4388 4389 4390 4391 4392

failed:
	hci_dev_unlock(hdev);
	return err;
}

4393
static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
4394
			u16 len)
4395
{
4396
	struct mgmt_cp_block_device *cp = data;
4397
	u8 status;
4398 4399
	int err;

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

4402
	if (!bdaddr_type_is_valid(cp->addr.type))
4403 4404 4405
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
4406

4407
	hci_dev_lock(hdev);
4408

4409 4410
	err = hci_bdaddr_list_add(&hdev->blacklist, &cp->addr.bdaddr,
				  cp->addr.type);
4411
	if (err < 0) {
4412
		status = MGMT_STATUS_FAILED;
4413 4414 4415 4416 4417 4418
		goto done;
	}

	mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &cp->addr, sizeof(cp->addr),
		   sk);
	status = MGMT_STATUS_SUCCESS;
4419

4420
done:
4421 4422
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
				&cp->addr, sizeof(cp->addr));
4423

4424
	hci_dev_unlock(hdev);
4425 4426 4427 4428

	return err;
}

4429
static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
4430
			  u16 len)
4431
{
4432
	struct mgmt_cp_unblock_device *cp = data;
4433
	u8 status;
4434 4435
	int err;

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

4438
	if (!bdaddr_type_is_valid(cp->addr.type))
4439 4440 4441
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
4442

4443
	hci_dev_lock(hdev);
4444

4445 4446
	err = hci_bdaddr_list_del(&hdev->blacklist, &cp->addr.bdaddr,
				  cp->addr.type);
4447
	if (err < 0) {
4448
		status = MGMT_STATUS_INVALID_PARAMS;
4449 4450 4451 4452 4453 4454
		goto done;
	}

	mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &cp->addr, sizeof(cp->addr),
		   sk);
	status = MGMT_STATUS_SUCCESS;
4455

4456
done:
4457 4458
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
				&cp->addr, sizeof(cp->addr));
4459

4460
	hci_dev_unlock(hdev);
4461 4462 4463 4464

	return err;
}

4465 4466 4467 4468
static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 len)
{
	struct mgmt_cp_set_device_id *cp = data;
4469
	struct hci_request req;
4470
	int err;
4471
	__u16 source;
4472 4473 4474

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

4475 4476 4477
	source = __le16_to_cpu(cp->source);

	if (source > 0x0002)
4478 4479
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
				       MGMT_STATUS_INVALID_PARAMS);
4480

4481 4482
	hci_dev_lock(hdev);

4483
	hdev->devid_source = source;
4484 4485 4486 4487
	hdev->devid_vendor = __le16_to_cpu(cp->vendor);
	hdev->devid_product = __le16_to_cpu(cp->product);
	hdev->devid_version = __le16_to_cpu(cp->version);

4488 4489
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
				NULL, 0);
4490

4491 4492 4493
	hci_req_init(&req, hdev);
	update_eir(&req);
	hci_req_run(&req, NULL);
4494 4495 4496 4497 4498 4499

	hci_dev_unlock(hdev);

	return err;
}

4500 4501
static void set_advertising_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
4502 4503 4504
{
	struct cmd_lookup match = { NULL, hdev };

4505 4506
	hci_dev_lock(hdev);

4507 4508 4509 4510 4511
	if (status) {
		u8 mgmt_err = mgmt_status(status);

		mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
				     cmd_status_rsp, &mgmt_err);
4512
		goto unlock;
4513 4514
	}

4515
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
4516
		hci_dev_set_flag(hdev, HCI_ADVERTISING);
4517
	else
4518
		hci_dev_clear_flag(hdev, HCI_ADVERTISING);
4519

4520 4521 4522 4523 4524 4525 4526
	mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
			     &match);

	new_settings(hdev, match.sk);

	if (match.sk)
		sock_put(match.sk);
4527 4528 4529

unlock:
	hci_dev_unlock(hdev);
4530 4531
}

4532 4533
static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 len)
4534 4535
{
	struct mgmt_mode *cp = data;
4536
	struct mgmt_pending_cmd *cmd;
4537
	struct hci_request req;
4538
	u8 val, status;
4539 4540 4541 4542
	int err;

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

4543 4544
	status = mgmt_le_support(hdev);
	if (status)
4545 4546
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				       status);
4547

4548
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
4549 4550
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);
4551 4552 4553 4554 4555

	hci_dev_lock(hdev);

	val = !!cp->val;

4556 4557 4558 4559 4560
	/* The following conditions are ones which mean that we should
	 * not do any HCI communication but directly send a mgmt
	 * response to user space (after toggling the flag if
	 * necessary).
	 */
4561
	if (!hdev_is_powered(hdev) ||
4562 4563
	    (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
	     (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
4564
	    hci_conn_num(hdev, LE_LINK) > 0 ||
4565
	    (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
4566
	     hdev->le_scan_type == LE_SCAN_ACTIVE)) {
4567
		bool changed;
4568

4569
		if (cp->val) {
4570
			changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
4571
			if (cp->val == 0x02)
4572
				hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4573
			else
4574
				hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4575
		} else {
4576
			changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
4577
			hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591
		}

		err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
		if (err < 0)
			goto unlock;

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

		goto unlock;
	}

	if (mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
	    mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
4592 4593
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				      MGMT_STATUS_BUSY);
4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604
		goto unlock;
	}

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

	hci_req_init(&req, hdev);

4605
	if (cp->val == 0x02)
4606
		hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4607
	else
4608
		hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4609

4610 4611 4612 4613
	if (val)
		enable_advertising(&req);
	else
		disable_advertising(&req);
4614 4615 4616 4617 4618 4619 4620 4621 4622 4623

	err = hci_req_run(&req, set_advertising_complete);
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
	return err;
}

4624 4625 4626 4627 4628 4629 4630 4631
static int set_static_address(struct sock *sk, struct hci_dev *hdev,
			      void *data, u16 len)
{
	struct mgmt_cp_set_static_address *cp = data;
	int err;

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

4632
	if (!lmp_le_capable(hdev))
4633 4634
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
				       MGMT_STATUS_NOT_SUPPORTED);
4635 4636

	if (hdev_is_powered(hdev))
4637 4638
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
				       MGMT_STATUS_REJECTED);
4639 4640 4641

	if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
		if (!bacmp(&cp->bdaddr, BDADDR_NONE))
4642 4643 4644
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_SET_STATIC_ADDRESS,
					       MGMT_STATUS_INVALID_PARAMS);
4645 4646 4647

		/* Two most significant bits shall be set */
		if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
4648 4649 4650
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_SET_STATIC_ADDRESS,
					       MGMT_STATUS_INVALID_PARAMS);
4651 4652 4653 4654 4655 4656
	}

	hci_dev_lock(hdev);

	bacpy(&hdev->static_addr, &cp->bdaddr);

4657 4658 4659 4660 4661
	err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
	if (err < 0)
		goto unlock;

	err = new_settings(hdev, sk);
4662

4663
unlock:
4664 4665 4666 4667
	hci_dev_unlock(hdev);
	return err;
}

4668 4669 4670 4671 4672 4673 4674 4675 4676 4677
static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
			   void *data, u16 len)
{
	struct mgmt_cp_set_scan_params *cp = data;
	__u16 interval, window;
	int err;

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

	if (!lmp_le_capable(hdev))
4678 4679
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_NOT_SUPPORTED);
4680 4681 4682 4683

	interval = __le16_to_cpu(cp->interval);

	if (interval < 0x0004 || interval > 0x4000)
4684 4685
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
4686 4687 4688 4689

	window = __le16_to_cpu(cp->window);

	if (window < 0x0004 || window > 0x4000)
4690 4691
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
4692

4693
	if (window > interval)
4694 4695
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
4696

4697 4698 4699 4700 4701
	hci_dev_lock(hdev);

	hdev->le_scan_interval = interval;
	hdev->le_scan_window = window;

4702 4703
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
				NULL, 0);
4704

4705 4706 4707
	/* If background scan is running, restart it so new parameters are
	 * loaded.
	 */
4708
	if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719
	    hdev->discovery.state == DISCOVERY_STOPPED) {
		struct hci_request req;

		hci_req_init(&req, hdev);

		hci_req_add_le_scan_disable(&req);
		hci_req_add_le_passive_scan(&req);

		hci_req_run(&req, NULL);
	}

4720 4721 4722 4723 4724
	hci_dev_unlock(hdev);

	return err;
}

4725 4726
static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
				      u16 opcode)
4727
{
4728
	struct mgmt_pending_cmd *cmd;
4729 4730 4731 4732 4733 4734 4735 4736 4737 4738

	BT_DBG("status 0x%02x", status);

	hci_dev_lock(hdev);

	cmd = mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
	if (!cmd)
		goto unlock;

	if (status) {
4739 4740
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
			        mgmt_status(status));
4741
	} else {
4742 4743 4744
		struct mgmt_mode *cp = cmd->param;

		if (cp->val)
4745
			hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
4746
		else
4747
			hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
4748

4749 4750 4751 4752 4753 4754 4755 4756 4757 4758
		send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
		new_settings(hdev, cmd->sk);
	}

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

4759
static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
4760
				void *data, u16 len)
4761
{
4762
	struct mgmt_mode *cp = data;
4763
	struct mgmt_pending_cmd *cmd;
4764
	struct hci_request req;
4765 4766
	int err;

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

4769
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
4770
	    hdev->hci_ver < BLUETOOTH_VER_1_2)
4771 4772
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				       MGMT_STATUS_NOT_SUPPORTED);
4773

4774
	if (cp->val != 0x00 && cp->val != 0x01)
4775 4776
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				       MGMT_STATUS_INVALID_PARAMS);
4777

4778 4779
	hci_dev_lock(hdev);

4780
	if (mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
4781 4782
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				      MGMT_STATUS_BUSY);
4783 4784 4785
		goto unlock;
	}

4786
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
4787 4788 4789 4790 4791
		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
					hdev);
		goto unlock;
	}

4792
	if (!hdev_is_powered(hdev)) {
4793
		hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
4794 4795 4796 4797 4798 4799
		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
					hdev);
		new_settings(hdev, sk);
		goto unlock;
	}

4800 4801 4802 4803 4804
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
			       data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
4805 4806
	}

4807 4808
	hci_req_init(&req, hdev);

4809
	write_fast_connectable(&req, cp->val);
4810 4811

	err = hci_req_run(&req, fast_connectable_complete);
4812
	if (err < 0) {
4813 4814
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				      MGMT_STATUS_FAILED);
4815
		mgmt_pending_remove(cmd);
4816 4817
	}

4818
unlock:
4819
	hci_dev_unlock(hdev);
4820

4821 4822 4823
	return err;
}

4824
static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
4825
{
4826
	struct mgmt_pending_cmd *cmd;
4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841

	BT_DBG("status 0x%02x", status);

	hci_dev_lock(hdev);

	cmd = mgmt_pending_find(MGMT_OP_SET_BREDR, hdev);
	if (!cmd)
		goto unlock;

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

		/* We need to restore the flag if related HCI commands
		 * failed.
		 */
4842
		hci_dev_clear_flag(hdev, HCI_BREDR_ENABLED);
4843

4844
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858
	} else {
		send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
		new_settings(hdev, cmd->sk);
	}

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
{
	struct mgmt_mode *cp = data;
4859
	struct mgmt_pending_cmd *cmd;
4860 4861 4862 4863 4864 4865
	struct hci_request req;
	int err;

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

	if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
4866 4867
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_NOT_SUPPORTED);
4868

4869
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
4870 4871
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_REJECTED);
4872 4873

	if (cp->val != 0x00 && cp->val != 0x01)
4874 4875
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_INVALID_PARAMS);
4876 4877 4878

	hci_dev_lock(hdev);

4879
	if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
4880 4881 4882 4883 4884 4885
		err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
		goto unlock;
	}

	if (!hdev_is_powered(hdev)) {
		if (!cp->val) {
4886 4887 4888 4889 4890
			hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
			hci_dev_clear_flag(hdev, HCI_SSP_ENABLED);
			hci_dev_clear_flag(hdev, HCI_LINK_SECURITY);
			hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
4891 4892
		}

4893
		hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904

		err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
		if (err < 0)
			goto unlock;

		err = new_settings(hdev, sk);
		goto unlock;
	}

	/* Reject disabling when powered on */
	if (!cp->val) {
4905 4906
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				      MGMT_STATUS_REJECTED);
4907
		goto unlock;
4908 4909 4910 4911 4912 4913 4914 4915
	} else {
		/* When configuring a dual-mode controller to operate
		 * with LE only and using a static address, then switching
		 * BR/EDR back on is not allowed.
		 *
		 * Dual-mode controllers shall operate with the public
		 * address as its identity address for BR/EDR and LE. So
		 * reject the attempt to create an invalid configuration.
4916 4917 4918 4919 4920 4921
		 *
		 * The same restrictions applies when secure connections
		 * has been enabled. For BR/EDR this is a controller feature
		 * while for LE it is a host stack feature. This means that
		 * switching BR/EDR back on when secure connections has been
		 * enabled is not a supported transaction.
4922
		 */
4923
		if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
4924
		    (bacmp(&hdev->static_addr, BDADDR_ANY) ||
4925
		     hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
4926 4927
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
					      MGMT_STATUS_REJECTED);
4928 4929
			goto unlock;
		}
4930 4931 4932
	}

	if (mgmt_pending_find(MGMT_OP_SET_BREDR, hdev)) {
4933 4934
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				      MGMT_STATUS_BUSY);
4935 4936 4937 4938 4939 4940 4941 4942 4943
		goto unlock;
	}

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

4944
	/* We need to flip the bit already here so that update_adv_data
4945 4946
	 * generates the correct flags.
	 */
4947
	hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
4948 4949

	hci_req_init(&req, hdev);
4950

4951
	write_fast_connectable(&req, false);
4952
	__hci_update_page_scan(&req);
4953

4954 4955 4956
	/* Since only the advertising data flags will change, there
	 * is no need to update the scan response data.
	 */
4957
	update_adv_data(&req);
4958

4959 4960 4961 4962 4963 4964 4965 4966 4967
	err = hci_req_run(&req, set_bredr_complete);
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
	return err;
}

4968 4969
static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
{
4970
	struct mgmt_pending_cmd *cmd;
4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981
	struct mgmt_mode *cp;

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

	hci_dev_lock(hdev);

	cmd = mgmt_pending_find(MGMT_OP_SET_SECURE_CONN, hdev);
	if (!cmd)
		goto unlock;

	if (status) {
4982 4983
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
			        mgmt_status(status));
4984 4985 4986 4987 4988 4989 4990
		goto remove;
	}

	cp = cmd->param;

	switch (cp->val) {
	case 0x00:
4991 4992
		hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
		hci_dev_clear_flag(hdev, HCI_SC_ONLY);
4993 4994
		break;
	case 0x01:
4995
		hci_dev_set_flag(hdev, HCI_SC_ENABLED);
4996
		hci_dev_clear_flag(hdev, HCI_SC_ONLY);
4997 4998
		break;
	case 0x02:
4999 5000
		hci_dev_set_flag(hdev, HCI_SC_ENABLED);
		hci_dev_set_flag(hdev, HCI_SC_ONLY);
5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012
		break;
	}

	send_settings_rsp(cmd->sk, MGMT_OP_SET_SECURE_CONN, hdev);
	new_settings(hdev, cmd->sk);

remove:
	mgmt_pending_remove(cmd);
unlock:
	hci_dev_unlock(hdev);
}

5013 5014 5015 5016
static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
			   void *data, u16 len)
{
	struct mgmt_mode *cp = data;
5017
	struct mgmt_pending_cmd *cmd;
5018
	struct hci_request req;
5019
	u8 val;
5020 5021 5022 5023
	int err;

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

5024
	if (!lmp_sc_capable(hdev) &&
5025
	    !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
5026 5027
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				       MGMT_STATUS_NOT_SUPPORTED);
5028

5029
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
5030
	    lmp_sc_capable(hdev) &&
5031
	    !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
5032 5033
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				       MGMT_STATUS_REJECTED);
5034

5035
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
5036
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5037 5038 5039 5040
				  MGMT_STATUS_INVALID_PARAMS);

	hci_dev_lock(hdev);

5041
	if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
5042
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
5043 5044
		bool changed;

5045
		if (cp->val) {
5046 5047
			changed = !hci_dev_test_and_set_flag(hdev,
							     HCI_SC_ENABLED);
5048
			if (cp->val == 0x02)
5049
				hci_dev_set_flag(hdev, HCI_SC_ONLY);
5050
			else
5051
				hci_dev_clear_flag(hdev, HCI_SC_ONLY);
5052
		} else {
5053 5054
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_SC_ENABLED);
5055
			hci_dev_clear_flag(hdev, HCI_SC_ONLY);
5056
		}
5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068

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

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

		goto failed;
	}

	if (mgmt_pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
5069 5070
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				      MGMT_STATUS_BUSY);
5071 5072 5073
		goto failed;
	}

5074 5075
	val = !!cp->val;

5076 5077
	if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
	    (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
5078 5079 5080 5081 5082 5083 5084 5085 5086 5087
		err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
		goto failed;
	}

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

5088 5089 5090
	hci_req_init(&req, hdev);
	hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
	err = hci_req_run(&req, sc_enable_complete);
5091 5092 5093 5094 5095 5096 5097 5098 5099 5100
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

5101 5102 5103 5104
static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
			  void *data, u16 len)
{
	struct mgmt_mode *cp = data;
5105
	bool changed, use_changed;
5106 5107 5108 5109
	int err;

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

5110
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
5111 5112
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5113 5114 5115 5116

	hci_dev_lock(hdev);

	if (cp->val)
5117
		changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
5118
	else
5119 5120
		changed = hci_dev_test_and_clear_flag(hdev,
						      HCI_KEEP_DEBUG_KEYS);
5121

5122
	if (cp->val == 0x02)
5123 5124
		use_changed = !hci_dev_test_and_set_flag(hdev,
							 HCI_USE_DEBUG_KEYS);
5125
	else
5126 5127
		use_changed = hci_dev_test_and_clear_flag(hdev,
							  HCI_USE_DEBUG_KEYS);
5128 5129

	if (hdev_is_powered(hdev) && use_changed &&
5130
	    hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
5131 5132 5133 5134 5135
		u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
			     sizeof(mode), &mode);
	}

5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147
	err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
	if (err < 0)
		goto unlock;

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

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5148 5149 5150 5151 5152 5153 5154 5155 5156 5157
static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
		       u16 len)
{
	struct mgmt_cp_set_privacy *cp = cp_data;
	bool changed;
	int err;

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

	if (!lmp_le_capable(hdev))
5158 5159
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_NOT_SUPPORTED);
5160 5161

	if (cp->privacy != 0x00 && cp->privacy != 0x01)
5162 5163
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_INVALID_PARAMS);
5164 5165

	if (hdev_is_powered(hdev))
5166 5167
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_REJECTED);
5168 5169 5170

	hci_dev_lock(hdev);

5171 5172 5173
	/* If user space supports this command it is also expected to
	 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
	 */
5174
	hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
5175

5176
	if (cp->privacy) {
5177
		changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
5178
		memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
5179
		hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
5180
	} else {
5181
		changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
5182
		memset(hdev->irk, 0, sizeof(hdev->irk));
5183
		hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197
	}

	err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
	if (err < 0)
		goto unlock;

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

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217
static bool irk_is_valid(struct mgmt_irk_info *irk)
{
	switch (irk->addr.type) {
	case BDADDR_LE_PUBLIC:
		return true;

	case BDADDR_LE_RANDOM:
		/* Two most significant bits shall be set */
		if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
			return false;
		return true;
	}

	return false;
}

static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
		     u16 len)
{
	struct mgmt_cp_load_irks *cp = cp_data;
5218 5219
	const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_irk_info));
5220 5221 5222 5223 5224 5225
	u16 irk_count, expected_len;
	int i, err;

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

	if (!lmp_le_capable(hdev))
5226 5227
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_NOT_SUPPORTED);
5228 5229

	irk_count = __le16_to_cpu(cp->irk_count);
5230 5231
	if (irk_count > max_irk_count) {
		BT_ERR("load_irks: too big irk_count value %u", irk_count);
5232 5233
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_INVALID_PARAMS);
5234
	}
5235 5236 5237 5238

	expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
	if (expected_len != len) {
		BT_ERR("load_irks: expected %u bytes, got %u bytes",
5239
		       expected_len, len);
5240 5241
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_INVALID_PARAMS);
5242 5243 5244 5245 5246 5247 5248 5249
	}

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

	for (i = 0; i < irk_count; i++) {
		struct mgmt_irk_info *key = &cp->irks[i];

		if (!irk_is_valid(key))
5250 5251 5252
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_IRKS,
					       MGMT_STATUS_INVALID_PARAMS);
5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271
	}

	hci_dev_lock(hdev);

	hci_smp_irks_clear(hdev);

	for (i = 0; i < irk_count; i++) {
		struct mgmt_irk_info *irk = &cp->irks[i];
		u8 addr_type;

		if (irk->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;

		hci_add_irk(hdev, &irk->addr.bdaddr, addr_type, irk->val,
			    BDADDR_ANY);
	}

5272
	hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
5273

5274
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
5275 5276 5277 5278 5279 5280

	hci_dev_unlock(hdev);

	return err;
}

5281 5282 5283 5284
static bool ltk_is_valid(struct mgmt_ltk_info *key)
{
	if (key->master != 0x00 && key->master != 0x01)
		return false;
5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297

	switch (key->addr.type) {
	case BDADDR_LE_PUBLIC:
		return true;

	case BDADDR_LE_RANDOM:
		/* Two most significant bits shall be set */
		if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
			return false;
		return true;
	}

	return false;
5298 5299
}

5300
static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
5301
			       void *cp_data, u16 len)
5302 5303
{
	struct mgmt_cp_load_long_term_keys *cp = cp_data;
5304 5305
	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_ltk_info));
5306
	u16 key_count, expected_len;
5307
	int i, err;
5308

5309 5310 5311
	BT_DBG("request for %s", hdev->name);

	if (!lmp_le_capable(hdev))
5312 5313
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_NOT_SUPPORTED);
5314

5315
	key_count = __le16_to_cpu(cp->key_count);
5316 5317
	if (key_count > max_key_count) {
		BT_ERR("load_ltks: too big key_count value %u", key_count);
5318 5319
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5320
	}
5321 5322 5323 5324 5325

	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",
5326
		       expected_len, len);
5327 5328
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5329 5330
	}

5331
	BT_DBG("%s key_count %u", hdev->name, key_count);
5332

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

5336
		if (!ltk_is_valid(key))
5337 5338 5339
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_LONG_TERM_KEYS,
					       MGMT_STATUS_INVALID_PARAMS);
5340 5341
	}

5342 5343 5344 5345 5346 5347
	hci_dev_lock(hdev);

	hci_smp_ltks_clear(hdev);

	for (i = 0; i < key_count; i++) {
		struct mgmt_ltk_info *key = &cp->keys[i];
5348
		u8 type, addr_type, authenticated;
5349 5350 5351 5352 5353

		if (key->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;
5354

5355 5356
		switch (key->type) {
		case MGMT_LTK_UNAUTHENTICATED:
5357
			authenticated = 0x00;
5358
			type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
5359 5360
			break;
		case MGMT_LTK_AUTHENTICATED:
5361
			authenticated = 0x01;
5362 5363 5364 5365 5366
			type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
			break;
		case MGMT_LTK_P256_UNAUTH:
			authenticated = 0x00;
			type = SMP_LTK_P256;
5367
			break;
5368 5369 5370
		case MGMT_LTK_P256_AUTH:
			authenticated = 0x01;
			type = SMP_LTK_P256;
5371
			break;
5372 5373 5374
		case MGMT_LTK_P256_DEBUG:
			authenticated = 0x00;
			type = SMP_LTK_P256_DEBUG;
5375 5376 5377
		default:
			continue;
		}
5378

5379
		hci_add_ltk(hdev, &key->addr.bdaddr, addr_type, type,
5380
			    authenticated, key->val, key->enc_size, key->ediv,
5381
			    key->rand);
5382 5383
	}

5384
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
5385 5386
			   NULL, 0);

5387 5388
	hci_dev_unlock(hdev);

5389
	return err;
5390 5391
}

5392
static int conn_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
5393 5394
{
	struct hci_conn *conn = cmd->user_data;
5395
	struct mgmt_rp_get_conn_info rp;
5396
	int err;
5397

5398
	memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
5399

5400
	if (status == MGMT_STATUS_SUCCESS) {
5401
		rp.rssi = conn->rssi;
5402 5403 5404 5405 5406 5407
		rp.tx_power = conn->tx_power;
		rp.max_tx_power = conn->max_tx_power;
	} else {
		rp.rssi = HCI_RSSI_INVALID;
		rp.tx_power = HCI_TX_POWER_INVALID;
		rp.max_tx_power = HCI_TX_POWER_INVALID;
5408 5409
	}

5410 5411
	err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
				status, &rp, sizeof(rp));
5412 5413

	hci_conn_drop(conn);
5414
	hci_conn_put(conn);
5415 5416

	return err;
5417 5418
}

5419 5420
static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
				       u16 opcode)
5421 5422
{
	struct hci_cp_read_rssi *cp;
5423
	struct mgmt_pending_cmd *cmd;
5424 5425
	struct hci_conn *conn;
	u16 handle;
5426
	u8 status;
5427

5428
	BT_DBG("status 0x%02x", hci_status);
5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443

	hci_dev_lock(hdev);

	/* Commands sent in request are either Read RSSI or Read Transmit Power
	 * Level so we check which one was last sent to retrieve connection
	 * handle.  Both commands have handle as first parameter so it's safe to
	 * cast data on the same command struct.
	 *
	 * First command sent is always Read RSSI and we fail only if it fails.
	 * In other case we simply override error to indicate success as we
	 * already remembered if TX power value is actually valid.
	 */
	cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI);
	if (!cp) {
		cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
5444 5445 5446
		status = MGMT_STATUS_SUCCESS;
	} else {
		status = mgmt_status(hci_status);
5447 5448 5449
	}

	if (!cp) {
5450
		BT_ERR("invalid sent_cmd in conn_info response");
5451 5452 5453 5454 5455 5456
		goto unlock;
	}

	handle = __le16_to_cpu(cp->handle);
	conn = hci_conn_hash_lookup_handle(hdev, handle);
	if (!conn) {
5457
		BT_ERR("unknown handle (%d) in conn_info response", handle);
5458 5459 5460
		goto unlock;
	}

5461 5462 5463
	cmd = mgmt_pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
	if (!cmd)
		goto unlock;
5464

5465 5466
	cmd->cmd_complete(cmd, status);
	mgmt_pending_remove(cmd);
5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487

unlock:
	hci_dev_unlock(hdev);
}

static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 len)
{
	struct mgmt_cp_get_conn_info *cp = data;
	struct mgmt_rp_get_conn_info rp;
	struct hci_conn *conn;
	unsigned long conn_info_age;
	int err = 0;

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

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

	if (!bdaddr_type_is_valid(cp->addr.type))
5488 5489 5490
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
5491 5492 5493 5494

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
5495 5496 5497
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
5498 5499 5500 5501 5502 5503 5504 5505 5506 5507
		goto unlock;
	}

	if (cp->addr.type == BDADDR_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);

	if (!conn || conn->state != BT_CONNECTED) {
5508 5509 5510
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_NOT_CONNECTED, &rp,
					sizeof(rp));
5511 5512 5513
		goto unlock;
	}

5514
	if (mgmt_pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
5515 5516
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
5517 5518 5519
		goto unlock;
	}

5520 5521 5522 5523 5524 5525 5526 5527 5528 5529
	/* To avoid client trying to guess when to poll again for information we
	 * calculate conn info age as random value between min/max set in hdev.
	 */
	conn_info_age = hdev->conn_info_min_age +
			prandom_u32_max(hdev->conn_info_max_age -
					hdev->conn_info_min_age);

	/* Query controller to refresh cached values if they are too old or were
	 * never read.
	 */
5530 5531
	if (time_after(jiffies, conn->conn_info_timestamp +
		       msecs_to_jiffies(conn_info_age)) ||
5532 5533 5534 5535
	    !conn->conn_info_timestamp) {
		struct hci_request req;
		struct hci_cp_read_tx_power req_txp_cp;
		struct hci_cp_read_rssi req_rssi_cp;
5536
		struct mgmt_pending_cmd *cmd;
5537 5538 5539 5540 5541 5542

		hci_req_init(&req, hdev);
		req_rssi_cp.handle = cpu_to_le16(conn->handle);
		hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp),
			    &req_rssi_cp);

5543 5544 5545 5546 5547 5548 5549 5550 5551 5552
		/* For LE links TX power does not change thus we don't need to
		 * query for it once value is known.
		 */
		if (!bdaddr_type_is_le(cp->addr.type) ||
		    conn->tx_power == HCI_TX_POWER_INVALID) {
			req_txp_cp.handle = cpu_to_le16(conn->handle);
			req_txp_cp.type = 0x00;
			hci_req_add(&req, HCI_OP_READ_TX_POWER,
				    sizeof(req_txp_cp), &req_txp_cp);
		}
5553

5554 5555 5556 5557 5558 5559 5560 5561
		/* Max TX power needs to be read only once per connection */
		if (conn->max_tx_power == HCI_TX_POWER_INVALID) {
			req_txp_cp.handle = cpu_to_le16(conn->handle);
			req_txp_cp.type = 0x01;
			hci_req_add(&req, HCI_OP_READ_TX_POWER,
				    sizeof(req_txp_cp), &req_txp_cp);
		}

5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573
		err = hci_req_run(&req, conn_info_refresh_complete);
		if (err < 0)
			goto unlock;

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

		hci_conn_hold(conn);
5574
		cmd->user_data = hci_conn_get(conn);
5575
		cmd->cmd_complete = conn_info_cmd_complete;
5576 5577 5578 5579 5580 5581

		conn->conn_info_timestamp = jiffies;
	} else {
		/* Cache is valid, just reply with values cached in hci_conn */
		rp.rssi = conn->rssi;
		rp.tx_power = conn->tx_power;
5582
		rp.max_tx_power = conn->max_tx_power;
5583

5584 5585
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
5586 5587 5588 5589 5590 5591 5592
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5593
static int clock_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
5594
{
5595
	struct hci_conn *conn = cmd->user_data;
5596
	struct mgmt_rp_get_clock_info rp;
5597
	struct hci_dev *hdev;
5598
	int err;
5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617

	memset(&rp, 0, sizeof(rp));
	memcpy(&rp.addr, &cmd->param, sizeof(rp.addr));

	if (status)
		goto complete;

	hdev = hci_dev_get(cmd->index);
	if (hdev) {
		rp.local_clock = cpu_to_le32(hdev->clock);
		hci_dev_put(hdev);
	}

	if (conn) {
		rp.piconet_clock = cpu_to_le32(conn->clock);
		rp.accuracy = cpu_to_le16(conn->clock_accuracy);
	}

complete:
5618 5619
	err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
				sizeof(rp));
5620 5621 5622 5623 5624

	if (conn) {
		hci_conn_drop(conn);
		hci_conn_put(conn);
	}
5625 5626

	return err;
5627 5628
}

5629
static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5630
{
5631
	struct hci_cp_read_clock *hci_cp;
5632
	struct mgmt_pending_cmd *cmd;
5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653
	struct hci_conn *conn;

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

	hci_dev_lock(hdev);

	hci_cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
	if (!hci_cp)
		goto unlock;

	if (hci_cp->which) {
		u16 handle = __le16_to_cpu(hci_cp->handle);
		conn = hci_conn_hash_lookup_handle(hdev, handle);
	} else {
		conn = NULL;
	}

	cmd = mgmt_pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
	if (!cmd)
		goto unlock;

5654
	cmd->cmd_complete(cmd, mgmt_status(status));
5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 len)
{
	struct mgmt_cp_get_clock_info *cp = data;
	struct mgmt_rp_get_clock_info rp;
	struct hci_cp_read_clock hci_cp;
5667
	struct mgmt_pending_cmd *cmd;
5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678
	struct hci_request req;
	struct hci_conn *conn;
	int err;

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

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

	if (cp->addr.type != BDADDR_BREDR)
5679 5680 5681
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
5682 5683 5684 5685

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
5686 5687 5688
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
5689 5690 5691 5692 5693 5694 5695
		goto unlock;
	}

	if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
					       &cp->addr.bdaddr);
		if (!conn || conn->state != BT_CONNECTED) {
5696 5697 5698 5699
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_GET_CLOCK_INFO,
						MGMT_STATUS_NOT_CONNECTED,
						&rp, sizeof(rp));
5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711
			goto unlock;
		}
	} else {
		conn = NULL;
	}

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

5712 5713
	cmd->cmd_complete = clock_info_cmd_complete;

5714 5715 5716 5717 5718 5719 5720
	hci_req_init(&req, hdev);

	memset(&hci_cp, 0, sizeof(hci_cp));
	hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);

	if (conn) {
		hci_conn_hold(conn);
5721
		cmd->user_data = hci_conn_get(conn);
5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736

		hci_cp.handle = cpu_to_le16(conn->handle);
		hci_cp.which = 0x01; /* Piconet clock */
		hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
	}

	err = hci_req_run(&req, get_clock_info_complete);
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795
static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
{
	struct hci_conn *conn;

	conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
	if (!conn)
		return false;

	if (conn->dst_type != type)
		return false;

	if (conn->state != BT_CONNECTED)
		return false;

	return true;
}

/* This function requires the caller holds hdev->lock */
static int hci_conn_params_set(struct hci_request *req, bdaddr_t *addr,
			       u8 addr_type, u8 auto_connect)
{
	struct hci_dev *hdev = req->hdev;
	struct hci_conn_params *params;

	params = hci_conn_params_add(hdev, addr, addr_type);
	if (!params)
		return -EIO;

	if (params->auto_connect == auto_connect)
		return 0;

	list_del_init(&params->action);

	switch (auto_connect) {
	case HCI_AUTO_CONN_DISABLED:
	case HCI_AUTO_CONN_LINK_LOSS:
		__hci_update_background_scan(req);
		break;
	case HCI_AUTO_CONN_REPORT:
		list_add(&params->action, &hdev->pend_le_reports);
		__hci_update_background_scan(req);
		break;
	case HCI_AUTO_CONN_DIRECT:
	case HCI_AUTO_CONN_ALWAYS:
		if (!is_connected(hdev, addr, addr_type)) {
			list_add(&params->action, &hdev->pend_le_conns);
			__hci_update_background_scan(req);
		}
		break;
	}

	params->auto_connect = auto_connect;

	BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
	       auto_connect);

	return 0;
}

5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807
static void device_added(struct sock *sk, struct hci_dev *hdev,
			 bdaddr_t *bdaddr, u8 type, u8 action)
{
	struct mgmt_ev_device_added ev;

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

	mgmt_event(MGMT_EV_DEVICE_ADDED, hdev, &ev, sizeof(ev), sk);
}

5808
static void add_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5809
{
5810
	struct mgmt_pending_cmd *cmd;
5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826

	BT_DBG("status 0x%02x", status);

	hci_dev_lock(hdev);

	cmd = mgmt_pending_find(MGMT_OP_ADD_DEVICE, hdev);
	if (!cmd)
		goto unlock;

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

5827 5828 5829 5830
static int add_device(struct sock *sk, struct hci_dev *hdev,
		      void *data, u16 len)
{
	struct mgmt_cp_add_device *cp = data;
5831
	struct mgmt_pending_cmd *cmd;
5832
	struct hci_request req;
5833 5834 5835 5836 5837
	u8 auto_conn, addr_type;
	int err;

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

5838
	if (!bdaddr_type_is_valid(cp->addr.type) ||
5839
	    !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
5840 5841 5842
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
5843

5844
	if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
5845 5846 5847
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
5848

5849 5850
	hci_req_init(&req, hdev);

5851 5852
	hci_dev_lock(hdev);

5853 5854 5855 5856 5857 5858 5859 5860
	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_DEVICE, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

	cmd->cmd_complete = addr_cmd_complete;

5861
	if (cp->addr.type == BDADDR_BREDR) {
5862
		/* Only incoming connections action is supported for now */
5863
		if (cp->action != 0x01) {
5864 5865
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
5866
			mgmt_pending_remove(cmd);
5867 5868 5869 5870 5871 5872 5873
			goto unlock;
		}

		err = hci_bdaddr_list_add(&hdev->whitelist, &cp->addr.bdaddr,
					  cp->addr.type);
		if (err)
			goto unlock;
5874

5875
		__hci_update_page_scan(&req);
5876

5877 5878 5879
		goto added;
	}

5880 5881 5882 5883 5884
	if (cp->addr.type == BDADDR_LE_PUBLIC)
		addr_type = ADDR_LE_DEV_PUBLIC;
	else
		addr_type = ADDR_LE_DEV_RANDOM;

5885
	if (cp->action == 0x02)
5886
		auto_conn = HCI_AUTO_CONN_ALWAYS;
5887 5888
	else if (cp->action == 0x01)
		auto_conn = HCI_AUTO_CONN_DIRECT;
5889
	else
5890
		auto_conn = HCI_AUTO_CONN_REPORT;
5891

5892 5893 5894
	/* If the connection parameters don't exist for this device,
	 * they will be created and configured with defaults.
	 */
5895
	if (hci_conn_params_set(&req, &cp->addr.bdaddr, addr_type,
5896
				auto_conn) < 0) {
5897
		err = cmd->cmd_complete(cmd, MGMT_STATUS_FAILED);
5898
		mgmt_pending_remove(cmd);
5899 5900 5901
		goto unlock;
	}

5902
added:
5903 5904
	device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);

5905 5906 5907 5908 5909
	err = hci_req_run(&req, add_device_complete);
	if (err < 0) {
		/* ENODATA means no HCI commands were needed (e.g. if
		 * the adapter is powered off).
		 */
5910 5911
		if (err == -ENODATA)
			err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
5912 5913
		mgmt_pending_remove(cmd);
	}
5914 5915 5916 5917 5918 5919

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930
static void device_removed(struct sock *sk, struct hci_dev *hdev,
			   bdaddr_t *bdaddr, u8 type)
{
	struct mgmt_ev_device_removed ev;

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

	mgmt_event(MGMT_EV_DEVICE_REMOVED, hdev, &ev, sizeof(ev), sk);
}

5931
static void remove_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5932
{
5933
	struct mgmt_pending_cmd *cmd;
5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949

	BT_DBG("status 0x%02x", status);

	hci_dev_lock(hdev);

	cmd = mgmt_pending_find(MGMT_OP_REMOVE_DEVICE, hdev);
	if (!cmd)
		goto unlock;

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

5950 5951 5952 5953
static int remove_device(struct sock *sk, struct hci_dev *hdev,
			 void *data, u16 len)
{
	struct mgmt_cp_remove_device *cp = data;
5954
	struct mgmt_pending_cmd *cmd;
5955
	struct hci_request req;
5956 5957 5958 5959
	int err;

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

5960 5961
	hci_req_init(&req, hdev);

5962 5963
	hci_dev_lock(hdev);

5964 5965 5966 5967 5968 5969 5970 5971
	cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_DEVICE, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

	cmd->cmd_complete = addr_cmd_complete;

5972
	if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
5973
		struct hci_conn_params *params;
5974 5975
		u8 addr_type;

5976
		if (!bdaddr_type_is_valid(cp->addr.type)) {
5977 5978
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
5979
			mgmt_pending_remove(cmd);
5980 5981 5982
			goto unlock;
		}

5983 5984 5985 5986 5987
		if (cp->addr.type == BDADDR_BREDR) {
			err = hci_bdaddr_list_del(&hdev->whitelist,
						  &cp->addr.bdaddr,
						  cp->addr.type);
			if (err) {
5988 5989
				err = cmd->cmd_complete(cmd,
							MGMT_STATUS_INVALID_PARAMS);
5990
				mgmt_pending_remove(cmd);
5991 5992 5993
				goto unlock;
			}

5994
			__hci_update_page_scan(&req);
5995

5996 5997 5998 5999 6000
			device_removed(sk, hdev, &cp->addr.bdaddr,
				       cp->addr.type);
			goto complete;
		}

6001 6002 6003 6004 6005
		if (cp->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;

6006 6007 6008
		params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
						addr_type);
		if (!params) {
6009 6010
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
6011
			mgmt_pending_remove(cmd);
6012 6013 6014 6015
			goto unlock;
		}

		if (params->auto_connect == HCI_AUTO_CONN_DISABLED) {
6016 6017
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
6018
			mgmt_pending_remove(cmd);
6019 6020 6021
			goto unlock;
		}

6022
		list_del(&params->action);
6023 6024
		list_del(&params->list);
		kfree(params);
6025
		__hci_update_background_scan(&req);
6026 6027

		device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
6028
	} else {
6029
		struct hci_conn_params *p, *tmp;
6030
		struct bdaddr_list *b, *btmp;
6031

6032
		if (cp->addr.type) {
6033 6034
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
6035
			mgmt_pending_remove(cmd);
6036 6037 6038
			goto unlock;
		}

6039 6040 6041 6042 6043 6044
		list_for_each_entry_safe(b, btmp, &hdev->whitelist, list) {
			device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type);
			list_del(&b->list);
			kfree(b);
		}

6045
		__hci_update_page_scan(&req);
6046

6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057
		list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) {
			if (p->auto_connect == HCI_AUTO_CONN_DISABLED)
				continue;
			device_removed(sk, hdev, &p->addr, p->addr_type);
			list_del(&p->action);
			list_del(&p->list);
			kfree(p);
		}

		BT_DBG("All LE connection parameters were removed");

6058
		__hci_update_background_scan(&req);
6059 6060
	}

6061
complete:
6062 6063 6064 6065 6066
	err = hci_req_run(&req, remove_device_complete);
	if (err < 0) {
		/* ENODATA means no HCI commands were needed (e.g. if
		 * the adapter is powered off).
		 */
6067 6068
		if (err == -ENODATA)
			err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
6069 6070
		mgmt_pending_remove(cmd);
	}
6071 6072 6073 6074 6075 6076

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6077 6078 6079 6080
static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 len)
{
	struct mgmt_cp_load_conn_param *cp = data;
6081 6082
	const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
				     sizeof(struct mgmt_conn_param));
6083 6084 6085 6086
	u16 param_count, expected_len;
	int i;

	if (!lmp_le_capable(hdev))
6087 6088
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_NOT_SUPPORTED);
6089 6090

	param_count = __le16_to_cpu(cp->param_count);
6091 6092 6093
	if (param_count > max_param_count) {
		BT_ERR("load_conn_param: too big param_count value %u",
		       param_count);
6094 6095
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_INVALID_PARAMS);
6096
	}
6097 6098 6099 6100 6101 6102

	expected_len = sizeof(*cp) + param_count *
					sizeof(struct mgmt_conn_param);
	if (expected_len != len) {
		BT_ERR("load_conn_param: expected %u bytes, got %u bytes",
		       expected_len, len);
6103 6104
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_INVALID_PARAMS);
6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158
	}

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

	hci_dev_lock(hdev);

	hci_conn_params_clear_disabled(hdev);

	for (i = 0; i < param_count; i++) {
		struct mgmt_conn_param *param = &cp->params[i];
		struct hci_conn_params *hci_param;
		u16 min, max, latency, timeout;
		u8 addr_type;

		BT_DBG("Adding %pMR (type %u)", &param->addr.bdaddr,
		       param->addr.type);

		if (param->addr.type == BDADDR_LE_PUBLIC) {
			addr_type = ADDR_LE_DEV_PUBLIC;
		} else if (param->addr.type == BDADDR_LE_RANDOM) {
			addr_type = ADDR_LE_DEV_RANDOM;
		} else {
			BT_ERR("Ignoring invalid connection parameters");
			continue;
		}

		min = le16_to_cpu(param->min_interval);
		max = le16_to_cpu(param->max_interval);
		latency = le16_to_cpu(param->latency);
		timeout = le16_to_cpu(param->timeout);

		BT_DBG("min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x",
		       min, max, latency, timeout);

		if (hci_check_conn_params(min, max, latency, timeout) < 0) {
			BT_ERR("Ignoring invalid connection parameters");
			continue;
		}

		hci_param = hci_conn_params_add(hdev, &param->addr.bdaddr,
						addr_type);
		if (!hci_param) {
			BT_ERR("Failed to add connection parameters");
			continue;
		}

		hci_param->conn_min_interval = min;
		hci_param->conn_max_interval = max;
		hci_param->conn_latency = latency;
		hci_param->supervision_timeout = timeout;
	}

	hci_dev_unlock(hdev);

6159 6160
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
				 NULL, 0);
6161 6162
}

6163 6164 6165 6166 6167 6168 6169 6170 6171 6172
static int set_external_config(struct sock *sk, struct hci_dev *hdev,
			       void *data, u16 len)
{
	struct mgmt_cp_set_external_config *cp = data;
	bool changed;
	int err;

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

	if (hdev_is_powered(hdev))
6173 6174
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				       MGMT_STATUS_REJECTED);
6175 6176

	if (cp->config != 0x00 && cp->config != 0x01)
6177 6178
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				         MGMT_STATUS_INVALID_PARAMS);
6179 6180

	if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
6181 6182
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				       MGMT_STATUS_NOT_SUPPORTED);
6183 6184 6185 6186

	hci_dev_lock(hdev);

	if (cp->config)
6187
		changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
6188
	else
6189
		changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
6190 6191 6192 6193 6194 6195 6196 6197

	err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
	if (err < 0)
		goto unlock;

	if (!changed)
		goto unlock;

6198 6199
	err = new_options(hdev, sk);

6200
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
6201
		mgmt_index_removed(hdev);
6202

6203
		if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
6204 6205
			hci_dev_set_flag(hdev, HCI_CONFIG);
			hci_dev_set_flag(hdev, HCI_AUTO_OFF);
6206 6207 6208

			queue_work(hdev->req_workqueue, &hdev->power_on);
		} else {
6209
			set_bit(HCI_RAW, &hdev->flags);
6210 6211
			mgmt_index_added(hdev);
		}
6212 6213 6214 6215 6216 6217 6218
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6219 6220 6221 6222 6223 6224 6225 6226 6227 6228
static int set_public_address(struct sock *sk, struct hci_dev *hdev,
			      void *data, u16 len)
{
	struct mgmt_cp_set_public_address *cp = data;
	bool changed;
	int err;

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

	if (hdev_is_powered(hdev))
6229 6230
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_REJECTED);
6231 6232

	if (!bacmp(&cp->bdaddr, BDADDR_ANY))
6233 6234
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_INVALID_PARAMS);
6235 6236

	if (!hdev->set_bdaddr)
6237 6238
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_NOT_SUPPORTED);
6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251

	hci_dev_lock(hdev);

	changed = !!bacmp(&hdev->public_addr, &cp->bdaddr);
	bacpy(&hdev->public_addr, &cp->bdaddr);

	err = send_options_rsp(sk, MGMT_OP_SET_PUBLIC_ADDRESS, hdev);
	if (err < 0)
		goto unlock;

	if (!changed)
		goto unlock;

6252
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
6253 6254 6255 6256 6257
		err = new_options(hdev, sk);

	if (is_configured(hdev)) {
		mgmt_index_removed(hdev);

6258
		hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
6259

6260 6261
		hci_dev_set_flag(hdev, HCI_CONFIG);
		hci_dev_set_flag(hdev, HCI_AUTO_OFF);
6262 6263 6264 6265 6266 6267 6268 6269 6270

		queue_work(hdev->req_workqueue, &hdev->power_on);
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6271
static const struct hci_mgmt_handler mgmt_handlers[] = {
6272
	{ NULL }, /* 0x0000 (no command) */
6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343
	{ read_version,            MGMT_READ_VERSION_SIZE,
						HCI_MGMT_NO_HDEV },
	{ read_commands,           MGMT_READ_COMMANDS_SIZE,
						HCI_MGMT_NO_HDEV },
	{ read_index_list,         MGMT_READ_INDEX_LIST_SIZE,
						HCI_MGMT_NO_HDEV },
	{ read_controller_info,    MGMT_READ_INFO_SIZE,                 0 },
	{ set_powered,             MGMT_SETTING_SIZE,                   0 },
	{ set_discoverable,        MGMT_SET_DISCOVERABLE_SIZE,          0 },
	{ set_connectable,         MGMT_SETTING_SIZE,                   0 },
	{ set_fast_connectable,    MGMT_SETTING_SIZE,                   0 },
	{ set_bondable,            MGMT_SETTING_SIZE,                   0 },
	{ set_link_security,       MGMT_SETTING_SIZE,                   0 },
	{ set_ssp,                 MGMT_SETTING_SIZE,                   0 },
	{ set_hs,                  MGMT_SETTING_SIZE,                   0 },
	{ set_le,                  MGMT_SETTING_SIZE,                   0 },
	{ set_dev_class,           MGMT_SET_DEV_CLASS_SIZE,             0 },
	{ set_local_name,          MGMT_SET_LOCAL_NAME_SIZE,            0 },
	{ add_uuid,                MGMT_ADD_UUID_SIZE,                  0 },
	{ remove_uuid,             MGMT_REMOVE_UUID_SIZE,               0 },
	{ load_link_keys,          MGMT_LOAD_LINK_KEYS_SIZE,
						HCI_MGMT_VAR_LEN },
	{ load_long_term_keys,     MGMT_LOAD_LONG_TERM_KEYS_SIZE,
						HCI_MGMT_VAR_LEN },
	{ disconnect,              MGMT_DISCONNECT_SIZE,                0 },
	{ get_connections,         MGMT_GET_CONNECTIONS_SIZE,           0 },
	{ pin_code_reply,          MGMT_PIN_CODE_REPLY_SIZE,            0 },
	{ pin_code_neg_reply,      MGMT_PIN_CODE_NEG_REPLY_SIZE,        0 },
	{ set_io_capability,       MGMT_SET_IO_CAPABILITY_SIZE,         0 },
	{ pair_device,             MGMT_PAIR_DEVICE_SIZE,               0 },
	{ cancel_pair_device,      MGMT_CANCEL_PAIR_DEVICE_SIZE,        0 },
	{ unpair_device,           MGMT_UNPAIR_DEVICE_SIZE,             0 },
	{ user_confirm_reply,      MGMT_USER_CONFIRM_REPLY_SIZE,        0 },
	{ user_confirm_neg_reply,  MGMT_USER_CONFIRM_NEG_REPLY_SIZE,    0 },
	{ user_passkey_reply,      MGMT_USER_PASSKEY_REPLY_SIZE,        0 },
	{ user_passkey_neg_reply,  MGMT_USER_PASSKEY_NEG_REPLY_SIZE,    0 },
	{ read_local_oob_data,     MGMT_READ_LOCAL_OOB_DATA_SIZE },
	{ add_remote_oob_data,     MGMT_ADD_REMOTE_OOB_DATA_SIZE,
						HCI_MGMT_VAR_LEN },
	{ remove_remote_oob_data,  MGMT_REMOVE_REMOTE_OOB_DATA_SIZE,    0 },
	{ start_discovery,         MGMT_START_DISCOVERY_SIZE,           0 },
	{ stop_discovery,          MGMT_STOP_DISCOVERY_SIZE,            0 },
	{ confirm_name,            MGMT_CONFIRM_NAME_SIZE,              0 },
	{ block_device,            MGMT_BLOCK_DEVICE_SIZE,              0 },
	{ unblock_device,          MGMT_UNBLOCK_DEVICE_SIZE,            0 },
	{ set_device_id,           MGMT_SET_DEVICE_ID_SIZE,             0 },
	{ set_advertising,         MGMT_SETTING_SIZE,                   0 },
	{ set_bredr,               MGMT_SETTING_SIZE,                   0 },
	{ set_static_address,      MGMT_SET_STATIC_ADDRESS_SIZE,        0 },
	{ set_scan_params,         MGMT_SET_SCAN_PARAMS_SIZE,           0 },
	{ set_secure_conn,         MGMT_SETTING_SIZE,                   0 },
	{ set_debug_keys,          MGMT_SETTING_SIZE,                   0 },
	{ set_privacy,             MGMT_SET_PRIVACY_SIZE,               0 },
	{ load_irks,               MGMT_LOAD_IRKS_SIZE,
						HCI_MGMT_VAR_LEN },
	{ get_conn_info,           MGMT_GET_CONN_INFO_SIZE,             0 },
	{ get_clock_info,          MGMT_GET_CLOCK_INFO_SIZE,            0 },
	{ add_device,              MGMT_ADD_DEVICE_SIZE,                0 },
	{ remove_device,           MGMT_REMOVE_DEVICE_SIZE,             0 },
	{ load_conn_param,         MGMT_LOAD_CONN_PARAM_SIZE,
						HCI_MGMT_VAR_LEN },
	{ read_unconf_index_list,  MGMT_READ_UNCONF_INDEX_LIST_SIZE,
						HCI_MGMT_NO_HDEV },
	{ read_config_info,        MGMT_READ_CONFIG_INFO_SIZE,
						HCI_MGMT_UNCONFIGURED },
	{ set_external_config,     MGMT_SET_EXTERNAL_CONFIG_SIZE,
						HCI_MGMT_UNCONFIGURED },
	{ set_public_address,      MGMT_SET_PUBLIC_ADDRESS_SIZE,
						HCI_MGMT_UNCONFIGURED },
	{ start_service_discovery, MGMT_START_SERVICE_DISCOVERY_SIZE,
						HCI_MGMT_VAR_LEN },
6344 6345 6346
	{ NULL },
	{ read_ext_index_list,     MGMT_READ_EXT_INDEX_LIST_SIZE,
						HCI_MGMT_NO_HDEV },
6347 6348
};

6349 6350
int mgmt_control(struct hci_mgmt_chan *chan, struct sock *sk,
		 struct msghdr *msg, size_t msglen)
6351
{
6352 6353
	void *buf;
	u8 *cp;
6354
	struct mgmt_hdr *hdr;
6355
	u16 opcode, index, len;
6356
	struct hci_dev *hdev = NULL;
6357
	const struct hci_mgmt_handler *handler;
6358
	bool var_len, no_hdev;
6359 6360 6361 6362 6363 6364 6365
	int err;

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

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

6366
	buf = kmalloc(msglen, GFP_KERNEL);
6367 6368 6369
	if (!buf)
		return -ENOMEM;

A
Al Viro 已提交
6370
	if (memcpy_from_msg(buf, msg, msglen)) {
6371 6372 6373 6374
		err = -EFAULT;
		goto done;
	}

6375
	hdr = buf;
6376 6377 6378
	opcode = __le16_to_cpu(hdr->opcode);
	index = __le16_to_cpu(hdr->index);
	len = __le16_to_cpu(hdr->len);
6379 6380 6381 6382 6383 6384

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

6385 6386 6387
	if (opcode >= chan->handler_count ||
	    chan->handlers[opcode].func == NULL) {
		BT_DBG("Unknown op %u", opcode);
6388 6389
		err = mgmt_cmd_status(sk, index, opcode,
				      MGMT_STATUS_UNKNOWN_COMMAND);
6390 6391 6392 6393 6394
		goto done;
	}

	handler = &chan->handlers[opcode];

6395
	if (index != MGMT_INDEX_NONE) {
6396 6397
		hdev = hci_dev_get(index);
		if (!hdev) {
6398 6399
			err = mgmt_cmd_status(sk, index, opcode,
					      MGMT_STATUS_INVALID_INDEX);
6400 6401
			goto done;
		}
6402

6403 6404 6405
		if (hci_dev_test_flag(hdev, HCI_SETUP) ||
		    hci_dev_test_flag(hdev, HCI_CONFIG) ||
		    hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) {
6406 6407
			err = mgmt_cmd_status(sk, index, opcode,
					      MGMT_STATUS_INVALID_INDEX);
6408 6409
			goto done;
		}
6410

6411
		if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) &&
6412
		    !(handler->flags & HCI_MGMT_UNCONFIGURED)) {
6413 6414
			err = mgmt_cmd_status(sk, index, opcode,
					      MGMT_STATUS_INVALID_INDEX);
6415 6416
			goto done;
		}
6417 6418
	}

6419 6420
	no_hdev = (handler->flags & HCI_MGMT_NO_HDEV);
	if (no_hdev != !hdev) {
6421 6422
		err = mgmt_cmd_status(sk, index, opcode,
				      MGMT_STATUS_INVALID_INDEX);
6423
		goto done;
6424 6425
	}

6426 6427 6428
	var_len = (handler->flags & HCI_MGMT_VAR_LEN);
	if ((var_len && len < handler->data_len) ||
	    (!var_len && len != handler->data_len)) {
6429 6430
		err = mgmt_cmd_status(sk, index, opcode,
				      MGMT_STATUS_INVALID_PARAMS);
6431 6432 6433
		goto done;
	}

6434 6435 6436 6437 6438
	if (hdev)
		mgmt_init_hdev(sk, hdev);

	cp = buf + sizeof(*hdr);

6439
	err = handler->func(sk, hdev, cp, len);
6440 6441 6442
	if (err < 0)
		goto done;

6443 6444 6445
	err = msglen;

done:
6446 6447 6448
	if (hdev)
		hci_dev_put(hdev);

6449 6450 6451
	kfree(buf);
	return err;
}
6452

6453
void mgmt_index_added(struct hci_dev *hdev)
6454
{
6455
	struct mgmt_ev_ext_index ev;
6456

6457 6458 6459
	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		return;

6460 6461 6462 6463 6464
	switch (hdev->dev_type) {
	case HCI_BREDR:
		if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
			mgmt_index_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev,
					 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
6465
			ev.type = 0x01;
6466 6467 6468
		} else {
			mgmt_index_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0,
					 HCI_MGMT_INDEX_EVENTS);
6469
			ev.type = 0x00;
6470 6471
		}
		break;
6472 6473 6474 6475 6476
	case HCI_AMP:
		ev.type = 0x02;
		break;
	default:
		return;
6477
	}
6478 6479 6480 6481 6482

	ev.bus = hdev->bus;

	mgmt_index_event(MGMT_EV_EXT_INDEX_ADDED, hdev, &ev, sizeof(ev),
			 HCI_MGMT_EXT_INDEX_EVENTS);
6483 6484
}

6485
void mgmt_index_removed(struct hci_dev *hdev)
6486
{
6487
	struct mgmt_ev_ext_index ev;
6488
	u8 status = MGMT_STATUS_INVALID_INDEX;
6489

6490 6491 6492
	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		return;

6493 6494 6495
	switch (hdev->dev_type) {
	case HCI_BREDR:
		mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
6496

6497 6498 6499
		if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
			mgmt_index_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev,
					 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
6500
			ev.type = 0x01;
6501 6502 6503
		} else {
			mgmt_index_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0,
					 HCI_MGMT_INDEX_EVENTS);
6504
			ev.type = 0x00;
6505 6506
		}
		break;
6507 6508 6509 6510 6511
	case HCI_AMP:
		ev.type = 0x02;
		break;
	default:
		return;
6512
	}
6513 6514 6515 6516 6517

	ev.bus = hdev->bus;

	mgmt_index_event(MGMT_EV_EXT_INDEX_REMOVED, hdev, &ev, sizeof(ev),
			 HCI_MGMT_EXT_INDEX_EVENTS);
6518 6519
}

6520
/* This function requires the caller holds hdev->lock */
6521
static void restart_le_actions(struct hci_request *req)
6522
{
6523
	struct hci_dev *hdev = req->hdev;
6524 6525 6526
	struct hci_conn_params *p;

	list_for_each_entry(p, &hdev->le_conn_params, list) {
6527 6528 6529 6530 6531 6532
		/* Needed for AUTO_OFF case where might not "really"
		 * have been powered off.
		 */
		list_del_init(&p->action);

		switch (p->auto_connect) {
6533
		case HCI_AUTO_CONN_DIRECT:
6534 6535 6536 6537 6538 6539 6540 6541
		case HCI_AUTO_CONN_ALWAYS:
			list_add(&p->action, &hdev->pend_le_conns);
			break;
		case HCI_AUTO_CONN_REPORT:
			list_add(&p->action, &hdev->pend_le_reports);
			break;
		default:
			break;
6542
		}
6543
	}
6544

6545
	__hci_update_background_scan(req);
6546 6547
}

6548
static void powered_complete(struct hci_dev *hdev, u8 status, u16 opcode)
6549 6550 6551 6552 6553
{
	struct cmd_lookup match = { NULL, hdev };

	BT_DBG("status 0x%02x", status);

6554 6555 6556 6557 6558 6559 6560 6561 6562
	if (!status) {
		/* Register the available SMP channels (BR/EDR and LE) only
		 * when successfully powering on the controller. This late
		 * registration is required so that LE SMP can clearly
		 * decide if the public address or static address is used.
		 */
		smp_register(hdev);
	}

6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574
	hci_dev_lock(hdev);

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

	new_settings(hdev, match.sk);

	hci_dev_unlock(hdev);

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

6575
static int powered_update_hci(struct hci_dev *hdev)
6576
{
6577
	struct hci_request req;
6578
	u8 link_sec;
6579

6580 6581
	hci_req_init(&req, hdev);

6582
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED) &&
6583
	    !lmp_host_ssp_capable(hdev)) {
6584
		u8 mode = 0x01;
6585

6586 6587 6588 6589
		hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);

		if (bredr_sc_enabled(hdev) && !lmp_host_sc_capable(hdev)) {
			u8 support = 0x01;
6590

6591 6592 6593
			hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT,
				    sizeof(support), &support);
		}
6594 6595
	}

6596
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
6597
	    lmp_bredr_capable(hdev)) {
6598
		struct hci_cp_write_le_host_supported cp;
6599

6600 6601
		cp.le = 0x01;
		cp.simul = 0x00;
6602

6603 6604 6605 6606 6607
		/* Check first if we already have the right
		 * host state (host features set)
		 */
		if (cp.le != lmp_host_le_capable(hdev) ||
		    cp.simul != lmp_host_le_br_capable(hdev))
6608 6609
			hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
				    sizeof(cp), &cp);
6610
	}
6611

6612
	if (lmp_le_capable(hdev)) {
6613 6614 6615 6616
		/* Make sure the controller has a good default for
		 * advertising data. This also applies to the case
		 * where BR/EDR was toggled during the AUTO_OFF phase.
		 */
6617
		if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
6618
			update_adv_data(&req);
6619 6620
			update_scan_rsp_data(&req);
		}
6621

6622
		if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
6623
			enable_advertising(&req);
6624 6625

		restart_le_actions(&req);
6626 6627
	}

6628
	link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY);
6629
	if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
6630 6631
		hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
			    sizeof(link_sec), &link_sec);
6632

6633
	if (lmp_bredr_capable(hdev)) {
6634
		if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
6635 6636 6637
			write_fast_connectable(&req, true);
		else
			write_fast_connectable(&req, false);
6638
		__hci_update_page_scan(&req);
6639
		update_class(&req);
6640
		update_name(&req);
6641
		update_eir(&req);
6642
	}
6643

6644
	return hci_req_run(&req, powered_complete);
6645
}
6646

6647 6648 6649
int mgmt_powered(struct hci_dev *hdev, u8 powered)
{
	struct cmd_lookup match = { NULL, hdev };
6650
	u8 status, zero_cod[] = { 0, 0, 0 };
6651
	int err;
6652

6653
	if (!hci_dev_test_flag(hdev, HCI_MGMT))
6654 6655 6656
		return 0;

	if (powered) {
6657 6658
		if (powered_update_hci(hdev) == 0)
			return 0;
6659

6660 6661 6662
		mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
				     &match);
		goto new_settings;
6663 6664
	}

6665
	mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
6666 6667 6668 6669 6670 6671 6672 6673

	/* If the power off is because of hdev unregistration let
	 * use the appropriate INVALID_INDEX status. Otherwise use
	 * NOT_POWERED. We cover both scenarios here since later in
	 * mgmt_index_removed() any hci_conn callbacks will have already
	 * been triggered, potentially causing misleading DISCONNECTED
	 * status responses.
	 */
6674
	if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
6675 6676 6677 6678 6679
		status = MGMT_STATUS_INVALID_INDEX;
	else
		status = MGMT_STATUS_NOT_POWERED;

	mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
6680 6681 6682 6683 6684 6685

	if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
		mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
			   zero_cod, sizeof(zero_cod), NULL);

new_settings:
6686
	err = new_settings(hdev, match.sk);
6687 6688 6689 6690

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

6691
	return err;
6692
}
6693

6694
void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
6695
{
6696
	struct mgmt_pending_cmd *cmd;
6697 6698 6699 6700
	u8 status;

	cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
	if (!cmd)
6701
		return;
6702 6703 6704 6705 6706 6707

	if (err == -ERFKILL)
		status = MGMT_STATUS_RFKILLED;
	else
		status = MGMT_STATUS_FAILED;

6708
	mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
6709 6710 6711 6712

	mgmt_pending_remove(cmd);
}

6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723
void mgmt_discoverable_timeout(struct hci_dev *hdev)
{
	struct hci_request req;

	hci_dev_lock(hdev);

	/* When discoverable timeout triggers, then just make sure
	 * the limited discoverable flag is cleared. Even in the case
	 * of a timeout triggered from general discoverable, it is
	 * safe to unconditionally clear the flag.
	 */
6724 6725
	hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
	hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
6726 6727

	hci_req_init(&req, hdev);
6728
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
6729 6730 6731 6732
		u8 scan = SCAN_PAGE;
		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
			    sizeof(scan), &scan);
	}
6733
	update_class(&req);
6734
	update_adv_data(&req);
6735 6736 6737 6738
	hci_req_run(&req, NULL);

	hdev->discov_timeout = 0;

6739 6740
	new_settings(hdev, NULL);

6741 6742 6743
	hci_dev_unlock(hdev);
}

6744 6745
void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
		       bool persistent)
6746
{
6747
	struct mgmt_ev_new_link_key ev;
6748

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

6751
	ev.store_hint = persistent;
6752
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
6753
	ev.key.addr.type = BDADDR_BREDR;
6754
	ev.key.type = key->type;
6755
	memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
6756
	ev.key.pin_len = key->pin_len;
6757

6758
	mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
6759
}
6760

6761 6762
static u8 mgmt_ltk_type(struct smp_ltk *ltk)
{
6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775
	switch (ltk->type) {
	case SMP_LTK:
	case SMP_LTK_SLAVE:
		if (ltk->authenticated)
			return MGMT_LTK_AUTHENTICATED;
		return MGMT_LTK_UNAUTHENTICATED;
	case SMP_LTK_P256:
		if (ltk->authenticated)
			return MGMT_LTK_P256_AUTH;
		return MGMT_LTK_P256_UNAUTH;
	case SMP_LTK_P256_DEBUG:
		return MGMT_LTK_P256_DEBUG;
	}
6776 6777 6778 6779

	return MGMT_LTK_UNAUTHENTICATED;
}

6780
void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
6781 6782 6783 6784 6785
{
	struct mgmt_ev_new_long_term_key ev;

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

6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796
	/* Devices using resolvable or non-resolvable random addresses
	 * without providing an indentity resolving key don't require
	 * to store long term keys. Their addresses will change the
	 * next time around.
	 *
	 * Only when a remote device provides an identity address
	 * make sure the long term key is stored. If the remote
	 * identity is known, the long term keys are internally
	 * mapped to the identity address. So allow static random
	 * and public addresses here.
	 */
6797 6798 6799 6800
	if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
	    (key->bdaddr.b[5] & 0xc0) != 0xc0)
		ev.store_hint = 0x00;
	else
6801
		ev.store_hint = persistent;
6802

6803
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
6804
	ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
6805
	ev.key.type = mgmt_ltk_type(key);
6806 6807
	ev.key.enc_size = key->enc_size;
	ev.key.ediv = key->ediv;
6808
	ev.key.rand = key->rand;
6809

6810
	if (key->type == SMP_LTK)
6811 6812 6813 6814
		ev.key.master = 1;

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

6815
	mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
6816 6817
}

6818 6819 6820 6821 6822 6823
void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk)
{
	struct mgmt_ev_new_irk ev;

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

6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839
	/* For identity resolving keys from devices that are already
	 * using a public address or static random address, do not
	 * ask for storing this key. The identity resolving key really
	 * is only mandatory for devices using resovlable random
	 * addresses.
	 *
	 * Storing all identity resolving keys has the downside that
	 * they will be also loaded on next boot of they system. More
	 * identity resolving keys, means more time during scanning is
	 * needed to actually resolve these addresses.
	 */
	if (bacmp(&irk->rpa, BDADDR_ANY))
		ev.store_hint = 0x01;
	else
		ev.store_hint = 0x00;

6840 6841 6842 6843 6844 6845 6846 6847
	bacpy(&ev.rpa, &irk->rpa);
	bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
	ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
	memcpy(ev.irk.val, irk->val, sizeof(irk->val));

	mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
}

6848 6849
void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
		   bool persistent)
6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867
{
	struct mgmt_ev_new_csrk ev;

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

	/* Devices using resolvable or non-resolvable random addresses
	 * without providing an indentity resolving key don't require
	 * to store signature resolving keys. Their addresses will change
	 * the next time around.
	 *
	 * Only when a remote device provides an identity address
	 * make sure the signature resolving key is stored. So allow
	 * static random and public addresses here.
	 */
	if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
	    (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
		ev.store_hint = 0x00;
	else
6868
		ev.store_hint = persistent;
6869 6870 6871

	bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
	ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
6872
	ev.key.type = csrk->type;
6873 6874 6875 6876 6877
	memcpy(ev.key.val, csrk->val, sizeof(csrk->val));

	mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
}

6878
void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
6879 6880
			 u8 bdaddr_type, u8 store_hint, u16 min_interval,
			 u16 max_interval, u16 latency, u16 timeout)
6881 6882 6883
{
	struct mgmt_ev_new_conn_param ev;

6884 6885 6886
	if (!hci_is_identity_address(bdaddr, bdaddr_type))
		return;

6887 6888 6889
	memset(&ev, 0, sizeof(ev));
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
6890
	ev.store_hint = store_hint;
6891 6892 6893 6894 6895 6896 6897 6898
	ev.min_interval = cpu_to_le16(min_interval);
	ev.max_interval = cpu_to_le16(max_interval);
	ev.latency = cpu_to_le16(latency);
	ev.timeout = cpu_to_le16(timeout);

	mgmt_event(MGMT_EV_NEW_CONN_PARAM, hdev, &ev, sizeof(ev), NULL);
}

6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909
static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
				  u8 data_len)
{
	eir[eir_len++] = sizeof(type) + data_len;
	eir[eir_len++] = type;
	memcpy(&eir[eir_len], data, data_len);
	eir_len += data_len;

	return eir_len;
}

6910 6911
void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
			   u32 flags, u8 *name, u8 name_len)
6912
{
6913 6914 6915
	char buf[512];
	struct mgmt_ev_device_connected *ev = (void *) buf;
	u16 eir_len = 0;
6916

6917 6918
	bacpy(&ev->addr.bdaddr, &conn->dst);
	ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
6919

6920
	ev->flags = __cpu_to_le32(flags);
6921

6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933
	/* We must ensure that the EIR Data fields are ordered and
	 * unique. Keep it simple for now and avoid the problem by not
	 * adding any BR/EDR data to the LE adv.
	 */
	if (conn->le_adv_data_len > 0) {
		memcpy(&ev->eir[eir_len],
		       conn->le_adv_data, conn->le_adv_data_len);
		eir_len = conn->le_adv_data_len;
	} else {
		if (name_len > 0)
			eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
						  name, name_len);
6934

6935
		if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
6936 6937 6938 6939
			eir_len = eir_append_data(ev->eir, eir_len,
						  EIR_CLASS_OF_DEV,
						  conn->dev_class, 3);
	}
6940

6941
	ev->eir_len = cpu_to_le16(eir_len);
6942

6943 6944
	mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
		    sizeof(*ev) + eir_len, NULL);
6945 6946
}

6947
static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
6948 6949 6950
{
	struct sock **sk = data;

6951
	cmd->cmd_complete(cmd, 0);
6952 6953 6954 6955

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

6956
	mgmt_pending_remove(cmd);
6957 6958
}

6959
static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
6960
{
6961
	struct hci_dev *hdev = data;
6962
	struct mgmt_cp_unpair_device *cp = cmd->param;
6963

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

6966
	cmd->cmd_complete(cmd, 0);
6967 6968 6969
	mgmt_pending_remove(cmd);
}

6970 6971
bool mgmt_powering_down(struct hci_dev *hdev)
{
6972
	struct mgmt_pending_cmd *cmd;
6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985
	struct mgmt_mode *cp;

	cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
	if (!cmd)
		return false;

	cp = cmd->param;
	if (!cp->val)
		return true;

	return false;
}

6986
void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
6987 6988
			      u8 link_type, u8 addr_type, u8 reason,
			      bool mgmt_connected)
6989
{
6990
	struct mgmt_ev_device_disconnected ev;
6991 6992
	struct sock *sk = NULL;

6993 6994 6995 6996 6997 6998
	/* The connection is still in hci_conn_hash so test for 1
	 * instead of 0 to know if this is the last one.
	 */
	if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
		cancel_delayed_work(&hdev->power_off);
		queue_work(hdev->req_workqueue, &hdev->power_off.work);
6999 7000
	}

7001 7002 7003
	if (!mgmt_connected)
		return;

7004 7005 7006
	if (link_type != ACL_LINK && link_type != LE_LINK)
		return;

7007
	mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
7008

7009 7010 7011
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
	ev.reason = reason;
7012

7013
	mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
7014 7015

	if (sk)
7016
		sock_put(sk);
7017

7018
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
7019
			     hdev);
7020 7021
}

7022 7023
void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
			    u8 link_type, u8 addr_type, u8 status)
7024
{
7025 7026
	u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
	struct mgmt_cp_disconnect *cp;
7027
	struct mgmt_pending_cmd *cmd;
7028

7029 7030 7031
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
			     hdev);

7032
	cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
7033
	if (!cmd)
7034
		return;
7035

7036 7037 7038 7039 7040 7041 7042 7043
	cp = cmd->param;

	if (bacmp(bdaddr, &cp->addr.bdaddr))
		return;

	if (cp->addr.type != bdaddr_type)
		return;

7044
	cmd->cmd_complete(cmd, mgmt_status(status));
7045
	mgmt_pending_remove(cmd);
7046
}
7047

7048 7049
void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
			 u8 addr_type, u8 status)
7050 7051
{
	struct mgmt_ev_connect_failed ev;
7052

7053 7054 7055 7056 7057 7058
	/* The connection is still in hci_conn_hash so test for 1
	 * instead of 0 to know if this is the last one.
	 */
	if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
		cancel_delayed_work(&hdev->power_off);
		queue_work(hdev->req_workqueue, &hdev->power_off.work);
7059
	}
7060

7061
	bacpy(&ev.addr.bdaddr, bdaddr);
7062
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
7063
	ev.status = mgmt_status(status);
7064

7065
	mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
7066
}
7067

7068
void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
7069 7070 7071
{
	struct mgmt_ev_pin_code_request ev;

7072
	bacpy(&ev.addr.bdaddr, bdaddr);
7073
	ev.addr.type = BDADDR_BREDR;
7074
	ev.secure = secure;
7075

7076
	mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
7077 7078
}

7079 7080
void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
				  u8 status)
7081
{
7082
	struct mgmt_pending_cmd *cmd;
7083

7084
	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
7085
	if (!cmd)
7086
		return;
7087

7088
	cmd->cmd_complete(cmd, mgmt_status(status));
7089
	mgmt_pending_remove(cmd);
7090 7091
}

7092 7093
void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
				      u8 status)
7094
{
7095
	struct mgmt_pending_cmd *cmd;
7096

7097
	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
7098
	if (!cmd)
7099
		return;
7100

7101
	cmd->cmd_complete(cmd, mgmt_status(status));
7102
	mgmt_pending_remove(cmd);
7103
}
7104

7105
int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
7106
			      u8 link_type, u8 addr_type, u32 value,
7107
			      u8 confirm_hint)
7108 7109 7110
{
	struct mgmt_ev_user_confirm_request ev;

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

7113
	bacpy(&ev.addr.bdaddr, bdaddr);
7114
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
7115
	ev.confirm_hint = confirm_hint;
7116
	ev.value = cpu_to_le32(value);
7117

7118
	return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
7119
			  NULL);
7120 7121
}

7122
int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
7123
			      u8 link_type, u8 addr_type)
7124 7125 7126 7127 7128
{
	struct mgmt_ev_user_passkey_request ev;

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

7129
	bacpy(&ev.addr.bdaddr, bdaddr);
7130
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
7131 7132

	return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
7133
			  NULL);
7134 7135
}

7136
static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7137 7138
				      u8 link_type, u8 addr_type, u8 status,
				      u8 opcode)
7139
{
7140
	struct mgmt_pending_cmd *cmd;
7141

7142
	cmd = mgmt_pending_find(opcode, hdev);
7143 7144 7145
	if (!cmd)
		return -ENOENT;

7146
	cmd->cmd_complete(cmd, mgmt_status(status));
7147
	mgmt_pending_remove(cmd);
7148

7149
	return 0;
7150 7151
}

7152
int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7153
				     u8 link_type, u8 addr_type, u8 status)
7154
{
7155
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7156
					  status, MGMT_OP_USER_CONFIRM_REPLY);
7157 7158
}

7159
int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7160
					 u8 link_type, u8 addr_type, u8 status)
7161
{
7162
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7163 7164
					  status,
					  MGMT_OP_USER_CONFIRM_NEG_REPLY);
7165
}
7166

7167
int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7168
				     u8 link_type, u8 addr_type, u8 status)
7169
{
7170
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7171
					  status, MGMT_OP_USER_PASSKEY_REPLY);
7172 7173
}

7174
int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7175
					 u8 link_type, u8 addr_type, u8 status)
7176
{
7177
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7178 7179
					  status,
					  MGMT_OP_USER_PASSKEY_NEG_REPLY);
7180 7181
}

7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197
int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
			     u8 link_type, u8 addr_type, u32 passkey,
			     u8 entered)
{
	struct mgmt_ev_passkey_notify ev;

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

	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
	ev.passkey = __cpu_to_le32(passkey);
	ev.entered = entered;

	return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
}

7198
void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
7199 7200
{
	struct mgmt_ev_auth_failed ev;
7201
	struct mgmt_pending_cmd *cmd;
7202
	u8 status = mgmt_status(hci_status);
7203

7204 7205 7206
	bacpy(&ev.addr.bdaddr, &conn->dst);
	ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
	ev.status = status;
7207

7208 7209 7210 7211 7212
	cmd = find_pairing(conn);

	mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
		    cmd ? cmd->sk : NULL);

7213 7214 7215 7216
	if (cmd) {
		cmd->cmd_complete(cmd, status);
		mgmt_pending_remove(cmd);
	}
7217
}
7218

7219
void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
7220 7221
{
	struct cmd_lookup match = { NULL, hdev };
7222
	bool changed;
7223 7224 7225 7226

	if (status) {
		u8 mgmt_err = mgmt_status(status);
		mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
7227
				     cmd_status_rsp, &mgmt_err);
7228
		return;
7229 7230
	}

7231
	if (test_bit(HCI_AUTH, &hdev->flags))
7232
		changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
7233
	else
7234
		changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
7235

7236
	mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
7237
			     &match);
7238

7239
	if (changed)
7240
		new_settings(hdev, match.sk);
7241 7242 7243 7244 7245

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

7246
static void clear_eir(struct hci_request *req)
7247
{
7248
	struct hci_dev *hdev = req->hdev;
7249 7250
	struct hci_cp_write_eir cp;

7251
	if (!lmp_ext_inq_capable(hdev))
7252
		return;
7253

7254 7255
	memset(hdev->eir, 0, sizeof(hdev->eir));

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

7258
	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
7259 7260
}

7261
void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
7262 7263
{
	struct cmd_lookup match = { NULL, hdev };
7264
	struct hci_request req;
7265
	bool changed = false;
7266 7267 7268

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

7270 7271
		if (enable && hci_dev_test_and_clear_flag(hdev,
							  HCI_SSP_ENABLED)) {
7272
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
7273
			new_settings(hdev, NULL);
7274
		}
7275

7276 7277
		mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
				     &mgmt_err);
7278
		return;
7279 7280 7281
	}

	if (enable) {
7282
		changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
7283
	} else {
7284
		changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
7285
		if (!changed)
7286 7287
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_HS_ENABLED);
7288
		else
7289
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
7290 7291 7292 7293
	}

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

7294
	if (changed)
7295
		new_settings(hdev, match.sk);
7296

7297
	if (match.sk)
7298 7299
		sock_put(match.sk);

7300 7301
	hci_req_init(&req, hdev);

7302 7303
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
		if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
7304 7305
			hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
				    sizeof(enable), &enable);
7306
		update_eir(&req);
7307
	} else {
7308
		clear_eir(&req);
7309
	}
7310 7311

	hci_req_run(&req, NULL);
7312 7313
}

7314
static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
7315 7316 7317 7318 7319 7320 7321 7322 7323
{
	struct cmd_lookup *match = data;

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

7324 7325
void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
				    u8 status)
7326
{
7327
	struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
7328

7329 7330 7331
	mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
	mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
	mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
7332 7333

	if (!status)
7334 7335
		mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class, 3,
			   NULL);
7336 7337 7338

	if (match.sk)
		sock_put(match.sk);
7339 7340
}

7341
void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
7342 7343
{
	struct mgmt_cp_set_local_name ev;
7344
	struct mgmt_pending_cmd *cmd;
7345

7346
	if (status)
7347
		return;
7348 7349 7350

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

7353
	cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
7354 7355
	if (!cmd) {
		memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
7356

7357 7358 7359 7360
		/* If this is a HCI command related to powering on the
		 * HCI dev don't send any mgmt signals.
		 */
		if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
7361
			return;
7362
	}
7363

7364 7365
	mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
		   cmd ? cmd->sk : NULL);
7366
}
7367

7368
void mgmt_read_local_oob_data_complete(struct hci_dev *hdev, u8 *hash192,
7369 7370
				       u8 *rand192, u8 *hash256, u8 *rand256,
				       u8 status)
7371
{
7372
	struct mgmt_pending_cmd *cmd;
7373

7374
	BT_DBG("%s status %u", hdev->name, status);
7375

7376
	cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
7377
	if (!cmd)
7378
		return;
7379 7380

	if (status) {
7381 7382
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
			        mgmt_status(status));
7383
	} else {
7384 7385
		struct mgmt_rp_read_local_oob_data rp;
		size_t rp_size = sizeof(rp);
7386

7387 7388
		memcpy(rp.hash192, hash192, sizeof(rp.hash192));
		memcpy(rp.rand192, rand192, sizeof(rp.rand192));
7389

7390
		if (bredr_sc_enabled(hdev) && hash256 && rand256) {
7391
			memcpy(rp.hash256, hash256, sizeof(rp.hash256));
7392
			memcpy(rp.rand256, rand256, sizeof(rp.rand256));
7393
		} else {
7394
			rp_size -= sizeof(rp.hash256) + sizeof(rp.rand256);
7395
		}
7396

7397 7398 7399
		mgmt_cmd_complete(cmd->sk, hdev->id,
				  MGMT_OP_READ_LOCAL_OOB_DATA, 0,
				  &rp, rp_size);
7400 7401 7402 7403
	}

	mgmt_pending_remove(cmd);
}
7404

7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416
static inline bool has_uuid(u8 *uuid, u16 uuid_count, u8 (*uuids)[16])
{
	int i;

	for (i = 0; i < uuid_count; i++) {
		if (!memcmp(uuid, uuids[i], 16))
			return true;
	}

	return false;
}

7417 7418
static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
{
7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435
	u16 parsed = 0;

	while (parsed < eir_len) {
		u8 field_len = eir[0];
		u8 uuid[16];
		int i;

		if (field_len == 0)
			break;

		if (eir_len - parsed < field_len + 1)
			break;

		switch (eir[1]) {
		case EIR_UUID16_ALL:
		case EIR_UUID16_SOME:
			for (i = 0; i + 3 <= field_len; i += 2) {
7436
				memcpy(uuid, bluetooth_base_uuid, 16);
7437 7438 7439 7440 7441 7442 7443 7444 7445
				uuid[13] = eir[i + 3];
				uuid[12] = eir[i + 2];
				if (has_uuid(uuid, uuid_count, uuids))
					return true;
			}
			break;
		case EIR_UUID32_ALL:
		case EIR_UUID32_SOME:
			for (i = 0; i + 5 <= field_len; i += 4) {
7446
				memcpy(uuid, bluetooth_base_uuid, 16);
7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468
				uuid[15] = eir[i + 5];
				uuid[14] = eir[i + 4];
				uuid[13] = eir[i + 3];
				uuid[12] = eir[i + 2];
				if (has_uuid(uuid, uuid_count, uuids))
					return true;
			}
			break;
		case EIR_UUID128_ALL:
		case EIR_UUID128_SOME:
			for (i = 0; i + 17 <= field_len; i += 16) {
				memcpy(uuid, eir + i + 2, 16);
				if (has_uuid(uuid, uuid_count, uuids))
					return true;
			}
			break;
		}

		parsed += field_len + 1;
		eir += field_len + 1;
	}

7469 7470 7471
	return false;
}

7472 7473 7474
static void restart_le_scan(struct hci_dev *hdev)
{
	/* If controller is not scanning we are done. */
7475
	if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486
		return;

	if (time_after(jiffies + DISCOV_LE_RESTART_DELAY,
		       hdev->discovery.scan_start +
		       hdev->discovery.scan_duration))
		return;

	queue_delayed_work(hdev->workqueue, &hdev->le_scan_restart,
			   DISCOV_LE_RESTART_DELAY);
}

7487 7488
static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
			    u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
7489
{
7490 7491 7492 7493 7494
	/* If a RSSI threshold has been specified, and
	 * HCI_QUIRK_STRICT_DUPLICATE_FILTER is not set, then all results with
	 * a RSSI smaller than the RSSI threshold will be dropped. If the quirk
	 * is set, let it through for further processing, as we might need to
	 * restart the scan.
7495 7496 7497
	 *
	 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
	 * the results are also dropped.
7498 7499
	 */
	if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
7500 7501 7502
	    (rssi == HCI_RSSI_INVALID ||
	    (rssi < hdev->discovery.rssi &&
	     !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
7503
		return  false;
7504

7505 7506 7507
	if (hdev->discovery.uuid_count != 0) {
		/* If a list of UUIDs is provided in filter, results with no
		 * matching UUID should be dropped.
7508
		 */
7509 7510 7511 7512 7513 7514
		if (!eir_has_uuids(eir, eir_len, hdev->discovery.uuid_count,
				   hdev->discovery.uuids) &&
		    !eir_has_uuids(scan_rsp, scan_rsp_len,
				   hdev->discovery.uuid_count,
				   hdev->discovery.uuids))
			return false;
7515
	}
7516

7517 7518
	/* If duplicate filtering does not report RSSI changes, then restart
	 * scanning to ensure updated result with updated RSSI values.
7519
	 */
7520 7521 7522 7523 7524 7525 7526 7527
	if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks)) {
		restart_le_scan(hdev);

		/* Validate RSSI value against the RSSI threshold once more. */
		if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
		    rssi < hdev->discovery.rssi)
			return false;
	}
7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550

	return true;
}

void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
		       u8 addr_type, u8 *dev_class, s8 rssi, u32 flags,
		       u8 *eir, u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
{
	char buf[512];
	struct mgmt_ev_device_found *ev = (void *)buf;
	size_t ev_size;

	/* Don't send events for a non-kernel initiated discovery. With
	 * LE one exception is if we have pend_le_reports > 0 in which
	 * case we're doing passive scanning and want these events.
	 */
	if (!hci_discovery_active(hdev)) {
		if (link_type == ACL_LINK)
			return;
		if (link_type == LE_LINK && list_empty(&hdev->pend_le_reports))
			return;
	}

7551
	if (hdev->discovery.result_filtering) {
7552 7553 7554 7555 7556 7557 7558 7559 7560 7561
		/* We are using service discovery */
		if (!is_filter_match(hdev, rssi, eir, eir_len, scan_rsp,
				     scan_rsp_len))
			return;
	}

	/* Make sure that the buffer is big enough. The 5 extra bytes
	 * are for the potential CoD field.
	 */
	if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
7562 7563
		return;

7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594
	memset(buf, 0, sizeof(buf));

	/* In case of device discovery with BR/EDR devices (pre 1.2), the
	 * RSSI value was reported as 0 when not available. This behavior
	 * is kept when using device discovery. This is required for full
	 * backwards compatibility with the API.
	 *
	 * However when using service discovery, the value 127 will be
	 * returned when the RSSI is not available.
	 */
	if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi &&
	    link_type == ACL_LINK)
		rssi = 0;

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

	if (eir_len > 0)
		/* Copy EIR or advertising data into event */
		memcpy(ev->eir, eir, eir_len);

	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,
					  dev_class, 3);

	if (scan_rsp_len > 0)
		/* Append scan response data to event */
		memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);

7595 7596
	ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
	ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
7597

7598
	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
7599
}
7600

7601 7602
void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
		      u8 addr_type, s8 rssi, u8 *name, u8 name_len)
7603
{
7604 7605 7606
	struct mgmt_ev_device_found *ev;
	char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
	u16 eir_len;
7607

7608
	ev = (struct mgmt_ev_device_found *) buf;
7609

7610 7611 7612
	memset(buf, 0, sizeof(buf));

	bacpy(&ev->addr.bdaddr, bdaddr);
7613
	ev->addr.type = link_to_bdaddr(link_type, addr_type);
7614 7615 7616
	ev->rssi = rssi;

	eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
7617
				  name_len);
7618

7619
	ev->eir_len = cpu_to_le16(eir_len);
7620

7621
	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
7622
}
7623

7624
void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
7625
{
7626
	struct mgmt_ev_discovering ev;
7627

7628 7629
	BT_DBG("%s discovering %u", hdev->name, discovering);

7630 7631 7632 7633
	memset(&ev, 0, sizeof(ev));
	ev.type = hdev->discovery.type;
	ev.discovering = discovering;

7634
	mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
7635
}
7636

7637
static void adv_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
7638 7639 7640 7641 7642 7643 7644 7645
{
	BT_DBG("%s status %u", hdev->name, status);
}

void mgmt_reenable_advertising(struct hci_dev *hdev)
{
	struct hci_request req;

7646
	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
7647 7648 7649 7650
		return;

	hci_req_init(&req, hdev);
	enable_advertising(&req);
7651
	hci_req_run(&req, adv_enable_complete);
7652
}
7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668

static struct hci_mgmt_chan chan = {
	.channel	= HCI_CHANNEL_CONTROL,
	.handler_count	= ARRAY_SIZE(mgmt_handlers),
	.handlers	= mgmt_handlers,
};

int mgmt_init(void)
{
	return hci_mgmt_chan_register(&chan);
}

void mgmt_exit(void)
{
	hci_mgmt_chan_unregister(&chan);
}