mgmt.c 209.3 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
#include "mgmt_util.h"
39

40
#define MGMT_VERSION	1
41
#define MGMT_REVISION	10
42

43 44 45 46 47 48 49
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,
50
	MGMT_OP_SET_BONDABLE,
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
	MGMT_OP_SET_LINK_SECURITY,
	MGMT_OP_SET_SSP,
	MGMT_OP_SET_HS,
	MGMT_OP_SET_LE,
	MGMT_OP_SET_DEV_CLASS,
	MGMT_OP_SET_LOCAL_NAME,
	MGMT_OP_ADD_UUID,
	MGMT_OP_REMOVE_UUID,
	MGMT_OP_LOAD_LINK_KEYS,
	MGMT_OP_LOAD_LONG_TERM_KEYS,
	MGMT_OP_DISCONNECT,
	MGMT_OP_GET_CONNECTIONS,
	MGMT_OP_PIN_CODE_REPLY,
	MGMT_OP_PIN_CODE_NEG_REPLY,
	MGMT_OP_SET_IO_CAPABILITY,
	MGMT_OP_PAIR_DEVICE,
	MGMT_OP_CANCEL_PAIR_DEVICE,
	MGMT_OP_UNPAIR_DEVICE,
	MGMT_OP_USER_CONFIRM_REPLY,
	MGMT_OP_USER_CONFIRM_NEG_REPLY,
	MGMT_OP_USER_PASSKEY_REPLY,
	MGMT_OP_USER_PASSKEY_NEG_REPLY,
	MGMT_OP_READ_LOCAL_OOB_DATA,
	MGMT_OP_ADD_REMOTE_OOB_DATA,
	MGMT_OP_REMOVE_REMOTE_OOB_DATA,
	MGMT_OP_START_DISCOVERY,
	MGMT_OP_STOP_DISCOVERY,
	MGMT_OP_CONFIRM_NAME,
	MGMT_OP_BLOCK_DEVICE,
	MGMT_OP_UNBLOCK_DEVICE,
81
	MGMT_OP_SET_DEVICE_ID,
82
	MGMT_OP_SET_ADVERTISING,
83
	MGMT_OP_SET_BREDR,
84
	MGMT_OP_SET_STATIC_ADDRESS,
85
	MGMT_OP_SET_SCAN_PARAMS,
86
	MGMT_OP_SET_SECURE_CONN,
87
	MGMT_OP_SET_DEBUG_KEYS,
88
	MGMT_OP_SET_PRIVACY,
89
	MGMT_OP_LOAD_IRKS,
90
	MGMT_OP_GET_CONN_INFO,
91
	MGMT_OP_GET_CLOCK_INFO,
92 93
	MGMT_OP_ADD_DEVICE,
	MGMT_OP_REMOVE_DEVICE,
94
	MGMT_OP_LOAD_CONN_PARAM,
95
	MGMT_OP_READ_UNCONF_INDEX_LIST,
96
	MGMT_OP_READ_CONFIG_INFO,
97
	MGMT_OP_SET_EXTERNAL_CONFIG,
98
	MGMT_OP_SET_PUBLIC_ADDRESS,
99
	MGMT_OP_START_SERVICE_DISCOVERY,
100
	MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
101
	MGMT_OP_READ_EXT_INDEX_LIST,
102
	MGMT_OP_READ_ADV_FEATURES,
103
	MGMT_OP_ADD_ADVERTISING,
104
	MGMT_OP_REMOVE_ADVERTISING,
105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
};

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,
128
	MGMT_EV_PASSKEY_NOTIFY,
129
	MGMT_EV_NEW_IRK,
130
	MGMT_EV_NEW_CSRK,
131 132
	MGMT_EV_DEVICE_ADDED,
	MGMT_EV_DEVICE_REMOVED,
133
	MGMT_EV_NEW_CONN_PARAM,
134
	MGMT_EV_UNCONF_INDEX_ADDED,
135
	MGMT_EV_UNCONF_INDEX_REMOVED,
136
	MGMT_EV_NEW_CONFIG_OPTIONS,
137 138
	MGMT_EV_EXT_INDEX_ADDED,
	MGMT_EV_EXT_INDEX_REMOVED,
139
	MGMT_EV_LOCAL_OOB_DATA_UPDATED,
140 141
	MGMT_EV_ADVERTISING_ADDED,
	MGMT_EV_ADVERTISING_REMOVED,
142 143
};

144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
static const u16 mgmt_untrusted_commands[] = {
	MGMT_OP_READ_INDEX_LIST,
	MGMT_OP_READ_INFO,
	MGMT_OP_READ_UNCONF_INDEX_LIST,
	MGMT_OP_READ_CONFIG_INFO,
	MGMT_OP_READ_EXT_INDEX_LIST,
};

static const u16 mgmt_untrusted_events[] = {
	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_UNCONF_INDEX_ADDED,
	MGMT_EV_UNCONF_INDEX_REMOVED,
	MGMT_EV_NEW_CONFIG_OPTIONS,
	MGMT_EV_EXT_INDEX_ADDED,
	MGMT_EV_EXT_INDEX_REMOVED,
};

165
#define CACHE_TIMEOUT	msecs_to_jiffies(2 * 1000)
166

167 168 169
#define ZERO_KEY "\x00\x00\x00\x00\x00\x00\x00\x00" \
		 "\x00\x00\x00\x00\x00\x00\x00\x00"

170 171 172 173 174 175 176 177
/* 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 */
178
	MGMT_STATUS_AUTH_FAILED,	/* PIN or Key Missing */
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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
	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;
}

243 244
static int mgmt_index_event(u16 event, struct hci_dev *hdev, void *data,
			    u16 len, int flag)
245
{
246 247
	return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
			       flag, NULL);
248 249
}

250 251 252 253 254 255 256
static int mgmt_limited_event(u16 event, struct hci_dev *hdev, void *data,
			      u16 len, int flag, struct sock *skip_sk)
{
	return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
			       flag, skip_sk);
}

257 258 259 260 261 262 263
static int mgmt_generic_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,
			       HCI_MGMT_GENERIC_EVENTS, skip_sk);
}

264 265 266 267
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,
268
			       HCI_SOCK_TRUSTED, skip_sk);
269 270
}

271 272 273 274 275 276 277 278
static u8 le_addr_type(u8 mgmt_addr_type)
{
	if (mgmt_addr_type == BDADDR_LE_PUBLIC)
		return ADDR_LE_DEV_PUBLIC;
	else
		return ADDR_LE_DEV_RANDOM;
}

279 280
static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
			u16 data_len)
281 282 283 284 285 286
{
	struct mgmt_rp_read_version rp;

	BT_DBG("sock %p", sk);

	rp.version = MGMT_VERSION;
287
	rp.revision = cpu_to_le16(MGMT_REVISION);
288

289 290
	return mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0,
				 &rp, sizeof(rp));
291 292
}

293 294
static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 data_len)
295 296
{
	struct mgmt_rp_read_commands *rp;
297
	u16 num_commands, num_events;
298 299 300 301 302
	size_t rp_size;
	int i, err;

	BT_DBG("sock %p", sk);

303 304 305 306 307 308 309 310
	if (hci_sock_test_flag(sk, HCI_SOCK_TRUSTED)) {
		num_commands = ARRAY_SIZE(mgmt_commands);
		num_events = ARRAY_SIZE(mgmt_events);
	} else {
		num_commands = ARRAY_SIZE(mgmt_untrusted_commands);
		num_events = ARRAY_SIZE(mgmt_untrusted_events);
	}

311 312 313 314 315 316
	rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));

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

317 318
	rp->num_commands = cpu_to_le16(num_commands);
	rp->num_events = cpu_to_le16(num_events);
319

320 321 322 323 324
	if (hci_sock_test_flag(sk, HCI_SOCK_TRUSTED)) {
		__le16 *opcode = rp->opcodes;

		for (i = 0; i < num_commands; i++, opcode++)
			put_unaligned_le16(mgmt_commands[i], opcode);
325

326 327 328 329 330 331 332 333 334 335 336
		for (i = 0; i < num_events; i++, opcode++)
			put_unaligned_le16(mgmt_events[i], opcode);
	} else {
		__le16 *opcode = rp->opcodes;

		for (i = 0; i < num_commands; i++, opcode++)
			put_unaligned_le16(mgmt_untrusted_commands[i], opcode);

		for (i = 0; i < num_events; i++, opcode++)
			put_unaligned_le16(mgmt_untrusted_events[i], opcode);
	}
337

338 339
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0,
				rp, rp_size);
340 341 342 343 344
	kfree(rp);

	return err;
}

345 346
static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
347 348
{
	struct mgmt_rp_read_index_list *rp;
349
	struct hci_dev *d;
350
	size_t rp_len;
351
	u16 count;
352
	int err;
353 354 355 356 357 358

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

	count = 0;
359
	list_for_each_entry(d, &hci_dev_list, list) {
360
		if (d->dev_type == HCI_BREDR &&
361
		    !hci_dev_test_flag(d, HCI_UNCONFIGURED))
362
			count++;
363 364
	}

365 366 367
	rp_len = sizeof(*rp) + (2 * count);
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
368
		read_unlock(&hci_dev_list_lock);
369
		return -ENOMEM;
370
	}
371

372
	count = 0;
373
	list_for_each_entry(d, &hci_dev_list, list) {
374 375 376
		if (hci_dev_test_flag(d, HCI_SETUP) ||
		    hci_dev_test_flag(d, HCI_CONFIG) ||
		    hci_dev_test_flag(d, HCI_USER_CHANNEL))
377 378
			continue;

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

385
		if (d->dev_type == HCI_BREDR &&
386
		    !hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
387 388 389
			rp->index[count++] = cpu_to_le16(d->id);
			BT_DBG("Added hci%u", d->id);
		}
390 391
	}

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

395 396
	read_unlock(&hci_dev_list_lock);

397 398
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST,
				0, rp, rp_len);
399

400 401 402
	kfree(rp);

	return err;
403 404
}

405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420
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 &&
421
		    hci_dev_test_flag(d, HCI_UNCONFIGURED))
422 423 424 425 426 427 428 429 430 431 432 433
			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) {
434 435 436
		if (hci_dev_test_flag(d, HCI_SETUP) ||
		    hci_dev_test_flag(d, HCI_CONFIG) ||
		    hci_dev_test_flag(d, HCI_USER_CHANNEL))
437 438 439 440 441 442 443 444 445
			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 &&
446
		    hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
447 448 449 450 451 452 453 454 455 456
			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);

457 458
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
				MGMT_OP_READ_UNCONF_INDEX_LIST, 0, rp, rp_len);
459 460 461 462 463 464

	kfree(rp);

	return err;
}

465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540
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;
}

541 542 543
static bool is_configured(struct hci_dev *hdev)
{
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
544
	    !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
545 546 547 548 549 550 551 552 553
		return false;

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

	return true;
}

554 555 556 557
static __le32 get_missing_options(struct hci_dev *hdev)
{
	u32 options = 0;

558
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
559
	    !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
560 561
		options |= MGMT_OPTION_EXTERNAL_CONFIG;

562 563 564 565 566 567 568
	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);
}

569 570 571 572
static int new_options(struct hci_dev *hdev, struct sock *skip)
{
	__le32 options = get_missing_options(hdev);

573 574
	return mgmt_generic_event(MGMT_EV_NEW_CONFIG_OPTIONS, hdev, &options,
				  sizeof(options), skip);
575 576
}

577 578 579 580
static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
{
	__le32 options = get_missing_options(hdev);

581 582
	return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &options,
				 sizeof(options));
583 584
}

585 586 587 588
static int read_config_info(struct sock *sk, struct hci_dev *hdev,
			    void *data, u16 data_len)
{
	struct mgmt_rp_read_config_info rp;
589
	u32 options = 0;
590 591 592 593 594 595 596

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

	hci_dev_lock(hdev);

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

598 599 600
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
		options |= MGMT_OPTION_EXTERNAL_CONFIG;

601
	if (hdev->set_bdaddr)
602 603 604 605
		options |= MGMT_OPTION_PUBLIC_ADDRESS;

	rp.supported_options = cpu_to_le32(options);
	rp.missing_options = get_missing_options(hdev);
606 607 608

	hci_dev_unlock(hdev);

609 610
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0,
				 &rp, sizeof(rp));
611 612
}

613 614 615 616 617
static u32 get_supported_settings(struct hci_dev *hdev)
{
	u32 settings = 0;

	settings |= MGMT_SETTING_POWERED;
618
	settings |= MGMT_SETTING_BONDABLE;
619
	settings |= MGMT_SETTING_DEBUG_KEYS;
620 621
	settings |= MGMT_SETTING_CONNECTABLE;
	settings |= MGMT_SETTING_DISCOVERABLE;
622

623
	if (lmp_bredr_capable(hdev)) {
624 625
		if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
			settings |= MGMT_SETTING_FAST_CONNECTABLE;
626 627
		settings |= MGMT_SETTING_BREDR;
		settings |= MGMT_SETTING_LINK_SECURITY;
628 629 630 631 632

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

634
		if (lmp_sc_capable(hdev))
635
			settings |= MGMT_SETTING_SECURE_CONN;
636
	}
637

638
	if (lmp_le_capable(hdev)) {
639
		settings |= MGMT_SETTING_LE;
640
		settings |= MGMT_SETTING_ADVERTISING;
641
		settings |= MGMT_SETTING_SECURE_CONN;
642
		settings |= MGMT_SETTING_PRIVACY;
643
		settings |= MGMT_SETTING_STATIC_ADDRESS;
644
	}
645

646 647
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
	    hdev->set_bdaddr)
648 649
		settings |= MGMT_SETTING_CONFIGURATION;

650 651 652 653 654 655 656
	return settings;
}

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

657
	if (hdev_is_powered(hdev))
658 659
		settings |= MGMT_SETTING_POWERED;

660
	if (hci_dev_test_flag(hdev, HCI_CONNECTABLE))
661 662
		settings |= MGMT_SETTING_CONNECTABLE;

663
	if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
664 665
		settings |= MGMT_SETTING_FAST_CONNECTABLE;

666
	if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
667 668
		settings |= MGMT_SETTING_DISCOVERABLE;

669
	if (hci_dev_test_flag(hdev, HCI_BONDABLE))
670
		settings |= MGMT_SETTING_BONDABLE;
671

672
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
673 674
		settings |= MGMT_SETTING_BREDR;

675
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
676 677
		settings |= MGMT_SETTING_LE;

678
	if (hci_dev_test_flag(hdev, HCI_LINK_SECURITY))
679 680
		settings |= MGMT_SETTING_LINK_SECURITY;

681
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
682 683
		settings |= MGMT_SETTING_SSP;

684
	if (hci_dev_test_flag(hdev, HCI_HS_ENABLED))
685 686
		settings |= MGMT_SETTING_HS;

687
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
688 689
		settings |= MGMT_SETTING_ADVERTISING;

690
	if (hci_dev_test_flag(hdev, HCI_SC_ENABLED))
691 692
		settings |= MGMT_SETTING_SECURE_CONN;

693
	if (hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS))
694 695
		settings |= MGMT_SETTING_DEBUG_KEYS;

696
	if (hci_dev_test_flag(hdev, HCI_PRIVACY))
697 698
		settings |= MGMT_SETTING_PRIVACY;

699 700 701 702 703
	/* 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
704
	 * will never be set. If the address is configured, then if the
705 706 707 708 709 710
	 * 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.
	 */
711
	if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
712
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
713 714 715 716 717
	    !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
		if (bacmp(&hdev->static_addr, BDADDR_ANY))
			settings |= MGMT_SETTING_STATIC_ADDRESS;
	}

718 719 720
	return settings;
}

721 722
#define PNP_INFO_SVCLASS_ID		0x1200

723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764
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;
}

765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797
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;
}

798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830
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;
}

831 832 833 834 835 836 837 838 839 840 841 842
static struct mgmt_pending_cmd *pending_find(u16 opcode, struct hci_dev *hdev)
{
	return mgmt_pending_find(HCI_CHANNEL_CONTROL, opcode, hdev);
}

static struct mgmt_pending_cmd *pending_find_data(u16 opcode,
						  struct hci_dev *hdev,
						  const void *data)
{
	return mgmt_pending_find_data(HCI_CHANNEL_CONTROL, opcode, hdev, data);
}

843 844 845 846 847 848 849 850 851
static u8 get_current_adv_instance(struct hci_dev *hdev)
{
	/* The "Set Advertising" setting supersedes the "Add Advertising"
	 * setting. Here we set the advertising data based on which
	 * setting was set. When neither apply, default to the global settings,
	 * represented by instance "0".
	 */
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
	    !hci_dev_test_flag(hdev, HCI_ADVERTISING))
852
		return hdev->cur_adv_instance;
853 854 855 856

	return 0x00;
}

857
static u8 create_default_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
858
{
859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880
	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;
881 882
}

883 884
static u8 create_instance_scan_rsp_data(struct hci_dev *hdev, u8 instance,
					u8 *ptr)
885
{
886 887 888 889 890 891
	struct adv_info *adv_instance;

	adv_instance = hci_find_adv_instance(hdev, instance);
	if (!adv_instance)
		return 0;

892 893 894
	/* TODO: Set the appropriate entries based on advertising instance flags
	 * here once flags other than 0 are supported.
	 */
895 896
	memcpy(ptr, adv_instance->scan_rsp_data,
	       adv_instance->scan_rsp_len);
897

898
	return adv_instance->scan_rsp_len;
899 900
}

901
static void update_inst_scan_rsp_data(struct hci_request *req, u8 instance)
902 903 904 905 906
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_scan_rsp_data cp;
	u8 len;

907
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
908 909 910 911
		return;

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

912
	if (instance)
913
		len = create_instance_scan_rsp_data(hdev, instance, cp.data);
914 915
	else
		len = create_default_scan_rsp_data(hdev, cp.data);
916

917
	if (hdev->scan_rsp_data_len == len &&
918
	    !memcmp(cp.data, hdev->scan_rsp_data, len))
919 920
		return;

921 922
	memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
	hdev->scan_rsp_data_len = len;
923 924 925 926 927 928

	cp.length = len;

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

929 930
static void update_scan_rsp_data(struct hci_request *req)
{
931
	update_inst_scan_rsp_data(req, get_current_adv_instance(req->hdev));
932 933
}

934 935
static u8 get_adv_discov_flags(struct hci_dev *hdev)
{
936
	struct mgmt_pending_cmd *cmd;
937 938 939 940

	/* If there's a pending mgmt command the flags will not yet have
	 * their final values, so check for this first.
	 */
941
	cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
942 943 944 945 946 947 948
	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 {
949
		if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
950
			return LE_AD_LIMITED;
951
		else if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
952 953 954 955 956 957
			return LE_AD_GENERAL;
	}

	return 0;
}

958 959 960
static bool get_connectable(struct hci_dev *hdev)
{
	struct mgmt_pending_cmd *cmd;
961

962 963 964 965 966 967
	/* If there's a pending mgmt command the flag will not yet have
	 * it's final value, so check for this first.
	 */
	cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
	if (cmd) {
		struct mgmt_mode *cp = cmd->param;
968

969
		return cp->val;
970 971
	}

972 973
	return hci_dev_test_flag(hdev, HCI_CONNECTABLE);
}
974

975 976 977
static u32 get_adv_instance_flags(struct hci_dev *hdev, u8 instance)
{
	u32 flags;
978
	struct adv_info *adv_instance;
979

980 981 982 983 984
	if (instance == 0x00) {
		/* Instance 0 always manages the "Tx Power" and "Flags"
		 * fields
		 */
		flags = MGMT_ADV_FLAG_TX_POWER | MGMT_ADV_FLAG_MANAGED_FLAGS;
985

986 987 988 989 990
		/* For instance 0, the HCI_ADVERTISING_CONNECTABLE setting
		 * corresponds to the "connectable" instance flag.
		 */
		if (hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE))
			flags |= MGMT_ADV_FLAG_CONNECTABLE;
991

992
		return flags;
993
	}
994

995
	adv_instance = hci_find_adv_instance(hdev, instance);
996

997 998 999
	/* Return 0 when we got an invalid instance identifier. */
	if (!adv_instance)
		return 0;
1000

1001
	return adv_instance->flags;
1002 1003
}

1004
static u8 get_cur_adv_instance_scan_rsp_len(struct hci_dev *hdev)
1005
{
1006 1007 1008 1009 1010 1011 1012 1013 1014
	u8 instance = get_current_adv_instance(hdev);
	struct adv_info *adv_instance;

	/* Ignore instance 0 */
	if (instance == 0x00)
		return 0;

	adv_instance = hci_find_adv_instance(hdev, instance);
	if (!adv_instance)
1015 1016 1017 1018 1019
		return 0;

	/* TODO: Take into account the "appearance" and "local-name" flags here.
	 * These are currently being ignored as they are not supported.
	 */
1020
	return adv_instance->scan_rsp_len;
1021 1022
}

1023
static u8 create_instance_adv_data(struct hci_dev *hdev, u8 instance, u8 *ptr)
1024
{
1025
	struct adv_info *adv_instance = NULL;
1026
	u8 ad_len = 0, flags = 0;
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
	u32 instance_flags;

	/* Return 0 when the current instance identifier is invalid. */
	if (instance) {
		adv_instance = hci_find_adv_instance(hdev, instance);
		if (!adv_instance)
			return 0;
	}

	instance_flags = get_adv_instance_flags(hdev, instance);
1037

1038 1039 1040
	/* The Add Advertising command allows userspace to set both the general
	 * and limited discoverable flags.
	 */
1041
	if (instance_flags & MGMT_ADV_FLAG_DISCOV)
1042 1043
		flags |= LE_AD_GENERAL;

1044
	if (instance_flags & MGMT_ADV_FLAG_LIMITED_DISCOV)
1045 1046
		flags |= LE_AD_LIMITED;

1047
	if (flags || (instance_flags & MGMT_ADV_FLAG_MANAGED_FLAGS)) {
1048 1049 1050 1051 1052 1053
		/* If a discovery flag wasn't provided, simply use the global
		 * settings.
		 */
		if (!flags)
			flags |= get_adv_discov_flags(hdev);

1054 1055 1056
		if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
			flags |= LE_AD_NO_BREDR;

1057 1058 1059 1060 1061 1062 1063
		/* If flags would still be empty, then there is no need to
		 * include the "Flags" AD field".
		 */
		if (flags) {
			ptr[0] = 0x02;
			ptr[1] = EIR_FLAGS;
			ptr[2] = flags;
1064

1065 1066 1067
			ad_len += 3;
			ptr += 3;
		}
1068 1069
	}

1070 1071 1072 1073 1074
	if (adv_instance) {
		memcpy(ptr, adv_instance->adv_data,
		       adv_instance->adv_data_len);
		ad_len += adv_instance->adv_data_len;
		ptr += adv_instance->adv_data_len;
1075 1076
	}

1077
	/* Provide Tx Power only if we can provide a valid value for it */
1078
	if (hdev->adv_tx_power != HCI_TX_POWER_INVALID &&
1079
	    (instance_flags & MGMT_ADV_FLAG_TX_POWER)) {
1080 1081 1082 1083 1084 1085 1086 1087
		ptr[0] = 0x02;
		ptr[1] = EIR_TX_POWER;
		ptr[2] = (u8)hdev->adv_tx_power;

		ad_len += 3;
		ptr += 3;
	}

1088
	return ad_len;
1089 1090
}

1091
static void update_inst_adv_data(struct hci_request *req, u8 instance)
1092 1093 1094 1095 1096
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_adv_data cp;
	u8 len;

1097
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1098 1099 1100 1101
		return;

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

1102
	len = create_instance_adv_data(hdev, instance, cp.data);
1103

1104
	/* There's nothing to do if the data hasn't changed */
1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
	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);
}

1117 1118
static void update_adv_data(struct hci_request *req)
{
1119
	update_inst_adv_data(req, get_current_adv_instance(req->hdev));
1120 1121
}

1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
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);
}

1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154
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);
	}

1155
	if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
1156 1157 1158 1159 1160 1161 1162
		ptr[0] = 2;
		ptr[1] = EIR_TX_POWER;
		ptr[2] = (u8) hdev->inq_tx_power;

		ptr += 3;
	}

1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
	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;
	}

1175
	ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
1176
	ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
1177
	ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
1178 1179
}

1180
static void update_eir(struct hci_request *req)
1181
{
1182
	struct hci_dev *hdev = req->hdev;
1183 1184
	struct hci_cp_write_eir cp;

1185
	if (!hdev_is_powered(hdev))
1186
		return;
1187

1188
	if (!lmp_ext_inq_capable(hdev))
1189
		return;
1190

1191
	if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
1192
		return;
1193

1194
	if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
1195
		return;
1196 1197 1198 1199 1200 1201

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

	create_eir(hdev, cp.data);

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

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

1206
	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219
}

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

1220
static void update_class(struct hci_request *req)
1221
{
1222
	struct hci_dev *hdev = req->hdev;
1223 1224 1225 1226
	u8 cod[3];

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

1227
	if (!hdev_is_powered(hdev))
1228
		return;
1229

1230
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1231 1232
		return;

1233
	if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
1234
		return;
1235 1236 1237 1238 1239

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

1240
	if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
1241 1242
		cod[1] |= 0x20;

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

1246
	hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
1247 1248
}

1249 1250 1251 1252 1253 1254 1255
static void disable_advertising(struct hci_request *req)
{
	u8 enable = 0x00;

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

1256 1257 1258 1259
static void enable_advertising(struct hci_request *req)
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_adv_param cp;
1260
	u8 own_addr_type, enable = 0x01;
1261
	bool connectable;
1262 1263
	u8 instance;
	u32 flags;
1264

1265 1266 1267
	if (hci_conn_num(hdev, LE_LINK) > 0)
		return;

1268
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
1269 1270
		disable_advertising(req);

1271
	/* Clear the HCI_LE_ADV bit temporarily so that the
1272 1273 1274 1275
	 * 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.
	 */
1276
	hci_dev_clear_flag(hdev, HCI_LE_ADV);
1277

1278 1279
	instance = get_current_adv_instance(hdev);
	flags = get_adv_instance_flags(hdev, instance);
1280 1281 1282 1283 1284 1285

	/* If the "connectable" instance flag was not set, then choose between
	 * ADV_IND and ADV_NONCONN_IND based on the global connectable setting.
	 */
	connectable = (flags & MGMT_ADV_FLAG_CONNECTABLE) ||
		      get_connectable(hdev);
1286

1287 1288 1289 1290 1291
	/* 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)
1292 1293
		return;

1294
	memset(&cp, 0, sizeof(cp));
1295 1296
	cp.min_interval = cpu_to_le16(hdev->le_adv_min_interval);
	cp.max_interval = cpu_to_le16(hdev->le_adv_max_interval);
1297 1298 1299

	if (connectable)
		cp.type = LE_ADV_IND;
1300
	else if (get_cur_adv_instance_scan_rsp_len(hdev))
1301 1302 1303 1304
		cp.type = LE_ADV_SCAN_IND;
	else
		cp.type = LE_ADV_NONCONN_IND;

1305
	cp.own_address_type = own_addr_type;
1306 1307 1308 1309 1310 1311 1312
	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);
}

1313 1314 1315
static void service_cache_off(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
1316
					    service_cache.work);
1317
	struct hci_request req;
1318

1319
	if (!hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
1320 1321
		return;

1322 1323
	hci_req_init(&req, hdev);

1324 1325
	hci_dev_lock(hdev);

1326 1327
	update_eir(&req);
	update_class(&req);
1328 1329

	hci_dev_unlock(hdev);
1330 1331

	hci_req_run(&req, NULL);
1332 1333
}

1334 1335 1336 1337 1338 1339 1340 1341
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("");

1342
	hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
1343

1344
	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
1345 1346 1347 1348 1349 1350 1351 1352 1353 1354
		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);
}

1355
static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
1356
{
1357
	if (hci_dev_test_and_set_flag(hdev, HCI_MGMT))
1358 1359
		return;

1360
	INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
1361
	INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
1362

1363 1364 1365 1366 1367
	/* 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
	 */
1368
	hci_dev_clear_flag(hdev, HCI_BONDABLE);
1369 1370
}

1371
static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
1372
				void *data, u16 data_len)
1373
{
1374
	struct mgmt_rp_read_info rp;
1375

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

1378
	hci_dev_lock(hdev);
1379

1380 1381
	memset(&rp, 0, sizeof(rp));

1382
	bacpy(&rp.bdaddr, &hdev->bdaddr);
1383

1384
	rp.version = hdev->hci_ver;
1385
	rp.manufacturer = cpu_to_le16(hdev->manufacturer);
1386 1387 1388

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

1390
	memcpy(rp.dev_class, hdev->dev_class, 3);
1391

1392
	memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
1393
	memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
1394

1395
	hci_dev_unlock(hdev);
1396

1397 1398
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
				 sizeof(rp));
1399 1400
}

1401
static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
1402
{
1403
	__le32 settings = cpu_to_le32(get_current_settings(hdev));
1404

1405 1406
	return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &settings,
				 sizeof(settings));
1407 1408
}

1409
static void clean_up_hci_complete(struct hci_dev *hdev, u8 status, u16 opcode)
1410 1411 1412
{
	BT_DBG("%s status 0x%02x", hdev->name, status);

1413 1414
	if (hci_conn_count(hdev) == 0) {
		cancel_delayed_work(&hdev->power_off);
1415
		queue_work(hdev->req_workqueue, &hdev->power_off.work);
1416
	}
1417 1418
}

1419
static bool hci_stop_discovery(struct hci_request *req)
1420 1421 1422 1423 1424 1425 1426
{
	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:
1427
		if (test_bit(HCI_INQUIRY, &hdev->flags))
1428
			hci_req_add(req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
1429 1430

		if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
1431 1432 1433 1434
			cancel_delayed_work(&hdev->le_scan_disable);
			hci_req_add_le_scan_disable(req);
		}

1435
		return true;
1436 1437 1438 1439 1440

	case DISCOVERY_RESOLVING:
		e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
						     NAME_PENDING);
		if (!e)
1441
			break;
1442 1443 1444 1445 1446

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

1447
		return true;
1448 1449 1450

	default:
		/* Passive scanning */
1451
		if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
1452
			hci_req_add_le_scan_disable(req);
1453 1454 1455
			return true;
		}

1456 1457
		break;
	}
1458 1459

	return false;
1460 1461
}

1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
static void advertising_added(struct sock *sk, struct hci_dev *hdev,
			      u8 instance)
{
	struct mgmt_ev_advertising_added ev;

	ev.instance = instance;

	mgmt_event(MGMT_EV_ADVERTISING_ADDED, hdev, &ev, sizeof(ev), sk);
}

static void advertising_removed(struct sock *sk, struct hci_dev *hdev,
				u8 instance)
{
	struct mgmt_ev_advertising_removed ev;

	ev.instance = instance;

	mgmt_event(MGMT_EV_ADVERTISING_REMOVED, hdev, &ev, sizeof(ev), sk);
}

1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548
static int schedule_adv_instance(struct hci_request *req, u8 instance,
				 bool force) {
	struct hci_dev *hdev = req->hdev;
	struct adv_info *adv_instance = NULL;
	u16 timeout;

	if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
	    !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
		return -EPERM;

	if (hdev->adv_instance_timeout)
		return -EBUSY;

	adv_instance = hci_find_adv_instance(hdev, instance);
	if (!adv_instance)
		return -ENOENT;

	/* A zero timeout means unlimited advertising. As long as there is
	 * only one instance, duration should be ignored. We still set a timeout
	 * in case further instances are being added later on.
	 *
	 * If the remaining lifetime of the instance is more than the duration
	 * then the timeout corresponds to the duration, otherwise it will be
	 * reduced to the remaining instance lifetime.
	 */
	if (adv_instance->timeout == 0 ||
	    adv_instance->duration <= adv_instance->remaining_time)
		timeout = adv_instance->duration;
	else
		timeout = adv_instance->remaining_time;

	/* The remaining time is being reduced unless the instance is being
	 * advertised without time limit.
	 */
	if (adv_instance->timeout)
		adv_instance->remaining_time =
				adv_instance->remaining_time - timeout;

	hdev->adv_instance_timeout = timeout;
	queue_delayed_work(hdev->workqueue,
			   &hdev->adv_instance_expire,
			   msecs_to_jiffies(timeout * 1000));

	/* If we're just re-scheduling the same instance again then do not
	 * execute any HCI commands. This happens when a single instance is
	 * being advertised.
	 */
	if (!force && hdev->cur_adv_instance == instance &&
	    hci_dev_test_flag(hdev, HCI_LE_ADV))
		return 0;

	hdev->cur_adv_instance = instance;
	update_adv_data(req);
	update_scan_rsp_data(req);
	enable_advertising(req);

	return 0;
}

static void cancel_adv_timeout(struct hci_dev *hdev)
{
	if (hdev->adv_instance_timeout) {
		hdev->adv_instance_timeout = 0;
		cancel_delayed_work(&hdev->adv_instance_expire);
	}
}

1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561
/* For a single instance:
 * - force == true: The instance will be removed even when its remaining
 *   lifetime is not zero.
 * - force == false: the instance will be deactivated but kept stored unless
 *   the remaining lifetime is zero.
 *
 * For instance == 0x00:
 * - force == true: All instances will be removed regardless of their timeout
 *   setting.
 * - force == false: Only instances that have a timeout will be removed.
 */
static void clear_adv_instance(struct hci_dev *hdev, struct hci_request *req,
			       u8 instance, bool force)
1562
{
1563 1564 1565
	struct adv_info *adv_instance, *n, *next_instance = NULL;
	int err;
	u8 rem_inst;
1566

1567 1568 1569
	/* Cancel any timeout concerning the removed instance(s). */
	if (!instance || hdev->cur_adv_instance == instance)
		cancel_adv_timeout(hdev);
1570

1571 1572 1573 1574 1575 1576
	/* Get the next instance to advertise BEFORE we remove
	 * the current one. This can be the same instance again
	 * if there is only one instance.
	 */
	if (instance && hdev->cur_adv_instance == instance)
		next_instance = hci_get_next_instance(hdev, instance);
1577

1578 1579 1580 1581 1582
	if (instance == 0x00) {
		list_for_each_entry_safe(adv_instance, n, &hdev->adv_instances,
					 list) {
			if (!(force || adv_instance->timeout))
				continue;
1583

1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611
			rem_inst = adv_instance->instance;
			err = hci_remove_adv_instance(hdev, rem_inst);
			if (!err)
				advertising_removed(NULL, hdev, rem_inst);
		}
		hdev->cur_adv_instance = 0x00;
	} else {
		adv_instance = hci_find_adv_instance(hdev, instance);

		if (force || (adv_instance && adv_instance->timeout &&
			      !adv_instance->remaining_time)) {
			/* Don't advertise a removed instance. */
			if (next_instance &&
			    next_instance->instance == instance)
				next_instance = NULL;

			err = hci_remove_adv_instance(hdev, instance);
			if (!err)
				advertising_removed(NULL, hdev, instance);
		}
	}

	if (list_empty(&hdev->adv_instances)) {
		hdev->cur_adv_instance = 0x00;
		hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
	}

	if (!req || !hdev_is_powered(hdev) ||
1612 1613 1614
	    hci_dev_test_flag(hdev, HCI_ADVERTISING))
		return;

1615 1616
	if (next_instance)
		schedule_adv_instance(req, next_instance->instance, false);
1617 1618
}

1619 1620 1621 1622
static int clean_up_hci_state(struct hci_dev *hdev)
{
	struct hci_request req;
	struct hci_conn *conn;
1623 1624
	bool discov_stopped;
	int err;
1625 1626 1627 1628 1629 1630 1631 1632 1633

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

1634
	clear_adv_instance(hdev, NULL, 0x00, false);
1635

1636
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
1637 1638
		disable_advertising(&req);

1639
	discov_stopped = hci_stop_discovery(&req);
1640 1641

	list_for_each_entry(conn, &hdev->conn_hash.list, list) {
1642 1643
		/* 0x15 == Terminated due to Power Off */
		__hci_abort_conn(&req, conn, 0x15);
1644 1645
	}

1646 1647 1648 1649 1650
	err = hci_req_run(&req, clean_up_hci_complete);
	if (!err && discov_stopped)
		hci_discovery_set_state(hdev, DISCOVERY_STOPPING);

	return err;
1651 1652
}

1653
static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
1654
		       u16 len)
1655
{
1656
	struct mgmt_mode *cp = data;
1657
	struct mgmt_pending_cmd *cmd;
1658
	int err;
1659

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

1662
	if (cp->val != 0x00 && cp->val != 0x01)
1663 1664
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
				       MGMT_STATUS_INVALID_PARAMS);
1665

1666
	hci_dev_lock(hdev);
1667

1668
	if (pending_find(MGMT_OP_SET_POWERED, hdev)) {
1669 1670
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
				      MGMT_STATUS_BUSY);
1671 1672 1673
		goto failed;
	}

1674
	if (hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) {
1675 1676 1677
		cancel_delayed_work(&hdev->power_off);

		if (cp->val) {
1678 1679 1680
			mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
					 data, len);
			err = mgmt_powered(hdev, 1);
1681 1682 1683 1684
			goto failed;
		}
	}

1685
	if (!!cp->val == hdev_is_powered(hdev)) {
1686
		err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
1687 1688 1689
		goto failed;
	}

1690
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1691 1692
	if (!cmd) {
		err = -ENOMEM;
1693
		goto failed;
1694
	}
1695

1696
	if (cp->val) {
1697
		queue_work(hdev->req_workqueue, &hdev->power_on);
1698 1699 1700 1701
		err = 0;
	} else {
		/* Disconnect connections, stop scans, etc */
		err = clean_up_hci_state(hdev);
1702 1703 1704
		if (!err)
			queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
					   HCI_POWER_OFF_TIMEOUT);
1705

1706 1707
		/* ENODATA means there were no HCI commands queued */
		if (err == -ENODATA) {
1708
			cancel_delayed_work(&hdev->power_off);
1709 1710 1711 1712
			queue_work(hdev->req_workqueue, &hdev->power_off.work);
			err = 0;
		}
	}
1713 1714

failed:
1715
	hci_dev_unlock(hdev);
1716
	return err;
1717 1718
}

1719 1720
static int new_settings(struct hci_dev *hdev, struct sock *skip)
{
1721
	__le32 ev = cpu_to_le32(get_current_settings(hdev));
1722

1723 1724
	return mgmt_generic_event(MGMT_EV_NEW_SETTINGS, hdev, &ev,
				  sizeof(ev), skip);
1725 1726
}

1727 1728 1729 1730 1731
int mgmt_new_settings(struct hci_dev *hdev)
{
	return new_settings(hdev, NULL);
}

1732 1733 1734 1735 1736 1737
struct cmd_lookup {
	struct sock *sk;
	struct hci_dev *hdev;
	u8 mgmt_status;
};

1738
static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data)
1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753
{
	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);
}

1754
static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data)
1755 1756 1757
{
	u8 *status = data;

1758
	mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
1759 1760 1761
	mgmt_pending_remove(cmd);
}

1762
static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data)
1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775
{
	if (cmd->cmd_complete) {
		u8 *status = data;

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

		return;
	}

	cmd_status_rsp(cmd, data);
}

1776
static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
1777
{
1778 1779
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, cmd->param_len);
1780 1781
}

1782
static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
1783
{
1784 1785
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, sizeof(struct mgmt_addr_info));
1786 1787
}

1788 1789 1790 1791
static u8 mgmt_bredr_support(struct hci_dev *hdev)
{
	if (!lmp_bredr_capable(hdev))
		return MGMT_STATUS_NOT_SUPPORTED;
1792
	else if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1793 1794 1795 1796 1797 1798 1799 1800 1801
		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;
1802
	else if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1803 1804 1805 1806 1807
		return MGMT_STATUS_REJECTED;
	else
		return MGMT_STATUS_SUCCESS;
}

1808 1809
static void set_discoverable_complete(struct hci_dev *hdev, u8 status,
				      u16 opcode)
1810
{
1811
	struct mgmt_pending_cmd *cmd;
1812
	struct mgmt_mode *cp;
1813
	struct hci_request req;
1814 1815 1816 1817 1818 1819
	bool changed;

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

	hci_dev_lock(hdev);

1820
	cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
1821 1822 1823 1824 1825
	if (!cmd)
		goto unlock;

	if (status) {
		u8 mgmt_err = mgmt_status(status);
1826
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1827
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1828 1829 1830 1831
		goto remove_cmd;
	}

	cp = cmd->param;
1832
	if (cp->val) {
1833
		changed = !hci_dev_test_and_set_flag(hdev, HCI_DISCOVERABLE);
1834 1835 1836 1837 1838 1839 1840

		if (hdev->discov_timeout > 0) {
			int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
			queue_delayed_work(hdev->workqueue, &hdev->discov_off,
					   to);
		}
	} else {
1841
		changed = hci_dev_test_and_clear_flag(hdev, HCI_DISCOVERABLE);
1842
	}
1843 1844 1845 1846 1847 1848

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

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

1849 1850
	/* When the discoverable mode gets changed, make sure
	 * that class of device has the limited discoverable
1851 1852
	 * bit correctly set. Also update page scan based on whitelist
	 * entries.
1853 1854
	 */
	hci_req_init(&req, hdev);
1855
	__hci_update_page_scan(&req);
1856 1857 1858
	update_class(&req);
	hci_req_run(&req, NULL);

1859 1860 1861 1862 1863 1864 1865
remove_cmd:
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

1866
static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
1867
			    u16 len)
1868
{
1869
	struct mgmt_cp_set_discoverable *cp = data;
1870
	struct mgmt_pending_cmd *cmd;
1871
	struct hci_request req;
1872
	u16 timeout;
1873
	u8 scan;
1874 1875
	int err;

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

1878 1879
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1880 1881
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_REJECTED);
1882

1883
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
1884 1885
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1886

1887
	timeout = __le16_to_cpu(cp->timeout);
1888 1889 1890 1891 1892 1893

	/* 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))
1894 1895
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1896

1897
	hci_dev_lock(hdev);
1898

1899
	if (!hdev_is_powered(hdev) && timeout > 0) {
1900 1901
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_NOT_POWERED);
1902 1903 1904
		goto failed;
	}

1905 1906
	if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
	    pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
1907 1908
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_BUSY);
1909 1910 1911
		goto failed;
	}

1912
	if (!hci_dev_test_flag(hdev, HCI_CONNECTABLE)) {
1913 1914
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_REJECTED);
1915 1916 1917 1918
		goto failed;
	}

	if (!hdev_is_powered(hdev)) {
1919 1920
		bool changed = false;

1921 1922 1923 1924
		/* 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.
		 */
1925
		if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
1926
			hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
1927 1928 1929
			changed = true;
		}

1930
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1931 1932 1933 1934 1935 1936
		if (err < 0)
			goto failed;

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

1937 1938 1939
		goto failed;
	}

1940 1941 1942 1943
	/* 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.
	 */
1944 1945 1946
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
	    (cp->val == 0x02) == hci_dev_test_flag(hdev,
						   HCI_LIMITED_DISCOVERABLE)) {
1947 1948
		cancel_delayed_work(&hdev->discov_off);
		hdev->discov_timeout = timeout;
1949

1950 1951
		if (cp->val && hdev->discov_timeout > 0) {
			int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1952
			queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1953
					   to);
1954 1955
		}

1956
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1957 1958 1959
		goto failed;
	}

1960
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1961 1962
	if (!cmd) {
		err = -ENOMEM;
1963
		goto failed;
1964
	}
1965

1966 1967 1968 1969 1970 1971 1972
	/* 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;

1973 1974
	/* Limited discoverable mode */
	if (cp->val == 0x02)
1975
		hci_dev_set_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1976
	else
1977
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1978

1979 1980
	hci_req_init(&req, hdev);

1981 1982 1983
	/* The procedure for LE-only controllers is much simpler - just
	 * update the advertising data.
	 */
1984
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1985 1986
		goto update_ad;

1987 1988
	scan = SCAN_PAGE;

1989 1990 1991 1992 1993
	if (cp->val) {
		struct hci_cp_write_current_iac_lap hci_cp;

		if (cp->val == 0x02) {
			/* Limited discoverable mode */
1994
			hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011
			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);

2012
		scan |= SCAN_INQUIRY;
2013
	} else {
2014
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
2015
	}
2016

2017
	hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
2018

2019 2020 2021
update_ad:
	update_adv_data(&req);

2022
	err = hci_req_run(&req, set_discoverable_complete);
2023
	if (err < 0)
2024
		mgmt_pending_remove(cmd);
2025 2026

failed:
2027
	hci_dev_unlock(hdev);
2028 2029 2030
	return err;
}

2031 2032
static void write_fast_connectable(struct hci_request *req, bool enable)
{
2033
	struct hci_dev *hdev = req->hdev;
2034 2035 2036
	struct hci_cp_write_page_scan_activity acp;
	u8 type;

2037
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
2038 2039
		return;

2040 2041 2042
	if (hdev->hci_ver < BLUETOOTH_VER_1_2)
		return;

2043 2044 2045 2046
	if (enable) {
		type = PAGE_SCAN_TYPE_INTERLACED;

		/* 160 msec page scan interval */
2047
		acp.interval = cpu_to_le16(0x0100);
2048 2049 2050 2051
	} else {
		type = PAGE_SCAN_TYPE_STANDARD;	/* default */

		/* default 1.28 sec page scan */
2052
		acp.interval = cpu_to_le16(0x0800);
2053 2054
	}

2055
	acp.window = cpu_to_le16(0x0012);
2056

2057 2058 2059 2060 2061 2062 2063
	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);
2064 2065
}

2066 2067
static void set_connectable_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
2068
{
2069
	struct mgmt_pending_cmd *cmd;
2070
	struct mgmt_mode *cp;
2071
	bool conn_changed, discov_changed;
2072 2073 2074 2075 2076

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

	hci_dev_lock(hdev);

2077
	cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
2078 2079 2080
	if (!cmd)
		goto unlock;

2081 2082
	if (status) {
		u8 mgmt_err = mgmt_status(status);
2083
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
2084 2085 2086
		goto remove_cmd;
	}

2087
	cp = cmd->param;
2088
	if (cp->val) {
2089 2090
		conn_changed = !hci_dev_test_and_set_flag(hdev,
							  HCI_CONNECTABLE);
2091 2092
		discov_changed = false;
	} else {
2093 2094 2095 2096
		conn_changed = hci_dev_test_and_clear_flag(hdev,
							   HCI_CONNECTABLE);
		discov_changed = hci_dev_test_and_clear_flag(hdev,
							     HCI_DISCOVERABLE);
2097
	}
2098

2099 2100
	send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);

2101
	if (conn_changed || discov_changed) {
2102
		new_settings(hdev, cmd->sk);
2103
		hci_update_page_scan(hdev);
2104 2105
		if (discov_changed)
			mgmt_update_adv_data(hdev);
2106 2107
		hci_update_background_scan(hdev);
	}
2108

2109
remove_cmd:
2110 2111 2112 2113 2114 2115
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

2116 2117 2118 2119 2120 2121
static int set_connectable_update_settings(struct hci_dev *hdev,
					   struct sock *sk, u8 val)
{
	bool changed = false;
	int err;

2122
	if (!!val != hci_dev_test_flag(hdev, HCI_CONNECTABLE))
2123 2124 2125
		changed = true;

	if (val) {
2126
		hci_dev_set_flag(hdev, HCI_CONNECTABLE);
2127
	} else {
2128 2129
		hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
		hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
2130 2131 2132 2133 2134 2135
	}

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

2136
	if (changed) {
2137
		hci_update_page_scan(hdev);
2138
		hci_update_background_scan(hdev);
2139
		return new_settings(hdev, sk);
2140
	}
2141 2142 2143 2144

	return 0;
}

2145
static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
2146
			   u16 len)
2147
{
2148
	struct mgmt_mode *cp = data;
2149
	struct mgmt_pending_cmd *cmd;
2150
	struct hci_request req;
2151
	u8 scan;
2152 2153
	int err;

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

2156 2157
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
2158 2159
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				       MGMT_STATUS_REJECTED);
2160

2161
	if (cp->val != 0x00 && cp->val != 0x01)
2162 2163
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				       MGMT_STATUS_INVALID_PARAMS);
2164

2165
	hci_dev_lock(hdev);
2166

2167
	if (!hdev_is_powered(hdev)) {
2168
		err = set_connectable_update_settings(hdev, sk, cp->val);
2169 2170 2171
		goto failed;
	}

2172 2173
	if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
	    pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
2174 2175
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				      MGMT_STATUS_BUSY);
2176 2177 2178
		goto failed;
	}

2179
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
2180 2181
	if (!cmd) {
		err = -ENOMEM;
2182
		goto failed;
2183
	}
2184

2185
	hci_req_init(&req, hdev);
2186

2187 2188 2189 2190
	/* If BR/EDR is not enabled and we disable advertising as a
	 * by-product of disabling connectable, we need to update the
	 * advertising flags.
	 */
2191
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
2192
		if (!cp->val) {
2193 2194
			hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
			hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
2195 2196 2197
		}
		update_adv_data(&req);
	} else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
2198 2199 2200
		if (cp->val) {
			scan = SCAN_PAGE;
		} else {
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212
			/* 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;
2213 2214

			if (test_bit(HCI_ISCAN, &hdev->flags) &&
2215
			    hdev->discov_timeout > 0)
2216 2217
				cancel_delayed_work(&hdev->discov_off);
		}
2218

2219 2220
		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
	}
2221

2222
no_scan_update:
2223
	/* Update the advertising parameters if necessary */
2224 2225
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
	    hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
2226 2227
		enable_advertising(&req);

2228
	err = hci_req_run(&req, set_connectable_complete);
2229
	if (err < 0) {
2230
		mgmt_pending_remove(cmd);
2231
		if (err == -ENODATA)
2232 2233
			err = set_connectable_update_settings(hdev, sk,
							      cp->val);
2234 2235
		goto failed;
	}
2236 2237

failed:
2238
	hci_dev_unlock(hdev);
2239 2240 2241
	return err;
}

2242
static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
2243
			u16 len)
2244
{
2245
	struct mgmt_mode *cp = data;
2246
	bool changed;
2247 2248
	int err;

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

2251
	if (cp->val != 0x00 && cp->val != 0x01)
2252 2253
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE,
				       MGMT_STATUS_INVALID_PARAMS);
2254

2255
	hci_dev_lock(hdev);
2256 2257

	if (cp->val)
2258
		changed = !hci_dev_test_and_set_flag(hdev, HCI_BONDABLE);
2259
	else
2260
		changed = hci_dev_test_and_clear_flag(hdev, HCI_BONDABLE);
2261

2262
	err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
2263
	if (err < 0)
2264
		goto unlock;
2265

2266 2267
	if (changed)
		err = new_settings(hdev, sk);
2268

2269
unlock:
2270
	hci_dev_unlock(hdev);
2271 2272 2273
	return err;
}

2274 2275
static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
2276 2277
{
	struct mgmt_mode *cp = data;
2278
	struct mgmt_pending_cmd *cmd;
2279
	u8 val, status;
2280 2281
	int err;

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

2284 2285
	status = mgmt_bredr_support(hdev);
	if (status)
2286 2287
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				       status);
2288

2289
	if (cp->val != 0x00 && cp->val != 0x01)
2290 2291
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				       MGMT_STATUS_INVALID_PARAMS);
2292

2293 2294
	hci_dev_lock(hdev);

2295
	if (!hdev_is_powered(hdev)) {
2296 2297
		bool changed = false;

2298
		if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
2299
			hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
2300 2301 2302 2303 2304 2305 2306 2307 2308 2309
			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);

2310 2311 2312
		goto failed;
	}

2313
	if (pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
2314 2315
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				      MGMT_STATUS_BUSY);
2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342
		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;
}

2343
static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2344 2345
{
	struct mgmt_mode *cp = data;
2346
	struct mgmt_pending_cmd *cmd;
2347
	u8 status;
2348 2349
	int err;

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

2352 2353
	status = mgmt_bredr_support(hdev);
	if (status)
2354
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
2355

2356
	if (!lmp_ssp_capable(hdev))
2357 2358
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				       MGMT_STATUS_NOT_SUPPORTED);
2359

2360
	if (cp->val != 0x00 && cp->val != 0x01)
2361 2362
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				       MGMT_STATUS_INVALID_PARAMS);
2363

2364
	hci_dev_lock(hdev);
2365

2366
	if (!hdev_is_powered(hdev)) {
2367
		bool changed;
2368

2369
		if (cp->val) {
2370 2371
			changed = !hci_dev_test_and_set_flag(hdev,
							     HCI_SSP_ENABLED);
2372
		} else {
2373 2374
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_SSP_ENABLED);
2375
			if (!changed)
2376 2377
				changed = hci_dev_test_and_clear_flag(hdev,
								      HCI_HS_ENABLED);
2378
			else
2379
				hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
2380 2381 2382 2383 2384 2385 2386 2387 2388
		}

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

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

2389 2390 2391
		goto failed;
	}

2392
	if (pending_find(MGMT_OP_SET_SSP, hdev)) {
2393 2394
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				      MGMT_STATUS_BUSY);
2395 2396 2397
		goto failed;
	}

2398
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
2399 2400 2401 2402 2403 2404 2405 2406 2407 2408
		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;
	}

2409
	if (!cp->val && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
2410 2411 2412
		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
			     sizeof(cp->val), &cp->val);

2413
	err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
2414 2415 2416 2417 2418 2419 2420 2421 2422 2423
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

2424
static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2425 2426
{
	struct mgmt_mode *cp = data;
2427
	bool changed;
2428
	u8 status;
2429
	int err;
2430

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

2433 2434
	status = mgmt_bredr_support(hdev);
	if (status)
2435
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
2436

2437
	if (!lmp_ssp_capable(hdev))
2438 2439
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_NOT_SUPPORTED);
2440

2441
	if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
2442 2443
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_REJECTED);
2444

2445
	if (cp->val != 0x00 && cp->val != 0x01)
2446 2447
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_INVALID_PARAMS);
2448

2449 2450
	hci_dev_lock(hdev);

2451
	if (pending_find(MGMT_OP_SET_SSP, hdev)) {
2452 2453
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				      MGMT_STATUS_BUSY);
2454 2455 2456
		goto unlock;
	}

2457
	if (cp->val) {
2458
		changed = !hci_dev_test_and_set_flag(hdev, HCI_HS_ENABLED);
2459 2460
	} else {
		if (hdev_is_powered(hdev)) {
2461 2462
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
					      MGMT_STATUS_REJECTED);
2463 2464 2465
			goto unlock;
		}

2466
		changed = hci_dev_test_and_clear_flag(hdev, HCI_HS_ENABLED);
2467
	}
2468 2469 2470 2471 2472 2473 2474

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

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

2476 2477 2478
unlock:
	hci_dev_unlock(hdev);
	return err;
2479 2480
}

2481
static void le_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2482 2483 2484
{
	struct cmd_lookup match = { NULL, hdev };

2485 2486
	hci_dev_lock(hdev);

2487 2488 2489 2490 2491
	if (status) {
		u8 mgmt_err = mgmt_status(status);

		mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
				     &mgmt_err);
2492
		goto unlock;
2493 2494 2495 2496 2497 2498 2499 2500
	}

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

	new_settings(hdev, match.sk);

	if (match.sk)
		sock_put(match.sk);
2501 2502 2503 2504 2505 2506

	/* 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.
	 */
2507
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
2508 2509 2510
		struct hci_request req;

		hci_req_init(&req, hdev);
2511
		update_adv_data(&req);
2512
		update_scan_rsp_data(&req);
2513
		hci_req_run(&req, NULL);
2514
		hci_update_background_scan(hdev);
2515
	}
2516 2517 2518

unlock:
	hci_dev_unlock(hdev);
2519 2520
}

2521
static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2522 2523 2524
{
	struct mgmt_mode *cp = data;
	struct hci_cp_write_le_host_supported hci_cp;
2525
	struct mgmt_pending_cmd *cmd;
2526
	struct hci_request req;
2527
	int err;
2528
	u8 val, enabled;
2529

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

2532
	if (!lmp_le_capable(hdev))
2533 2534
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_NOT_SUPPORTED);
2535

2536
	if (cp->val != 0x00 && cp->val != 0x01)
2537 2538
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_INVALID_PARAMS);
2539

2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552
	/* Bluetooth single mode LE only controllers or dual-mode
	 * controllers configured as LE only devices, do not allow
	 * switching LE off. These have either LE enabled explicitly
	 * or BR/EDR has been previously switched off.
	 *
	 * When trying to enable an already enabled LE, then gracefully
	 * send a positive response. Trying to disable it however will
	 * result into rejection.
	 */
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
		if (cp->val == 0x01)
			return send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);

2553 2554
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_REJECTED);
2555
	}
2556

2557
	hci_dev_lock(hdev);
2558 2559

	val = !!cp->val;
2560
	enabled = lmp_host_le_capable(hdev);
2561

2562 2563 2564
	if (!val)
		clear_adv_instance(hdev, NULL, 0x00, true);

2565
	if (!hdev_is_powered(hdev) || val == enabled) {
2566 2567
		bool changed = false;

2568
		if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
2569
			hci_dev_change_flag(hdev, HCI_LE_ENABLED);
2570 2571 2572
			changed = true;
		}

2573
		if (!val && hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
2574
			hci_dev_clear_flag(hdev, HCI_ADVERTISING);
2575 2576 2577
			changed = true;
		}

2578 2579
		err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
		if (err < 0)
2580
			goto unlock;
2581 2582 2583 2584

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

2585
		goto unlock;
2586 2587
	}

2588 2589
	if (pending_find(MGMT_OP_SET_LE, hdev) ||
	    pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
2590 2591
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				      MGMT_STATUS_BUSY);
2592
		goto unlock;
2593 2594 2595 2596 2597
	}

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

2601 2602
	hci_req_init(&req, hdev);

2603 2604 2605 2606
	memset(&hci_cp, 0, sizeof(hci_cp));

	if (val) {
		hci_cp.le = val;
2607
		hci_cp.simul = 0x00;
2608
	} else {
2609
		if (hci_dev_test_flag(hdev, HCI_LE_ADV))
2610
			disable_advertising(&req);
2611 2612
	}

2613 2614 2615 2616
	hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
		    &hci_cp);

	err = hci_req_run(&req, le_enable_complete);
2617
	if (err < 0)
2618 2619
		mgmt_pending_remove(cmd);

2620 2621
unlock:
	hci_dev_unlock(hdev);
2622 2623 2624
	return err;
}

2625 2626 2627 2628 2629 2630 2631 2632
/* 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)
{
2633
	struct mgmt_pending_cmd *cmd;
2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647

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

2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666
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;
}

2667 2668
static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
{
2669
	struct mgmt_pending_cmd *cmd;
2670 2671 2672

	hci_dev_lock(hdev);

2673
	cmd = pending_find(mgmt_op, hdev);
2674 2675 2676
	if (!cmd)
		goto unlock;

2677 2678
	mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
			  mgmt_status(status), hdev->dev_class, 3);
2679 2680 2681 2682 2683 2684 2685

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

2686
static void add_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2687 2688 2689 2690 2691 2692
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
}

2693
static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2694
{
2695
	struct mgmt_cp_add_uuid *cp = data;
2696
	struct mgmt_pending_cmd *cmd;
2697
	struct hci_request req;
2698 2699 2700
	struct bt_uuid *uuid;
	int err;

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

2703
	hci_dev_lock(hdev);
2704

2705
	if (pending_eir_or_class(hdev)) {
2706 2707
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
				      MGMT_STATUS_BUSY);
2708 2709 2710
		goto failed;
	}

2711
	uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
2712 2713 2714 2715 2716 2717
	if (!uuid) {
		err = -ENOMEM;
		goto failed;
	}

	memcpy(uuid->uuid, cp->uuid, 16);
2718
	uuid->svc_hint = cp->svc_hint;
2719
	uuid->size = get_uuid_size(cp->uuid);
2720

2721
	list_add_tail(&uuid->list, &hdev->uuids);
2722

2723
	hci_req_init(&req, hdev);
2724

2725 2726 2727
	update_class(&req);
	update_eir(&req);

2728 2729 2730 2731
	err = hci_req_run(&req, add_uuid_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto failed;
2732

2733 2734
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
					hdev->dev_class, 3);
2735 2736 2737 2738
		goto failed;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
2739
	if (!cmd) {
2740
		err = -ENOMEM;
2741 2742 2743 2744
		goto failed;
	}

	err = 0;
2745 2746

failed:
2747
	hci_dev_unlock(hdev);
2748 2749 2750
	return err;
}

2751 2752 2753 2754 2755
static bool enable_service_cache(struct hci_dev *hdev)
{
	if (!hdev_is_powered(hdev))
		return false;

2756
	if (!hci_dev_test_and_set_flag(hdev, HCI_SERVICE_CACHE)) {
2757 2758
		queue_delayed_work(hdev->workqueue, &hdev->service_cache,
				   CACHE_TIMEOUT);
2759 2760 2761 2762 2763 2764
		return true;
	}

	return false;
}

2765
static void remove_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2766 2767 2768 2769 2770 2771
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
}

2772
static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
2773
		       u16 len)
2774
{
2775
	struct mgmt_cp_remove_uuid *cp = data;
2776
	struct mgmt_pending_cmd *cmd;
2777
	struct bt_uuid *match, *tmp;
2778
	u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2779
	struct hci_request req;
2780 2781
	int err, found;

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

2784
	hci_dev_lock(hdev);
2785

2786
	if (pending_eir_or_class(hdev)) {
2787 2788
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
				      MGMT_STATUS_BUSY);
2789 2790 2791
		goto unlock;
	}

2792
	if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
2793
		hci_uuids_clear(hdev);
2794

2795
		if (enable_service_cache(hdev)) {
2796 2797 2798
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_UUID,
						0, hdev->dev_class, 3);
2799 2800
			goto unlock;
		}
2801

2802
		goto update_class;
2803 2804 2805 2806
	}

	found = 0;

2807
	list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
2808 2809 2810 2811
		if (memcmp(match->uuid, cp->uuid, 16) != 0)
			continue;

		list_del(&match->list);
2812
		kfree(match);
2813 2814 2815 2816
		found++;
	}

	if (found == 0) {
2817 2818
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
				      MGMT_STATUS_INVALID_PARAMS);
2819 2820 2821
		goto unlock;
	}

2822
update_class:
2823
	hci_req_init(&req, hdev);
2824

2825 2826 2827
	update_class(&req);
	update_eir(&req);

2828 2829 2830 2831
	err = hci_req_run(&req, remove_uuid_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto unlock;
2832

2833 2834
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
					hdev->dev_class, 3);
2835 2836 2837 2838
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
2839
	if (!cmd) {
2840
		err = -ENOMEM;
2841 2842 2843 2844
		goto unlock;
	}

	err = 0;
2845 2846

unlock:
2847
	hci_dev_unlock(hdev);
2848 2849 2850
	return err;
}

2851
static void set_class_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2852 2853 2854 2855 2856 2857
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
}

2858
static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
2859
			 u16 len)
2860
{
2861
	struct mgmt_cp_set_dev_class *cp = data;
2862
	struct mgmt_pending_cmd *cmd;
2863
	struct hci_request req;
2864 2865
	int err;

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

2868
	if (!lmp_bredr_capable(hdev))
2869 2870
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				       MGMT_STATUS_NOT_SUPPORTED);
2871

2872
	hci_dev_lock(hdev);
2873

2874
	if (pending_eir_or_class(hdev)) {
2875 2876
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				      MGMT_STATUS_BUSY);
2877 2878
		goto unlock;
	}
2879

2880
	if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
2881 2882
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				      MGMT_STATUS_INVALID_PARAMS);
2883 2884
		goto unlock;
	}
2885

2886 2887 2888
	hdev->major_class = cp->major;
	hdev->minor_class = cp->minor;

2889
	if (!hdev_is_powered(hdev)) {
2890 2891
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
					hdev->dev_class, 3);
2892 2893 2894
		goto unlock;
	}

2895 2896
	hci_req_init(&req, hdev);

2897
	if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) {
2898 2899 2900
		hci_dev_unlock(hdev);
		cancel_delayed_work_sync(&hdev->service_cache);
		hci_dev_lock(hdev);
2901
		update_eir(&req);
2902
	}
2903

2904 2905
	update_class(&req);

2906 2907 2908 2909
	err = hci_req_run(&req, set_class_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto unlock;
2910

2911 2912
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
					hdev->dev_class, 3);
2913 2914 2915 2916
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
2917
	if (!cmd) {
2918
		err = -ENOMEM;
2919 2920 2921 2922
		goto unlock;
	}

	err = 0;
2923

2924
unlock:
2925
	hci_dev_unlock(hdev);
2926 2927 2928
	return err;
}

2929
static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
2930
			  u16 len)
2931
{
2932
	struct mgmt_cp_load_link_keys *cp = data;
2933 2934
	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_link_key_info));
2935
	u16 key_count, expected_len;
2936
	bool changed;
2937
	int i;
2938

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

	if (!lmp_bredr_capable(hdev))
2942 2943
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_NOT_SUPPORTED);
2944

2945
	key_count = __le16_to_cpu(cp->key_count);
2946 2947 2948
	if (key_count > max_key_count) {
		BT_ERR("load_link_keys: too big key_count value %u",
		       key_count);
2949 2950
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2951
	}
2952

2953 2954
	expected_len = sizeof(*cp) + key_count *
					sizeof(struct mgmt_link_key_info);
2955
	if (expected_len != len) {
2956
		BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
2957
		       expected_len, len);
2958 2959
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2960 2961
	}

2962
	if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
2963 2964
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2965

2966
	BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
2967
	       key_count);
2968

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

2972
		if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
2973 2974 2975
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_LINK_KEYS,
					       MGMT_STATUS_INVALID_PARAMS);
2976 2977
	}

2978
	hci_dev_lock(hdev);
2979 2980 2981 2982

	hci_link_keys_clear(hdev);

	if (cp->debug_keys)
2983
		changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
2984
	else
2985 2986
		changed = hci_dev_test_and_clear_flag(hdev,
						      HCI_KEEP_DEBUG_KEYS);
2987 2988 2989

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

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

2994 2995 2996 2997 2998 2999
		/* Always ignore debug keys and require a new pairing if
		 * the user wants to use them.
		 */
		if (key->type == HCI_LK_DEBUG_COMBINATION)
			continue;

3000 3001
		hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
				 key->type, key->pin_len, NULL);
3002 3003
	}

3004
	mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
3005

3006
	hci_dev_unlock(hdev);
3007

3008
	return 0;
3009 3010
}

3011
static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
3012
			   u8 addr_type, struct sock *skip_sk)
3013 3014 3015 3016 3017 3018 3019
{
	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),
3020
			  skip_sk);
3021 3022
}

3023
static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3024
			 u16 len)
3025
{
3026 3027
	struct mgmt_cp_unpair_device *cp = data;
	struct mgmt_rp_unpair_device rp;
3028
	struct hci_conn_params *params;
3029
	struct mgmt_pending_cmd *cmd;
3030
	struct hci_conn *conn;
3031
	u8 addr_type;
3032 3033
	int err;

3034
	memset(&rp, 0, sizeof(rp));
3035 3036
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;
3037

3038
	if (!bdaddr_type_is_valid(cp->addr.type))
3039 3040 3041
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3042

3043
	if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
3044 3045 3046
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3047

3048 3049
	hci_dev_lock(hdev);

3050
	if (!hdev_is_powered(hdev)) {
3051 3052 3053
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
3054 3055 3056
		goto unlock;
	}

3057
	if (cp->addr.type == BDADDR_BREDR) {
3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070
		/* 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;

3071
		err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
3072 3073 3074 3075 3076 3077
		if (err < 0) {
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_UNPAIR_DEVICE,
						MGMT_STATUS_NOT_PAIRED, &rp,
						sizeof(rp));
			goto unlock;
3078 3079
		}

3080
		goto done;
3081
	}
3082

3083 3084 3085 3086 3087 3088
	/* LE address type */
	addr_type = le_addr_type(cp->addr.type);

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

	err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
3089
	if (err < 0) {
3090 3091 3092
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					MGMT_STATUS_NOT_PAIRED, &rp,
					sizeof(rp));
3093 3094 3095
		goto unlock;
	}

3096 3097 3098 3099 3100 3101
	conn = hci_conn_hash_lookup_le(hdev, &cp->addr.bdaddr, addr_type);
	if (!conn) {
		hci_conn_params_del(hdev, &cp->addr.bdaddr, addr_type);
		goto done;
	}

3102 3103 3104
	/* Abort any ongoing SMP pairing */
	smp_cancel_pairing(conn);

3105 3106 3107 3108 3109
	/* 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);

3110 3111 3112 3113 3114 3115 3116 3117 3118
	/* Disable auto-connection parameters if present */
	params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr, addr_type);
	if (params) {
		if (params->explicit_connect)
			params->auto_connect = HCI_AUTO_CONN_EXPLICIT;
		else
			params->auto_connect = HCI_AUTO_CONN_DISABLED;
	}

3119 3120 3121 3122 3123 3124 3125
	/* If disconnection is not requested, then clear the connection
	 * variable so that the link is not terminated.
	 */
	if (!cp->disconnect)
		conn = NULL;

done:
3126 3127 3128
	/* If the connection variable is set, then termination of the
	 * link is requested.
	 */
3129
	if (!conn) {
3130 3131
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
					&rp, sizeof(rp));
3132
		device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
3133 3134
		goto unlock;
	}
3135

3136
	cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
3137
			       sizeof(*cp));
3138 3139 3140
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
3141 3142
	}

3143 3144
	cmd->cmd_complete = addr_cmd_complete;

3145
	err = hci_abort_conn(conn, HCI_ERROR_REMOTE_USER_TERM);
3146 3147 3148
	if (err < 0)
		mgmt_pending_remove(cmd);

3149
unlock:
3150
	hci_dev_unlock(hdev);
3151 3152 3153
	return err;
}

3154
static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
3155
		      u16 len)
3156
{
3157
	struct mgmt_cp_disconnect *cp = data;
3158
	struct mgmt_rp_disconnect rp;
3159
	struct mgmt_pending_cmd *cmd;
3160 3161 3162 3163 3164
	struct hci_conn *conn;
	int err;

	BT_DBG("");

3165 3166 3167 3168
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

3169
	if (!bdaddr_type_is_valid(cp->addr.type))
3170 3171 3172
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3173

3174
	hci_dev_lock(hdev);
3175 3176

	if (!test_bit(HCI_UP, &hdev->flags)) {
3177 3178 3179
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
3180 3181 3182
		goto failed;
	}

3183
	if (pending_find(MGMT_OP_DISCONNECT, hdev)) {
3184 3185
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
3186 3187 3188
		goto failed;
	}

3189
	if (cp->addr.type == BDADDR_BREDR)
3190 3191
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
					       &cp->addr.bdaddr);
3192
	else
3193 3194
		conn = hci_conn_hash_lookup_le(hdev, &cp->addr.bdaddr,
					       le_addr_type(cp->addr.type));
3195

3196
	if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
3197 3198 3199
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_NOT_CONNECTED, &rp,
					sizeof(rp));
3200 3201 3202
		goto failed;
	}

3203
	cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
3204 3205
	if (!cmd) {
		err = -ENOMEM;
3206
		goto failed;
3207
	}
3208

3209 3210
	cmd->cmd_complete = generic_cmd_complete;

3211
	err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
3212
	if (err < 0)
3213
		mgmt_pending_remove(cmd);
3214 3215

failed:
3216
	hci_dev_unlock(hdev);
3217 3218 3219
	return err;
}

3220
static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
3221 3222 3223
{
	switch (link_type) {
	case LE_LINK:
3224 3225
		switch (addr_type) {
		case ADDR_LE_DEV_PUBLIC:
3226
			return BDADDR_LE_PUBLIC;
3227

3228
		default:
3229
			/* Fallback to LE Random address type */
3230
			return BDADDR_LE_RANDOM;
3231
		}
3232

3233
	default:
3234
		/* Fallback to BR/EDR type */
3235
		return BDADDR_BREDR;
3236 3237 3238
	}
}

3239 3240
static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
3241 3242
{
	struct mgmt_rp_get_connections *rp;
3243
	struct hci_conn *c;
3244
	size_t rp_len;
3245 3246
	int err;
	u16 i;
3247 3248 3249

	BT_DBG("");

3250
	hci_dev_lock(hdev);
3251

3252
	if (!hdev_is_powered(hdev)) {
3253 3254
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
				      MGMT_STATUS_NOT_POWERED);
3255 3256 3257
		goto unlock;
	}

3258
	i = 0;
3259 3260
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
		if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
3261
			i++;
3262 3263
	}

3264
	rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
3265
	rp = kmalloc(rp_len, GFP_KERNEL);
3266
	if (!rp) {
3267 3268 3269 3270 3271
		err = -ENOMEM;
		goto unlock;
	}

	i = 0;
3272
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
3273 3274
		if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
			continue;
3275
		bacpy(&rp->addr[i].bdaddr, &c->dst);
3276
		rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
3277
		if (c->type == SCO_LINK || c->type == ESCO_LINK)
3278 3279 3280 3281
			continue;
		i++;
	}

3282
	rp->conn_count = cpu_to_le16(i);
3283

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

3287 3288
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
				rp_len);
3289

3290
	kfree(rp);
3291 3292

unlock:
3293
	hci_dev_unlock(hdev);
3294 3295 3296
	return err;
}

3297
static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3298
				   struct mgmt_cp_pin_code_neg_reply *cp)
3299
{
3300
	struct mgmt_pending_cmd *cmd;
3301 3302
	int err;

3303
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
3304
			       sizeof(*cp));
3305 3306 3307
	if (!cmd)
		return -ENOMEM;

3308
	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
3309
			   sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
3310 3311 3312 3313 3314 3315
	if (err < 0)
		mgmt_pending_remove(cmd);

	return err;
}

3316
static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3317
			  u16 len)
3318
{
3319
	struct hci_conn *conn;
3320
	struct mgmt_cp_pin_code_reply *cp = data;
3321
	struct hci_cp_pin_code_reply reply;
3322
	struct mgmt_pending_cmd *cmd;
3323 3324 3325 3326
	int err;

	BT_DBG("");

3327
	hci_dev_lock(hdev);
3328

3329
	if (!hdev_is_powered(hdev)) {
3330 3331
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
				      MGMT_STATUS_NOT_POWERED);
3332 3333 3334
		goto failed;
	}

3335
	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
3336
	if (!conn) {
3337 3338
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
				      MGMT_STATUS_NOT_CONNECTED);
3339 3340 3341 3342
		goto failed;
	}

	if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
3343 3344 3345
		struct mgmt_cp_pin_code_neg_reply ncp;

		memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
3346 3347 3348

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

3349
		err = send_pin_code_neg_reply(sk, hdev, &ncp);
3350
		if (err >= 0)
3351 3352
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
					      MGMT_STATUS_INVALID_PARAMS);
3353 3354 3355 3356

		goto failed;
	}

3357
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
3358 3359
	if (!cmd) {
		err = -ENOMEM;
3360
		goto failed;
3361
	}
3362

3363 3364
	cmd->cmd_complete = addr_cmd_complete;

3365
	bacpy(&reply.bdaddr, &cp->addr.bdaddr);
3366
	reply.pin_len = cp->pin_len;
3367
	memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
3368 3369 3370

	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
	if (err < 0)
3371
		mgmt_pending_remove(cmd);
3372 3373

failed:
3374
	hci_dev_unlock(hdev);
3375 3376 3377
	return err;
}

3378 3379
static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
3380
{
3381
	struct mgmt_cp_set_io_capability *cp = data;
3382 3383 3384

	BT_DBG("");

3385
	if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
3386 3387
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
					 MGMT_STATUS_INVALID_PARAMS, NULL, 0);
3388

3389
	hci_dev_lock(hdev);
3390 3391 3392 3393

	hdev->io_capability = cp->io_capability;

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

3396
	hci_dev_unlock(hdev);
3397

3398 3399
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0,
				 NULL, 0);
3400 3401
}

3402
static struct mgmt_pending_cmd *find_pairing(struct hci_conn *conn)
3403 3404
{
	struct hci_dev *hdev = conn->hdev;
3405
	struct mgmt_pending_cmd *cmd;
3406

3407
	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419
		if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
			continue;

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

		return cmd;
	}

	return NULL;
}

3420
static int pairing_complete(struct mgmt_pending_cmd *cmd, u8 status)
3421 3422 3423
{
	struct mgmt_rp_pair_device rp;
	struct hci_conn *conn = cmd->user_data;
3424
	int err;
3425

3426 3427
	bacpy(&rp.addr.bdaddr, &conn->dst);
	rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
3428

3429 3430
	err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE,
				status, &rp, sizeof(rp));
3431 3432 3433 3434 3435 3436

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

3437
	hci_conn_drop(conn);
3438 3439 3440 3441 3442

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

	hci_conn_put(conn);
3445 3446

	return err;
3447 3448
}

3449 3450 3451
void mgmt_smp_complete(struct hci_conn *conn, bool complete)
{
	u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
3452
	struct mgmt_pending_cmd *cmd;
3453 3454

	cmd = find_pairing(conn);
3455
	if (cmd) {
3456
		cmd->cmd_complete(cmd, status);
3457 3458
		mgmt_pending_remove(cmd);
	}
3459 3460
}

3461 3462
static void pairing_complete_cb(struct hci_conn *conn, u8 status)
{
3463
	struct mgmt_pending_cmd *cmd;
3464 3465 3466 3467

	BT_DBG("status %u", status);

	cmd = find_pairing(conn);
3468
	if (!cmd) {
3469
		BT_DBG("Unable to find a pending command");
3470 3471 3472 3473 3474
		return;
	}

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);
3475 3476
}

3477
static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
3478
{
3479
	struct mgmt_pending_cmd *cmd;
3480 3481 3482 3483 3484 3485 3486

	BT_DBG("status %u", status);

	if (!status)
		return;

	cmd = find_pairing(conn);
3487
	if (!cmd) {
3488
		BT_DBG("Unable to find a pending command");
3489 3490 3491 3492 3493
		return;
	}

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);
3494 3495
}

3496
static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3497
		       u16 len)
3498
{
3499
	struct mgmt_cp_pair_device *cp = data;
3500
	struct mgmt_rp_pair_device rp;
3501
	struct mgmt_pending_cmd *cmd;
3502 3503 3504 3505 3506 3507
	u8 sec_level, auth_type;
	struct hci_conn *conn;
	int err;

	BT_DBG("");

3508 3509 3510 3511
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

3512
	if (!bdaddr_type_is_valid(cp->addr.type))
3513 3514 3515
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3516

3517
	if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
3518 3519 3520
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3521

3522
	hci_dev_lock(hdev);
3523

3524
	if (!hdev_is_powered(hdev)) {
3525 3526 3527
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
3528 3529 3530
		goto unlock;
	}

3531 3532 3533 3534 3535 3536 3537
	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;
	}

3538
	sec_level = BT_SECURITY_MEDIUM;
3539
	auth_type = HCI_AT_DEDICATED_BONDING;
3540

3541
	if (cp->addr.type == BDADDR_BREDR) {
3542 3543
		conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
				       auth_type);
3544
	} else {
3545
		u8 addr_type = le_addr_type(cp->addr.type);
3546
		struct hci_conn_params *p;
3547

3548 3549 3550 3551 3552 3553 3554 3555 3556
		/* 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.
		 */
3557 3558 3559 3560
		p = hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);

		if (p->auto_connect == HCI_AUTO_CONN_EXPLICIT)
			p->auto_connect = HCI_AUTO_CONN_DISABLED;
3561

3562 3563 3564 3565
		conn = hci_connect_le_scan(hdev, &cp->addr.bdaddr,
					   addr_type, sec_level,
					   HCI_LE_CONN_TIMEOUT,
					   HCI_ROLE_MASTER);
3566
	}
3567

3568
	if (IS_ERR(conn)) {
3569 3570 3571 3572
		int status;

		if (PTR_ERR(conn) == -EBUSY)
			status = MGMT_STATUS_BUSY;
3573 3574 3575 3576
		else if (PTR_ERR(conn) == -EOPNOTSUPP)
			status = MGMT_STATUS_NOT_SUPPORTED;
		else if (PTR_ERR(conn) == -ECONNREFUSED)
			status = MGMT_STATUS_REJECTED;
3577 3578 3579
		else
			status = MGMT_STATUS_CONNECT_FAILED;

3580 3581
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					status, &rp, sizeof(rp));
3582 3583 3584 3585
		goto unlock;
	}

	if (conn->connect_cfm_cb) {
3586
		hci_conn_drop(conn);
3587 3588
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
3589 3590 3591
		goto unlock;
	}

3592
	cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
3593 3594
	if (!cmd) {
		err = -ENOMEM;
3595
		hci_conn_drop(conn);
3596 3597 3598
		goto unlock;
	}

3599 3600
	cmd->cmd_complete = pairing_complete;

3601
	/* For LE, just connecting isn't a proof that the pairing finished */
3602
	if (cp->addr.type == BDADDR_BREDR) {
3603
		conn->connect_cfm_cb = pairing_complete_cb;
3604 3605 3606 3607 3608 3609 3610
		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;
	}
3611

3612
	conn->io_capability = cp->io_cap;
3613
	cmd->user_data = hci_conn_get(conn);
3614

3615
	if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
3616 3617 3618 3619
	    hci_conn_security(conn, sec_level, auth_type, true)) {
		cmd->cmd_complete(cmd, 0);
		mgmt_pending_remove(cmd);
	}
3620 3621 3622 3623

	err = 0;

unlock:
3624
	hci_dev_unlock(hdev);
3625 3626 3627
	return err;
}

3628 3629
static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3630
{
3631
	struct mgmt_addr_info *addr = data;
3632
	struct mgmt_pending_cmd *cmd;
3633 3634 3635 3636 3637 3638 3639
	struct hci_conn *conn;
	int err;

	BT_DBG("");

	hci_dev_lock(hdev);

3640
	if (!hdev_is_powered(hdev)) {
3641 3642
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_NOT_POWERED);
3643 3644 3645
		goto unlock;
	}

3646
	cmd = pending_find(MGMT_OP_PAIR_DEVICE, hdev);
3647
	if (!cmd) {
3648 3649
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_INVALID_PARAMS);
3650 3651 3652 3653 3654 3655
		goto unlock;
	}

	conn = cmd->user_data;

	if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
3656 3657
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_INVALID_PARAMS);
3658 3659 3660
		goto unlock;
	}

3661 3662
	cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
	mgmt_pending_remove(cmd);
3663

3664 3665
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
				addr, sizeof(*addr));
3666 3667 3668 3669 3670
unlock:
	hci_dev_unlock(hdev);
	return err;
}

3671
static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
3672
			     struct mgmt_addr_info *addr, u16 mgmt_op,
3673
			     u16 hci_op, __le32 passkey)
3674
{
3675
	struct mgmt_pending_cmd *cmd;
3676
	struct hci_conn *conn;
3677 3678
	int err;

3679
	hci_dev_lock(hdev);
3680

3681
	if (!hdev_is_powered(hdev)) {
3682 3683 3684
		err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
					MGMT_STATUS_NOT_POWERED, addr,
					sizeof(*addr));
3685
		goto done;
3686 3687
	}

3688 3689
	if (addr->type == BDADDR_BREDR)
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
3690
	else
3691 3692
		conn = hci_conn_hash_lookup_le(hdev, &addr->bdaddr,
					       le_addr_type(addr->type));
3693 3694

	if (!conn) {
3695 3696 3697
		err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
					MGMT_STATUS_NOT_CONNECTED, addr,
					sizeof(*addr));
3698 3699
		goto done;
	}
3700

3701
	if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
3702 3703
		err = smp_user_confirm_reply(conn, mgmt_op, passkey);
		if (!err)
3704 3705 3706
			err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
						MGMT_STATUS_SUCCESS, addr,
						sizeof(*addr));
3707
		else
3708 3709 3710
			err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
						MGMT_STATUS_FAILED, addr,
						sizeof(*addr));
3711 3712 3713 3714

		goto done;
	}

3715
	cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
3716 3717
	if (!cmd) {
		err = -ENOMEM;
3718
		goto done;
3719 3720
	}

3721 3722
	cmd->cmd_complete = addr_cmd_complete;

3723
	/* Continue with pairing via HCI */
3724 3725 3726
	if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
		struct hci_cp_user_passkey_reply cp;

3727
		bacpy(&cp.bdaddr, &addr->bdaddr);
3728 3729 3730
		cp.passkey = passkey;
		err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
	} else
3731 3732
		err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
				   &addr->bdaddr);
3733

3734 3735
	if (err < 0)
		mgmt_pending_remove(cmd);
3736

3737
done:
3738
	hci_dev_unlock(hdev);
3739 3740 3741
	return err;
}

3742 3743 3744 3745 3746 3747 3748
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("");

3749
	return user_pairing_resp(sk, hdev, &cp->addr,
3750 3751 3752 3753
				MGMT_OP_PIN_CODE_NEG_REPLY,
				HCI_OP_PIN_CODE_NEG_REPLY, 0);
}

3754 3755
static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3756
{
3757
	struct mgmt_cp_user_confirm_reply *cp = data;
3758 3759 3760 3761

	BT_DBG("");

	if (len != sizeof(*cp))
3762 3763
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
				       MGMT_STATUS_INVALID_PARAMS);
3764

3765
	return user_pairing_resp(sk, hdev, &cp->addr,
3766 3767
				 MGMT_OP_USER_CONFIRM_REPLY,
				 HCI_OP_USER_CONFIRM_REPLY, 0);
3768 3769
}

3770
static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
3771
				  void *data, u16 len)
3772
{
3773
	struct mgmt_cp_user_confirm_neg_reply *cp = data;
3774 3775 3776

	BT_DBG("");

3777
	return user_pairing_resp(sk, hdev, &cp->addr,
3778 3779
				 MGMT_OP_USER_CONFIRM_NEG_REPLY,
				 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
3780 3781
}

3782 3783
static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3784
{
3785
	struct mgmt_cp_user_passkey_reply *cp = data;
3786 3787 3788

	BT_DBG("");

3789
	return user_pairing_resp(sk, hdev, &cp->addr,
3790 3791
				 MGMT_OP_USER_PASSKEY_REPLY,
				 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
3792 3793
}

3794
static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
3795
				  void *data, u16 len)
3796
{
3797
	struct mgmt_cp_user_passkey_neg_reply *cp = data;
3798 3799 3800

	BT_DBG("");

3801
	return user_pairing_resp(sk, hdev, &cp->addr,
3802 3803
				 MGMT_OP_USER_PASSKEY_NEG_REPLY,
				 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
3804 3805
}

3806
static void update_name(struct hci_request *req)
3807
{
3808
	struct hci_dev *hdev = req->hdev;
3809 3810
	struct hci_cp_write_local_name cp;

3811
	memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
3812

3813
	hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
3814 3815
}

3816
static void set_name_complete(struct hci_dev *hdev, u8 status, u16 opcode)
3817 3818
{
	struct mgmt_cp_set_local_name *cp;
3819
	struct mgmt_pending_cmd *cmd;
3820 3821 3822 3823 3824

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

	hci_dev_lock(hdev);

3825
	cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
3826 3827 3828 3829 3830 3831
	if (!cmd)
		goto unlock;

	cp = cmd->param;

	if (status)
3832 3833
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
			        mgmt_status(status));
3834
	else
3835 3836
		mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
				  cp, sizeof(*cp));
3837 3838 3839 3840 3841 3842 3843

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

3844
static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
3845
			  u16 len)
3846
{
3847
	struct mgmt_cp_set_local_name *cp = data;
3848
	struct mgmt_pending_cmd *cmd;
3849
	struct hci_request req;
3850 3851 3852 3853
	int err;

	BT_DBG("");

3854
	hci_dev_lock(hdev);
3855

3856 3857 3858 3859 3860 3861
	/* 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))) {
3862 3863
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
					data, len);
3864 3865 3866
		goto failed;
	}

3867
	memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
3868

3869
	if (!hdev_is_powered(hdev)) {
3870
		memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3871

3872 3873
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
					data, len);
3874 3875 3876
		if (err < 0)
			goto failed;

3877 3878
		err = mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev,
					 data, len, sk);
3879

3880 3881 3882
		goto failed;
	}

3883
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
3884 3885 3886 3887 3888
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

3889 3890
	memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));

3891
	hci_req_init(&req, hdev);
3892 3893 3894 3895 3896 3897

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

3898 3899 3900
	/* The name is stored in the scan response data and so
	 * no need to udpate the advertising data here.
	 */
3901
	if (lmp_le_capable(hdev))
3902
		update_scan_rsp_data(&req);
3903

3904
	err = hci_req_run(&req, set_name_complete);
3905 3906 3907 3908
	if (err < 0)
		mgmt_pending_remove(cmd);

failed:
3909
	hci_dev_unlock(hdev);
3910 3911 3912
	return err;
}

3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971
static void read_local_oob_data_complete(struct hci_dev *hdev, u8 status,
				         u16 opcode, struct sk_buff *skb)
{
	struct mgmt_rp_read_local_oob_data mgmt_rp;
	size_t rp_size = sizeof(mgmt_rp);
	struct mgmt_pending_cmd *cmd;

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

	cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
	if (!cmd)
		return;

	if (status || !skb) {
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				status ? mgmt_status(status) : MGMT_STATUS_FAILED);
		goto remove;
	}

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

	if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
		struct hci_rp_read_local_oob_data *rp = (void *) skb->data;

		if (skb->len < sizeof(*rp)) {
			mgmt_cmd_status(cmd->sk, hdev->id,
					MGMT_OP_READ_LOCAL_OOB_DATA,
					MGMT_STATUS_FAILED);
			goto remove;
		}

		memcpy(mgmt_rp.hash192, rp->hash, sizeof(rp->hash));
		memcpy(mgmt_rp.rand192, rp->rand, sizeof(rp->rand));

		rp_size -= sizeof(mgmt_rp.hash256) + sizeof(mgmt_rp.rand256);
	} else {
		struct hci_rp_read_local_oob_ext_data *rp = (void *) skb->data;

		if (skb->len < sizeof(*rp)) {
			mgmt_cmd_status(cmd->sk, hdev->id,
					MGMT_OP_READ_LOCAL_OOB_DATA,
					MGMT_STATUS_FAILED);
			goto remove;
		}

		memcpy(mgmt_rp.hash192, rp->hash192, sizeof(rp->hash192));
		memcpy(mgmt_rp.rand192, rp->rand192, sizeof(rp->rand192));

		memcpy(mgmt_rp.hash256, rp->hash256, sizeof(rp->hash256));
		memcpy(mgmt_rp.rand256, rp->rand256, sizeof(rp->rand256));
	}

	mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
			  MGMT_STATUS_SUCCESS, &mgmt_rp, rp_size);

remove:
	mgmt_pending_remove(cmd);
}

3972
static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
3973
			       void *data, u16 data_len)
3974
{
3975
	struct mgmt_pending_cmd *cmd;
3976
	struct hci_request req;
3977 3978
	int err;

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

3981
	hci_dev_lock(hdev);
3982

3983
	if (!hdev_is_powered(hdev)) {
3984 3985
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_NOT_POWERED);
3986 3987 3988
		goto unlock;
	}

3989
	if (!lmp_ssp_capable(hdev)) {
3990 3991
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_NOT_SUPPORTED);
3992 3993 3994
		goto unlock;
	}

3995
	if (pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
3996 3997
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_BUSY);
3998 3999 4000
		goto unlock;
	}

4001
	cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
4002 4003 4004 4005 4006
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

4007 4008
	hci_req_init(&req, hdev);

4009
	if (bredr_sc_enabled(hdev))
4010
		hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
4011
	else
4012
		hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
4013

4014
	err = hci_req_run_skb(&req, read_local_oob_data_complete);
4015 4016 4017 4018
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
4019
	hci_dev_unlock(hdev);
4020 4021 4022
	return err;
}

4023
static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
4024
			       void *data, u16 len)
4025
{
4026
	struct mgmt_addr_info *addr = data;
4027 4028
	int err;

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

4031
	if (!bdaddr_type_is_valid(addr->type))
4032 4033 4034 4035
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_ADD_REMOTE_OOB_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 addr, sizeof(*addr));
4036

4037
	hci_dev_lock(hdev);
4038

4039 4040 4041
	if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
		struct mgmt_cp_add_remote_oob_data *cp = data;
		u8 status;
4042

4043
		if (cp->addr.type != BDADDR_BREDR) {
4044 4045 4046 4047
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_ADD_REMOTE_OOB_DATA,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
4048 4049 4050
			goto unlock;
		}

4051
		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
4052 4053
					      cp->addr.type, cp->hash,
					      cp->rand, NULL, NULL);
4054 4055 4056 4057 4058
		if (err < 0)
			status = MGMT_STATUS_FAILED;
		else
			status = MGMT_STATUS_SUCCESS;

4059 4060 4061
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_REMOTE_OOB_DATA, status,
					&cp->addr, sizeof(cp->addr));
4062 4063
	} else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
		struct mgmt_cp_add_remote_oob_ext_data *cp = data;
4064
		u8 *rand192, *hash192, *rand256, *hash256;
4065 4066
		u8 status;

4067
		if (bdaddr_type_is_le(cp->addr.type)) {
4068 4069 4070 4071 4072
			/* 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)) {
4073 4074 4075 4076
				err = mgmt_cmd_complete(sk, hdev->id,
							MGMT_OP_ADD_REMOTE_OOB_DATA,
							MGMT_STATUS_INVALID_PARAMS,
							addr, sizeof(*addr));
4077 4078 4079
				goto unlock;
			}

4080 4081 4082
			rand192 = NULL;
			hash192 = NULL;
		} else {
4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105
			/* 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;
4106 4107
		}

4108
		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
4109
					      cp->addr.type, hash192, rand192,
4110
					      hash256, rand256);
4111 4112 4113 4114 4115
		if (err < 0)
			status = MGMT_STATUS_FAILED;
		else
			status = MGMT_STATUS_SUCCESS;

4116 4117 4118
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_REMOTE_OOB_DATA,
					status, &cp->addr, sizeof(cp->addr));
4119 4120
	} else {
		BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
4121 4122
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
				      MGMT_STATUS_INVALID_PARAMS);
4123
	}
4124

4125
unlock:
4126
	hci_dev_unlock(hdev);
4127 4128 4129
	return err;
}

4130
static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
4131
				  void *data, u16 len)
4132
{
4133
	struct mgmt_cp_remove_remote_oob_data *cp = data;
4134
	u8 status;
4135 4136
	int err;

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

4139
	if (cp->addr.type != BDADDR_BREDR)
4140 4141 4142 4143
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
4144

4145
	hci_dev_lock(hdev);
4146

4147 4148 4149 4150 4151 4152
	if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
		hci_remote_oob_data_clear(hdev);
		status = MGMT_STATUS_SUCCESS;
		goto done;
	}

4153
	err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
4154
	if (err < 0)
4155
		status = MGMT_STATUS_INVALID_PARAMS;
4156
	else
4157
		status = MGMT_STATUS_SUCCESS;
4158

4159
done:
4160 4161
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
				status, &cp->addr, sizeof(cp->addr));
4162

4163
	hci_dev_unlock(hdev);
4164 4165 4166
	return err;
}

4167
static bool trigger_bredr_inquiry(struct hci_request *req, u8 *status)
4168
{
4169
	struct hci_dev *hdev = req->hdev;
4170
	struct hci_cp_inquiry cp;
4171 4172
	/* General inquiry access code (GIAC) */
	u8 lap[3] = { 0x33, 0x8b, 0x9e };
4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198

	*status = mgmt_bredr_support(hdev);
	if (*status)
		return false;

	if (hci_dev_test_flag(hdev, HCI_INQUIRY)) {
		*status = MGMT_STATUS_BUSY;
		return false;
	}

	hci_inquiry_cache_flush(hdev);

	memset(&cp, 0, sizeof(cp));
	memcpy(&cp.lap, lap, sizeof(cp.lap));
	cp.length = DISCOV_BREDR_INQUIRY_LEN;

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

	return true;
}

static bool trigger_le_scan(struct hci_request *req, u16 interval, u8 *status)
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_scan_param param_cp;
	struct hci_cp_le_set_scan_enable enable_cp;
4199
	u8 own_addr_type;
4200 4201
	int err;

4202 4203 4204
	*status = mgmt_le_support(hdev);
	if (*status)
		return false;
4205

4206 4207 4208 4209
	if (hci_dev_test_flag(hdev, HCI_LE_ADV)) {
		/* Don't let discovery abort an outgoing connection attempt
		 * that's using directed advertising.
		 */
4210
		if (hci_lookup_le_connect(hdev)) {
4211
			*status = MGMT_STATUS_REJECTED;
4212 4213
			return false;
		}
4214

4215
		cancel_adv_timeout(hdev);
4216 4217
		disable_advertising(req);
	}
4218

4219 4220 4221 4222 4223 4224
	/* 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.
	 */
	if (hci_dev_test_flag(hdev, HCI_LE_SCAN))
		hci_req_add_le_scan_disable(req);
4225

4226 4227 4228 4229 4230 4231 4232 4233 4234
	/* All active scans will be done with either a resolvable private
	 * address (when privacy feature has been enabled) or non-resolvable
	 * private address.
	 */
	err = hci_update_random_address(req, true, &own_addr_type);
	if (err < 0) {
		*status = MGMT_STATUS_FAILED;
		return false;
	}
4235

4236 4237 4238 4239 4240
	memset(&param_cp, 0, sizeof(param_cp));
	param_cp.type = LE_SCAN_ACTIVE;
	param_cp.interval = cpu_to_le16(interval);
	param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
	param_cp.own_address_type = own_addr_type;
4241

4242 4243
	hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
		    &param_cp);
4244

4245 4246 4247
	memset(&enable_cp, 0, sizeof(enable_cp));
	enable_cp.enable = LE_SCAN_ENABLE;
	enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
4248

4249 4250 4251 4252 4253
	hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
		    &enable_cp);

	return true;
}
4254

4255 4256 4257
static bool trigger_discovery(struct hci_request *req, u8 *status)
{
	struct hci_dev *hdev = req->hdev;
4258

4259 4260 4261 4262 4263 4264 4265
	switch (hdev->discovery.type) {
	case DISCOV_TYPE_BREDR:
		if (!trigger_bredr_inquiry(req, status))
			return false;
		break;

	case DISCOV_TYPE_INTERLEAVED:
4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281
		if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY,
			     &hdev->quirks)) {
			/* During simultaneous discovery, we double LE scan
			 * interval. We must leave some time for the controller
			 * to do BR/EDR inquiry.
			 */
			if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT * 2,
					     status))
				return false;

			if (!trigger_bredr_inquiry(req, status))
				return false;

			return true;
		}

4282 4283
		if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
			*status = MGMT_STATUS_NOT_SUPPORTED;
4284 4285
			return false;
		}
4286
		/* fall through */
4287

4288 4289 4290
	case DISCOV_TYPE_LE:
		if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT, status))
			return false;
4291 4292 4293 4294 4295 4296 4297 4298
		break;

	default:
		*status = MGMT_STATUS_INVALID_PARAMS;
		return false;
	}

	return true;
4299 4300
}

4301 4302
static void start_discovery_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
4303
{
4304
	struct mgmt_pending_cmd *cmd;
4305
	unsigned long timeout;
4306

4307 4308
	BT_DBG("status %d", status);

4309
	hci_dev_lock(hdev);
4310

4311
	cmd = pending_find(MGMT_OP_START_DISCOVERY, hdev);
4312
	if (!cmd)
4313
		cmd = pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);
4314

4315
	if (cmd) {
4316
		cmd->cmd_complete(cmd, mgmt_status(status));
4317 4318
		mgmt_pending_remove(cmd);
	}
4319 4320

	if (status) {
4321 4322
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
		goto unlock;
4323 4324 4325 4326
	}

	hci_discovery_set_state(hdev, DISCOVERY_FINDING);

4327 4328 4329
	/* If the scan involves LE scan, pick proper timeout to schedule
	 * hdev->le_scan_disable that will stop it.
	 */
4330 4331
	switch (hdev->discovery.type) {
	case DISCOV_TYPE_LE:
4332
		timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
4333 4334
		break;
	case DISCOV_TYPE_INTERLEAVED:
4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346
		 /* When running simultaneous discovery, the LE scanning time
		 * should occupy the whole discovery time sine BR/EDR inquiry
		 * and LE scanning are scheduled by the controller.
		 *
		 * For interleaving discovery in comparison, BR/EDR inquiry
		 * and LE scanning are done sequentially with separate
		 * timeouts.
		 */
		if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks))
			timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
		else
			timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
4347 4348
		break;
	case DISCOV_TYPE_BREDR:
4349
		timeout = 0;
4350 4351 4352
		break;
	default:
		BT_ERR("Invalid discovery type %d", hdev->discovery.type);
4353 4354
		timeout = 0;
		break;
4355
	}
4356

4357 4358 4359 4360 4361 4362 4363 4364
	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) &&
4365
		    hdev->discovery.result_filtering) {
4366 4367 4368 4369
			hdev->discovery.scan_start = jiffies;
			hdev->discovery.scan_duration = timeout;
		}

4370 4371
		queue_delayed_work(hdev->workqueue,
				   &hdev->le_scan_disable, timeout);
4372
	}
4373

4374 4375
unlock:
	hci_dev_unlock(hdev);
4376 4377
}

4378
static int start_discovery(struct sock *sk, struct hci_dev *hdev,
4379
			   void *data, u16 len)
4380
{
4381
	struct mgmt_cp_start_discovery *cp = data;
4382
	struct mgmt_pending_cmd *cmd;
4383
	struct hci_request req;
4384
	u8 status;
4385 4386
	int err;

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

4389
	hci_dev_lock(hdev);
4390

4391
	if (!hdev_is_powered(hdev)) {
4392 4393 4394
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					MGMT_STATUS_NOT_POWERED,
					&cp->type, sizeof(cp->type));
4395 4396 4397
		goto failed;
	}

4398
	if (hdev->discovery.state != DISCOVERY_STOPPED ||
4399
	    hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
4400 4401 4402
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					MGMT_STATUS_BUSY, &cp->type,
					sizeof(cp->type));
4403 4404 4405
		goto failed;
	}

4406
	cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, data, len);
4407 4408 4409 4410 4411
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

4412 4413
	cmd->cmd_complete = generic_cmd_complete;

4414 4415 4416 4417 4418
	/* Clear the discovery filter first to free any previously
	 * allocated memory for the UUID list.
	 */
	hci_discovery_filter_clear(hdev);

A
Andre Guedes 已提交
4419
	hdev->discovery.type = cp->type;
4420
	hdev->discovery.report_invalid_rssi = false;
A
Andre Guedes 已提交
4421

4422 4423
	hci_req_init(&req, hdev);

4424
	if (!trigger_discovery(&req, &status)) {
4425 4426
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					status, &cp->type, sizeof(cp->type));
4427 4428
		mgmt_pending_remove(cmd);
		goto failed;
4429
	}
4430

4431
	err = hci_req_run(&req, start_discovery_complete);
4432
	if (err < 0) {
4433
		mgmt_pending_remove(cmd);
4434 4435
		goto failed;
	}
4436

4437
	hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4438

4439
failed:
4440
	hci_dev_unlock(hdev);
4441 4442
	return err;
}
4443

4444 4445
static int service_discovery_cmd_complete(struct mgmt_pending_cmd *cmd,
					  u8 status)
4446
{
4447 4448
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, 1);
4449
}
4450

4451 4452 4453 4454
static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
				   void *data, u16 len)
{
	struct mgmt_cp_start_service_discovery *cp = data;
4455
	struct mgmt_pending_cmd *cmd;
4456 4457 4458 4459 4460
	struct hci_request req;
	const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
	u16 uuid_count, expected_len;
	u8 status;
	int err;
4461

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

4464
	hci_dev_lock(hdev);
4465

4466
	if (!hdev_is_powered(hdev)) {
4467 4468 4469 4470
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_NOT_POWERED,
					&cp->type, sizeof(cp->type));
4471 4472
		goto failed;
	}
4473

4474
	if (hdev->discovery.state != DISCOVERY_STOPPED ||
4475
	    hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
4476 4477 4478 4479
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_BUSY, &cp->type,
					sizeof(cp->type));
4480 4481
		goto failed;
	}
4482

4483 4484 4485 4486
	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);
4487 4488 4489 4490
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS, &cp->type,
					sizeof(cp->type));
4491 4492 4493 4494 4495 4496 4497
		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);
4498 4499 4500 4501
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS, &cp->type,
					sizeof(cp->type));
4502 4503 4504 4505
		goto failed;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
4506
			       hdev, data, len);
4507 4508 4509 4510 4511
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

4512 4513
	cmd->cmd_complete = service_discovery_cmd_complete;

4514 4515 4516 4517 4518
	/* Clear the discovery filter first to free any previously
	 * allocated memory for the UUID list.
	 */
	hci_discovery_filter_clear(hdev);

4519
	hdev->discovery.result_filtering = true;
4520 4521 4522 4523 4524 4525 4526 4527
	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) {
4528 4529 4530 4531
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_START_SERVICE_DISCOVERY,
						MGMT_STATUS_FAILED,
						&cp->type, sizeof(cp->type));
4532 4533 4534
			mgmt_pending_remove(cmd);
			goto failed;
		}
4535
	}
4536

4537
	hci_req_init(&req, hdev);
4538

4539
	if (!trigger_discovery(&req, &status)) {
4540 4541 4542
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					status, &cp->type, sizeof(cp->type));
4543 4544
		mgmt_pending_remove(cmd);
		goto failed;
4545
	}
4546

4547
	err = hci_req_run(&req, start_discovery_complete);
4548
	if (err < 0) {
4549
		mgmt_pending_remove(cmd);
4550 4551 4552 4553
		goto failed;
	}

	hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4554 4555

failed:
4556
	hci_dev_unlock(hdev);
4557 4558 4559
	return err;
}

4560
static void stop_discovery_complete(struct hci_dev *hdev, u8 status, u16 opcode)
4561
{
4562
	struct mgmt_pending_cmd *cmd;
4563

4564 4565 4566 4567
	BT_DBG("status %d", status);

	hci_dev_lock(hdev);

4568
	cmd = pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
4569
	if (cmd) {
4570
		cmd->cmd_complete(cmd, mgmt_status(status));
4571
		mgmt_pending_remove(cmd);
4572 4573
	}

4574 4575
	if (!status)
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4576 4577 4578 4579

	hci_dev_unlock(hdev);
}

4580
static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
4581
			  u16 len)
4582
{
4583
	struct mgmt_cp_stop_discovery *mgmt_cp = data;
4584
	struct mgmt_pending_cmd *cmd;
4585
	struct hci_request req;
4586 4587
	int err;

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

4590
	hci_dev_lock(hdev);
4591

4592
	if (!hci_discovery_active(hdev)) {
4593 4594 4595
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
					MGMT_STATUS_REJECTED, &mgmt_cp->type,
					sizeof(mgmt_cp->type));
4596 4597 4598 4599
		goto unlock;
	}

	if (hdev->discovery.type != mgmt_cp->type) {
4600 4601 4602
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS,
					&mgmt_cp->type, sizeof(mgmt_cp->type));
4603
		goto unlock;
4604 4605
	}

4606
	cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
4607 4608
	if (!cmd) {
		err = -ENOMEM;
4609 4610 4611
		goto unlock;
	}

4612 4613
	cmd->cmd_complete = generic_cmd_complete;

4614 4615
	hci_req_init(&req, hdev);

4616
	hci_stop_discovery(&req);
4617

4618 4619 4620
	err = hci_req_run(&req, stop_discovery_complete);
	if (!err) {
		hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
4621
		goto unlock;
4622 4623
	}

4624 4625 4626 4627
	mgmt_pending_remove(cmd);

	/* If no HCI commands were sent we're done */
	if (err == -ENODATA) {
4628 4629
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
					&mgmt_cp->type, sizeof(mgmt_cp->type));
4630 4631
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
	}
4632

4633
unlock:
4634
	hci_dev_unlock(hdev);
4635 4636 4637
	return err;
}

4638
static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
4639
			u16 len)
4640
{
4641
	struct mgmt_cp_confirm_name *cp = data;
4642 4643 4644
	struct inquiry_entry *e;
	int err;

4645
	BT_DBG("%s", hdev->name);
4646 4647 4648

	hci_dev_lock(hdev);

4649
	if (!hci_discovery_active(hdev)) {
4650 4651 4652
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
					MGMT_STATUS_FAILED, &cp->addr,
					sizeof(cp->addr));
4653 4654 4655
		goto failed;
	}

4656
	e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
4657
	if (!e) {
4658 4659 4660
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
					MGMT_STATUS_INVALID_PARAMS, &cp->addr,
					sizeof(cp->addr));
4661 4662 4663 4664 4665 4666 4667 4668
		goto failed;
	}

	if (cp->name_known) {
		e->name_state = NAME_KNOWN;
		list_del(&e->list);
	} else {
		e->name_state = NAME_NEEDED;
4669
		hci_inquiry_cache_update_resolve(hdev, e);
4670 4671
	}

4672 4673
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
				&cp->addr, sizeof(cp->addr));
4674 4675 4676 4677 4678 4679

failed:
	hci_dev_unlock(hdev);
	return err;
}

4680
static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
4681
			u16 len)
4682
{
4683
	struct mgmt_cp_block_device *cp = data;
4684
	u8 status;
4685 4686
	int err;

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

4689
	if (!bdaddr_type_is_valid(cp->addr.type))
4690 4691 4692
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
4693

4694
	hci_dev_lock(hdev);
4695

4696 4697
	err = hci_bdaddr_list_add(&hdev->blacklist, &cp->addr.bdaddr,
				  cp->addr.type);
4698
	if (err < 0) {
4699
		status = MGMT_STATUS_FAILED;
4700 4701 4702 4703 4704 4705
		goto done;
	}

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

4707
done:
4708 4709
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
				&cp->addr, sizeof(cp->addr));
4710

4711
	hci_dev_unlock(hdev);
4712 4713 4714 4715

	return err;
}

4716
static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
4717
			  u16 len)
4718
{
4719
	struct mgmt_cp_unblock_device *cp = data;
4720
	u8 status;
4721 4722
	int err;

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

4725
	if (!bdaddr_type_is_valid(cp->addr.type))
4726 4727 4728
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
4729

4730
	hci_dev_lock(hdev);
4731

4732 4733
	err = hci_bdaddr_list_del(&hdev->blacklist, &cp->addr.bdaddr,
				  cp->addr.type);
4734
	if (err < 0) {
4735
		status = MGMT_STATUS_INVALID_PARAMS;
4736 4737 4738 4739 4740 4741
		goto done;
	}

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

4743
done:
4744 4745
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
				&cp->addr, sizeof(cp->addr));
4746

4747
	hci_dev_unlock(hdev);
4748 4749 4750 4751

	return err;
}

4752 4753 4754 4755
static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 len)
{
	struct mgmt_cp_set_device_id *cp = data;
4756
	struct hci_request req;
4757
	int err;
4758
	__u16 source;
4759 4760 4761

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

4762 4763 4764
	source = __le16_to_cpu(cp->source);

	if (source > 0x0002)
4765 4766
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
				       MGMT_STATUS_INVALID_PARAMS);
4767

4768 4769
	hci_dev_lock(hdev);

4770
	hdev->devid_source = source;
4771 4772 4773 4774
	hdev->devid_vendor = __le16_to_cpu(cp->vendor);
	hdev->devid_product = __le16_to_cpu(cp->product);
	hdev->devid_version = __le16_to_cpu(cp->version);

4775 4776
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
				NULL, 0);
4777

4778 4779 4780
	hci_req_init(&req, hdev);
	update_eir(&req);
	hci_req_run(&req, NULL);
4781 4782 4783 4784 4785 4786

	hci_dev_unlock(hdev);

	return err;
}

4787 4788 4789 4790 4791 4792
static void enable_advertising_instance(struct hci_dev *hdev, u8 status,
					u16 opcode)
{
	BT_DBG("status %d", status);
}

4793 4794
static void set_advertising_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
4795 4796
{
	struct cmd_lookup match = { NULL, hdev };
4797
	struct hci_request req;
4798 4799 4800
	u8 instance;
	struct adv_info *adv_instance;
	int err;
4801

4802 4803
	hci_dev_lock(hdev);

4804 4805 4806 4807 4808
	if (status) {
		u8 mgmt_err = mgmt_status(status);

		mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
				     cmd_status_rsp, &mgmt_err);
4809
		goto unlock;
4810 4811
	}

4812
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
4813
		hci_dev_set_flag(hdev, HCI_ADVERTISING);
4814
	else
4815
		hci_dev_clear_flag(hdev, HCI_ADVERTISING);
4816

4817 4818 4819 4820 4821 4822 4823
	mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
			     &match);

	new_settings(hdev, match.sk);

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

4825
	/* If "Set Advertising" was just disabled and instance advertising was
4826
	 * set up earlier, then re-enable multi-instance advertising.
4827 4828
	 */
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
4829 4830
	    !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) ||
	    list_empty(&hdev->adv_instances))
4831 4832
		goto unlock;

4833 4834 4835 4836 4837 4838 4839 4840 4841 4842
	instance = hdev->cur_adv_instance;
	if (!instance) {
		adv_instance = list_first_entry_or_null(&hdev->adv_instances,
							struct adv_info, list);
		if (!adv_instance)
			goto unlock;

		instance = adv_instance->instance;
	}

4843 4844
	hci_req_init(&req, hdev);

4845 4846 4847 4848
	err = schedule_adv_instance(&req, instance, true);

	if (!err)
		err = hci_req_run(&req, enable_advertising_instance);
4849

4850
	if (err)
4851 4852
		BT_ERR("Failed to re-configure advertising");

4853 4854
unlock:
	hci_dev_unlock(hdev);
4855 4856
}

4857 4858
static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 len)
4859 4860
{
	struct mgmt_mode *cp = data;
4861
	struct mgmt_pending_cmd *cmd;
4862
	struct hci_request req;
4863
	u8 val, status;
4864 4865 4866 4867
	int err;

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

4868 4869
	status = mgmt_le_support(hdev);
	if (status)
4870 4871
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				       status);
4872

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

	hci_dev_lock(hdev);

	val = !!cp->val;

4881 4882 4883 4884 4885
	/* 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).
	 */
4886
	if (!hdev_is_powered(hdev) ||
4887 4888
	    (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
	     (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
4889
	    hci_conn_num(hdev, LE_LINK) > 0 ||
4890
	    (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
4891
	     hdev->le_scan_type == LE_SCAN_ACTIVE)) {
4892
		bool changed;
4893

4894
		if (cp->val) {
4895
			changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
4896
			if (cp->val == 0x02)
4897
				hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4898
			else
4899
				hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4900
		} else {
4901
			changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
4902
			hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914
		}

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

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

		goto unlock;
	}

4915 4916
	if (pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
	    pending_find(MGMT_OP_SET_LE, hdev)) {
4917 4918
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				      MGMT_STATUS_BUSY);
4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929
		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);

4930
	if (cp->val == 0x02)
4931
		hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4932
	else
4933
		hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4934

4935 4936
	cancel_adv_timeout(hdev);

4937
	if (val) {
4938 4939 4940 4941
		/* Switch to instance "0" for the Set Advertising setting.
		 * We cannot use update_[adv|scan_rsp]_data() here as the
		 * HCI_ADVERTISING flag is not yet set.
		 */
4942 4943
		update_inst_adv_data(&req, 0x00);
		update_inst_scan_rsp_data(&req, 0x00);
4944
		enable_advertising(&req);
4945
	} else {
4946
		disable_advertising(&req);
4947
	}
4948 4949 4950 4951 4952 4953 4954 4955 4956 4957

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

unlock:
	hci_dev_unlock(hdev);
	return err;
}

4958 4959 4960 4961 4962 4963 4964 4965
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);

4966
	if (!lmp_le_capable(hdev))
4967 4968
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
				       MGMT_STATUS_NOT_SUPPORTED);
4969 4970

	if (hdev_is_powered(hdev))
4971 4972
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
				       MGMT_STATUS_REJECTED);
4973 4974 4975

	if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
		if (!bacmp(&cp->bdaddr, BDADDR_NONE))
4976 4977 4978
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_SET_STATIC_ADDRESS,
					       MGMT_STATUS_INVALID_PARAMS);
4979 4980 4981

		/* Two most significant bits shall be set */
		if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
4982 4983 4984
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_SET_STATIC_ADDRESS,
					       MGMT_STATUS_INVALID_PARAMS);
4985 4986 4987 4988 4989 4990
	}

	hci_dev_lock(hdev);

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

4991 4992 4993 4994 4995
	err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
	if (err < 0)
		goto unlock;

	err = new_settings(hdev, sk);
4996

4997
unlock:
4998 4999 5000 5001
	hci_dev_unlock(hdev);
	return err;
}

5002 5003 5004 5005 5006 5007 5008 5009 5010 5011
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))
5012 5013
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_NOT_SUPPORTED);
5014 5015 5016 5017

	interval = __le16_to_cpu(cp->interval);

	if (interval < 0x0004 || interval > 0x4000)
5018 5019
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
5020 5021 5022 5023

	window = __le16_to_cpu(cp->window);

	if (window < 0x0004 || window > 0x4000)
5024 5025
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
5026

5027
	if (window > interval)
5028 5029
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
5030

5031 5032 5033 5034 5035
	hci_dev_lock(hdev);

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

5036 5037
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
				NULL, 0);
5038

5039 5040 5041
	/* If background scan is running, restart it so new parameters are
	 * loaded.
	 */
5042
	if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053
	    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);
	}

5054 5055 5056 5057 5058
	hci_dev_unlock(hdev);

	return err;
}

5059 5060
static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
				      u16 opcode)
5061
{
5062
	struct mgmt_pending_cmd *cmd;
5063 5064 5065 5066 5067

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

	hci_dev_lock(hdev);

5068
	cmd = pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
5069 5070 5071 5072
	if (!cmd)
		goto unlock;

	if (status) {
5073 5074
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
			        mgmt_status(status));
5075
	} else {
5076 5077 5078
		struct mgmt_mode *cp = cmd->param;

		if (cp->val)
5079
			hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
5080
		else
5081
			hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
5082

5083 5084 5085 5086 5087 5088 5089 5090 5091 5092
		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);
}

5093
static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
5094
				void *data, u16 len)
5095
{
5096
	struct mgmt_mode *cp = data;
5097
	struct mgmt_pending_cmd *cmd;
5098
	struct hci_request req;
5099 5100
	int err;

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

5103
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
5104
	    hdev->hci_ver < BLUETOOTH_VER_1_2)
5105 5106
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				       MGMT_STATUS_NOT_SUPPORTED);
5107

5108
	if (cp->val != 0x00 && cp->val != 0x01)
5109 5110
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				       MGMT_STATUS_INVALID_PARAMS);
5111

5112 5113
	hci_dev_lock(hdev);

5114
	if (pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
5115 5116
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				      MGMT_STATUS_BUSY);
5117 5118 5119
		goto unlock;
	}

5120
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
5121 5122 5123 5124 5125
		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
					hdev);
		goto unlock;
	}

5126
	if (!hdev_is_powered(hdev)) {
5127
		hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
5128 5129 5130 5131 5132 5133
		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
					hdev);
		new_settings(hdev, sk);
		goto unlock;
	}

5134 5135 5136 5137 5138
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
			       data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
5139 5140
	}

5141 5142
	hci_req_init(&req, hdev);

5143
	write_fast_connectable(&req, cp->val);
5144 5145

	err = hci_req_run(&req, fast_connectable_complete);
5146
	if (err < 0) {
5147 5148
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				      MGMT_STATUS_FAILED);
5149
		mgmt_pending_remove(cmd);
5150 5151
	}

5152
unlock:
5153
	hci_dev_unlock(hdev);
5154

5155 5156 5157
	return err;
}

5158
static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5159
{
5160
	struct mgmt_pending_cmd *cmd;
5161 5162 5163 5164 5165

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

	hci_dev_lock(hdev);

5166
	cmd = pending_find(MGMT_OP_SET_BREDR, hdev);
5167 5168 5169 5170 5171 5172 5173 5174 5175
	if (!cmd)
		goto unlock;

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

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

5178
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192
	} 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;
5193
	struct mgmt_pending_cmd *cmd;
5194 5195 5196 5197 5198 5199
	struct hci_request req;
	int err;

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

	if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
5200 5201
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_NOT_SUPPORTED);
5202

5203
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
5204 5205
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_REJECTED);
5206 5207

	if (cp->val != 0x00 && cp->val != 0x01)
5208 5209
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_INVALID_PARAMS);
5210 5211 5212

	hci_dev_lock(hdev);

5213
	if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
5214 5215 5216 5217 5218 5219
		err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
		goto unlock;
	}

	if (!hdev_is_powered(hdev)) {
		if (!cp->val) {
5220 5221 5222 5223 5224
			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);
5225 5226
		}

5227
		hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238

		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) {
5239 5240
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				      MGMT_STATUS_REJECTED);
5241
		goto unlock;
5242 5243 5244 5245 5246 5247 5248 5249
	} 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.
5250 5251 5252 5253 5254 5255
		 *
		 * 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.
5256
		 */
5257
		if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
5258
		    (bacmp(&hdev->static_addr, BDADDR_ANY) ||
5259
		     hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
5260 5261
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
					      MGMT_STATUS_REJECTED);
5262 5263
			goto unlock;
		}
5264 5265
	}

5266
	if (pending_find(MGMT_OP_SET_BREDR, hdev)) {
5267 5268
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				      MGMT_STATUS_BUSY);
5269 5270 5271 5272 5273 5274 5275 5276 5277
		goto unlock;
	}

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

5278
	/* We need to flip the bit already here so that update_adv_data
5279 5280
	 * generates the correct flags.
	 */
5281
	hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
5282 5283

	hci_req_init(&req, hdev);
5284

5285
	write_fast_connectable(&req, false);
5286
	__hci_update_page_scan(&req);
5287

5288 5289 5290
	/* Since only the advertising data flags will change, there
	 * is no need to update the scan response data.
	 */
5291
	update_adv_data(&req);
5292

5293 5294 5295 5296 5297 5298 5299 5300 5301
	err = hci_req_run(&req, set_bredr_complete);
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5302 5303
static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
{
5304
	struct mgmt_pending_cmd *cmd;
5305 5306 5307 5308 5309 5310
	struct mgmt_mode *cp;

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

	hci_dev_lock(hdev);

5311
	cmd = pending_find(MGMT_OP_SET_SECURE_CONN, hdev);
5312 5313 5314 5315
	if (!cmd)
		goto unlock;

	if (status) {
5316 5317
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
			        mgmt_status(status));
5318 5319 5320 5321 5322 5323 5324
		goto remove;
	}

	cp = cmd->param;

	switch (cp->val) {
	case 0x00:
5325 5326
		hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
		hci_dev_clear_flag(hdev, HCI_SC_ONLY);
5327 5328
		break;
	case 0x01:
5329
		hci_dev_set_flag(hdev, HCI_SC_ENABLED);
5330
		hci_dev_clear_flag(hdev, HCI_SC_ONLY);
5331 5332
		break;
	case 0x02:
5333 5334
		hci_dev_set_flag(hdev, HCI_SC_ENABLED);
		hci_dev_set_flag(hdev, HCI_SC_ONLY);
5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346
		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);
}

5347 5348 5349 5350
static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
			   void *data, u16 len)
{
	struct mgmt_mode *cp = data;
5351
	struct mgmt_pending_cmd *cmd;
5352
	struct hci_request req;
5353
	u8 val;
5354 5355 5356 5357
	int err;

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

5358
	if (!lmp_sc_capable(hdev) &&
5359
	    !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
5360 5361
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				       MGMT_STATUS_NOT_SUPPORTED);
5362

5363
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
5364
	    lmp_sc_capable(hdev) &&
5365
	    !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
5366 5367
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				       MGMT_STATUS_REJECTED);
5368

5369
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
5370
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5371 5372 5373 5374
				  MGMT_STATUS_INVALID_PARAMS);

	hci_dev_lock(hdev);

5375
	if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
5376
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
5377 5378
		bool changed;

5379
		if (cp->val) {
5380 5381
			changed = !hci_dev_test_and_set_flag(hdev,
							     HCI_SC_ENABLED);
5382
			if (cp->val == 0x02)
5383
				hci_dev_set_flag(hdev, HCI_SC_ONLY);
5384
			else
5385
				hci_dev_clear_flag(hdev, HCI_SC_ONLY);
5386
		} else {
5387 5388
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_SC_ENABLED);
5389
			hci_dev_clear_flag(hdev, HCI_SC_ONLY);
5390
		}
5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401

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

5402
	if (pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
5403 5404
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				      MGMT_STATUS_BUSY);
5405 5406 5407
		goto failed;
	}

5408 5409
	val = !!cp->val;

5410 5411
	if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
	    (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
5412 5413 5414 5415 5416 5417 5418 5419 5420 5421
		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;
	}

5422 5423 5424
	hci_req_init(&req, hdev);
	hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
	err = hci_req_run(&req, sc_enable_complete);
5425 5426 5427 5428 5429 5430 5431 5432 5433 5434
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

5435 5436 5437 5438
static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
			  void *data, u16 len)
{
	struct mgmt_mode *cp = data;
5439
	bool changed, use_changed;
5440 5441 5442 5443
	int err;

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

5444
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
5445 5446
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5447 5448 5449 5450

	hci_dev_lock(hdev);

	if (cp->val)
5451
		changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
5452
	else
5453 5454
		changed = hci_dev_test_and_clear_flag(hdev,
						      HCI_KEEP_DEBUG_KEYS);
5455

5456
	if (cp->val == 0x02)
5457 5458
		use_changed = !hci_dev_test_and_set_flag(hdev,
							 HCI_USE_DEBUG_KEYS);
5459
	else
5460 5461
		use_changed = hci_dev_test_and_clear_flag(hdev,
							  HCI_USE_DEBUG_KEYS);
5462 5463

	if (hdev_is_powered(hdev) && use_changed &&
5464
	    hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
5465 5466 5467 5468 5469
		u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
			     sizeof(mode), &mode);
	}

5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481
	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;
}

5482 5483 5484 5485 5486 5487 5488 5489 5490 5491
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))
5492 5493
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_NOT_SUPPORTED);
5494 5495

	if (cp->privacy != 0x00 && cp->privacy != 0x01)
5496 5497
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_INVALID_PARAMS);
5498 5499

	if (hdev_is_powered(hdev))
5500 5501
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_REJECTED);
5502 5503 5504

	hci_dev_lock(hdev);

5505 5506 5507
	/* If user space supports this command it is also expected to
	 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
	 */
5508
	hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
5509

5510
	if (cp->privacy) {
5511
		changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
5512
		memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
5513
		hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
5514
	} else {
5515
		changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
5516
		memset(hdev->irk, 0, sizeof(hdev->irk));
5517
		hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531
	}

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

5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551
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;
5552 5553
	const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_irk_info));
5554 5555 5556 5557 5558 5559
	u16 irk_count, expected_len;
	int i, err;

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

	if (!lmp_le_capable(hdev))
5560 5561
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_NOT_SUPPORTED);
5562 5563

	irk_count = __le16_to_cpu(cp->irk_count);
5564 5565
	if (irk_count > max_irk_count) {
		BT_ERR("load_irks: too big irk_count value %u", irk_count);
5566 5567
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_INVALID_PARAMS);
5568
	}
5569 5570 5571 5572

	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",
5573
		       expected_len, len);
5574 5575
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_INVALID_PARAMS);
5576 5577 5578 5579 5580 5581 5582 5583
	}

	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))
5584 5585 5586
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_IRKS,
					       MGMT_STATUS_INVALID_PARAMS);
5587 5588 5589 5590 5591 5592 5593 5594 5595
	}

	hci_dev_lock(hdev);

	hci_smp_irks_clear(hdev);

	for (i = 0; i < irk_count; i++) {
		struct mgmt_irk_info *irk = &cp->irks[i];

5596 5597
		hci_add_irk(hdev, &irk->addr.bdaddr,
			    le_addr_type(irk->addr.type), irk->val,
5598 5599 5600
			    BDADDR_ANY);
	}

5601
	hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
5602

5603
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
5604 5605 5606 5607 5608 5609

	hci_dev_unlock(hdev);

	return err;
}

5610 5611 5612 5613
static bool ltk_is_valid(struct mgmt_ltk_info *key)
{
	if (key->master != 0x00 && key->master != 0x01)
		return false;
5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626

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

5629
static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
5630
			       void *cp_data, u16 len)
5631 5632
{
	struct mgmt_cp_load_long_term_keys *cp = cp_data;
5633 5634
	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_ltk_info));
5635
	u16 key_count, expected_len;
5636
	int i, err;
5637

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

	if (!lmp_le_capable(hdev))
5641 5642
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_NOT_SUPPORTED);
5643

5644
	key_count = __le16_to_cpu(cp->key_count);
5645 5646
	if (key_count > max_key_count) {
		BT_ERR("load_ltks: too big key_count value %u", key_count);
5647 5648
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5649
	}
5650 5651 5652 5653 5654

	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",
5655
		       expected_len, len);
5656 5657
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5658 5659
	}

5660
	BT_DBG("%s key_count %u", hdev->name, key_count);
5661

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

5665
		if (!ltk_is_valid(key))
5666 5667 5668
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_LONG_TERM_KEYS,
					       MGMT_STATUS_INVALID_PARAMS);
5669 5670
	}

5671 5672 5673 5674 5675 5676
	hci_dev_lock(hdev);

	hci_smp_ltks_clear(hdev);

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

5679 5680
		switch (key->type) {
		case MGMT_LTK_UNAUTHENTICATED:
5681
			authenticated = 0x00;
5682
			type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
5683 5684
			break;
		case MGMT_LTK_AUTHENTICATED:
5685
			authenticated = 0x01;
5686 5687 5688 5689 5690
			type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
			break;
		case MGMT_LTK_P256_UNAUTH:
			authenticated = 0x00;
			type = SMP_LTK_P256;
5691
			break;
5692 5693 5694
		case MGMT_LTK_P256_AUTH:
			authenticated = 0x01;
			type = SMP_LTK_P256;
5695
			break;
5696 5697 5698
		case MGMT_LTK_P256_DEBUG:
			authenticated = 0x00;
			type = SMP_LTK_P256_DEBUG;
5699 5700 5701
		default:
			continue;
		}
5702

5703 5704 5705
		hci_add_ltk(hdev, &key->addr.bdaddr,
			    le_addr_type(key->addr.type), type, authenticated,
			    key->val, key->enc_size, key->ediv, key->rand);
5706 5707
	}

5708
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
5709 5710
			   NULL, 0);

5711 5712
	hci_dev_unlock(hdev);

5713
	return err;
5714 5715
}

5716
static int conn_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
5717 5718
{
	struct hci_conn *conn = cmd->user_data;
5719
	struct mgmt_rp_get_conn_info rp;
5720
	int err;
5721

5722
	memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
5723

5724
	if (status == MGMT_STATUS_SUCCESS) {
5725
		rp.rssi = conn->rssi;
5726 5727 5728 5729 5730 5731
		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;
5732 5733
	}

5734 5735
	err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
				status, &rp, sizeof(rp));
5736 5737

	hci_conn_drop(conn);
5738
	hci_conn_put(conn);
5739 5740

	return err;
5741 5742
}

5743 5744
static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
				       u16 opcode)
5745 5746
{
	struct hci_cp_read_rssi *cp;
5747
	struct mgmt_pending_cmd *cmd;
5748 5749
	struct hci_conn *conn;
	u16 handle;
5750
	u8 status;
5751

5752
	BT_DBG("status 0x%02x", hci_status);
5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767

	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);
5768 5769 5770
		status = MGMT_STATUS_SUCCESS;
	} else {
		status = mgmt_status(hci_status);
5771 5772 5773
	}

	if (!cp) {
5774
		BT_ERR("invalid sent_cmd in conn_info response");
5775 5776 5777 5778 5779 5780
		goto unlock;
	}

	handle = __le16_to_cpu(cp->handle);
	conn = hci_conn_hash_lookup_handle(hdev, handle);
	if (!conn) {
5781
		BT_ERR("unknown handle (%d) in conn_info response", handle);
5782 5783 5784
		goto unlock;
	}

5785
	cmd = pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
5786 5787
	if (!cmd)
		goto unlock;
5788

5789 5790
	cmd->cmd_complete(cmd, status);
	mgmt_pending_remove(cmd);
5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811

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))
5812 5813 5814
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
5815 5816 5817 5818

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
5819 5820 5821
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
5822 5823 5824 5825 5826 5827 5828 5829 5830 5831
		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) {
5832 5833 5834
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_NOT_CONNECTED, &rp,
					sizeof(rp));
5835 5836 5837
		goto unlock;
	}

5838
	if (pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
5839 5840
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
5841 5842 5843
		goto unlock;
	}

5844 5845 5846 5847 5848 5849 5850 5851 5852 5853
	/* 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.
	 */
5854 5855
	if (time_after(jiffies, conn->conn_info_timestamp +
		       msecs_to_jiffies(conn_info_age)) ||
5856 5857 5858 5859
	    !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;
5860
		struct mgmt_pending_cmd *cmd;
5861 5862 5863 5864 5865 5866

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

5867 5868 5869 5870 5871 5872 5873 5874 5875 5876
		/* 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);
		}
5877

5878 5879 5880 5881 5882 5883 5884 5885
		/* 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);
		}

5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897
		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);
5898
		cmd->user_data = hci_conn_get(conn);
5899
		cmd->cmd_complete = conn_info_cmd_complete;
5900 5901 5902 5903 5904 5905

		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;
5906
		rp.max_tx_power = conn->max_tx_power;
5907

5908 5909
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
5910 5911 5912 5913 5914 5915 5916
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5917
static int clock_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
5918
{
5919
	struct hci_conn *conn = cmd->user_data;
5920
	struct mgmt_rp_get_clock_info rp;
5921
	struct hci_dev *hdev;
5922
	int err;
5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941

	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:
5942 5943
	err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
				sizeof(rp));
5944 5945 5946 5947 5948

	if (conn) {
		hci_conn_drop(conn);
		hci_conn_put(conn);
	}
5949 5950

	return err;
5951 5952
}

5953
static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5954
{
5955
	struct hci_cp_read_clock *hci_cp;
5956
	struct mgmt_pending_cmd *cmd;
5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973
	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;
	}

5974
	cmd = pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
5975 5976 5977
	if (!cmd)
		goto unlock;

5978
	cmd->cmd_complete(cmd, mgmt_status(status));
5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990
	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;
5991
	struct mgmt_pending_cmd *cmd;
5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002
	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)
6003 6004 6005
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
6006 6007 6008 6009

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
6010 6011 6012
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
6013 6014 6015 6016 6017 6018 6019
		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) {
6020 6021 6022 6023
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_GET_CLOCK_INFO,
						MGMT_STATUS_NOT_CONNECTED,
						&rp, sizeof(rp));
6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035
			goto unlock;
		}
	} else {
		conn = NULL;
	}

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

6036 6037
	cmd->cmd_complete = clock_info_cmd_complete;

6038 6039 6040 6041 6042 6043 6044
	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);
6045
		cmd->user_data = hci_conn_get(conn);
6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060

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

6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078
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 */
6079
static int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr,
6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095
			       u8 addr_type, u8 auto_connect)
{
	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:
6096 6097 6098 6099 6100
		/* If auto connect is being disabled when we're trying to
		 * connect to device, keep connecting.
		 */
		if (params->explicit_connect)
			list_add(&params->action, &hdev->pend_le_conns);
6101 6102
		break;
	case HCI_AUTO_CONN_REPORT:
6103 6104 6105 6106
		if (params->explicit_connect)
			list_add(&params->action, &hdev->pend_le_conns);
		else
			list_add(&params->action, &hdev->pend_le_reports);
6107 6108 6109
		break;
	case HCI_AUTO_CONN_DIRECT:
	case HCI_AUTO_CONN_ALWAYS:
6110
		if (!is_connected(hdev, addr, addr_type))
6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122
			list_add(&params->action, &hdev->pend_le_conns);
		break;
	}

	params->auto_connect = auto_connect;

	BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
	       auto_connect);

	return 0;
}

6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134
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);
}

6135 6136 6137 6138
static int add_device(struct sock *sk, struct hci_dev *hdev,
		      void *data, u16 len)
{
	struct mgmt_cp_add_device *cp = data;
6139
	struct mgmt_pending_cmd *cmd;
6140
	struct hci_request req;
6141 6142 6143 6144 6145
	u8 auto_conn, addr_type;
	int err;

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

6146
	if (!bdaddr_type_is_valid(cp->addr.type) ||
6147
	    !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
6148 6149 6150
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
6151

6152
	if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
6153 6154 6155
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
6156

6157 6158
	hci_req_init(&req, hdev);

6159 6160
	hci_dev_lock(hdev);

6161 6162 6163 6164 6165 6166 6167 6168
	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_DEVICE, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

	cmd->cmd_complete = addr_cmd_complete;

6169
	if (cp->addr.type == BDADDR_BREDR) {
6170
		/* Only incoming connections action is supported for now */
6171
		if (cp->action != 0x01) {
6172 6173 6174 6175
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_ADD_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
6176 6177 6178 6179 6180 6181 6182
			goto unlock;
		}

		err = hci_bdaddr_list_add(&hdev->whitelist, &cp->addr.bdaddr,
					  cp->addr.type);
		if (err)
			goto unlock;
6183

6184
		__hci_update_page_scan(&req);
6185

6186 6187 6188
		goto added;
	}

6189
	addr_type = le_addr_type(cp->addr.type);
6190

6191
	if (cp->action == 0x02)
6192
		auto_conn = HCI_AUTO_CONN_ALWAYS;
6193 6194
	else if (cp->action == 0x01)
		auto_conn = HCI_AUTO_CONN_DIRECT;
6195
	else
6196
		auto_conn = HCI_AUTO_CONN_REPORT;
6197

6198 6199 6200 6201 6202 6203
	/* Kernel internally uses conn_params with resolvable private
	 * address, but Add Device allows only identity addresses.
	 * Make sure it is enforced before calling
	 * hci_conn_params_lookup.
	 */
	if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
6204 6205 6206
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					MGMT_STATUS_INVALID_PARAMS,
					&cp->addr, sizeof(cp->addr));
6207 6208 6209
		goto unlock;
	}

6210 6211 6212
	/* If the connection parameters don't exist for this device,
	 * they will be created and configured with defaults.
	 */
6213
	if (hci_conn_params_set(hdev, &cp->addr.bdaddr, addr_type,
6214
				auto_conn) < 0) {
6215 6216 6217
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					MGMT_STATUS_FAILED, &cp->addr,
					sizeof(cp->addr));
6218 6219 6220
		goto unlock;
	}

6221 6222
	hci_update_background_scan(hdev);

6223
added:
6224 6225
	device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);

6226 6227 6228
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
				MGMT_STATUS_SUCCESS, &cp->addr,
				sizeof(cp->addr));
6229 6230 6231 6232 6233 6234

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245
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);
}

6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256
static int remove_device(struct sock *sk, struct hci_dev *hdev,
			 void *data, u16 len)
{
	struct mgmt_cp_remove_device *cp = data;
	int err;

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

	hci_dev_lock(hdev);

	if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
6257
		struct hci_conn_params *params;
6258 6259
		u8 addr_type;

6260
		if (!bdaddr_type_is_valid(cp->addr.type)) {
6261 6262 6263 6264
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
6265 6266 6267
			goto unlock;
		}

6268 6269 6270 6271 6272
		if (cp->addr.type == BDADDR_BREDR) {
			err = hci_bdaddr_list_del(&hdev->whitelist,
						  &cp->addr.bdaddr,
						  cp->addr.type);
			if (err) {
6273 6274 6275 6276 6277
				err = mgmt_cmd_complete(sk, hdev->id,
							MGMT_OP_REMOVE_DEVICE,
							MGMT_STATUS_INVALID_PARAMS,
							&cp->addr,
							sizeof(cp->addr));
6278 6279 6280
				goto unlock;
			}

6281
			hci_update_page_scan(hdev);
6282

6283 6284 6285 6286 6287
			device_removed(sk, hdev, &cp->addr.bdaddr,
				       cp->addr.type);
			goto complete;
		}

6288
		addr_type = le_addr_type(cp->addr.type);
6289

6290 6291 6292 6293 6294 6295
		/* Kernel internally uses conn_params with resolvable private
		 * address, but Remove Device allows only identity addresses.
		 * Make sure it is enforced before calling
		 * hci_conn_params_lookup.
		 */
		if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
6296 6297 6298 6299
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
6300 6301 6302
			goto unlock;
		}

6303 6304 6305
		params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
						addr_type);
		if (!params) {
6306 6307 6308 6309
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
6310 6311 6312
			goto unlock;
		}

6313 6314
		if (params->auto_connect == HCI_AUTO_CONN_DISABLED ||
		    params->auto_connect == HCI_AUTO_CONN_EXPLICIT) {
6315 6316 6317 6318
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
6319 6320 6321
			goto unlock;
		}

6322
		list_del(&params->action);
6323 6324
		list_del(&params->list);
		kfree(params);
6325
		hci_update_background_scan(hdev);
6326 6327

		device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
6328
	} else {
6329
		struct hci_conn_params *p, *tmp;
6330
		struct bdaddr_list *b, *btmp;
6331

6332
		if (cp->addr.type) {
6333 6334 6335 6336
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
6337 6338 6339
			goto unlock;
		}

6340 6341 6342 6343 6344 6345
		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);
		}

6346
		hci_update_page_scan(hdev);
6347

6348 6349 6350 6351
		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);
6352 6353 6354 6355
			if (p->explicit_connect) {
				p->auto_connect = HCI_AUTO_CONN_EXPLICIT;
				continue;
			}
6356 6357 6358 6359 6360 6361 6362
			list_del(&p->action);
			list_del(&p->list);
			kfree(p);
		}

		BT_DBG("All LE connection parameters were removed");

6363
		hci_update_background_scan(hdev);
6364 6365
	}

6366
complete:
6367 6368 6369
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE,
				MGMT_STATUS_SUCCESS, &cp->addr,
				sizeof(cp->addr));
6370 6371 6372 6373 6374
unlock:
	hci_dev_unlock(hdev);
	return err;
}

6375 6376 6377 6378
static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 len)
{
	struct mgmt_cp_load_conn_param *cp = data;
6379 6380
	const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
				     sizeof(struct mgmt_conn_param));
6381 6382 6383 6384
	u16 param_count, expected_len;
	int i;

	if (!lmp_le_capable(hdev))
6385 6386
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_NOT_SUPPORTED);
6387 6388

	param_count = __le16_to_cpu(cp->param_count);
6389 6390 6391
	if (param_count > max_param_count) {
		BT_ERR("load_conn_param: too big param_count value %u",
		       param_count);
6392 6393
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_INVALID_PARAMS);
6394
	}
6395 6396 6397 6398 6399 6400

	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);
6401 6402
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_INVALID_PARAMS);
6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456
	}

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

6457 6458
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
				 NULL, 0);
6459 6460
}

6461 6462 6463 6464 6465 6466 6467 6468 6469 6470
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))
6471 6472
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				       MGMT_STATUS_REJECTED);
6473 6474

	if (cp->config != 0x00 && cp->config != 0x01)
6475 6476
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				         MGMT_STATUS_INVALID_PARAMS);
6477 6478

	if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
6479 6480
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				       MGMT_STATUS_NOT_SUPPORTED);
6481 6482 6483 6484

	hci_dev_lock(hdev);

	if (cp->config)
6485
		changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
6486
	else
6487
		changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
6488 6489 6490 6491 6492 6493 6494 6495

	err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
	if (err < 0)
		goto unlock;

	if (!changed)
		goto unlock;

6496 6497
	err = new_options(hdev, sk);

6498
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
6499
		mgmt_index_removed(hdev);
6500

6501
		if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
6502 6503
			hci_dev_set_flag(hdev, HCI_CONFIG);
			hci_dev_set_flag(hdev, HCI_AUTO_OFF);
6504 6505 6506

			queue_work(hdev->req_workqueue, &hdev->power_on);
		} else {
6507
			set_bit(HCI_RAW, &hdev->flags);
6508 6509
			mgmt_index_added(hdev);
		}
6510 6511 6512 6513 6514 6515 6516
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6517 6518 6519 6520 6521 6522 6523 6524 6525 6526
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))
6527 6528
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_REJECTED);
6529 6530

	if (!bacmp(&cp->bdaddr, BDADDR_ANY))
6531 6532
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_INVALID_PARAMS);
6533 6534

	if (!hdev->set_bdaddr)
6535 6536
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_NOT_SUPPORTED);
6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549

	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;

6550
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
6551 6552 6553 6554 6555
		err = new_options(hdev, sk);

	if (is_configured(hdev)) {
		mgmt_index_removed(hdev);

6556
		hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
6557

6558 6559
		hci_dev_set_flag(hdev, HCI_CONFIG);
		hci_dev_set_flag(hdev, HCI_AUTO_OFF);
6560 6561 6562 6563 6564 6565 6566 6567 6568

		queue_work(hdev->req_workqueue, &hdev->power_on);
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579
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;
}

6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718
static void read_local_oob_ext_data_complete(struct hci_dev *hdev, u8 status,
					     u16 opcode, struct sk_buff *skb)
{
	const struct mgmt_cp_read_local_oob_ext_data *mgmt_cp;
	struct mgmt_rp_read_local_oob_ext_data *mgmt_rp;
	u8 *h192, *r192, *h256, *r256;
	struct mgmt_pending_cmd *cmd;
	u16 eir_len;
	int err;

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

	cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev);
	if (!cmd)
		return;

	mgmt_cp = cmd->param;

	if (status) {
		status = mgmt_status(status);
		eir_len = 0;

		h192 = NULL;
		r192 = NULL;
		h256 = NULL;
		r256 = NULL;
	} else if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
		struct hci_rp_read_local_oob_data *rp;

		if (skb->len != sizeof(*rp)) {
			status = MGMT_STATUS_FAILED;
			eir_len = 0;
		} else {
			status = MGMT_STATUS_SUCCESS;
			rp = (void *)skb->data;

			eir_len = 5 + 18 + 18;
			h192 = rp->hash;
			r192 = rp->rand;
			h256 = NULL;
			r256 = NULL;
		}
	} else {
		struct hci_rp_read_local_oob_ext_data *rp;

		if (skb->len != sizeof(*rp)) {
			status = MGMT_STATUS_FAILED;
			eir_len = 0;
		} else {
			status = MGMT_STATUS_SUCCESS;
			rp = (void *)skb->data;

			if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
				eir_len = 5 + 18 + 18;
				h192 = NULL;
				r192 = NULL;
			} else {
				eir_len = 5 + 18 + 18 + 18 + 18;
				h192 = rp->hash192;
				r192 = rp->rand192;
			}

			h256 = rp->hash256;
			r256 = rp->rand256;
		}
	}

	mgmt_rp = kmalloc(sizeof(*mgmt_rp) + eir_len, GFP_KERNEL);
	if (!mgmt_rp)
		goto done;

	if (status)
		goto send_rsp;

	eir_len = eir_append_data(mgmt_rp->eir, 0, EIR_CLASS_OF_DEV,
				  hdev->dev_class, 3);

	if (h192 && r192) {
		eir_len = eir_append_data(mgmt_rp->eir, eir_len,
					  EIR_SSP_HASH_C192, h192, 16);
		eir_len = eir_append_data(mgmt_rp->eir, eir_len,
					  EIR_SSP_RAND_R192, r192, 16);
	}

	if (h256 && r256) {
		eir_len = eir_append_data(mgmt_rp->eir, eir_len,
					  EIR_SSP_HASH_C256, h256, 16);
		eir_len = eir_append_data(mgmt_rp->eir, eir_len,
					  EIR_SSP_RAND_R256, r256, 16);
	}

send_rsp:
	mgmt_rp->type = mgmt_cp->type;
	mgmt_rp->eir_len = cpu_to_le16(eir_len);

	err = mgmt_cmd_complete(cmd->sk, hdev->id,
				MGMT_OP_READ_LOCAL_OOB_EXT_DATA, status,
				mgmt_rp, sizeof(*mgmt_rp) + eir_len);
	if (err < 0 || status)
		goto done;

	hci_sock_set_flag(cmd->sk, HCI_MGMT_OOB_DATA_EVENTS);

	err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
				 mgmt_rp, sizeof(*mgmt_rp) + eir_len,
				 HCI_MGMT_OOB_DATA_EVENTS, cmd->sk);
done:
	kfree(mgmt_rp);
	mgmt_pending_remove(cmd);
}

static int read_local_ssp_oob_req(struct hci_dev *hdev, struct sock *sk,
				  struct mgmt_cp_read_local_oob_ext_data *cp)
{
	struct mgmt_pending_cmd *cmd;
	struct hci_request req;
	int err;

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

	hci_req_init(&req, hdev);

	if (bredr_sc_enabled(hdev))
		hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
	else
		hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);

	err = hci_req_run_skb(&req, read_local_oob_ext_data_complete);
	if (err < 0) {
		mgmt_pending_remove(cmd);
		return err;
	}

	return 0;
}

6719 6720 6721 6722 6723 6724 6725
static int read_local_oob_ext_data(struct sock *sk, struct hci_dev *hdev,
				   void *data, u16 data_len)
{
	struct mgmt_cp_read_local_oob_ext_data *cp = data;
	struct mgmt_rp_read_local_oob_ext_data *rp;
	size_t rp_len;
	u16 eir_len;
6726
	u8 status, flags, role, addr[7], hash[16], rand[16];
6727 6728 6729 6730
	int err;

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

6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754
	if (hdev_is_powered(hdev)) {
		switch (cp->type) {
		case BIT(BDADDR_BREDR):
			status = mgmt_bredr_support(hdev);
			if (status)
				eir_len = 0;
			else
				eir_len = 5;
			break;
		case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
			status = mgmt_le_support(hdev);
			if (status)
				eir_len = 0;
			else
				eir_len = 9 + 3 + 18 + 18 + 3;
			break;
		default:
			status = MGMT_STATUS_INVALID_PARAMS;
			eir_len = 0;
			break;
		}
	} else {
		status = MGMT_STATUS_NOT_POWERED;
		eir_len = 0;
6755 6756 6757 6758
	}

	rp_len = sizeof(*rp) + eir_len;
	rp = kmalloc(rp_len, GFP_ATOMIC);
6759
	if (!rp)
6760
		return -ENOMEM;
6761

6762 6763 6764
	if (status)
		goto complete;

6765
	hci_dev_lock(hdev);
6766 6767 6768 6769

	eir_len = 0;
	switch (cp->type) {
	case BIT(BDADDR_BREDR):
6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782
		if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
			err = read_local_ssp_oob_req(hdev, sk, cp);
			hci_dev_unlock(hdev);
			if (!err)
				goto done;

			status = MGMT_STATUS_FAILED;
			goto complete;
		} else {
			eir_len = eir_append_data(rp->eir, eir_len,
						  EIR_CLASS_OF_DEV,
						  hdev->dev_class, 3);
		}
6783 6784
		break;
	case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
6785 6786
		if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
		    smp_generate_oob(hdev, hash, rand) < 0) {
6787
			hci_dev_unlock(hdev);
6788 6789
			status = MGMT_STATUS_FAILED;
			goto complete;
6790 6791
		}

6792 6793 6794 6795 6796 6797 6798 6799 6800 6801
		/* This should return the active RPA, but since the RPA
		 * is only programmed on demand, it is really hard to fill
		 * this in at the moment. For now disallow retrieving
		 * local out-of-band data when privacy is in use.
		 *
		 * Returning the identity address will not help here since
		 * pairing happens before the identity resolving key is
		 * known and thus the connection establishment happens
		 * based on the RPA and not the identity address.
		 */
6802
		if (hci_dev_test_flag(hdev, HCI_PRIVACY)) {
6803 6804 6805 6806 6807 6808 6809 6810 6811
			hci_dev_unlock(hdev);
			status = MGMT_STATUS_REJECTED;
			goto complete;
		}

		if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
		   !bacmp(&hdev->bdaddr, BDADDR_ANY) ||
		   (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
		    bacmp(&hdev->static_addr, BDADDR_ANY))) {
6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829
			memcpy(addr, &hdev->static_addr, 6);
			addr[6] = 0x01;
		} else {
			memcpy(addr, &hdev->bdaddr, 6);
			addr[6] = 0x00;
		}

		eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_BDADDR,
					  addr, sizeof(addr));

		if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
			role = 0x02;
		else
			role = 0x01;

		eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_ROLE,
					  &role, sizeof(role));

6830 6831 6832 6833
		if (hci_dev_test_flag(hdev, HCI_SC_ENABLED)) {
			eir_len = eir_append_data(rp->eir, eir_len,
						  EIR_LE_SC_CONFIRM,
						  hash, sizeof(hash));
6834

6835 6836 6837 6838
			eir_len = eir_append_data(rp->eir, eir_len,
						  EIR_LE_SC_RANDOM,
						  rand, sizeof(rand));
		}
6839

6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851
		flags = get_adv_discov_flags(hdev);

		if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
			flags |= LE_AD_NO_BREDR;

		eir_len = eir_append_data(rp->eir, eir_len, EIR_FLAGS,
					  &flags, sizeof(flags));
		break;
	}

	hci_dev_unlock(hdev);

6852 6853
	hci_sock_set_flag(sk, HCI_MGMT_OOB_DATA_EVENTS);

6854 6855 6856
	status = MGMT_STATUS_SUCCESS;

complete:
6857 6858 6859
	rp->type = cp->type;
	rp->eir_len = cpu_to_le16(eir_len);

6860
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
6861 6862
				status, rp, sizeof(*rp) + eir_len);
	if (err < 0 || status)
6863 6864 6865 6866 6867
		goto done;

	err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
				 rp, sizeof(*rp) + eir_len,
				 HCI_MGMT_OOB_DATA_EVENTS, sk);
6868

6869
done:
6870 6871 6872 6873 6874
	kfree(rp);

	return err;
}

6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889
static u32 get_supported_adv_flags(struct hci_dev *hdev)
{
	u32 flags = 0;

	flags |= MGMT_ADV_FLAG_CONNECTABLE;
	flags |= MGMT_ADV_FLAG_DISCOV;
	flags |= MGMT_ADV_FLAG_LIMITED_DISCOV;
	flags |= MGMT_ADV_FLAG_MANAGED_FLAGS;

	if (hdev->adv_tx_power != HCI_TX_POWER_INVALID)
		flags |= MGMT_ADV_FLAG_TX_POWER;

	return flags;
}

6890 6891 6892 6893 6894
static int read_adv_features(struct sock *sk, struct hci_dev *hdev,
			     void *data, u16 data_len)
{
	struct mgmt_rp_read_adv_features *rp;
	size_t rp_len;
6895
	int err, i;
6896
	bool instance;
6897
	struct adv_info *adv_instance;
6898
	u32 supported_flags;
6899 6900 6901

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

6902 6903 6904 6905
	if (!lmp_le_capable(hdev))
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
				       MGMT_STATUS_REJECTED);

6906 6907 6908
	hci_dev_lock(hdev);

	rp_len = sizeof(*rp);
6909 6910 6911

	instance = hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE);
	if (instance)
6912
		rp_len += hdev->adv_instance_cnt;
6913

6914 6915 6916 6917 6918 6919
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
		hci_dev_unlock(hdev);
		return -ENOMEM;
	}

6920 6921 6922
	supported_flags = get_supported_adv_flags(hdev);

	rp->supported_flags = cpu_to_le32(supported_flags);
6923 6924
	rp->max_adv_data_len = HCI_MAX_AD_LENGTH;
	rp->max_scan_rsp_len = HCI_MAX_AD_LENGTH;
6925
	rp->max_instances = HCI_MAX_ADV_INSTANCES;
6926 6927

	if (instance) {
6928 6929 6930 6931 6932 6933 6934 6935 6936
		i = 0;
		list_for_each_entry(adv_instance, &hdev->adv_instances, list) {
			if (i >= hdev->adv_instance_cnt)
				break;

			rp->instance[i] = adv_instance->instance;
			i++;
		}
		rp->num_instances = hdev->adv_instance_cnt;
6937 6938 6939
	} else {
		rp->num_instances = 0;
	}
6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950

	hci_dev_unlock(hdev);

	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
				MGMT_STATUS_SUCCESS, rp, rp_len);

	kfree(rp);

	return err;
}

6951
static bool tlv_data_is_valid(struct hci_dev *hdev, u32 adv_flags, u8 *data,
6952
			      u8 len, bool is_adv_data)
6953
{
6954
	u8 max_len = HCI_MAX_AD_LENGTH;
6955
	int i, cur_len;
6956
	bool flags_managed = false;
6957
	bool tx_power_managed = false;
6958 6959
	u32 flags_params = MGMT_ADV_FLAG_DISCOV | MGMT_ADV_FLAG_LIMITED_DISCOV |
			   MGMT_ADV_FLAG_MANAGED_FLAGS;
6960

6961
	if (is_adv_data && (adv_flags & flags_params)) {
6962 6963 6964
		flags_managed = true;
		max_len -= 3;
	}
6965

6966 6967 6968 6969 6970
	if (is_adv_data && (adv_flags & MGMT_ADV_FLAG_TX_POWER)) {
		tx_power_managed = true;
		max_len -= 3;
	}

6971
	if (len > max_len)
6972 6973
		return false;

6974 6975 6976
	/* Make sure that the data is correctly formatted. */
	for (i = 0, cur_len = 0; i < len; i += (cur_len + 1)) {
		cur_len = data[i];
6977

6978 6979 6980
		if (flags_managed && data[i + 1] == EIR_FLAGS)
			return false;

6981 6982 6983
		if (tx_power_managed && data[i + 1] == EIR_TX_POWER)
			return false;

6984 6985 6986
		/* If the current field length would exceed the total data
		 * length, then it's invalid.
		 */
6987
		if (i + cur_len >= len)
6988 6989 6990 6991 6992 6993 6994 6995 6996 6997
			return false;
	}

	return true;
}

static void add_advertising_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
{
	struct mgmt_pending_cmd *cmd;
6998
	struct mgmt_cp_add_advertising *cp;
6999
	struct mgmt_rp_add_advertising rp;
7000 7001
	struct adv_info *adv_instance, *n;
	u8 instance;
7002 7003 7004 7005 7006 7007 7008

	BT_DBG("status %d", status);

	hci_dev_lock(hdev);

	cmd = pending_find(MGMT_OP_ADD_ADVERTISING, hdev);

7009
	if (status)
7010
		hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027

	list_for_each_entry_safe(adv_instance, n, &hdev->adv_instances, list) {
		if (!adv_instance->pending)
			continue;

		if (!status) {
			adv_instance->pending = false;
			continue;
		}

		instance = adv_instance->instance;

		if (hdev->cur_adv_instance == instance)
			cancel_adv_timeout(hdev);

		hci_remove_adv_instance(hdev, instance);
		advertising_removed(cmd ? cmd->sk : NULL, hdev, instance);
7028 7029 7030 7031 7032
	}

	if (!cmd)
		goto unlock;

7033 7034
	cp = cmd->param;
	rp.instance = cp->instance;
7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048

	if (status)
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
				mgmt_status(status));
	else
		mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
				  mgmt_status(status), &rp, sizeof(rp));

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

7049
void mgmt_adv_timeout_expired(struct hci_dev *hdev)
7050
{
7051 7052 7053
	u8 instance;
	struct hci_request req;

7054
	hdev->adv_instance_timeout = 0;
7055

7056 7057 7058 7059
	instance = get_current_adv_instance(hdev);
	if (instance == 0x00)
		return;

7060
	hci_dev_lock(hdev);
7061 7062 7063 7064 7065 7066 7067 7068 7069 7070
	hci_req_init(&req, hdev);

	clear_adv_instance(hdev, &req, instance, false);

	if (list_empty(&hdev->adv_instances))
		disable_advertising(&req);

	if (!skb_queue_empty(&req.cmd_q))
		hci_req_run(&req, NULL);

7071 7072 7073
	hci_dev_unlock(hdev);
}

7074 7075 7076 7077 7078 7079
static int add_advertising(struct sock *sk, struct hci_dev *hdev,
			   void *data, u16 data_len)
{
	struct mgmt_cp_add_advertising *cp = data;
	struct mgmt_rp_add_advertising rp;
	u32 flags;
7080
	u32 supported_flags;
7081
	u8 status;
7082 7083 7084 7085
	u16 timeout, duration;
	unsigned int prev_instance_cnt = hdev->adv_instance_cnt;
	u8 schedule_instance = 0;
	struct adv_info *next_instance;
7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097
	int err;
	struct mgmt_pending_cmd *cmd;
	struct hci_request req;

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

	status = mgmt_le_support(hdev);
	if (status)
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				       status);

	flags = __le32_to_cpu(cp->flags);
7098
	timeout = __le16_to_cpu(cp->timeout);
7099
	duration = __le16_to_cpu(cp->duration);
7100

7101 7102
	/* The current implementation only supports a subset of the specified
	 * flags.
7103 7104
	 */
	supported_flags = get_supported_adv_flags(hdev);
7105
	if (flags & ~supported_flags)
7106 7107 7108 7109 7110
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);

	hci_dev_lock(hdev);

7111 7112 7113 7114 7115 7116
	if (timeout && !hdev_is_powered(hdev)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_REJECTED);
		goto unlock;
	}

7117
	if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
7118
	    pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
7119 7120 7121 7122 7123 7124
	    pending_find(MGMT_OP_SET_LE, hdev)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_BUSY);
		goto unlock;
	}

7125
	if (!tlv_data_is_valid(hdev, flags, cp->data, cp->adv_data_len, true) ||
7126
	    !tlv_data_is_valid(hdev, flags, cp->data + cp->adv_data_len,
7127
			       cp->scan_rsp_len, false)) {
7128 7129 7130 7131 7132
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_INVALID_PARAMS);
		goto unlock;
	}

7133 7134 7135 7136 7137 7138 7139 7140 7141 7142
	err = hci_add_adv_instance(hdev, cp->instance, flags,
				   cp->adv_data_len, cp->data,
				   cp->scan_rsp_len,
				   cp->data + cp->adv_data_len,
				   timeout, duration);
	if (err < 0) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_FAILED);
		goto unlock;
	}
7143

7144 7145 7146 7147 7148
	/* Only trigger an advertising added event if a new instance was
	 * actually added.
	 */
	if (hdev->adv_instance_cnt > prev_instance_cnt)
		advertising_added(sk, hdev, cp->instance);
7149

7150
	hci_dev_set_flag(hdev, HCI_ADVERTISING_INSTANCE);
7151

7152 7153 7154 7155 7156 7157 7158
	if (hdev->cur_adv_instance == cp->instance) {
		/* If the currently advertised instance is being changed then
		 * cancel the current advertising and schedule the next
		 * instance. If there is only one instance then the overridden
		 * advertising data will be visible right away.
		 */
		cancel_adv_timeout(hdev);
7159

7160 7161 7162 7163 7164 7165 7166 7167 7168
		next_instance = hci_get_next_instance(hdev, cp->instance);
		if (next_instance)
			schedule_instance = next_instance->instance;
	} else if (!hdev->adv_instance_timeout) {
		/* Immediately advertise the new instance if no other
		 * instance is currently being advertised.
		 */
		schedule_instance = cp->instance;
	}
7169

7170 7171 7172
	/* If the HCI_ADVERTISING flag is set or the device isn't powered or
	 * there is no instance to be advertised then we have no HCI
	 * communication to make. Simply return.
7173 7174
	 */
	if (!hdev_is_powered(hdev) ||
7175 7176 7177
	    hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
	    !schedule_instance) {
		rp.instance = cp->instance;
7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
					MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
		goto unlock;
	}

	/* We're good to go, update advertising data, parameters, and start
	 * advertising.
	 */
	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_ADVERTISING, hdev, data,
			       data_len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

	hci_req_init(&req, hdev);

7195 7196 7197 7198
	err = schedule_adv_instance(&req, schedule_instance, true);

	if (!err)
		err = hci_req_run(&req, add_advertising_complete);
7199 7200 7201 7202 7203 7204 7205 7206 7207 7208

	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);

	return err;
}

7209 7210 7211 7212
static void remove_advertising_complete(struct hci_dev *hdev, u8 status,
					u16 opcode)
{
	struct mgmt_pending_cmd *cmd;
7213
	struct mgmt_cp_remove_advertising *cp;
7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227
	struct mgmt_rp_remove_advertising rp;

	BT_DBG("status %d", status);

	hci_dev_lock(hdev);

	/* A failure status here only means that we failed to disable
	 * advertising. Otherwise, the advertising instance has been removed,
	 * so report success.
	 */
	cmd = pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev);
	if (!cmd)
		goto unlock;

7228 7229
	cp = cmd->param;
	rp.instance = cp->instance;
7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245

	mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, MGMT_STATUS_SUCCESS,
			  &rp, sizeof(rp));
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

static int remove_advertising(struct sock *sk, struct hci_dev *hdev,
			      void *data, u16 data_len)
{
	struct mgmt_cp_remove_advertising *cp = data;
	struct mgmt_rp_remove_advertising rp;
	struct mgmt_pending_cmd *cmd;
	struct hci_request req;
7246
	int err;
7247 7248 7249 7250 7251

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

	hci_dev_lock(hdev);

7252
	if (cp->instance && !hci_find_adv_instance(hdev, cp->instance)) {
7253 7254 7255 7256 7257 7258
		err = mgmt_cmd_status(sk, hdev->id,
				      MGMT_OP_REMOVE_ADVERTISING,
				      MGMT_STATUS_INVALID_PARAMS);
		goto unlock;
	}

7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272
	if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
	    pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
	    pending_find(MGMT_OP_SET_LE, hdev)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
				      MGMT_STATUS_BUSY);
		goto unlock;
	}

	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
				      MGMT_STATUS_INVALID_PARAMS);
		goto unlock;
	}

7273
	hci_req_init(&req, hdev);
7274

7275
	clear_adv_instance(hdev, &req, cp->instance, true);
7276

7277 7278
	if (list_empty(&hdev->adv_instances))
		disable_advertising(&req);
7279

7280 7281 7282
	/* If no HCI commands have been collected so far or the HCI_ADVERTISING
	 * flag is set or the device isn't powered then we have no HCI
	 * communication to make. Simply return.
7283
	 */
7284 7285
	if (skb_queue_empty(&req.cmd_q) ||
	    !hdev_is_powered(hdev) ||
7286
	    hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
7287
		rp.instance = cp->instance;
7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_REMOVE_ADVERTISING,
					MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
		goto unlock;
	}

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

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

unlock:
	hci_dev_unlock(hdev);

	return err;
}

7311
static const struct hci_mgmt_handler mgmt_handlers[] = {
7312
	{ NULL }, /* 0x0000 (no command) */
7313
	{ read_version,            MGMT_READ_VERSION_SIZE,
7314 7315
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
7316
	{ read_commands,           MGMT_READ_COMMANDS_SIZE,
7317 7318
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
7319
	{ read_index_list,         MGMT_READ_INDEX_LIST_SIZE,
7320 7321 7322 7323
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
	{ read_controller_info,    MGMT_READ_INFO_SIZE,
						HCI_MGMT_UNTRUSTED },
7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336
	{ set_powered,             MGMT_SETTING_SIZE },
	{ set_discoverable,        MGMT_SET_DISCOVERABLE_SIZE },
	{ set_connectable,         MGMT_SETTING_SIZE },
	{ set_fast_connectable,    MGMT_SETTING_SIZE },
	{ set_bondable,            MGMT_SETTING_SIZE },
	{ set_link_security,       MGMT_SETTING_SIZE },
	{ set_ssp,                 MGMT_SETTING_SIZE },
	{ set_hs,                  MGMT_SETTING_SIZE },
	{ set_le,                  MGMT_SETTING_SIZE },
	{ set_dev_class,           MGMT_SET_DEV_CLASS_SIZE },
	{ set_local_name,          MGMT_SET_LOCAL_NAME_SIZE },
	{ add_uuid,                MGMT_ADD_UUID_SIZE },
	{ remove_uuid,             MGMT_REMOVE_UUID_SIZE },
7337 7338 7339 7340
	{ 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 },
7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352
	{ disconnect,              MGMT_DISCONNECT_SIZE },
	{ get_connections,         MGMT_GET_CONNECTIONS_SIZE },
	{ pin_code_reply,          MGMT_PIN_CODE_REPLY_SIZE },
	{ pin_code_neg_reply,      MGMT_PIN_CODE_NEG_REPLY_SIZE },
	{ set_io_capability,       MGMT_SET_IO_CAPABILITY_SIZE },
	{ pair_device,             MGMT_PAIR_DEVICE_SIZE },
	{ cancel_pair_device,      MGMT_CANCEL_PAIR_DEVICE_SIZE },
	{ unpair_device,           MGMT_UNPAIR_DEVICE_SIZE },
	{ user_confirm_reply,      MGMT_USER_CONFIRM_REPLY_SIZE },
	{ user_confirm_neg_reply,  MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
	{ user_passkey_reply,      MGMT_USER_PASSKEY_REPLY_SIZE },
	{ user_passkey_neg_reply,  MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
7353 7354 7355
	{ read_local_oob_data,     MGMT_READ_LOCAL_OOB_DATA_SIZE },
	{ add_remote_oob_data,     MGMT_ADD_REMOTE_OOB_DATA_SIZE,
						HCI_MGMT_VAR_LEN },
7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369
	{ remove_remote_oob_data,  MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
	{ start_discovery,         MGMT_START_DISCOVERY_SIZE },
	{ stop_discovery,          MGMT_STOP_DISCOVERY_SIZE },
	{ confirm_name,            MGMT_CONFIRM_NAME_SIZE },
	{ block_device,            MGMT_BLOCK_DEVICE_SIZE },
	{ unblock_device,          MGMT_UNBLOCK_DEVICE_SIZE },
	{ set_device_id,           MGMT_SET_DEVICE_ID_SIZE },
	{ set_advertising,         MGMT_SETTING_SIZE },
	{ set_bredr,               MGMT_SETTING_SIZE },
	{ set_static_address,      MGMT_SET_STATIC_ADDRESS_SIZE },
	{ set_scan_params,         MGMT_SET_SCAN_PARAMS_SIZE },
	{ set_secure_conn,         MGMT_SETTING_SIZE },
	{ set_debug_keys,          MGMT_SETTING_SIZE },
	{ set_privacy,             MGMT_SET_PRIVACY_SIZE },
7370 7371
	{ load_irks,               MGMT_LOAD_IRKS_SIZE,
						HCI_MGMT_VAR_LEN },
7372 7373 7374 7375
	{ get_conn_info,           MGMT_GET_CONN_INFO_SIZE },
	{ get_clock_info,          MGMT_GET_CLOCK_INFO_SIZE },
	{ add_device,              MGMT_ADD_DEVICE_SIZE },
	{ remove_device,           MGMT_REMOVE_DEVICE_SIZE },
7376 7377 7378
	{ load_conn_param,         MGMT_LOAD_CONN_PARAM_SIZE,
						HCI_MGMT_VAR_LEN },
	{ read_unconf_index_list,  MGMT_READ_UNCONF_INDEX_LIST_SIZE,
7379 7380
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
7381
	{ read_config_info,        MGMT_READ_CONFIG_INFO_SIZE,
7382 7383
						HCI_MGMT_UNCONFIGURED |
						HCI_MGMT_UNTRUSTED },
7384 7385 7386 7387 7388 7389
	{ 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 },
7390
	{ read_local_oob_ext_data, MGMT_READ_LOCAL_OOB_EXT_DATA_SIZE },
7391
	{ read_ext_index_list,     MGMT_READ_EXT_INDEX_LIST_SIZE,
7392 7393
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
7394
	{ read_adv_features,       MGMT_READ_ADV_FEATURES_SIZE },
7395 7396
	{ add_advertising,	   MGMT_ADD_ADVERTISING_SIZE,
						HCI_MGMT_VAR_LEN },
7397
	{ remove_advertising,	   MGMT_REMOVE_ADVERTISING_SIZE },
7398 7399
};

7400
void mgmt_index_added(struct hci_dev *hdev)
7401
{
7402
	struct mgmt_ev_ext_index ev;
7403

7404 7405 7406
	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		return;

7407 7408 7409 7410 7411
	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);
7412
			ev.type = 0x01;
7413 7414 7415
		} else {
			mgmt_index_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0,
					 HCI_MGMT_INDEX_EVENTS);
7416
			ev.type = 0x00;
7417 7418
		}
		break;
7419 7420 7421 7422 7423
	case HCI_AMP:
		ev.type = 0x02;
		break;
	default:
		return;
7424
	}
7425 7426 7427 7428 7429

	ev.bus = hdev->bus;

	mgmt_index_event(MGMT_EV_EXT_INDEX_ADDED, hdev, &ev, sizeof(ev),
			 HCI_MGMT_EXT_INDEX_EVENTS);
7430 7431
}

7432
void mgmt_index_removed(struct hci_dev *hdev)
7433
{
7434
	struct mgmt_ev_ext_index ev;
7435
	u8 status = MGMT_STATUS_INVALID_INDEX;
7436

7437 7438 7439
	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		return;

7440 7441 7442
	switch (hdev->dev_type) {
	case HCI_BREDR:
		mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
7443

7444 7445 7446
		if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
			mgmt_index_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev,
					 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
7447
			ev.type = 0x01;
7448 7449 7450
		} else {
			mgmt_index_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0,
					 HCI_MGMT_INDEX_EVENTS);
7451
			ev.type = 0x00;
7452 7453
		}
		break;
7454 7455 7456 7457 7458
	case HCI_AMP:
		ev.type = 0x02;
		break;
	default:
		return;
7459
	}
7460 7461 7462 7463 7464

	ev.bus = hdev->bus;

	mgmt_index_event(MGMT_EV_EXT_INDEX_REMOVED, hdev, &ev, sizeof(ev),
			 HCI_MGMT_EXT_INDEX_EVENTS);
7465 7466
}

7467
/* This function requires the caller holds hdev->lock */
7468
static void restart_le_actions(struct hci_request *req)
7469
{
7470
	struct hci_dev *hdev = req->hdev;
7471 7472 7473
	struct hci_conn_params *p;

	list_for_each_entry(p, &hdev->le_conn_params, list) {
7474 7475 7476 7477 7478 7479
		/* Needed for AUTO_OFF case where might not "really"
		 * have been powered off.
		 */
		list_del_init(&p->action);

		switch (p->auto_connect) {
7480
		case HCI_AUTO_CONN_DIRECT:
7481 7482 7483 7484 7485 7486 7487 7488
		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;
7489
		}
7490
	}
7491

7492
	__hci_update_background_scan(req);
7493 7494
}

7495
static void powered_complete(struct hci_dev *hdev, u8 status, u16 opcode)
7496 7497 7498 7499 7500
{
	struct cmd_lookup match = { NULL, hdev };

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

7501 7502 7503 7504 7505 7506 7507 7508 7509
	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);
	}

7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521
	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);
}

7522
static int powered_update_hci(struct hci_dev *hdev)
7523
{
7524
	struct hci_request req;
7525
	struct adv_info *adv_instance;
7526
	u8 link_sec;
7527

7528 7529
	hci_req_init(&req, hdev);

7530
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED) &&
7531
	    !lmp_host_ssp_capable(hdev)) {
7532
		u8 mode = 0x01;
7533

7534 7535 7536 7537
		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;
7538

7539 7540 7541
			hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT,
				    sizeof(support), &support);
		}
7542 7543
	}

7544
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
7545
	    lmp_bredr_capable(hdev)) {
7546
		struct hci_cp_write_le_host_supported cp;
7547

7548 7549
		cp.le = 0x01;
		cp.simul = 0x00;
7550

7551 7552 7553 7554 7555
		/* 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))
7556 7557
			hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
				    sizeof(cp), &cp);
7558
	}
7559

7560
	if (lmp_le_capable(hdev)) {
7561 7562 7563 7564
		/* 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.
		 */
7565 7566 7567
		if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
		    (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
		     !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))) {
7568
			update_adv_data(&req);
7569 7570
			update_scan_rsp_data(&req);
		}
7571

7572 7573 7574 7575 7576 7577 7578 7579 7580
		if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
		    hdev->cur_adv_instance == 0x00 &&
		    !list_empty(&hdev->adv_instances)) {
			adv_instance = list_first_entry(&hdev->adv_instances,
							struct adv_info, list);
			hdev->cur_adv_instance = adv_instance->instance;
		}

		if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
7581
			enable_advertising(&req);
7582 7583 7584 7585
		else if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
			 hdev->cur_adv_instance)
			schedule_adv_instance(&req, hdev->cur_adv_instance,
					      true);
7586 7587

		restart_le_actions(&req);
7588 7589
	}

7590
	link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY);
7591
	if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
7592 7593
		hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
			    sizeof(link_sec), &link_sec);
7594

7595
	if (lmp_bredr_capable(hdev)) {
7596
		if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
7597 7598 7599
			write_fast_connectable(&req, true);
		else
			write_fast_connectable(&req, false);
7600
		__hci_update_page_scan(&req);
7601
		update_class(&req);
7602
		update_name(&req);
7603
		update_eir(&req);
7604
	}
7605

7606
	return hci_req_run(&req, powered_complete);
7607
}
7608

7609 7610 7611
int mgmt_powered(struct hci_dev *hdev, u8 powered)
{
	struct cmd_lookup match = { NULL, hdev };
7612
	u8 status, zero_cod[] = { 0, 0, 0 };
7613
	int err;
7614

7615
	if (!hci_dev_test_flag(hdev, HCI_MGMT))
7616 7617 7618
		return 0;

	if (powered) {
7619 7620
		if (powered_update_hci(hdev) == 0)
			return 0;
7621

7622 7623 7624
		mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
				     &match);
		goto new_settings;
7625 7626
	}

7627
	mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
7628 7629 7630 7631 7632 7633 7634 7635

	/* 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.
	 */
7636
	if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
7637 7638 7639 7640 7641
		status = MGMT_STATUS_INVALID_INDEX;
	else
		status = MGMT_STATUS_NOT_POWERED;

	mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
7642 7643

	if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
7644 7645
		mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
				   zero_cod, sizeof(zero_cod), NULL);
7646 7647

new_settings:
7648
	err = new_settings(hdev, match.sk);
7649 7650 7651 7652

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

7653
	return err;
7654
}
7655

7656
void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
7657
{
7658
	struct mgmt_pending_cmd *cmd;
7659 7660
	u8 status;

7661
	cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
7662
	if (!cmd)
7663
		return;
7664 7665 7666 7667 7668 7669

	if (err == -ERFKILL)
		status = MGMT_STATUS_RFKILLED;
	else
		status = MGMT_STATUS_FAILED;

7670
	mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
7671 7672 7673 7674

	mgmt_pending_remove(cmd);
}

7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685
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.
	 */
7686 7687
	hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
	hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
7688 7689

	hci_req_init(&req, hdev);
7690
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
7691 7692 7693 7694
		u8 scan = SCAN_PAGE;
		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
			    sizeof(scan), &scan);
	}
7695
	update_class(&req);
7696 7697 7698 7699 7700 7701 7702

	/* Advertising instances don't use the global discoverable setting, so
	 * only update AD if advertising was enabled using Set Advertising.
	 */
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
		update_adv_data(&req);

7703 7704 7705 7706
	hci_req_run(&req, NULL);

	hdev->discov_timeout = 0;

7707 7708
	new_settings(hdev, NULL);

7709 7710 7711
	hci_dev_unlock(hdev);
}

7712 7713
void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
		       bool persistent)
7714
{
7715
	struct mgmt_ev_new_link_key ev;
7716

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

7719
	ev.store_hint = persistent;
7720
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
7721
	ev.key.addr.type = BDADDR_BREDR;
7722
	ev.key.type = key->type;
7723
	memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
7724
	ev.key.pin_len = key->pin_len;
7725

7726
	mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
7727
}
7728

7729 7730
static u8 mgmt_ltk_type(struct smp_ltk *ltk)
{
7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743
	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;
	}
7744 7745 7746 7747

	return MGMT_LTK_UNAUTHENTICATED;
}

7748
void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
7749 7750 7751 7752 7753
{
	struct mgmt_ev_new_long_term_key ev;

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

7754
	/* Devices using resolvable or non-resolvable random addresses
F
Florian Grandel 已提交
7755
	 * without providing an identity resolving key don't require
7756 7757 7758 7759 7760 7761 7762 7763 7764
	 * 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.
	 */
7765 7766 7767 7768
	if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
	    (key->bdaddr.b[5] & 0xc0) != 0xc0)
		ev.store_hint = 0x00;
	else
7769
		ev.store_hint = persistent;
7770

7771
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
7772
	ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
7773
	ev.key.type = mgmt_ltk_type(key);
7774 7775
	ev.key.enc_size = key->enc_size;
	ev.key.ediv = key->ediv;
7776
	ev.key.rand = key->rand;
7777

7778
	if (key->type == SMP_LTK)
7779 7780
		ev.key.master = 1;

7781 7782 7783
	/* Make sure we copy only the significant bytes based on the
	 * encryption key size, and set the rest of the value to zeroes.
	 */
7784
	memcpy(ev.key.val, key->val, key->enc_size);
7785 7786
	memset(ev.key.val + key->enc_size, 0,
	       sizeof(ev.key.val) - key->enc_size);
7787

7788
	mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
7789 7790
}

7791
void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk, bool persistent)
7792 7793 7794 7795 7796
{
	struct mgmt_ev_new_irk ev;

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

7797
	ev.store_hint = persistent;
7798

7799 7800 7801 7802 7803 7804 7805 7806
	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);
}

7807 7808
void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
		   bool persistent)
7809 7810 7811 7812 7813 7814
{
	struct mgmt_ev_new_csrk ev;

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

	/* Devices using resolvable or non-resolvable random addresses
F
Florian Grandel 已提交
7815
	 * without providing an identity resolving key don't require
7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826
	 * 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
7827
		ev.store_hint = persistent;
7828 7829 7830

	bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
	ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
7831
	ev.key.type = csrk->type;
7832 7833 7834 7835 7836
	memcpy(ev.key.val, csrk->val, sizeof(csrk->val));

	mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
}

7837
void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
7838 7839
			 u8 bdaddr_type, u8 store_hint, u16 min_interval,
			 u16 max_interval, u16 latency, u16 timeout)
7840 7841 7842
{
	struct mgmt_ev_new_conn_param ev;

7843 7844 7845
	if (!hci_is_identity_address(bdaddr, bdaddr_type))
		return;

7846 7847 7848
	memset(&ev, 0, sizeof(ev));
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
7849
	ev.store_hint = store_hint;
7850 7851 7852 7853 7854 7855 7856 7857
	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);
}

7858 7859
void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
			   u32 flags, u8 *name, u8 name_len)
7860
{
7861 7862 7863
	char buf[512];
	struct mgmt_ev_device_connected *ev = (void *) buf;
	u16 eir_len = 0;
7864

7865 7866
	bacpy(&ev->addr.bdaddr, &conn->dst);
	ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
7867

7868
	ev->flags = __cpu_to_le32(flags);
7869

7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881
	/* 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);
7882

7883
		if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
7884 7885 7886 7887
			eir_len = eir_append_data(ev->eir, eir_len,
						  EIR_CLASS_OF_DEV,
						  conn->dev_class, 3);
	}
7888

7889
	ev->eir_len = cpu_to_le16(eir_len);
7890

7891 7892
	mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
		    sizeof(*ev) + eir_len, NULL);
7893 7894
}

7895
static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
7896 7897 7898
{
	struct sock **sk = data;

7899
	cmd->cmd_complete(cmd, 0);
7900 7901 7902 7903

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

7904
	mgmt_pending_remove(cmd);
7905 7906
}

7907
static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
7908
{
7909
	struct hci_dev *hdev = data;
7910
	struct mgmt_cp_unpair_device *cp = cmd->param;
7911

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

7914
	cmd->cmd_complete(cmd, 0);
7915 7916 7917
	mgmt_pending_remove(cmd);
}

7918 7919
bool mgmt_powering_down(struct hci_dev *hdev)
{
7920
	struct mgmt_pending_cmd *cmd;
7921 7922
	struct mgmt_mode *cp;

7923
	cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
7924 7925 7926 7927 7928 7929 7930 7931 7932 7933
	if (!cmd)
		return false;

	cp = cmd->param;
	if (!cp->val)
		return true;

	return false;
}

7934
void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
7935 7936
			      u8 link_type, u8 addr_type, u8 reason,
			      bool mgmt_connected)
7937
{
7938
	struct mgmt_ev_device_disconnected ev;
7939 7940
	struct sock *sk = NULL;

7941 7942 7943 7944 7945 7946
	/* 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);
7947 7948
	}

7949 7950 7951
	if (!mgmt_connected)
		return;

7952 7953 7954
	if (link_type != ACL_LINK && link_type != LE_LINK)
		return;

7955
	mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
7956

7957 7958 7959
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
	ev.reason = reason;
7960

7961
	mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
7962 7963

	if (sk)
7964
		sock_put(sk);
7965

7966
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
7967
			     hdev);
7968 7969
}

7970 7971
void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
			    u8 link_type, u8 addr_type, u8 status)
7972
{
7973 7974
	u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
	struct mgmt_cp_disconnect *cp;
7975
	struct mgmt_pending_cmd *cmd;
7976

7977 7978 7979
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
			     hdev);

7980
	cmd = pending_find(MGMT_OP_DISCONNECT, hdev);
7981
	if (!cmd)
7982
		return;
7983

7984 7985 7986 7987 7988 7989 7990 7991
	cp = cmd->param;

	if (bacmp(bdaddr, &cp->addr.bdaddr))
		return;

	if (cp->addr.type != bdaddr_type)
		return;

7992
	cmd->cmd_complete(cmd, mgmt_status(status));
7993
	mgmt_pending_remove(cmd);
7994
}
7995

7996 7997
void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
			 u8 addr_type, u8 status)
7998 7999
{
	struct mgmt_ev_connect_failed ev;
8000

8001 8002 8003 8004 8005 8006
	/* 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);
8007
	}
8008

8009
	bacpy(&ev.addr.bdaddr, bdaddr);
8010
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
8011
	ev.status = mgmt_status(status);
8012

8013
	mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
8014
}
8015

8016
void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
8017 8018 8019
{
	struct mgmt_ev_pin_code_request ev;

8020
	bacpy(&ev.addr.bdaddr, bdaddr);
8021
	ev.addr.type = BDADDR_BREDR;
8022
	ev.secure = secure;
8023

8024
	mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
8025 8026
}

8027 8028
void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
				  u8 status)
8029
{
8030
	struct mgmt_pending_cmd *cmd;
8031

8032
	cmd = pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
8033
	if (!cmd)
8034
		return;
8035

8036
	cmd->cmd_complete(cmd, mgmt_status(status));
8037
	mgmt_pending_remove(cmd);
8038 8039
}

8040 8041
void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
				      u8 status)
8042
{
8043
	struct mgmt_pending_cmd *cmd;
8044

8045
	cmd = pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
8046
	if (!cmd)
8047
		return;
8048

8049
	cmd->cmd_complete(cmd, mgmt_status(status));
8050
	mgmt_pending_remove(cmd);
8051
}
8052

8053
int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
8054
			      u8 link_type, u8 addr_type, u32 value,
8055
			      u8 confirm_hint)
8056 8057 8058
{
	struct mgmt_ev_user_confirm_request ev;

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

8061
	bacpy(&ev.addr.bdaddr, bdaddr);
8062
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
8063
	ev.confirm_hint = confirm_hint;
8064
	ev.value = cpu_to_le32(value);
8065

8066
	return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
8067
			  NULL);
8068 8069
}

8070
int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
8071
			      u8 link_type, u8 addr_type)
8072 8073 8074 8075 8076
{
	struct mgmt_ev_user_passkey_request ev;

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

8077
	bacpy(&ev.addr.bdaddr, bdaddr);
8078
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
8079 8080

	return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
8081
			  NULL);
8082 8083
}

8084
static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8085 8086
				      u8 link_type, u8 addr_type, u8 status,
				      u8 opcode)
8087
{
8088
	struct mgmt_pending_cmd *cmd;
8089

8090
	cmd = pending_find(opcode, hdev);
8091 8092 8093
	if (!cmd)
		return -ENOENT;

8094
	cmd->cmd_complete(cmd, mgmt_status(status));
8095
	mgmt_pending_remove(cmd);
8096

8097
	return 0;
8098 8099
}

8100
int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8101
				     u8 link_type, u8 addr_type, u8 status)
8102
{
8103
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
8104
					  status, MGMT_OP_USER_CONFIRM_REPLY);
8105 8106
}

8107
int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8108
					 u8 link_type, u8 addr_type, u8 status)
8109
{
8110
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
8111 8112
					  status,
					  MGMT_OP_USER_CONFIRM_NEG_REPLY);
8113
}
8114

8115
int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8116
				     u8 link_type, u8 addr_type, u8 status)
8117
{
8118
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
8119
					  status, MGMT_OP_USER_PASSKEY_REPLY);
8120 8121
}

8122
int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8123
					 u8 link_type, u8 addr_type, u8 status)
8124
{
8125
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
8126 8127
					  status,
					  MGMT_OP_USER_PASSKEY_NEG_REPLY);
8128 8129
}

8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145
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);
}

8146
void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
8147 8148
{
	struct mgmt_ev_auth_failed ev;
8149
	struct mgmt_pending_cmd *cmd;
8150
	u8 status = mgmt_status(hci_status);
8151

8152 8153 8154
	bacpy(&ev.addr.bdaddr, &conn->dst);
	ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
	ev.status = status;
8155

8156 8157 8158 8159 8160
	cmd = find_pairing(conn);

	mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
		    cmd ? cmd->sk : NULL);

8161 8162 8163 8164
	if (cmd) {
		cmd->cmd_complete(cmd, status);
		mgmt_pending_remove(cmd);
	}
8165
}
8166

8167
void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
8168 8169
{
	struct cmd_lookup match = { NULL, hdev };
8170
	bool changed;
8171 8172 8173 8174

	if (status) {
		u8 mgmt_err = mgmt_status(status);
		mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
8175
				     cmd_status_rsp, &mgmt_err);
8176
		return;
8177 8178
	}

8179
	if (test_bit(HCI_AUTH, &hdev->flags))
8180
		changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
8181
	else
8182
		changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
8183

8184
	mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
8185
			     &match);
8186

8187
	if (changed)
8188
		new_settings(hdev, match.sk);
8189 8190 8191 8192 8193

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

8194
static void clear_eir(struct hci_request *req)
8195
{
8196
	struct hci_dev *hdev = req->hdev;
8197 8198
	struct hci_cp_write_eir cp;

8199
	if (!lmp_ext_inq_capable(hdev))
8200
		return;
8201

8202 8203
	memset(hdev->eir, 0, sizeof(hdev->eir));

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

8206
	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
8207 8208
}

8209
void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
8210 8211
{
	struct cmd_lookup match = { NULL, hdev };
8212
	struct hci_request req;
8213
	bool changed = false;
8214 8215 8216

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

8218 8219
		if (enable && hci_dev_test_and_clear_flag(hdev,
							  HCI_SSP_ENABLED)) {
8220
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
8221
			new_settings(hdev, NULL);
8222
		}
8223

8224 8225
		mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
				     &mgmt_err);
8226
		return;
8227 8228 8229
	}

	if (enable) {
8230
		changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
8231
	} else {
8232
		changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
8233
		if (!changed)
8234 8235
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_HS_ENABLED);
8236
		else
8237
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
8238 8239 8240 8241
	}

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

8242
	if (changed)
8243
		new_settings(hdev, match.sk);
8244

8245
	if (match.sk)
8246 8247
		sock_put(match.sk);

8248 8249
	hci_req_init(&req, hdev);

8250 8251
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
		if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
8252 8253
			hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
				    sizeof(enable), &enable);
8254
		update_eir(&req);
8255
	} else {
8256
		clear_eir(&req);
8257
	}
8258 8259

	hci_req_run(&req, NULL);
8260 8261
}

8262
static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
8263 8264 8265 8266 8267 8268 8269 8270 8271
{
	struct cmd_lookup *match = data;

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

8272 8273
void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
				    u8 status)
8274
{
8275
	struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
8276

8277 8278 8279
	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);
8280 8281

	if (!status)
8282 8283
		mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
				   dev_class, 3, NULL);
8284 8285 8286

	if (match.sk)
		sock_put(match.sk);
8287 8288
}

8289
void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
8290 8291
{
	struct mgmt_cp_set_local_name ev;
8292
	struct mgmt_pending_cmd *cmd;
8293

8294
	if (status)
8295
		return;
8296 8297 8298

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

8301
	cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
8302 8303
	if (!cmd) {
		memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
8304

8305 8306 8307
		/* If this is a HCI command related to powering on the
		 * HCI dev don't send any mgmt signals.
		 */
8308
		if (pending_find(MGMT_OP_SET_POWERED, hdev))
8309
			return;
8310
	}
8311

8312 8313
	mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
			   cmd ? cmd->sk : NULL);
8314
}
8315

8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327
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;
}

8328 8329
static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
{
8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346
	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) {
8347
				memcpy(uuid, bluetooth_base_uuid, 16);
8348 8349 8350 8351 8352 8353 8354 8355 8356
				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) {
8357
				memcpy(uuid, bluetooth_base_uuid, 16);
8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379
				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;
	}

8380 8381 8382
	return false;
}

8383 8384 8385
static void restart_le_scan(struct hci_dev *hdev)
{
	/* If controller is not scanning we are done. */
8386
	if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397
		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);
}

8398 8399
static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
			    u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
8400
{
8401 8402 8403 8404 8405
	/* 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.
8406 8407 8408
	 *
	 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
	 * the results are also dropped.
8409 8410
	 */
	if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
8411 8412 8413
	    (rssi == HCI_RSSI_INVALID ||
	    (rssi < hdev->discovery.rssi &&
	     !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
8414
		return  false;
8415

8416 8417 8418
	if (hdev->discovery.uuid_count != 0) {
		/* If a list of UUIDs is provided in filter, results with no
		 * matching UUID should be dropped.
8419
		 */
8420 8421 8422 8423 8424 8425
		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;
8426
	}
8427

8428 8429
	/* If duplicate filtering does not report RSSI changes, then restart
	 * scanning to ensure updated result with updated RSSI values.
8430
	 */
8431 8432 8433 8434 8435 8436 8437 8438
	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;
	}
8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461

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

8462
	if (hdev->discovery.result_filtering) {
8463 8464 8465 8466 8467 8468 8469 8470 8471 8472
		/* 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))
8473 8474
		return;

8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505
	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);

8506 8507
	ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
	ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
8508

8509
	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
8510
}
8511

8512 8513
void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
		      u8 addr_type, s8 rssi, u8 *name, u8 name_len)
8514
{
8515 8516 8517
	struct mgmt_ev_device_found *ev;
	char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
	u16 eir_len;
8518

8519
	ev = (struct mgmt_ev_device_found *) buf;
8520

8521 8522 8523
	memset(buf, 0, sizeof(buf));

	bacpy(&ev->addr.bdaddr, bdaddr);
8524
	ev->addr.type = link_to_bdaddr(link_type, addr_type);
8525 8526 8527
	ev->rssi = rssi;

	eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
8528
				  name_len);
8529

8530
	ev->eir_len = cpu_to_le16(eir_len);
8531

8532
	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
8533
}
8534

8535
void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
8536
{
8537
	struct mgmt_ev_discovering ev;
8538

8539 8540
	BT_DBG("%s discovering %u", hdev->name, discovering);

8541 8542 8543 8544
	memset(&ev, 0, sizeof(ev));
	ev.type = hdev->discovery.type;
	ev.discovering = discovering;

8545
	mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
8546
}
8547

8548
static void adv_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
8549 8550 8551 8552 8553 8554 8555
{
	BT_DBG("%s status %u", hdev->name, status);
}

void mgmt_reenable_advertising(struct hci_dev *hdev)
{
	struct hci_request req;
8556
	u8 instance;
8557

8558 8559
	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
	    !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
8560 8561
		return;

8562 8563
	instance = get_current_adv_instance(hdev);

8564
	hci_req_init(&req, hdev);
8565 8566 8567 8568 8569 8570 8571 8572 8573

	if (instance) {
		schedule_adv_instance(&req, instance, true);
	} else {
		update_adv_data(&req);
		update_scan_rsp_data(&req);
		enable_advertising(&req);
	}

8574
	hci_req_run(&req, adv_enable_complete);
8575
}
8576 8577 8578 8579 8580

static struct hci_mgmt_chan chan = {
	.channel	= HCI_CHANNEL_CONTROL,
	.handler_count	= ARRAY_SIZE(mgmt_handlers),
	.handlers	= mgmt_handlers,
8581
	.hdev_init	= mgmt_init_hdev,
8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592
};

int mgmt_init(void)
{
	return hci_mgmt_chan_register(&chan);
}

void mgmt_exit(void)
{
	hci_mgmt_chan_unregister(&chan);
}