mgmt.c 199.9 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	9
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
static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
			u16 data_len)
273 274 275 276 277 278
{
	struct mgmt_rp_read_version rp;

	BT_DBG("sock %p", sk);

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

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

285 286
static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 data_len)
287 288
{
	struct mgmt_rp_read_commands *rp;
289
	u16 num_commands, num_events;
290 291 292 293 294
	size_t rp_size;
	int i, err;

	BT_DBG("sock %p", sk);

295 296 297 298 299 300 301 302
	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);
	}

303 304 305 306 307 308
	rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));

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

309 310
	rp->num_commands = cpu_to_le16(num_commands);
	rp->num_events = cpu_to_le16(num_events);
311

312 313 314 315 316
	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);
317

318 319 320 321 322 323 324 325 326 327 328
		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);
	}
329

330 331
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0,
				rp, rp_size);
332 333 334 335 336
	kfree(rp);

	return err;
}

337 338
static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
339 340
{
	struct mgmt_rp_read_index_list *rp;
341
	struct hci_dev *d;
342
	size_t rp_len;
343
	u16 count;
344
	int err;
345 346 347 348 349 350

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

	count = 0;
351
	list_for_each_entry(d, &hci_dev_list, list) {
352
		if (d->dev_type == HCI_BREDR &&
353
		    !hci_dev_test_flag(d, HCI_UNCONFIGURED))
354
			count++;
355 356
	}

357 358 359
	rp_len = sizeof(*rp) + (2 * count);
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
360
		read_unlock(&hci_dev_list_lock);
361
		return -ENOMEM;
362
	}
363

364
	count = 0;
365
	list_for_each_entry(d, &hci_dev_list, list) {
366 367 368
		if (hci_dev_test_flag(d, HCI_SETUP) ||
		    hci_dev_test_flag(d, HCI_CONFIG) ||
		    hci_dev_test_flag(d, HCI_USER_CHANNEL))
369 370
			continue;

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

377
		if (d->dev_type == HCI_BREDR &&
378
		    !hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
379 380 381
			rp->index[count++] = cpu_to_le16(d->id);
			BT_DBG("Added hci%u", d->id);
		}
382 383
	}

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

387 388
	read_unlock(&hci_dev_list_lock);

389 390
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST,
				0, rp, rp_len);
391

392 393 394
	kfree(rp);

	return err;
395 396
}

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

449 450
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
				MGMT_OP_READ_UNCONF_INDEX_LIST, 0, rp, rp_len);
451 452 453 454 455 456

	kfree(rp);

	return err;
}

457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 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
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;
}

533 534 535
static bool is_configured(struct hci_dev *hdev)
{
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
536
	    !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
537 538 539 540 541 542 543 544 545
		return false;

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

	return true;
}

546 547 548 549
static __le32 get_missing_options(struct hci_dev *hdev)
{
	u32 options = 0;

550
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
551
	    !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
552 553
		options |= MGMT_OPTION_EXTERNAL_CONFIG;

554 555 556 557 558 559 560
	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);
}

561 562 563 564
static int new_options(struct hci_dev *hdev, struct sock *skip)
{
	__le32 options = get_missing_options(hdev);

565 566
	return mgmt_generic_event(MGMT_EV_NEW_CONFIG_OPTIONS, hdev, &options,
				  sizeof(options), skip);
567 568
}

569 570 571 572
static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
{
	__le32 options = get_missing_options(hdev);

573 574
	return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &options,
				 sizeof(options));
575 576
}

577 578 579 580
static int read_config_info(struct sock *sk, struct hci_dev *hdev,
			    void *data, u16 data_len)
{
	struct mgmt_rp_read_config_info rp;
581
	u32 options = 0;
582 583 584 585 586 587 588

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

	hci_dev_lock(hdev);

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

590 591 592
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
		options |= MGMT_OPTION_EXTERNAL_CONFIG;

593
	if (hdev->set_bdaddr)
594 595 596 597
		options |= MGMT_OPTION_PUBLIC_ADDRESS;

	rp.supported_options = cpu_to_le32(options);
	rp.missing_options = get_missing_options(hdev);
598 599 600

	hci_dev_unlock(hdev);

601 602
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0,
				 &rp, sizeof(rp));
603 604
}

605 606 607 608 609
static u32 get_supported_settings(struct hci_dev *hdev)
{
	u32 settings = 0;

	settings |= MGMT_SETTING_POWERED;
610
	settings |= MGMT_SETTING_BONDABLE;
611
	settings |= MGMT_SETTING_DEBUG_KEYS;
612 613
	settings |= MGMT_SETTING_CONNECTABLE;
	settings |= MGMT_SETTING_DISCOVERABLE;
614

615
	if (lmp_bredr_capable(hdev)) {
616 617
		if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
			settings |= MGMT_SETTING_FAST_CONNECTABLE;
618 619
		settings |= MGMT_SETTING_BREDR;
		settings |= MGMT_SETTING_LINK_SECURITY;
620 621 622 623 624

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

626
		if (lmp_sc_capable(hdev))
627
			settings |= MGMT_SETTING_SECURE_CONN;
628
	}
629

630
	if (lmp_le_capable(hdev)) {
631
		settings |= MGMT_SETTING_LE;
632
		settings |= MGMT_SETTING_ADVERTISING;
633
		settings |= MGMT_SETTING_SECURE_CONN;
634
		settings |= MGMT_SETTING_PRIVACY;
635
		settings |= MGMT_SETTING_STATIC_ADDRESS;
636
	}
637

638 639
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
	    hdev->set_bdaddr)
640 641
		settings |= MGMT_SETTING_CONFIGURATION;

642 643 644 645 646 647 648
	return settings;
}

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

649
	if (hdev_is_powered(hdev))
650 651
		settings |= MGMT_SETTING_POWERED;

652
	if (hci_dev_test_flag(hdev, HCI_CONNECTABLE))
653 654
		settings |= MGMT_SETTING_CONNECTABLE;

655
	if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
656 657
		settings |= MGMT_SETTING_FAST_CONNECTABLE;

658
	if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
659 660
		settings |= MGMT_SETTING_DISCOVERABLE;

661
	if (hci_dev_test_flag(hdev, HCI_BONDABLE))
662
		settings |= MGMT_SETTING_BONDABLE;
663

664
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
665 666
		settings |= MGMT_SETTING_BREDR;

667
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
668 669
		settings |= MGMT_SETTING_LE;

670
	if (hci_dev_test_flag(hdev, HCI_LINK_SECURITY))
671 672
		settings |= MGMT_SETTING_LINK_SECURITY;

673
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
674 675
		settings |= MGMT_SETTING_SSP;

676
	if (hci_dev_test_flag(hdev, HCI_HS_ENABLED))
677 678
		settings |= MGMT_SETTING_HS;

679
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
680 681
		settings |= MGMT_SETTING_ADVERTISING;

682
	if (hci_dev_test_flag(hdev, HCI_SC_ENABLED))
683 684
		settings |= MGMT_SETTING_SECURE_CONN;

685
	if (hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS))
686 687
		settings |= MGMT_SETTING_DEBUG_KEYS;

688
	if (hci_dev_test_flag(hdev, HCI_PRIVACY))
689 690
		settings |= MGMT_SETTING_PRIVACY;

691 692 693 694 695
	/* 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
696
	 * will never be set. If the address is configured, then if the
697 698 699 700 701 702
	 * 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.
	 */
703
	if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
704
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
705 706 707 708 709
	    !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
		if (bacmp(&hdev->static_addr, BDADDR_ANY))
			settings |= MGMT_SETTING_STATIC_ADDRESS;
	}

710 711 712
	return settings;
}

713 714
#define PNP_INFO_SVCLASS_ID		0x1200

715 716 717 718 719 720 721 722 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
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;
}

757 758 759 760 761 762 763 764 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
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;
}

790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
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;
}

823 824 825 826 827 828 829 830 831 832 833 834
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);
}

835
static u8 create_default_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
836
{
837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858
	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;
859 860
}

861 862 863 864 865 866 867 868 869 870 871 872 873
static u8 create_instance_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
{
	/* TODO: Set the appropriate entries based on advertising instance flags
	 * here once flags other than 0 are supported.
	 */
	memcpy(ptr, hdev->adv_instance.scan_rsp_data,
	       hdev->adv_instance.scan_rsp_len);

	return hdev->adv_instance.scan_rsp_len;
}

static void update_scan_rsp_data_for_instance(struct hci_request *req,
					      u8 instance)
874 875 876 877 878
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_scan_rsp_data cp;
	u8 len;

879
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
880 881 882 883
		return;

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

884 885 886 887
	if (instance)
		len = create_instance_scan_rsp_data(hdev, cp.data);
	else
		len = create_default_scan_rsp_data(hdev, cp.data);
888

889
	if (hdev->scan_rsp_data_len == len &&
890
	    !memcmp(cp.data, hdev->scan_rsp_data, len))
891 892
		return;

893 894
	memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
	hdev->scan_rsp_data_len = len;
895 896 897 898 899 900

	cp.length = len;

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

901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919
static void update_scan_rsp_data(struct hci_request *req)
{
	struct hci_dev *hdev = req->hdev;
	u8 instance;

	/* The "Set Advertising" setting supersedes the "Add Advertising"
	 * setting. Here we set the scan response 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))
		instance = 0x01;
	else
		instance = 0x00;

	update_scan_rsp_data_for_instance(req, instance);
}

920 921
static u8 get_adv_discov_flags(struct hci_dev *hdev)
{
922
	struct mgmt_pending_cmd *cmd;
923 924 925 926

	/* If there's a pending mgmt command the flags will not yet have
	 * their final values, so check for this first.
	 */
927
	cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
928 929 930 931 932 933 934
	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 {
935
		if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
936
			return LE_AD_LIMITED;
937
		else if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
938 939 940 941 942 943
			return LE_AD_GENERAL;
	}

	return 0;
}

944
static u8 get_current_adv_instance(struct hci_dev *hdev)
945
{
946 947 948 949 950 951 952 953
	/* 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))
		return 0x01;
954

955 956
	return 0x00;
}
957

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

979 980 981 982 983 984 985 986 987
	if (instance > 0x01)
		return 0;

	if (instance == 0x01)
		return hdev->adv_instance.flags;

	/* Instance 0 always manages the "Tx Power" and "Flags" fields */
	flags = MGMT_ADV_FLAG_TX_POWER | MGMT_ADV_FLAG_MANAGED_FLAGS;

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

	return flags;
995 996
}

997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008
static u8 get_adv_instance_scan_rsp_len(struct hci_dev *hdev, u8 instance)
{
	/* Ignore instance 0 and other unsupported instances */
	if (instance != 0x01)
		return 0;

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

1009
static u8 create_instance_adv_data(struct hci_dev *hdev, u8 instance, u8 *ptr)
1010
{
1011
	u8 ad_len = 0, flags = 0;
1012
	u32 instance_flags = get_adv_instance_flags(hdev, instance);
1013

1014 1015 1016
	/* The Add Advertising command allows userspace to set both the general
	 * and limited discoverable flags.
	 */
1017
	if (instance_flags & MGMT_ADV_FLAG_DISCOV)
1018 1019
		flags |= LE_AD_GENERAL;

1020
	if (instance_flags & MGMT_ADV_FLAG_LIMITED_DISCOV)
1021 1022
		flags |= LE_AD_LIMITED;

1023
	if (flags || (instance_flags & MGMT_ADV_FLAG_MANAGED_FLAGS)) {
1024 1025 1026 1027 1028 1029
		/* If a discovery flag wasn't provided, simply use the global
		 * settings.
		 */
		if (!flags)
			flags |= get_adv_discov_flags(hdev);

1030 1031 1032
		if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
			flags |= LE_AD_NO_BREDR;

1033 1034 1035 1036 1037 1038 1039
		/* 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;
1040

1041 1042 1043
			ad_len += 3;
			ptr += 3;
		}
1044 1045
	}

1046
	/* Provide Tx Power only if we can provide a valid value for it */
1047
	if (hdev->adv_tx_power != HCI_TX_POWER_INVALID &&
1048
	    (instance_flags & MGMT_ADV_FLAG_TX_POWER)) {
1049 1050 1051 1052 1053 1054 1055 1056
		ptr[0] = 0x02;
		ptr[1] = EIR_TX_POWER;
		ptr[2] = (u8)hdev->adv_tx_power;

		ad_len += 3;
		ptr += 3;
	}

1057 1058 1059 1060 1061
	if (instance) {
		memcpy(ptr, hdev->adv_instance.adv_data,
		       hdev->adv_instance.adv_data_len);
		ad_len += hdev->adv_instance.adv_data_len;
	}
1062

1063
	return ad_len;
1064 1065 1066
}

static void update_adv_data_for_instance(struct hci_request *req, u8 instance)
1067 1068 1069 1070 1071
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_adv_data cp;
	u8 len;

1072
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1073 1074 1075 1076
		return;

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

1077
	len = create_instance_adv_data(hdev, instance, cp.data);
1078

1079
	/* There's nothing to do if the data hasn't changed */
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
	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);
}

1092 1093 1094 1095
static void update_adv_data(struct hci_request *req)
{
	struct hci_dev *hdev = req->hdev;
	u8 instance = get_current_adv_instance(hdev);
1096 1097 1098 1099

	update_adv_data_for_instance(req, instance);
}

1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
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);
}

1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132
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);
	}

1133
	if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
1134 1135 1136 1137 1138 1139 1140
		ptr[0] = 2;
		ptr[1] = EIR_TX_POWER;
		ptr[2] = (u8) hdev->inq_tx_power;

		ptr += 3;
	}

1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152
	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;
	}

1153
	ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
1154
	ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
1155
	ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
1156 1157
}

1158
static void update_eir(struct hci_request *req)
1159
{
1160
	struct hci_dev *hdev = req->hdev;
1161 1162
	struct hci_cp_write_eir cp;

1163
	if (!hdev_is_powered(hdev))
1164
		return;
1165

1166
	if (!lmp_ext_inq_capable(hdev))
1167
		return;
1168

1169
	if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
1170
		return;
1171

1172
	if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
1173
		return;
1174 1175 1176 1177 1178 1179

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

	create_eir(hdev, cp.data);

	if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
1180
		return;
1181 1182 1183

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

1184
	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197
}

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

1198
static void update_class(struct hci_request *req)
1199
{
1200
	struct hci_dev *hdev = req->hdev;
1201 1202 1203 1204
	u8 cod[3];

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

1205
	if (!hdev_is_powered(hdev))
1206
		return;
1207

1208
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1209 1210
		return;

1211
	if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
1212
		return;
1213 1214 1215 1216 1217

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

1218
	if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
1219 1220
		cod[1] |= 0x20;

1221
	if (memcmp(cod, hdev->dev_class, 3) == 0)
1222
		return;
1223

1224
	hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
1225 1226
}

1227 1228 1229 1230 1231 1232 1233
static void disable_advertising(struct hci_request *req)
{
	u8 enable = 0x00;

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

1234 1235 1236 1237
static void enable_advertising(struct hci_request *req)
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_adv_param cp;
1238
	u8 own_addr_type, enable = 0x01;
1239
	bool connectable;
1240 1241
	u8 instance;
	u32 flags;
1242

1243 1244 1245
	if (hci_conn_num(hdev, LE_LINK) > 0)
		return;

1246
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
1247 1248
		disable_advertising(req);

1249
	/* Clear the HCI_LE_ADV bit temporarily so that the
1250 1251 1252 1253
	 * 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.
	 */
1254
	hci_dev_clear_flag(hdev, HCI_LE_ADV);
1255

1256 1257
	instance = get_current_adv_instance(hdev);
	flags = get_adv_instance_flags(hdev, instance);
1258 1259 1260 1261 1262 1263

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

1265 1266 1267 1268 1269
	/* 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)
1270 1271
		return;

1272
	memset(&cp, 0, sizeof(cp));
1273 1274
	cp.min_interval = cpu_to_le16(hdev->le_adv_min_interval);
	cp.max_interval = cpu_to_le16(hdev->le_adv_max_interval);
1275 1276 1277 1278 1279 1280 1281 1282

	if (connectable)
		cp.type = LE_ADV_IND;
	else if (get_adv_instance_scan_rsp_len(hdev, instance))
		cp.type = LE_ADV_SCAN_IND;
	else
		cp.type = LE_ADV_NONCONN_IND;

1283
	cp.own_address_type = own_addr_type;
1284 1285 1286 1287 1288 1289 1290
	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);
}

1291 1292 1293
static void service_cache_off(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
1294
					    service_cache.work);
1295
	struct hci_request req;
1296

1297
	if (!hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
1298 1299
		return;

1300 1301
	hci_req_init(&req, hdev);

1302 1303
	hci_dev_lock(hdev);

1304 1305
	update_eir(&req);
	update_class(&req);
1306 1307

	hci_dev_unlock(hdev);
1308 1309

	hci_req_run(&req, NULL);
1310 1311
}

1312 1313 1314 1315 1316 1317 1318 1319
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("");

1320
	hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
1321

1322
	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
1323 1324 1325 1326 1327 1328 1329 1330 1331 1332
		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);
}

1333
static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
1334
{
1335
	if (hci_dev_test_and_set_flag(hdev, HCI_MGMT))
1336 1337
		return;

1338
	INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
1339
	INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
1340

1341 1342 1343 1344 1345
	/* 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
	 */
1346
	hci_dev_clear_flag(hdev, HCI_BONDABLE);
1347 1348
}

1349
static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
1350
				void *data, u16 data_len)
1351
{
1352
	struct mgmt_rp_read_info rp;
1353

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

1356
	hci_dev_lock(hdev);
1357

1358 1359
	memset(&rp, 0, sizeof(rp));

1360
	bacpy(&rp.bdaddr, &hdev->bdaddr);
1361

1362
	rp.version = hdev->hci_ver;
1363
	rp.manufacturer = cpu_to_le16(hdev->manufacturer);
1364 1365 1366

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

1368
	memcpy(rp.dev_class, hdev->dev_class, 3);
1369

1370
	memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
1371
	memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
1372

1373
	hci_dev_unlock(hdev);
1374

1375 1376
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
				 sizeof(rp));
1377 1378
}

1379
static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
1380
{
1381
	__le32 settings = cpu_to_le32(get_current_settings(hdev));
1382

1383 1384
	return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &settings,
				 sizeof(settings));
1385 1386
}

1387
static void clean_up_hci_complete(struct hci_dev *hdev, u8 status, u16 opcode)
1388 1389 1390
{
	BT_DBG("%s status 0x%02x", hdev->name, status);

1391 1392
	if (hci_conn_count(hdev) == 0) {
		cancel_delayed_work(&hdev->power_off);
1393
		queue_work(hdev->req_workqueue, &hdev->power_off.work);
1394
	}
1395 1396
}

1397
static bool hci_stop_discovery(struct hci_request *req)
1398 1399 1400 1401 1402 1403 1404
{
	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:
1405
		if (test_bit(HCI_INQUIRY, &hdev->flags))
1406
			hci_req_add(req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
1407 1408

		if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
1409 1410 1411 1412
			cancel_delayed_work(&hdev->le_scan_disable);
			hci_req_add_le_scan_disable(req);
		}

1413
		return true;
1414 1415 1416 1417 1418

	case DISCOVERY_RESOLVING:
		e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
						     NAME_PENDING);
		if (!e)
1419
			break;
1420 1421 1422 1423 1424

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

1425
		return true;
1426 1427 1428

	default:
		/* Passive scanning */
1429
		if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
1430
			hci_req_add_le_scan_disable(req);
1431 1432 1433
			return true;
		}

1434 1435
		break;
	}
1436 1437

	return false;
1438 1439
}

1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482
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);
}

static void clear_adv_instance(struct hci_dev *hdev)
{
	struct hci_request req;

	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
		return;

	if (hdev->adv_instance.timeout)
		cancel_delayed_work(&hdev->adv_instance.timeout_exp);

	memset(&hdev->adv_instance, 0, sizeof(hdev->adv_instance));
	advertising_removed(NULL, hdev, 1);
	hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);

	if (!hdev_is_powered(hdev) ||
	    hci_dev_test_flag(hdev, HCI_ADVERTISING))
		return;

	hci_req_init(&req, hdev);
	disable_advertising(&req);
	hci_req_run(&req, NULL);
}

1483 1484 1485 1486
static int clean_up_hci_state(struct hci_dev *hdev)
{
	struct hci_request req;
	struct hci_conn *conn;
1487 1488
	bool discov_stopped;
	int err;
1489 1490 1491 1492 1493 1494 1495 1496 1497

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

1498 1499 1500
	if (hdev->adv_instance.timeout)
		clear_adv_instance(hdev);

1501
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
1502 1503
		disable_advertising(&req);

1504
	discov_stopped = hci_stop_discovery(&req);
1505 1506 1507

	list_for_each_entry(conn, &hdev->conn_hash.list, list) {
		struct hci_cp_disconnect dc;
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
		struct hci_cp_reject_conn_req rej;

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

1538 1539 1540 1541 1542
	err = hci_req_run(&req, clean_up_hci_complete);
	if (!err && discov_stopped)
		hci_discovery_set_state(hdev, DISCOVERY_STOPPING);

	return err;
1543 1544
}

1545
static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
1546
		       u16 len)
1547
{
1548
	struct mgmt_mode *cp = data;
1549
	struct mgmt_pending_cmd *cmd;
1550
	int err;
1551

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

1554
	if (cp->val != 0x00 && cp->val != 0x01)
1555 1556
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
				       MGMT_STATUS_INVALID_PARAMS);
1557

1558
	hci_dev_lock(hdev);
1559

1560
	if (pending_find(MGMT_OP_SET_POWERED, hdev)) {
1561 1562
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
				      MGMT_STATUS_BUSY);
1563 1564 1565
		goto failed;
	}

1566
	if (hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) {
1567 1568 1569
		cancel_delayed_work(&hdev->power_off);

		if (cp->val) {
1570 1571 1572
			mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
					 data, len);
			err = mgmt_powered(hdev, 1);
1573 1574 1575 1576
			goto failed;
		}
	}

1577
	if (!!cp->val == hdev_is_powered(hdev)) {
1578
		err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
1579 1580 1581
		goto failed;
	}

1582
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1583 1584
	if (!cmd) {
		err = -ENOMEM;
1585
		goto failed;
1586
	}
1587

1588
	if (cp->val) {
1589
		queue_work(hdev->req_workqueue, &hdev->power_on);
1590 1591 1592 1593
		err = 0;
	} else {
		/* Disconnect connections, stop scans, etc */
		err = clean_up_hci_state(hdev);
1594 1595 1596
		if (!err)
			queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
					   HCI_POWER_OFF_TIMEOUT);
1597

1598 1599
		/* ENODATA means there were no HCI commands queued */
		if (err == -ENODATA) {
1600
			cancel_delayed_work(&hdev->power_off);
1601 1602 1603 1604
			queue_work(hdev->req_workqueue, &hdev->power_off.work);
			err = 0;
		}
	}
1605 1606

failed:
1607
	hci_dev_unlock(hdev);
1608
	return err;
1609 1610
}

1611 1612
static int new_settings(struct hci_dev *hdev, struct sock *skip)
{
1613
	__le32 ev = cpu_to_le32(get_current_settings(hdev));
1614

1615 1616
	return mgmt_generic_event(MGMT_EV_NEW_SETTINGS, hdev, &ev,
				  sizeof(ev), skip);
1617 1618
}

1619 1620 1621 1622 1623
int mgmt_new_settings(struct hci_dev *hdev)
{
	return new_settings(hdev, NULL);
}

1624 1625 1626 1627 1628 1629
struct cmd_lookup {
	struct sock *sk;
	struct hci_dev *hdev;
	u8 mgmt_status;
};

1630
static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data)
1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645
{
	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);
}

1646
static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data)
1647 1648 1649
{
	u8 *status = data;

1650
	mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
1651 1652 1653
	mgmt_pending_remove(cmd);
}

1654
static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data)
1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667
{
	if (cmd->cmd_complete) {
		u8 *status = data;

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

		return;
	}

	cmd_status_rsp(cmd, data);
}

1668
static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
1669
{
1670 1671
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, cmd->param_len);
1672 1673
}

1674
static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
1675
{
1676 1677
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, sizeof(struct mgmt_addr_info));
1678 1679
}

1680 1681 1682 1683
static u8 mgmt_bredr_support(struct hci_dev *hdev)
{
	if (!lmp_bredr_capable(hdev))
		return MGMT_STATUS_NOT_SUPPORTED;
1684
	else if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1685 1686 1687 1688 1689 1690 1691 1692 1693
		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;
1694
	else if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1695 1696 1697 1698 1699
		return MGMT_STATUS_REJECTED;
	else
		return MGMT_STATUS_SUCCESS;
}

1700 1701
static void set_discoverable_complete(struct hci_dev *hdev, u8 status,
				      u16 opcode)
1702
{
1703
	struct mgmt_pending_cmd *cmd;
1704
	struct mgmt_mode *cp;
1705
	struct hci_request req;
1706 1707 1708 1709 1710 1711
	bool changed;

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

	hci_dev_lock(hdev);

1712
	cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
1713 1714 1715 1716 1717
	if (!cmd)
		goto unlock;

	if (status) {
		u8 mgmt_err = mgmt_status(status);
1718
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1719
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1720 1721 1722 1723
		goto remove_cmd;
	}

	cp = cmd->param;
1724
	if (cp->val) {
1725
		changed = !hci_dev_test_and_set_flag(hdev, HCI_DISCOVERABLE);
1726 1727 1728 1729 1730 1731 1732

		if (hdev->discov_timeout > 0) {
			int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
			queue_delayed_work(hdev->workqueue, &hdev->discov_off,
					   to);
		}
	} else {
1733
		changed = hci_dev_test_and_clear_flag(hdev, HCI_DISCOVERABLE);
1734
	}
1735 1736 1737 1738 1739 1740

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

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

1741 1742
	/* When the discoverable mode gets changed, make sure
	 * that class of device has the limited discoverable
1743 1744
	 * bit correctly set. Also update page scan based on whitelist
	 * entries.
1745 1746
	 */
	hci_req_init(&req, hdev);
1747
	__hci_update_page_scan(&req);
1748 1749 1750
	update_class(&req);
	hci_req_run(&req, NULL);

1751 1752 1753 1754 1755 1756 1757
remove_cmd:
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

1758
static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
1759
			    u16 len)
1760
{
1761
	struct mgmt_cp_set_discoverable *cp = data;
1762
	struct mgmt_pending_cmd *cmd;
1763
	struct hci_request req;
1764
	u16 timeout;
1765
	u8 scan;
1766 1767
	int err;

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

1770 1771
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1772 1773
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_REJECTED);
1774

1775
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
1776 1777
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1778

1779
	timeout = __le16_to_cpu(cp->timeout);
1780 1781 1782 1783 1784 1785

	/* 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))
1786 1787
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1788

1789
	hci_dev_lock(hdev);
1790

1791
	if (!hdev_is_powered(hdev) && timeout > 0) {
1792 1793
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_NOT_POWERED);
1794 1795 1796
		goto failed;
	}

1797 1798
	if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
	    pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
1799 1800
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_BUSY);
1801 1802 1803
		goto failed;
	}

1804
	if (!hci_dev_test_flag(hdev, HCI_CONNECTABLE)) {
1805 1806
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_REJECTED);
1807 1808 1809 1810
		goto failed;
	}

	if (!hdev_is_powered(hdev)) {
1811 1812
		bool changed = false;

1813 1814 1815 1816
		/* 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.
		 */
1817
		if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
1818
			hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
1819 1820 1821
			changed = true;
		}

1822
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1823 1824 1825 1826 1827 1828
		if (err < 0)
			goto failed;

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

1829 1830 1831
		goto failed;
	}

1832 1833 1834 1835
	/* 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.
	 */
1836 1837 1838
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
	    (cp->val == 0x02) == hci_dev_test_flag(hdev,
						   HCI_LIMITED_DISCOVERABLE)) {
1839 1840
		cancel_delayed_work(&hdev->discov_off);
		hdev->discov_timeout = timeout;
1841

1842 1843
		if (cp->val && hdev->discov_timeout > 0) {
			int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1844
			queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1845
					   to);
1846 1847
		}

1848
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1849 1850 1851
		goto failed;
	}

1852
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1853 1854
	if (!cmd) {
		err = -ENOMEM;
1855
		goto failed;
1856
	}
1857

1858 1859 1860 1861 1862 1863 1864
	/* 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;

1865 1866
	/* Limited discoverable mode */
	if (cp->val == 0x02)
1867
		hci_dev_set_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1868
	else
1869
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1870

1871 1872
	hci_req_init(&req, hdev);

1873 1874 1875
	/* The procedure for LE-only controllers is much simpler - just
	 * update the advertising data.
	 */
1876
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1877 1878
		goto update_ad;

1879 1880
	scan = SCAN_PAGE;

1881 1882 1883 1884 1885
	if (cp->val) {
		struct hci_cp_write_current_iac_lap hci_cp;

		if (cp->val == 0x02) {
			/* Limited discoverable mode */
1886
			hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903
			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);

1904
		scan |= SCAN_INQUIRY;
1905
	} else {
1906
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1907
	}
1908

1909
	hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
1910

1911 1912 1913
update_ad:
	update_adv_data(&req);

1914
	err = hci_req_run(&req, set_discoverable_complete);
1915
	if (err < 0)
1916
		mgmt_pending_remove(cmd);
1917 1918

failed:
1919
	hci_dev_unlock(hdev);
1920 1921 1922
	return err;
}

1923 1924
static void write_fast_connectable(struct hci_request *req, bool enable)
{
1925
	struct hci_dev *hdev = req->hdev;
1926 1927 1928
	struct hci_cp_write_page_scan_activity acp;
	u8 type;

1929
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1930 1931
		return;

1932 1933 1934
	if (hdev->hci_ver < BLUETOOTH_VER_1_2)
		return;

1935 1936 1937 1938
	if (enable) {
		type = PAGE_SCAN_TYPE_INTERLACED;

		/* 160 msec page scan interval */
1939
		acp.interval = cpu_to_le16(0x0100);
1940 1941 1942 1943
	} else {
		type = PAGE_SCAN_TYPE_STANDARD;	/* default */

		/* default 1.28 sec page scan */
1944
		acp.interval = cpu_to_le16(0x0800);
1945 1946
	}

1947
	acp.window = cpu_to_le16(0x0012);
1948

1949 1950 1951 1952 1953 1954 1955
	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);
1956 1957
}

1958 1959
static void set_connectable_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
1960
{
1961
	struct mgmt_pending_cmd *cmd;
1962
	struct mgmt_mode *cp;
1963
	bool conn_changed, discov_changed;
1964 1965 1966 1967 1968

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

	hci_dev_lock(hdev);

1969
	cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
1970 1971 1972
	if (!cmd)
		goto unlock;

1973 1974
	if (status) {
		u8 mgmt_err = mgmt_status(status);
1975
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1976 1977 1978
		goto remove_cmd;
	}

1979
	cp = cmd->param;
1980
	if (cp->val) {
1981 1982
		conn_changed = !hci_dev_test_and_set_flag(hdev,
							  HCI_CONNECTABLE);
1983 1984
		discov_changed = false;
	} else {
1985 1986 1987 1988
		conn_changed = hci_dev_test_and_clear_flag(hdev,
							   HCI_CONNECTABLE);
		discov_changed = hci_dev_test_and_clear_flag(hdev,
							     HCI_DISCOVERABLE);
1989
	}
1990

1991 1992
	send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);

1993
	if (conn_changed || discov_changed) {
1994
		new_settings(hdev, cmd->sk);
1995
		hci_update_page_scan(hdev);
1996 1997
		if (discov_changed)
			mgmt_update_adv_data(hdev);
1998 1999
		hci_update_background_scan(hdev);
	}
2000

2001
remove_cmd:
2002 2003 2004 2005 2006 2007
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

2008 2009 2010 2011 2012 2013
static int set_connectable_update_settings(struct hci_dev *hdev,
					   struct sock *sk, u8 val)
{
	bool changed = false;
	int err;

2014
	if (!!val != hci_dev_test_flag(hdev, HCI_CONNECTABLE))
2015 2016 2017
		changed = true;

	if (val) {
2018
		hci_dev_set_flag(hdev, HCI_CONNECTABLE);
2019
	} else {
2020 2021
		hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
		hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
2022 2023 2024 2025 2026 2027
	}

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

2028
	if (changed) {
2029
		hci_update_page_scan(hdev);
2030
		hci_update_background_scan(hdev);
2031
		return new_settings(hdev, sk);
2032
	}
2033 2034 2035 2036

	return 0;
}

2037
static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
2038
			   u16 len)
2039
{
2040
	struct mgmt_mode *cp = data;
2041
	struct mgmt_pending_cmd *cmd;
2042
	struct hci_request req;
2043
	u8 scan;
2044 2045
	int err;

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

2048 2049
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
2050 2051
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				       MGMT_STATUS_REJECTED);
2052

2053
	if (cp->val != 0x00 && cp->val != 0x01)
2054 2055
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				       MGMT_STATUS_INVALID_PARAMS);
2056

2057
	hci_dev_lock(hdev);
2058

2059
	if (!hdev_is_powered(hdev)) {
2060
		err = set_connectable_update_settings(hdev, sk, cp->val);
2061 2062 2063
		goto failed;
	}

2064 2065
	if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
	    pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
2066 2067
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				      MGMT_STATUS_BUSY);
2068 2069 2070
		goto failed;
	}

2071
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
2072 2073
	if (!cmd) {
		err = -ENOMEM;
2074
		goto failed;
2075
	}
2076

2077
	hci_req_init(&req, hdev);
2078

2079 2080 2081 2082
	/* If BR/EDR is not enabled and we disable advertising as a
	 * by-product of disabling connectable, we need to update the
	 * advertising flags.
	 */
2083
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
2084
		if (!cp->val) {
2085 2086
			hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
			hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
2087 2088 2089
		}
		update_adv_data(&req);
	} else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
2090 2091 2092
		if (cp->val) {
			scan = SCAN_PAGE;
		} else {
2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104
			/* 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;
2105 2106

			if (test_bit(HCI_ISCAN, &hdev->flags) &&
2107
			    hdev->discov_timeout > 0)
2108 2109
				cancel_delayed_work(&hdev->discov_off);
		}
2110

2111 2112
		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
	}
2113

2114
no_scan_update:
2115
	/* Update the advertising parameters if necessary */
2116
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
2117 2118
		enable_advertising(&req);

2119
	err = hci_req_run(&req, set_connectable_complete);
2120
	if (err < 0) {
2121
		mgmt_pending_remove(cmd);
2122
		if (err == -ENODATA)
2123 2124
			err = set_connectable_update_settings(hdev, sk,
							      cp->val);
2125 2126
		goto failed;
	}
2127 2128

failed:
2129
	hci_dev_unlock(hdev);
2130 2131 2132
	return err;
}

2133
static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
2134
			u16 len)
2135
{
2136
	struct mgmt_mode *cp = data;
2137
	bool changed;
2138 2139
	int err;

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

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

2146
	hci_dev_lock(hdev);
2147 2148

	if (cp->val)
2149
		changed = !hci_dev_test_and_set_flag(hdev, HCI_BONDABLE);
2150
	else
2151
		changed = hci_dev_test_and_clear_flag(hdev, HCI_BONDABLE);
2152

2153
	err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
2154
	if (err < 0)
2155
		goto unlock;
2156

2157 2158
	if (changed)
		err = new_settings(hdev, sk);
2159

2160
unlock:
2161
	hci_dev_unlock(hdev);
2162 2163 2164
	return err;
}

2165 2166
static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
2167 2168
{
	struct mgmt_mode *cp = data;
2169
	struct mgmt_pending_cmd *cmd;
2170
	u8 val, status;
2171 2172
	int err;

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

2175 2176
	status = mgmt_bredr_support(hdev);
	if (status)
2177 2178
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				       status);
2179

2180
	if (cp->val != 0x00 && cp->val != 0x01)
2181 2182
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				       MGMT_STATUS_INVALID_PARAMS);
2183

2184 2185
	hci_dev_lock(hdev);

2186
	if (!hdev_is_powered(hdev)) {
2187 2188
		bool changed = false;

2189
		if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
2190
			hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
2191 2192 2193 2194 2195 2196 2197 2198 2199 2200
			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);

2201 2202 2203
		goto failed;
	}

2204
	if (pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
2205 2206
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				      MGMT_STATUS_BUSY);
2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233
		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;
}

2234
static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2235 2236
{
	struct mgmt_mode *cp = data;
2237
	struct mgmt_pending_cmd *cmd;
2238
	u8 status;
2239 2240
	int err;

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

2243 2244
	status = mgmt_bredr_support(hdev);
	if (status)
2245
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
2246

2247
	if (!lmp_ssp_capable(hdev))
2248 2249
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				       MGMT_STATUS_NOT_SUPPORTED);
2250

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

2255
	hci_dev_lock(hdev);
2256

2257
	if (!hdev_is_powered(hdev)) {
2258
		bool changed;
2259

2260
		if (cp->val) {
2261 2262
			changed = !hci_dev_test_and_set_flag(hdev,
							     HCI_SSP_ENABLED);
2263
		} else {
2264 2265
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_SSP_ENABLED);
2266
			if (!changed)
2267 2268
				changed = hci_dev_test_and_clear_flag(hdev,
								      HCI_HS_ENABLED);
2269
			else
2270
				hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
2271 2272 2273 2274 2275 2276 2277 2278 2279
		}

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

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

2280 2281 2282
		goto failed;
	}

2283
	if (pending_find(MGMT_OP_SET_SSP, hdev)) {
2284 2285
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				      MGMT_STATUS_BUSY);
2286 2287 2288
		goto failed;
	}

2289
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
2290 2291 2292 2293 2294 2295 2296 2297 2298 2299
		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;
	}

2300
	if (!cp->val && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
2301 2302 2303
		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
			     sizeof(cp->val), &cp->val);

2304
	err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
2305 2306 2307 2308 2309 2310 2311 2312 2313 2314
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

2315
static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2316 2317
{
	struct mgmt_mode *cp = data;
2318
	bool changed;
2319
	u8 status;
2320
	int err;
2321

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

2324 2325
	status = mgmt_bredr_support(hdev);
	if (status)
2326
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
2327

2328
	if (!lmp_ssp_capable(hdev))
2329 2330
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_NOT_SUPPORTED);
2331

2332
	if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
2333 2334
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_REJECTED);
2335

2336
	if (cp->val != 0x00 && cp->val != 0x01)
2337 2338
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_INVALID_PARAMS);
2339

2340 2341
	hci_dev_lock(hdev);

2342
	if (pending_find(MGMT_OP_SET_SSP, hdev)) {
2343 2344
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				      MGMT_STATUS_BUSY);
2345 2346 2347
		goto unlock;
	}

2348
	if (cp->val) {
2349
		changed = !hci_dev_test_and_set_flag(hdev, HCI_HS_ENABLED);
2350 2351
	} else {
		if (hdev_is_powered(hdev)) {
2352 2353
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
					      MGMT_STATUS_REJECTED);
2354 2355 2356
			goto unlock;
		}

2357
		changed = hci_dev_test_and_clear_flag(hdev, HCI_HS_ENABLED);
2358
	}
2359 2360 2361 2362 2363 2364 2365

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

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

2367 2368 2369
unlock:
	hci_dev_unlock(hdev);
	return err;
2370 2371
}

2372
static void le_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2373 2374 2375
{
	struct cmd_lookup match = { NULL, hdev };

2376 2377
	hci_dev_lock(hdev);

2378 2379 2380 2381 2382
	if (status) {
		u8 mgmt_err = mgmt_status(status);

		mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
				     &mgmt_err);
2383
		goto unlock;
2384 2385 2386 2387 2388 2389 2390 2391
	}

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

	new_settings(hdev, match.sk);

	if (match.sk)
		sock_put(match.sk);
2392 2393 2394 2395 2396 2397

	/* 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.
	 */
2398
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
2399 2400 2401
		struct hci_request req;

		hci_req_init(&req, hdev);
2402
		update_adv_data(&req);
2403
		update_scan_rsp_data(&req);
2404
		__hci_update_background_scan(&req);
2405 2406
		hci_req_run(&req, NULL);
	}
2407 2408 2409

unlock:
	hci_dev_unlock(hdev);
2410 2411
}

2412
static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2413 2414 2415
{
	struct mgmt_mode *cp = data;
	struct hci_cp_write_le_host_supported hci_cp;
2416
	struct mgmt_pending_cmd *cmd;
2417
	struct hci_request req;
2418
	int err;
2419
	u8 val, enabled;
2420

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

2423
	if (!lmp_le_capable(hdev))
2424 2425
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_NOT_SUPPORTED);
2426

2427
	if (cp->val != 0x00 && cp->val != 0x01)
2428 2429
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_INVALID_PARAMS);
2430

2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443
	/* 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);

2444 2445
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_REJECTED);
2446
	}
2447

2448
	hci_dev_lock(hdev);
2449 2450

	val = !!cp->val;
2451
	enabled = lmp_host_le_capable(hdev);
2452

2453
	if (!hdev_is_powered(hdev) || val == enabled) {
2454 2455
		bool changed = false;

2456
		if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
2457
			hci_dev_change_flag(hdev, HCI_LE_ENABLED);
2458 2459 2460
			changed = true;
		}

2461
		if (!val && hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
2462
			hci_dev_clear_flag(hdev, HCI_ADVERTISING);
2463 2464 2465
			changed = true;
		}

2466 2467
		err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
		if (err < 0)
2468
			goto unlock;
2469 2470 2471 2472

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

2473
		goto unlock;
2474 2475
	}

2476 2477
	if (pending_find(MGMT_OP_SET_LE, hdev) ||
	    pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
2478 2479
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				      MGMT_STATUS_BUSY);
2480
		goto unlock;
2481 2482 2483 2484 2485
	}

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

2489 2490
	hci_req_init(&req, hdev);

2491 2492 2493 2494
	memset(&hci_cp, 0, sizeof(hci_cp));

	if (val) {
		hci_cp.le = val;
2495
		hci_cp.simul = 0x00;
2496
	} else {
2497
		if (hci_dev_test_flag(hdev, HCI_LE_ADV))
2498
			disable_advertising(&req);
2499 2500
	}

2501 2502 2503 2504
	hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
		    &hci_cp);

	err = hci_req_run(&req, le_enable_complete);
2505
	if (err < 0)
2506 2507
		mgmt_pending_remove(cmd);

2508 2509
unlock:
	hci_dev_unlock(hdev);
2510 2511 2512
	return err;
}

2513 2514 2515 2516 2517 2518 2519 2520
/* 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)
{
2521
	struct mgmt_pending_cmd *cmd;
2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535

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

2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554
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;
}

2555 2556
static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
{
2557
	struct mgmt_pending_cmd *cmd;
2558 2559 2560

	hci_dev_lock(hdev);

2561
	cmd = pending_find(mgmt_op, hdev);
2562 2563 2564
	if (!cmd)
		goto unlock;

2565 2566
	mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
			  mgmt_status(status), hdev->dev_class, 3);
2567 2568 2569 2570 2571 2572 2573

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

2574
static void add_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2575 2576 2577 2578 2579 2580
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
}

2581
static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2582
{
2583
	struct mgmt_cp_add_uuid *cp = data;
2584
	struct mgmt_pending_cmd *cmd;
2585
	struct hci_request req;
2586 2587 2588
	struct bt_uuid *uuid;
	int err;

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

2591
	hci_dev_lock(hdev);
2592

2593
	if (pending_eir_or_class(hdev)) {
2594 2595
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
				      MGMT_STATUS_BUSY);
2596 2597 2598
		goto failed;
	}

2599
	uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
2600 2601 2602 2603 2604 2605
	if (!uuid) {
		err = -ENOMEM;
		goto failed;
	}

	memcpy(uuid->uuid, cp->uuid, 16);
2606
	uuid->svc_hint = cp->svc_hint;
2607
	uuid->size = get_uuid_size(cp->uuid);
2608

2609
	list_add_tail(&uuid->list, &hdev->uuids);
2610

2611
	hci_req_init(&req, hdev);
2612

2613 2614 2615
	update_class(&req);
	update_eir(&req);

2616 2617 2618 2619
	err = hci_req_run(&req, add_uuid_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto failed;
2620

2621 2622
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
					hdev->dev_class, 3);
2623 2624 2625 2626
		goto failed;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
2627
	if (!cmd) {
2628
		err = -ENOMEM;
2629 2630 2631 2632
		goto failed;
	}

	err = 0;
2633 2634

failed:
2635
	hci_dev_unlock(hdev);
2636 2637 2638
	return err;
}

2639 2640 2641 2642 2643
static bool enable_service_cache(struct hci_dev *hdev)
{
	if (!hdev_is_powered(hdev))
		return false;

2644
	if (!hci_dev_test_and_set_flag(hdev, HCI_SERVICE_CACHE)) {
2645 2646
		queue_delayed_work(hdev->workqueue, &hdev->service_cache,
				   CACHE_TIMEOUT);
2647 2648 2649 2650 2651 2652
		return true;
	}

	return false;
}

2653
static void remove_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2654 2655 2656 2657 2658 2659
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
}

2660
static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
2661
		       u16 len)
2662
{
2663
	struct mgmt_cp_remove_uuid *cp = data;
2664
	struct mgmt_pending_cmd *cmd;
2665
	struct bt_uuid *match, *tmp;
2666
	u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2667
	struct hci_request req;
2668 2669
	int err, found;

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

2672
	hci_dev_lock(hdev);
2673

2674
	if (pending_eir_or_class(hdev)) {
2675 2676
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
				      MGMT_STATUS_BUSY);
2677 2678 2679
		goto unlock;
	}

2680
	if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
2681
		hci_uuids_clear(hdev);
2682

2683
		if (enable_service_cache(hdev)) {
2684 2685 2686
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_UUID,
						0, hdev->dev_class, 3);
2687 2688
			goto unlock;
		}
2689

2690
		goto update_class;
2691 2692 2693 2694
	}

	found = 0;

2695
	list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
2696 2697 2698 2699
		if (memcmp(match->uuid, cp->uuid, 16) != 0)
			continue;

		list_del(&match->list);
2700
		kfree(match);
2701 2702 2703 2704
		found++;
	}

	if (found == 0) {
2705 2706
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
				      MGMT_STATUS_INVALID_PARAMS);
2707 2708 2709
		goto unlock;
	}

2710
update_class:
2711
	hci_req_init(&req, hdev);
2712

2713 2714 2715
	update_class(&req);
	update_eir(&req);

2716 2717 2718 2719
	err = hci_req_run(&req, remove_uuid_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto unlock;
2720

2721 2722
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
					hdev->dev_class, 3);
2723 2724 2725 2726
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
2727
	if (!cmd) {
2728
		err = -ENOMEM;
2729 2730 2731 2732
		goto unlock;
	}

	err = 0;
2733 2734

unlock:
2735
	hci_dev_unlock(hdev);
2736 2737 2738
	return err;
}

2739
static void set_class_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2740 2741 2742 2743 2744 2745
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
}

2746
static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
2747
			 u16 len)
2748
{
2749
	struct mgmt_cp_set_dev_class *cp = data;
2750
	struct mgmt_pending_cmd *cmd;
2751
	struct hci_request req;
2752 2753
	int err;

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

2756
	if (!lmp_bredr_capable(hdev))
2757 2758
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				       MGMT_STATUS_NOT_SUPPORTED);
2759

2760
	hci_dev_lock(hdev);
2761

2762
	if (pending_eir_or_class(hdev)) {
2763 2764
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				      MGMT_STATUS_BUSY);
2765 2766
		goto unlock;
	}
2767

2768
	if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
2769 2770
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				      MGMT_STATUS_INVALID_PARAMS);
2771 2772
		goto unlock;
	}
2773

2774 2775 2776
	hdev->major_class = cp->major;
	hdev->minor_class = cp->minor;

2777
	if (!hdev_is_powered(hdev)) {
2778 2779
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
					hdev->dev_class, 3);
2780 2781 2782
		goto unlock;
	}

2783 2784
	hci_req_init(&req, hdev);

2785
	if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) {
2786 2787 2788
		hci_dev_unlock(hdev);
		cancel_delayed_work_sync(&hdev->service_cache);
		hci_dev_lock(hdev);
2789
		update_eir(&req);
2790
	}
2791

2792 2793
	update_class(&req);

2794 2795 2796 2797
	err = hci_req_run(&req, set_class_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto unlock;
2798

2799 2800
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
					hdev->dev_class, 3);
2801 2802 2803 2804
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
2805
	if (!cmd) {
2806
		err = -ENOMEM;
2807 2808 2809 2810
		goto unlock;
	}

	err = 0;
2811

2812
unlock:
2813
	hci_dev_unlock(hdev);
2814 2815 2816
	return err;
}

2817
static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
2818
			  u16 len)
2819
{
2820
	struct mgmt_cp_load_link_keys *cp = data;
2821 2822
	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_link_key_info));
2823
	u16 key_count, expected_len;
2824
	bool changed;
2825
	int i;
2826

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

	if (!lmp_bredr_capable(hdev))
2830 2831
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_NOT_SUPPORTED);
2832

2833
	key_count = __le16_to_cpu(cp->key_count);
2834 2835 2836
	if (key_count > max_key_count) {
		BT_ERR("load_link_keys: too big key_count value %u",
		       key_count);
2837 2838
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2839
	}
2840

2841 2842
	expected_len = sizeof(*cp) + key_count *
					sizeof(struct mgmt_link_key_info);
2843
	if (expected_len != len) {
2844
		BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
2845
		       expected_len, len);
2846 2847
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2848 2849
	}

2850
	if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
2851 2852
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2853

2854
	BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
2855
	       key_count);
2856

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

2860
		if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
2861 2862 2863
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_LINK_KEYS,
					       MGMT_STATUS_INVALID_PARAMS);
2864 2865
	}

2866
	hci_dev_lock(hdev);
2867 2868 2869 2870

	hci_link_keys_clear(hdev);

	if (cp->debug_keys)
2871
		changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
2872
	else
2873 2874
		changed = hci_dev_test_and_clear_flag(hdev,
						      HCI_KEEP_DEBUG_KEYS);
2875 2876 2877

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

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

2882 2883 2884 2885 2886 2887
		/* Always ignore debug keys and require a new pairing if
		 * the user wants to use them.
		 */
		if (key->type == HCI_LK_DEBUG_COMBINATION)
			continue;

2888 2889
		hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
				 key->type, key->pin_len, NULL);
2890 2891
	}

2892
	mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
2893

2894
	hci_dev_unlock(hdev);
2895

2896
	return 0;
2897 2898
}

2899
static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
2900
			   u8 addr_type, struct sock *skip_sk)
2901 2902 2903 2904 2905 2906 2907
{
	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),
2908
			  skip_sk);
2909 2910
}

2911
static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2912
			 u16 len)
2913
{
2914 2915
	struct mgmt_cp_unpair_device *cp = data;
	struct mgmt_rp_unpair_device rp;
2916
	struct hci_cp_disconnect dc;
2917
	struct mgmt_pending_cmd *cmd;
2918 2919 2920
	struct hci_conn *conn;
	int err;

2921
	memset(&rp, 0, sizeof(rp));
2922 2923
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;
2924

2925
	if (!bdaddr_type_is_valid(cp->addr.type))
2926 2927 2928
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2929

2930
	if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
2931 2932 2933
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2934

2935 2936
	hci_dev_lock(hdev);

2937
	if (!hdev_is_powered(hdev)) {
2938 2939 2940
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
2941 2942 2943
		goto unlock;
	}

2944
	if (cp->addr.type == BDADDR_BREDR) {
2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957
		/* 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;

2958
		err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
2959 2960 2961
	} else {
		u8 addr_type;

2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
					       &cp->addr.bdaddr);
		if (conn) {
			/* Defer clearing up the connection parameters
			 * until closing to give a chance of keeping
			 * them if a repairing happens.
			 */
			set_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);

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

2979 2980 2981 2982 2983
		if (cp->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;

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

2986 2987
		err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
	}
2988

2989
	if (err < 0) {
2990 2991 2992
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					MGMT_STATUS_NOT_PAIRED, &rp,
					sizeof(rp));
2993 2994 2995
		goto unlock;
	}

2996 2997 2998
	/* If the connection variable is set, then termination of the
	 * link is requested.
	 */
2999
	if (!conn) {
3000 3001
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
					&rp, sizeof(rp));
3002
		device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
3003 3004
		goto unlock;
	}
3005

3006
	cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
3007
			       sizeof(*cp));
3008 3009 3010
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
3011 3012
	}

3013 3014
	cmd->cmd_complete = addr_cmd_complete;

3015
	dc.handle = cpu_to_le16(conn->handle);
3016 3017 3018 3019 3020
	dc.reason = 0x13; /* Remote User Terminated Connection */
	err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
	if (err < 0)
		mgmt_pending_remove(cmd);

3021
unlock:
3022
	hci_dev_unlock(hdev);
3023 3024 3025
	return err;
}

3026
static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
3027
		      u16 len)
3028
{
3029
	struct mgmt_cp_disconnect *cp = data;
3030
	struct mgmt_rp_disconnect rp;
3031
	struct mgmt_pending_cmd *cmd;
3032 3033 3034 3035 3036
	struct hci_conn *conn;
	int err;

	BT_DBG("");

3037 3038 3039 3040
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

3041
	if (!bdaddr_type_is_valid(cp->addr.type))
3042 3043 3044
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3045

3046
	hci_dev_lock(hdev);
3047 3048

	if (!test_bit(HCI_UP, &hdev->flags)) {
3049 3050 3051
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
3052 3053 3054
		goto failed;
	}

3055
	if (pending_find(MGMT_OP_DISCONNECT, hdev)) {
3056 3057
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
3058 3059 3060
		goto failed;
	}

3061
	if (cp->addr.type == BDADDR_BREDR)
3062 3063
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
					       &cp->addr.bdaddr);
3064 3065
	else
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
3066

3067
	if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
3068 3069 3070
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_NOT_CONNECTED, &rp,
					sizeof(rp));
3071 3072 3073
		goto failed;
	}

3074
	cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
3075 3076
	if (!cmd) {
		err = -ENOMEM;
3077
		goto failed;
3078
	}
3079

3080 3081
	cmd->cmd_complete = generic_cmd_complete;

3082
	err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
3083
	if (err < 0)
3084
		mgmt_pending_remove(cmd);
3085 3086

failed:
3087
	hci_dev_unlock(hdev);
3088 3089 3090
	return err;
}

3091
static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
3092 3093 3094
{
	switch (link_type) {
	case LE_LINK:
3095 3096
		switch (addr_type) {
		case ADDR_LE_DEV_PUBLIC:
3097
			return BDADDR_LE_PUBLIC;
3098

3099
		default:
3100
			/* Fallback to LE Random address type */
3101
			return BDADDR_LE_RANDOM;
3102
		}
3103

3104
	default:
3105
		/* Fallback to BR/EDR type */
3106
		return BDADDR_BREDR;
3107 3108 3109
	}
}

3110 3111
static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
3112 3113
{
	struct mgmt_rp_get_connections *rp;
3114
	struct hci_conn *c;
3115
	size_t rp_len;
3116 3117
	int err;
	u16 i;
3118 3119 3120

	BT_DBG("");

3121
	hci_dev_lock(hdev);
3122

3123
	if (!hdev_is_powered(hdev)) {
3124 3125
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
				      MGMT_STATUS_NOT_POWERED);
3126 3127 3128
		goto unlock;
	}

3129
	i = 0;
3130 3131
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
		if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
3132
			i++;
3133 3134
	}

3135
	rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
3136
	rp = kmalloc(rp_len, GFP_KERNEL);
3137
	if (!rp) {
3138 3139 3140 3141 3142
		err = -ENOMEM;
		goto unlock;
	}

	i = 0;
3143
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
3144 3145
		if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
			continue;
3146
		bacpy(&rp->addr[i].bdaddr, &c->dst);
3147
		rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
3148
		if (c->type == SCO_LINK || c->type == ESCO_LINK)
3149 3150 3151 3152
			continue;
		i++;
	}

3153
	rp->conn_count = cpu_to_le16(i);
3154

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

3158 3159
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
				rp_len);
3160

3161
	kfree(rp);
3162 3163

unlock:
3164
	hci_dev_unlock(hdev);
3165 3166 3167
	return err;
}

3168
static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3169
				   struct mgmt_cp_pin_code_neg_reply *cp)
3170
{
3171
	struct mgmt_pending_cmd *cmd;
3172 3173
	int err;

3174
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
3175
			       sizeof(*cp));
3176 3177 3178
	if (!cmd)
		return -ENOMEM;

3179
	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
3180
			   sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
3181 3182 3183 3184 3185 3186
	if (err < 0)
		mgmt_pending_remove(cmd);

	return err;
}

3187
static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3188
			  u16 len)
3189
{
3190
	struct hci_conn *conn;
3191
	struct mgmt_cp_pin_code_reply *cp = data;
3192
	struct hci_cp_pin_code_reply reply;
3193
	struct mgmt_pending_cmd *cmd;
3194 3195 3196 3197
	int err;

	BT_DBG("");

3198
	hci_dev_lock(hdev);
3199

3200
	if (!hdev_is_powered(hdev)) {
3201 3202
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
				      MGMT_STATUS_NOT_POWERED);
3203 3204 3205
		goto failed;
	}

3206
	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
3207
	if (!conn) {
3208 3209
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
				      MGMT_STATUS_NOT_CONNECTED);
3210 3211 3212 3213
		goto failed;
	}

	if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
3214 3215 3216
		struct mgmt_cp_pin_code_neg_reply ncp;

		memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
3217 3218 3219

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

3220
		err = send_pin_code_neg_reply(sk, hdev, &ncp);
3221
		if (err >= 0)
3222 3223
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
					      MGMT_STATUS_INVALID_PARAMS);
3224 3225 3226 3227

		goto failed;
	}

3228
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
3229 3230
	if (!cmd) {
		err = -ENOMEM;
3231
		goto failed;
3232
	}
3233

3234 3235
	cmd->cmd_complete = addr_cmd_complete;

3236
	bacpy(&reply.bdaddr, &cp->addr.bdaddr);
3237
	reply.pin_len = cp->pin_len;
3238
	memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
3239 3240 3241

	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
	if (err < 0)
3242
		mgmt_pending_remove(cmd);
3243 3244

failed:
3245
	hci_dev_unlock(hdev);
3246 3247 3248
	return err;
}

3249 3250
static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
3251
{
3252
	struct mgmt_cp_set_io_capability *cp = data;
3253 3254 3255

	BT_DBG("");

3256
	if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
3257 3258
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
					 MGMT_STATUS_INVALID_PARAMS, NULL, 0);
3259

3260
	hci_dev_lock(hdev);
3261 3262 3263 3264

	hdev->io_capability = cp->io_capability;

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

3267
	hci_dev_unlock(hdev);
3268

3269 3270
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0,
				 NULL, 0);
3271 3272
}

3273
static struct mgmt_pending_cmd *find_pairing(struct hci_conn *conn)
3274 3275
{
	struct hci_dev *hdev = conn->hdev;
3276
	struct mgmt_pending_cmd *cmd;
3277

3278
	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290
		if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
			continue;

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

		return cmd;
	}

	return NULL;
}

3291
static int pairing_complete(struct mgmt_pending_cmd *cmd, u8 status)
3292 3293 3294
{
	struct mgmt_rp_pair_device rp;
	struct hci_conn *conn = cmd->user_data;
3295
	int err;
3296

3297 3298
	bacpy(&rp.addr.bdaddr, &conn->dst);
	rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
3299

3300 3301
	err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE,
				status, &rp, sizeof(rp));
3302 3303 3304 3305 3306 3307

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

3308
	hci_conn_drop(conn);
3309 3310 3311 3312 3313

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

	hci_conn_put(conn);
3316 3317

	return err;
3318 3319
}

3320 3321 3322
void mgmt_smp_complete(struct hci_conn *conn, bool complete)
{
	u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
3323
	struct mgmt_pending_cmd *cmd;
3324 3325

	cmd = find_pairing(conn);
3326
	if (cmd) {
3327
		cmd->cmd_complete(cmd, status);
3328 3329
		mgmt_pending_remove(cmd);
	}
3330 3331
}

3332 3333
static void pairing_complete_cb(struct hci_conn *conn, u8 status)
{
3334
	struct mgmt_pending_cmd *cmd;
3335 3336 3337 3338

	BT_DBG("status %u", status);

	cmd = find_pairing(conn);
3339
	if (!cmd) {
3340
		BT_DBG("Unable to find a pending command");
3341 3342 3343 3344 3345
		return;
	}

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);
3346 3347
}

3348
static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
3349
{
3350
	struct mgmt_pending_cmd *cmd;
3351 3352 3353 3354 3355 3356 3357

	BT_DBG("status %u", status);

	if (!status)
		return;

	cmd = find_pairing(conn);
3358
	if (!cmd) {
3359
		BT_DBG("Unable to find a pending command");
3360 3361 3362 3363 3364
		return;
	}

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);
3365 3366
}

3367
static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3368
		       u16 len)
3369
{
3370
	struct mgmt_cp_pair_device *cp = data;
3371
	struct mgmt_rp_pair_device rp;
3372
	struct mgmt_pending_cmd *cmd;
3373 3374 3375 3376 3377 3378
	u8 sec_level, auth_type;
	struct hci_conn *conn;
	int err;

	BT_DBG("");

3379 3380 3381 3382
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

3383
	if (!bdaddr_type_is_valid(cp->addr.type))
3384 3385 3386
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3387

3388
	if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
3389 3390 3391
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3392

3393
	hci_dev_lock(hdev);
3394

3395
	if (!hdev_is_powered(hdev)) {
3396 3397 3398
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
3399 3400 3401
		goto unlock;
	}

3402 3403 3404 3405 3406 3407 3408
	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;
	}

3409
	sec_level = BT_SECURITY_MEDIUM;
3410
	auth_type = HCI_AT_DEDICATED_BONDING;
3411

3412
	if (cp->addr.type == BDADDR_BREDR) {
3413 3414
		conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
				       auth_type);
3415 3416 3417 3418 3419 3420 3421 3422 3423 3424
	} else {
		u8 addr_type;

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

3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435
		/* When pairing a new device, it is expected to remember
		 * this device for future connections. Adding the connection
		 * parameter information ahead of time allows tracking
		 * of the slave preferred values and will speed up any
		 * further connection establishment.
		 *
		 * If connection parameters already exist, then they
		 * will be kept and this function does nothing.
		 */
		hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);

3436
		conn = hci_connect_le(hdev, &cp->addr.bdaddr, addr_type,
3437 3438
				      sec_level, HCI_LE_CONN_TIMEOUT,
				      HCI_ROLE_MASTER);
3439
	}
3440

3441
	if (IS_ERR(conn)) {
3442 3443 3444 3445
		int status;

		if (PTR_ERR(conn) == -EBUSY)
			status = MGMT_STATUS_BUSY;
3446 3447 3448 3449
		else if (PTR_ERR(conn) == -EOPNOTSUPP)
			status = MGMT_STATUS_NOT_SUPPORTED;
		else if (PTR_ERR(conn) == -ECONNREFUSED)
			status = MGMT_STATUS_REJECTED;
3450 3451 3452
		else
			status = MGMT_STATUS_CONNECT_FAILED;

3453 3454
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					status, &rp, sizeof(rp));
3455 3456 3457 3458
		goto unlock;
	}

	if (conn->connect_cfm_cb) {
3459
		hci_conn_drop(conn);
3460 3461
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
3462 3463 3464
		goto unlock;
	}

3465
	cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
3466 3467
	if (!cmd) {
		err = -ENOMEM;
3468
		hci_conn_drop(conn);
3469 3470 3471
		goto unlock;
	}

3472 3473
	cmd->cmd_complete = pairing_complete;

3474
	/* For LE, just connecting isn't a proof that the pairing finished */
3475
	if (cp->addr.type == BDADDR_BREDR) {
3476
		conn->connect_cfm_cb = pairing_complete_cb;
3477 3478 3479 3480 3481 3482 3483
		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;
	}
3484

3485
	conn->io_capability = cp->io_cap;
3486
	cmd->user_data = hci_conn_get(conn);
3487

3488
	if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
3489 3490 3491 3492
	    hci_conn_security(conn, sec_level, auth_type, true)) {
		cmd->cmd_complete(cmd, 0);
		mgmt_pending_remove(cmd);
	}
3493 3494 3495 3496

	err = 0;

unlock:
3497
	hci_dev_unlock(hdev);
3498 3499 3500
	return err;
}

3501 3502
static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3503
{
3504
	struct mgmt_addr_info *addr = data;
3505
	struct mgmt_pending_cmd *cmd;
3506 3507 3508 3509 3510 3511 3512
	struct hci_conn *conn;
	int err;

	BT_DBG("");

	hci_dev_lock(hdev);

3513
	if (!hdev_is_powered(hdev)) {
3514 3515
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_NOT_POWERED);
3516 3517 3518
		goto unlock;
	}

3519
	cmd = pending_find(MGMT_OP_PAIR_DEVICE, hdev);
3520
	if (!cmd) {
3521 3522
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_INVALID_PARAMS);
3523 3524 3525 3526 3527 3528
		goto unlock;
	}

	conn = cmd->user_data;

	if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
3529 3530
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_INVALID_PARAMS);
3531 3532 3533
		goto unlock;
	}

3534 3535
	cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
	mgmt_pending_remove(cmd);
3536

3537 3538
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
				addr, sizeof(*addr));
3539 3540 3541 3542 3543
unlock:
	hci_dev_unlock(hdev);
	return err;
}

3544
static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
3545
			     struct mgmt_addr_info *addr, u16 mgmt_op,
3546
			     u16 hci_op, __le32 passkey)
3547
{
3548
	struct mgmt_pending_cmd *cmd;
3549
	struct hci_conn *conn;
3550 3551
	int err;

3552
	hci_dev_lock(hdev);
3553

3554
	if (!hdev_is_powered(hdev)) {
3555 3556 3557
		err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
					MGMT_STATUS_NOT_POWERED, addr,
					sizeof(*addr));
3558
		goto done;
3559 3560
	}

3561 3562
	if (addr->type == BDADDR_BREDR)
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
3563
	else
3564
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr);
3565 3566

	if (!conn) {
3567 3568 3569
		err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
					MGMT_STATUS_NOT_CONNECTED, addr,
					sizeof(*addr));
3570 3571
		goto done;
	}
3572

3573
	if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
3574 3575
		err = smp_user_confirm_reply(conn, mgmt_op, passkey);
		if (!err)
3576 3577 3578
			err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
						MGMT_STATUS_SUCCESS, addr,
						sizeof(*addr));
3579
		else
3580 3581 3582
			err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
						MGMT_STATUS_FAILED, addr,
						sizeof(*addr));
3583 3584 3585 3586

		goto done;
	}

3587
	cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
3588 3589
	if (!cmd) {
		err = -ENOMEM;
3590
		goto done;
3591 3592
	}

3593 3594
	cmd->cmd_complete = addr_cmd_complete;

3595
	/* Continue with pairing via HCI */
3596 3597 3598
	if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
		struct hci_cp_user_passkey_reply cp;

3599
		bacpy(&cp.bdaddr, &addr->bdaddr);
3600 3601 3602
		cp.passkey = passkey;
		err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
	} else
3603 3604
		err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
				   &addr->bdaddr);
3605

3606 3607
	if (err < 0)
		mgmt_pending_remove(cmd);
3608

3609
done:
3610
	hci_dev_unlock(hdev);
3611 3612 3613
	return err;
}

3614 3615 3616 3617 3618 3619 3620
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("");

3621
	return user_pairing_resp(sk, hdev, &cp->addr,
3622 3623 3624 3625
				MGMT_OP_PIN_CODE_NEG_REPLY,
				HCI_OP_PIN_CODE_NEG_REPLY, 0);
}

3626 3627
static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3628
{
3629
	struct mgmt_cp_user_confirm_reply *cp = data;
3630 3631 3632 3633

	BT_DBG("");

	if (len != sizeof(*cp))
3634 3635
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
				       MGMT_STATUS_INVALID_PARAMS);
3636

3637
	return user_pairing_resp(sk, hdev, &cp->addr,
3638 3639
				 MGMT_OP_USER_CONFIRM_REPLY,
				 HCI_OP_USER_CONFIRM_REPLY, 0);
3640 3641
}

3642
static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
3643
				  void *data, u16 len)
3644
{
3645
	struct mgmt_cp_user_confirm_neg_reply *cp = data;
3646 3647 3648

	BT_DBG("");

3649
	return user_pairing_resp(sk, hdev, &cp->addr,
3650 3651
				 MGMT_OP_USER_CONFIRM_NEG_REPLY,
				 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
3652 3653
}

3654 3655
static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3656
{
3657
	struct mgmt_cp_user_passkey_reply *cp = data;
3658 3659 3660

	BT_DBG("");

3661
	return user_pairing_resp(sk, hdev, &cp->addr,
3662 3663
				 MGMT_OP_USER_PASSKEY_REPLY,
				 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
3664 3665
}

3666
static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
3667
				  void *data, u16 len)
3668
{
3669
	struct mgmt_cp_user_passkey_neg_reply *cp = data;
3670 3671 3672

	BT_DBG("");

3673
	return user_pairing_resp(sk, hdev, &cp->addr,
3674 3675
				 MGMT_OP_USER_PASSKEY_NEG_REPLY,
				 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
3676 3677
}

3678
static void update_name(struct hci_request *req)
3679
{
3680
	struct hci_dev *hdev = req->hdev;
3681 3682
	struct hci_cp_write_local_name cp;

3683
	memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
3684

3685
	hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
3686 3687
}

3688
static void set_name_complete(struct hci_dev *hdev, u8 status, u16 opcode)
3689 3690
{
	struct mgmt_cp_set_local_name *cp;
3691
	struct mgmt_pending_cmd *cmd;
3692 3693 3694 3695 3696

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

	hci_dev_lock(hdev);

3697
	cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
3698 3699 3700 3701 3702 3703
	if (!cmd)
		goto unlock;

	cp = cmd->param;

	if (status)
3704 3705
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
			        mgmt_status(status));
3706
	else
3707 3708
		mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
				  cp, sizeof(*cp));
3709 3710 3711 3712 3713 3714 3715

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

3716
static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
3717
			  u16 len)
3718
{
3719
	struct mgmt_cp_set_local_name *cp = data;
3720
	struct mgmt_pending_cmd *cmd;
3721
	struct hci_request req;
3722 3723 3724 3725
	int err;

	BT_DBG("");

3726
	hci_dev_lock(hdev);
3727

3728 3729 3730 3731 3732 3733
	/* 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))) {
3734 3735
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
					data, len);
3736 3737 3738
		goto failed;
	}

3739
	memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
3740

3741
	if (!hdev_is_powered(hdev)) {
3742
		memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3743

3744 3745
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
					data, len);
3746 3747 3748
		if (err < 0)
			goto failed;

3749 3750
		err = mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev,
					 data, len, sk);
3751

3752 3753 3754
		goto failed;
	}

3755
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
3756 3757 3758 3759 3760
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

3761 3762
	memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));

3763
	hci_req_init(&req, hdev);
3764 3765 3766 3767 3768 3769

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

3770 3771 3772
	/* The name is stored in the scan response data and so
	 * no need to udpate the advertising data here.
	 */
3773
	if (lmp_le_capable(hdev))
3774
		update_scan_rsp_data(&req);
3775

3776
	err = hci_req_run(&req, set_name_complete);
3777 3778 3779 3780
	if (err < 0)
		mgmt_pending_remove(cmd);

failed:
3781
	hci_dev_unlock(hdev);
3782 3783 3784
	return err;
}

3785
static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
3786
			       void *data, u16 data_len)
3787
{
3788
	struct mgmt_pending_cmd *cmd;
3789 3790
	int err;

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

3793
	hci_dev_lock(hdev);
3794

3795
	if (!hdev_is_powered(hdev)) {
3796 3797
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_NOT_POWERED);
3798 3799 3800
		goto unlock;
	}

3801
	if (!lmp_ssp_capable(hdev)) {
3802 3803
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_NOT_SUPPORTED);
3804 3805 3806
		goto unlock;
	}

3807
	if (pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
3808 3809
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_BUSY);
3810 3811 3812
		goto unlock;
	}

3813
	cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
3814 3815 3816 3817 3818
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

3819
	if (bredr_sc_enabled(hdev))
3820 3821 3822 3823 3824
		err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_EXT_DATA,
				   0, NULL);
	else
		err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);

3825 3826 3827 3828
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
3829
	hci_dev_unlock(hdev);
3830 3831 3832
	return err;
}

3833
static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
3834
			       void *data, u16 len)
3835
{
3836
	struct mgmt_addr_info *addr = data;
3837 3838
	int err;

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

3841
	if (!bdaddr_type_is_valid(addr->type))
3842 3843 3844 3845
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_ADD_REMOTE_OOB_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 addr, sizeof(*addr));
3846

3847
	hci_dev_lock(hdev);
3848

3849 3850 3851
	if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
		struct mgmt_cp_add_remote_oob_data *cp = data;
		u8 status;
3852

3853
		if (cp->addr.type != BDADDR_BREDR) {
3854 3855 3856 3857
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_ADD_REMOTE_OOB_DATA,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
3858 3859 3860
			goto unlock;
		}

3861
		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
3862 3863
					      cp->addr.type, cp->hash,
					      cp->rand, NULL, NULL);
3864 3865 3866 3867 3868
		if (err < 0)
			status = MGMT_STATUS_FAILED;
		else
			status = MGMT_STATUS_SUCCESS;

3869 3870 3871
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_REMOTE_OOB_DATA, status,
					&cp->addr, sizeof(cp->addr));
3872 3873
	} else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
		struct mgmt_cp_add_remote_oob_ext_data *cp = data;
3874
		u8 *rand192, *hash192, *rand256, *hash256;
3875 3876
		u8 status;

3877
		if (bdaddr_type_is_le(cp->addr.type)) {
3878 3879 3880 3881 3882
			/* 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)) {
3883 3884 3885 3886
				err = mgmt_cmd_complete(sk, hdev->id,
							MGMT_OP_ADD_REMOTE_OOB_DATA,
							MGMT_STATUS_INVALID_PARAMS,
							addr, sizeof(*addr));
3887 3888 3889
				goto unlock;
			}

3890 3891 3892
			rand192 = NULL;
			hash192 = NULL;
		} else {
3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915
			/* 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;
3916 3917
		}

3918
		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
3919
					      cp->addr.type, hash192, rand192,
3920
					      hash256, rand256);
3921 3922 3923 3924 3925
		if (err < 0)
			status = MGMT_STATUS_FAILED;
		else
			status = MGMT_STATUS_SUCCESS;

3926 3927 3928
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_REMOTE_OOB_DATA,
					status, &cp->addr, sizeof(cp->addr));
3929 3930
	} else {
		BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
3931 3932
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
				      MGMT_STATUS_INVALID_PARAMS);
3933
	}
3934

3935
unlock:
3936
	hci_dev_unlock(hdev);
3937 3938 3939
	return err;
}

3940
static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
3941
				  void *data, u16 len)
3942
{
3943
	struct mgmt_cp_remove_remote_oob_data *cp = data;
3944
	u8 status;
3945 3946
	int err;

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

3949
	if (cp->addr.type != BDADDR_BREDR)
3950 3951 3952 3953
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
3954

3955
	hci_dev_lock(hdev);
3956

3957 3958 3959 3960 3961 3962
	if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
		hci_remote_oob_data_clear(hdev);
		status = MGMT_STATUS_SUCCESS;
		goto done;
	}

3963
	err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
3964
	if (err < 0)
3965
		status = MGMT_STATUS_INVALID_PARAMS;
3966
	else
3967
		status = MGMT_STATUS_SUCCESS;
3968

3969
done:
3970 3971
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
				status, &cp->addr, sizeof(cp->addr));
3972

3973
	hci_dev_unlock(hdev);
3974 3975 3976
	return err;
}

3977
static bool trigger_bredr_inquiry(struct hci_request *req, u8 *status)
3978
{
3979
	struct hci_dev *hdev = req->hdev;
3980
	struct hci_cp_inquiry cp;
3981 3982
	/* General inquiry access code (GIAC) */
	u8 lap[3] = { 0x33, 0x8b, 0x9e };
3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008

	*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;
4009
	u8 own_addr_type;
4010 4011
	int err;

4012 4013 4014
	*status = mgmt_le_support(hdev);
	if (*status)
		return false;
4015

4016 4017 4018 4019 4020 4021
	if (hci_dev_test_flag(hdev, HCI_LE_ADV)) {
		/* Don't let discovery abort an outgoing connection attempt
		 * that's using directed advertising.
		 */
		if (hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT)) {
			*status = MGMT_STATUS_REJECTED;
4022 4023
			return false;
		}
4024

4025 4026
		disable_advertising(req);
	}
4027

4028 4029 4030 4031 4032 4033
	/* 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);
4034

4035 4036 4037 4038 4039 4040 4041 4042 4043
	/* 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;
	}
4044

4045 4046 4047 4048 4049
	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;
4050

4051 4052
	hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
		    &param_cp);
4053

4054 4055 4056
	memset(&enable_cp, 0, sizeof(enable_cp));
	enable_cp.enable = LE_SCAN_ENABLE;
	enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
4057

4058 4059 4060 4061 4062
	hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
		    &enable_cp);

	return true;
}
4063

4064 4065 4066
static bool trigger_discovery(struct hci_request *req, u8 *status)
{
	struct hci_dev *hdev = req->hdev;
4067

4068 4069 4070 4071 4072 4073 4074
	switch (hdev->discovery.type) {
	case DISCOV_TYPE_BREDR:
		if (!trigger_bredr_inquiry(req, status))
			return false;
		break;

	case DISCOV_TYPE_INTERLEAVED:
4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090
		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;
		}

4091 4092
		if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
			*status = MGMT_STATUS_NOT_SUPPORTED;
4093 4094
			return false;
		}
4095
		/* fall through */
4096

4097 4098 4099
	case DISCOV_TYPE_LE:
		if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT, status))
			return false;
4100 4101 4102 4103 4104 4105 4106 4107
		break;

	default:
		*status = MGMT_STATUS_INVALID_PARAMS;
		return false;
	}

	return true;
4108 4109
}

4110 4111
static void start_discovery_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
4112
{
4113
	struct mgmt_pending_cmd *cmd;
4114
	unsigned long timeout;
4115

4116 4117
	BT_DBG("status %d", status);

4118
	hci_dev_lock(hdev);
4119

4120
	cmd = pending_find(MGMT_OP_START_DISCOVERY, hdev);
4121
	if (!cmd)
4122
		cmd = pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);
4123

4124
	if (cmd) {
4125
		cmd->cmd_complete(cmd, mgmt_status(status));
4126 4127
		mgmt_pending_remove(cmd);
	}
4128 4129

	if (status) {
4130 4131
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
		goto unlock;
4132 4133 4134 4135
	}

	hci_discovery_set_state(hdev, DISCOVERY_FINDING);

4136 4137 4138
	/* If the scan involves LE scan, pick proper timeout to schedule
	 * hdev->le_scan_disable that will stop it.
	 */
4139 4140
	switch (hdev->discovery.type) {
	case DISCOV_TYPE_LE:
4141
		timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
4142 4143
		break;
	case DISCOV_TYPE_INTERLEAVED:
4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155
		 /* 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);
4156 4157
		break;
	case DISCOV_TYPE_BREDR:
4158
		timeout = 0;
4159 4160 4161
		break;
	default:
		BT_ERR("Invalid discovery type %d", hdev->discovery.type);
4162 4163
		timeout = 0;
		break;
4164
	}
4165

4166 4167 4168 4169 4170 4171 4172 4173
	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) &&
4174
		    hdev->discovery.result_filtering) {
4175 4176 4177 4178
			hdev->discovery.scan_start = jiffies;
			hdev->discovery.scan_duration = timeout;
		}

4179 4180
		queue_delayed_work(hdev->workqueue,
				   &hdev->le_scan_disable, timeout);
4181
	}
4182

4183 4184
unlock:
	hci_dev_unlock(hdev);
4185 4186
}

4187
static int start_discovery(struct sock *sk, struct hci_dev *hdev,
4188
			   void *data, u16 len)
4189
{
4190
	struct mgmt_cp_start_discovery *cp = data;
4191
	struct mgmt_pending_cmd *cmd;
4192
	struct hci_request req;
4193
	u8 status;
4194 4195
	int err;

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

4198
	hci_dev_lock(hdev);
4199

4200
	if (!hdev_is_powered(hdev)) {
4201 4202 4203
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					MGMT_STATUS_NOT_POWERED,
					&cp->type, sizeof(cp->type));
4204 4205 4206
		goto failed;
	}

4207
	if (hdev->discovery.state != DISCOVERY_STOPPED ||
4208
	    hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
4209 4210 4211
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					MGMT_STATUS_BUSY, &cp->type,
					sizeof(cp->type));
4212 4213 4214
		goto failed;
	}

4215
	cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, data, len);
4216 4217 4218 4219 4220
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

4221 4222
	cmd->cmd_complete = generic_cmd_complete;

4223 4224 4225 4226 4227
	/* Clear the discovery filter first to free any previously
	 * allocated memory for the UUID list.
	 */
	hci_discovery_filter_clear(hdev);

A
Andre Guedes 已提交
4228
	hdev->discovery.type = cp->type;
4229
	hdev->discovery.report_invalid_rssi = false;
A
Andre Guedes 已提交
4230

4231 4232
	hci_req_init(&req, hdev);

4233
	if (!trigger_discovery(&req, &status)) {
4234 4235
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					status, &cp->type, sizeof(cp->type));
4236 4237
		mgmt_pending_remove(cmd);
		goto failed;
4238
	}
4239

4240
	err = hci_req_run(&req, start_discovery_complete);
4241
	if (err < 0) {
4242
		mgmt_pending_remove(cmd);
4243 4244
		goto failed;
	}
4245

4246
	hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4247

4248
failed:
4249
	hci_dev_unlock(hdev);
4250 4251
	return err;
}
4252

4253 4254
static int service_discovery_cmd_complete(struct mgmt_pending_cmd *cmd,
					  u8 status)
4255
{
4256 4257
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, 1);
4258
}
4259

4260 4261 4262 4263
static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
				   void *data, u16 len)
{
	struct mgmt_cp_start_service_discovery *cp = data;
4264
	struct mgmt_pending_cmd *cmd;
4265 4266 4267 4268 4269
	struct hci_request req;
	const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
	u16 uuid_count, expected_len;
	u8 status;
	int err;
4270

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

4273
	hci_dev_lock(hdev);
4274

4275
	if (!hdev_is_powered(hdev)) {
4276 4277 4278 4279
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_NOT_POWERED,
					&cp->type, sizeof(cp->type));
4280 4281
		goto failed;
	}
4282

4283
	if (hdev->discovery.state != DISCOVERY_STOPPED ||
4284
	    hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
4285 4286 4287 4288
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_BUSY, &cp->type,
					sizeof(cp->type));
4289 4290
		goto failed;
	}
4291

4292 4293 4294 4295
	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);
4296 4297 4298 4299
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS, &cp->type,
					sizeof(cp->type));
4300 4301 4302 4303 4304 4305 4306
		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);
4307 4308 4309 4310
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS, &cp->type,
					sizeof(cp->type));
4311 4312 4313 4314
		goto failed;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
4315
			       hdev, data, len);
4316 4317 4318 4319 4320
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

4321 4322
	cmd->cmd_complete = service_discovery_cmd_complete;

4323 4324 4325 4326 4327
	/* Clear the discovery filter first to free any previously
	 * allocated memory for the UUID list.
	 */
	hci_discovery_filter_clear(hdev);

4328
	hdev->discovery.result_filtering = true;
4329 4330 4331 4332 4333 4334 4335 4336
	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) {
4337 4338 4339 4340
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_START_SERVICE_DISCOVERY,
						MGMT_STATUS_FAILED,
						&cp->type, sizeof(cp->type));
4341 4342 4343
			mgmt_pending_remove(cmd);
			goto failed;
		}
4344
	}
4345

4346
	hci_req_init(&req, hdev);
4347

4348
	if (!trigger_discovery(&req, &status)) {
4349 4350 4351
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					status, &cp->type, sizeof(cp->type));
4352 4353
		mgmt_pending_remove(cmd);
		goto failed;
4354
	}
4355

4356
	err = hci_req_run(&req, start_discovery_complete);
4357
	if (err < 0) {
4358
		mgmt_pending_remove(cmd);
4359 4360 4361 4362
		goto failed;
	}

	hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4363 4364

failed:
4365
	hci_dev_unlock(hdev);
4366 4367 4368
	return err;
}

4369
static void stop_discovery_complete(struct hci_dev *hdev, u8 status, u16 opcode)
4370
{
4371
	struct mgmt_pending_cmd *cmd;
4372

4373 4374 4375 4376
	BT_DBG("status %d", status);

	hci_dev_lock(hdev);

4377
	cmd = pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
4378
	if (cmd) {
4379
		cmd->cmd_complete(cmd, mgmt_status(status));
4380
		mgmt_pending_remove(cmd);
4381 4382
	}

4383 4384
	if (!status)
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4385 4386 4387 4388

	hci_dev_unlock(hdev);
}

4389
static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
4390
			  u16 len)
4391
{
4392
	struct mgmt_cp_stop_discovery *mgmt_cp = data;
4393
	struct mgmt_pending_cmd *cmd;
4394
	struct hci_request req;
4395 4396
	int err;

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

4399
	hci_dev_lock(hdev);
4400

4401
	if (!hci_discovery_active(hdev)) {
4402 4403 4404
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
					MGMT_STATUS_REJECTED, &mgmt_cp->type,
					sizeof(mgmt_cp->type));
4405 4406 4407 4408
		goto unlock;
	}

	if (hdev->discovery.type != mgmt_cp->type) {
4409 4410 4411
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS,
					&mgmt_cp->type, sizeof(mgmt_cp->type));
4412
		goto unlock;
4413 4414
	}

4415
	cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
4416 4417
	if (!cmd) {
		err = -ENOMEM;
4418 4419 4420
		goto unlock;
	}

4421 4422
	cmd->cmd_complete = generic_cmd_complete;

4423 4424
	hci_req_init(&req, hdev);

4425
	hci_stop_discovery(&req);
4426

4427 4428 4429
	err = hci_req_run(&req, stop_discovery_complete);
	if (!err) {
		hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
4430
		goto unlock;
4431 4432
	}

4433 4434 4435 4436
	mgmt_pending_remove(cmd);

	/* If no HCI commands were sent we're done */
	if (err == -ENODATA) {
4437 4438
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
					&mgmt_cp->type, sizeof(mgmt_cp->type));
4439 4440
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
	}
4441

4442
unlock:
4443
	hci_dev_unlock(hdev);
4444 4445 4446
	return err;
}

4447
static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
4448
			u16 len)
4449
{
4450
	struct mgmt_cp_confirm_name *cp = data;
4451 4452 4453
	struct inquiry_entry *e;
	int err;

4454
	BT_DBG("%s", hdev->name);
4455 4456 4457

	hci_dev_lock(hdev);

4458
	if (!hci_discovery_active(hdev)) {
4459 4460 4461
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
					MGMT_STATUS_FAILED, &cp->addr,
					sizeof(cp->addr));
4462 4463 4464
		goto failed;
	}

4465
	e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
4466
	if (!e) {
4467 4468 4469
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
					MGMT_STATUS_INVALID_PARAMS, &cp->addr,
					sizeof(cp->addr));
4470 4471 4472 4473 4474 4475 4476 4477
		goto failed;
	}

	if (cp->name_known) {
		e->name_state = NAME_KNOWN;
		list_del(&e->list);
	} else {
		e->name_state = NAME_NEEDED;
4478
		hci_inquiry_cache_update_resolve(hdev, e);
4479 4480
	}

4481 4482
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
				&cp->addr, sizeof(cp->addr));
4483 4484 4485 4486 4487 4488

failed:
	hci_dev_unlock(hdev);
	return err;
}

4489
static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
4490
			u16 len)
4491
{
4492
	struct mgmt_cp_block_device *cp = data;
4493
	u8 status;
4494 4495
	int err;

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

4498
	if (!bdaddr_type_is_valid(cp->addr.type))
4499 4500 4501
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
4502

4503
	hci_dev_lock(hdev);
4504

4505 4506
	err = hci_bdaddr_list_add(&hdev->blacklist, &cp->addr.bdaddr,
				  cp->addr.type);
4507
	if (err < 0) {
4508
		status = MGMT_STATUS_FAILED;
4509 4510 4511 4512 4513 4514
		goto done;
	}

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

4516
done:
4517 4518
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
				&cp->addr, sizeof(cp->addr));
4519

4520
	hci_dev_unlock(hdev);
4521 4522 4523 4524

	return err;
}

4525
static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
4526
			  u16 len)
4527
{
4528
	struct mgmt_cp_unblock_device *cp = data;
4529
	u8 status;
4530 4531
	int err;

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

4534
	if (!bdaddr_type_is_valid(cp->addr.type))
4535 4536 4537
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
4538

4539
	hci_dev_lock(hdev);
4540

4541 4542
	err = hci_bdaddr_list_del(&hdev->blacklist, &cp->addr.bdaddr,
				  cp->addr.type);
4543
	if (err < 0) {
4544
		status = MGMT_STATUS_INVALID_PARAMS;
4545 4546 4547 4548 4549 4550
		goto done;
	}

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

4552
done:
4553 4554
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
				&cp->addr, sizeof(cp->addr));
4555

4556
	hci_dev_unlock(hdev);
4557 4558 4559 4560

	return err;
}

4561 4562 4563 4564
static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 len)
{
	struct mgmt_cp_set_device_id *cp = data;
4565
	struct hci_request req;
4566
	int err;
4567
	__u16 source;
4568 4569 4570

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

4571 4572 4573
	source = __le16_to_cpu(cp->source);

	if (source > 0x0002)
4574 4575
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
				       MGMT_STATUS_INVALID_PARAMS);
4576

4577 4578
	hci_dev_lock(hdev);

4579
	hdev->devid_source = source;
4580 4581 4582 4583
	hdev->devid_vendor = __le16_to_cpu(cp->vendor);
	hdev->devid_product = __le16_to_cpu(cp->product);
	hdev->devid_version = __le16_to_cpu(cp->version);

4584 4585
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
				NULL, 0);
4586

4587 4588 4589
	hci_req_init(&req, hdev);
	update_eir(&req);
	hci_req_run(&req, NULL);
4590 4591 4592 4593 4594 4595

	hci_dev_unlock(hdev);

	return err;
}

4596 4597 4598 4599 4600 4601
static void enable_advertising_instance(struct hci_dev *hdev, u8 status,
					u16 opcode)
{
	BT_DBG("status %d", status);
}

4602 4603
static void set_advertising_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
4604 4605
{
	struct cmd_lookup match = { NULL, hdev };
4606
	struct hci_request req;
4607

4608 4609
	hci_dev_lock(hdev);

4610 4611 4612 4613 4614
	if (status) {
		u8 mgmt_err = mgmt_status(status);

		mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
				     cmd_status_rsp, &mgmt_err);
4615
		goto unlock;
4616 4617
	}

4618
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
4619
		hci_dev_set_flag(hdev, HCI_ADVERTISING);
4620
	else
4621
		hci_dev_clear_flag(hdev, HCI_ADVERTISING);
4622

4623 4624 4625 4626 4627 4628 4629
	mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
			     &match);

	new_settings(hdev, match.sk);

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

4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645
	/* If "Set Advertising" was just disabled and instance advertising was
	 * set up earlier, then enable the advertising instance.
	 */
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
	    !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
		goto unlock;

	hci_req_init(&req, hdev);

	update_adv_data(&req);
	enable_advertising(&req);

	if (hci_req_run(&req, enable_advertising_instance) < 0)
		BT_ERR("Failed to re-configure advertising");

4646 4647
unlock:
	hci_dev_unlock(hdev);
4648 4649
}

4650 4651
static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 len)
4652 4653
{
	struct mgmt_mode *cp = data;
4654
	struct mgmt_pending_cmd *cmd;
4655
	struct hci_request req;
4656
	u8 val, status;
4657 4658 4659 4660
	int err;

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

4661 4662
	status = mgmt_le_support(hdev);
	if (status)
4663 4664
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				       status);
4665

4666
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
4667 4668
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);
4669 4670 4671 4672 4673

	hci_dev_lock(hdev);

	val = !!cp->val;

4674 4675 4676 4677 4678
	/* 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).
	 */
4679
	if (!hdev_is_powered(hdev) ||
4680 4681
	    (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
	     (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
4682
	    hci_conn_num(hdev, LE_LINK) > 0 ||
4683
	    (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
4684
	     hdev->le_scan_type == LE_SCAN_ACTIVE)) {
4685
		bool changed;
4686

4687
		if (cp->val) {
4688
			changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
4689
			if (cp->val == 0x02)
4690
				hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4691
			else
4692
				hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4693
		} else {
4694
			changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
4695
			hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707
		}

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

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

		goto unlock;
	}

4708 4709
	if (pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
	    pending_find(MGMT_OP_SET_LE, hdev)) {
4710 4711
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				      MGMT_STATUS_BUSY);
4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722
		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);

4723
	if (cp->val == 0x02)
4724
		hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4725
	else
4726
		hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4727

4728 4729 4730
	if (val) {
		/* Switch to instance "0" for the Set Advertising setting. */
		update_adv_data_for_instance(&req, 0);
4731
		update_scan_rsp_data_for_instance(&req, 0);
4732
		enable_advertising(&req);
4733
	} else {
4734
		disable_advertising(&req);
4735
	}
4736 4737 4738 4739 4740 4741 4742 4743 4744 4745

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

unlock:
	hci_dev_unlock(hdev);
	return err;
}

4746 4747 4748 4749 4750 4751 4752 4753
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);

4754
	if (!lmp_le_capable(hdev))
4755 4756
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
				       MGMT_STATUS_NOT_SUPPORTED);
4757 4758

	if (hdev_is_powered(hdev))
4759 4760
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
				       MGMT_STATUS_REJECTED);
4761 4762 4763

	if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
		if (!bacmp(&cp->bdaddr, BDADDR_NONE))
4764 4765 4766
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_SET_STATIC_ADDRESS,
					       MGMT_STATUS_INVALID_PARAMS);
4767 4768 4769

		/* Two most significant bits shall be set */
		if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
4770 4771 4772
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_SET_STATIC_ADDRESS,
					       MGMT_STATUS_INVALID_PARAMS);
4773 4774 4775 4776 4777 4778
	}

	hci_dev_lock(hdev);

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

4779 4780 4781 4782 4783
	err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
	if (err < 0)
		goto unlock;

	err = new_settings(hdev, sk);
4784

4785
unlock:
4786 4787 4788 4789
	hci_dev_unlock(hdev);
	return err;
}

4790 4791 4792 4793 4794 4795 4796 4797 4798 4799
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))
4800 4801
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_NOT_SUPPORTED);
4802 4803 4804 4805

	interval = __le16_to_cpu(cp->interval);

	if (interval < 0x0004 || interval > 0x4000)
4806 4807
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
4808 4809 4810 4811

	window = __le16_to_cpu(cp->window);

	if (window < 0x0004 || window > 0x4000)
4812 4813
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
4814

4815
	if (window > interval)
4816 4817
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
4818

4819 4820 4821 4822 4823
	hci_dev_lock(hdev);

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

4824 4825
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
				NULL, 0);
4826

4827 4828 4829
	/* If background scan is running, restart it so new parameters are
	 * loaded.
	 */
4830
	if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841
	    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);
	}

4842 4843 4844 4845 4846
	hci_dev_unlock(hdev);

	return err;
}

4847 4848
static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
				      u16 opcode)
4849
{
4850
	struct mgmt_pending_cmd *cmd;
4851 4852 4853 4854 4855

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

	hci_dev_lock(hdev);

4856
	cmd = pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4857 4858 4859 4860
	if (!cmd)
		goto unlock;

	if (status) {
4861 4862
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
			        mgmt_status(status));
4863
	} else {
4864 4865 4866
		struct mgmt_mode *cp = cmd->param;

		if (cp->val)
4867
			hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
4868
		else
4869
			hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
4870

4871 4872 4873 4874 4875 4876 4877 4878 4879 4880
		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);
}

4881
static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
4882
				void *data, u16 len)
4883
{
4884
	struct mgmt_mode *cp = data;
4885
	struct mgmt_pending_cmd *cmd;
4886
	struct hci_request req;
4887 4888
	int err;

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

4891
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
4892
	    hdev->hci_ver < BLUETOOTH_VER_1_2)
4893 4894
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				       MGMT_STATUS_NOT_SUPPORTED);
4895

4896
	if (cp->val != 0x00 && cp->val != 0x01)
4897 4898
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				       MGMT_STATUS_INVALID_PARAMS);
4899

4900 4901
	hci_dev_lock(hdev);

4902
	if (pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
4903 4904
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				      MGMT_STATUS_BUSY);
4905 4906 4907
		goto unlock;
	}

4908
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
4909 4910 4911 4912 4913
		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
					hdev);
		goto unlock;
	}

4914
	if (!hdev_is_powered(hdev)) {
4915
		hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
4916 4917 4918 4919 4920 4921
		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
					hdev);
		new_settings(hdev, sk);
		goto unlock;
	}

4922 4923 4924 4925 4926
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
			       data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
4927 4928
	}

4929 4930
	hci_req_init(&req, hdev);

4931
	write_fast_connectable(&req, cp->val);
4932 4933

	err = hci_req_run(&req, fast_connectable_complete);
4934
	if (err < 0) {
4935 4936
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				      MGMT_STATUS_FAILED);
4937
		mgmt_pending_remove(cmd);
4938 4939
	}

4940
unlock:
4941
	hci_dev_unlock(hdev);
4942

4943 4944 4945
	return err;
}

4946
static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
4947
{
4948
	struct mgmt_pending_cmd *cmd;
4949 4950 4951 4952 4953

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

	hci_dev_lock(hdev);

4954
	cmd = pending_find(MGMT_OP_SET_BREDR, hdev);
4955 4956 4957 4958 4959 4960 4961 4962 4963
	if (!cmd)
		goto unlock;

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

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

4966
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980
	} 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;
4981
	struct mgmt_pending_cmd *cmd;
4982 4983 4984 4985 4986 4987
	struct hci_request req;
	int err;

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

	if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
4988 4989
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_NOT_SUPPORTED);
4990

4991
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
4992 4993
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_REJECTED);
4994 4995

	if (cp->val != 0x00 && cp->val != 0x01)
4996 4997
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_INVALID_PARAMS);
4998 4999 5000

	hci_dev_lock(hdev);

5001
	if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
5002 5003 5004 5005 5006 5007
		err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
		goto unlock;
	}

	if (!hdev_is_powered(hdev)) {
		if (!cp->val) {
5008 5009 5010 5011 5012
			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);
5013 5014
		}

5015
		hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026

		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) {
5027 5028
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				      MGMT_STATUS_REJECTED);
5029
		goto unlock;
5030 5031 5032 5033 5034 5035 5036 5037
	} 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.
5038 5039 5040 5041 5042 5043
		 *
		 * 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.
5044
		 */
5045
		if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
5046
		    (bacmp(&hdev->static_addr, BDADDR_ANY) ||
5047
		     hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
5048 5049
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
					      MGMT_STATUS_REJECTED);
5050 5051
			goto unlock;
		}
5052 5053
	}

5054
	if (pending_find(MGMT_OP_SET_BREDR, hdev)) {
5055 5056
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				      MGMT_STATUS_BUSY);
5057 5058 5059 5060 5061 5062 5063 5064 5065
		goto unlock;
	}

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

5066
	/* We need to flip the bit already here so that update_adv_data
5067 5068
	 * generates the correct flags.
	 */
5069
	hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
5070 5071

	hci_req_init(&req, hdev);
5072

5073
	write_fast_connectable(&req, false);
5074
	__hci_update_page_scan(&req);
5075

5076 5077 5078
	/* Since only the advertising data flags will change, there
	 * is no need to update the scan response data.
	 */
5079
	update_adv_data(&req);
5080

5081 5082 5083 5084 5085 5086 5087 5088 5089
	err = hci_req_run(&req, set_bredr_complete);
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5090 5091
static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
{
5092
	struct mgmt_pending_cmd *cmd;
5093 5094 5095 5096 5097 5098
	struct mgmt_mode *cp;

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

	hci_dev_lock(hdev);

5099
	cmd = pending_find(MGMT_OP_SET_SECURE_CONN, hdev);
5100 5101 5102 5103
	if (!cmd)
		goto unlock;

	if (status) {
5104 5105
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
			        mgmt_status(status));
5106 5107 5108 5109 5110 5111 5112
		goto remove;
	}

	cp = cmd->param;

	switch (cp->val) {
	case 0x00:
5113 5114
		hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
		hci_dev_clear_flag(hdev, HCI_SC_ONLY);
5115 5116
		break;
	case 0x01:
5117
		hci_dev_set_flag(hdev, HCI_SC_ENABLED);
5118
		hci_dev_clear_flag(hdev, HCI_SC_ONLY);
5119 5120
		break;
	case 0x02:
5121 5122
		hci_dev_set_flag(hdev, HCI_SC_ENABLED);
		hci_dev_set_flag(hdev, HCI_SC_ONLY);
5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134
		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);
}

5135 5136 5137 5138
static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
			   void *data, u16 len)
{
	struct mgmt_mode *cp = data;
5139
	struct mgmt_pending_cmd *cmd;
5140
	struct hci_request req;
5141
	u8 val;
5142 5143 5144 5145
	int err;

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

5146
	if (!lmp_sc_capable(hdev) &&
5147
	    !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
5148 5149
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				       MGMT_STATUS_NOT_SUPPORTED);
5150

5151
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
5152
	    lmp_sc_capable(hdev) &&
5153
	    !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
5154 5155
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				       MGMT_STATUS_REJECTED);
5156

5157
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
5158
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5159 5160 5161 5162
				  MGMT_STATUS_INVALID_PARAMS);

	hci_dev_lock(hdev);

5163
	if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
5164
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
5165 5166
		bool changed;

5167
		if (cp->val) {
5168 5169
			changed = !hci_dev_test_and_set_flag(hdev,
							     HCI_SC_ENABLED);
5170
			if (cp->val == 0x02)
5171
				hci_dev_set_flag(hdev, HCI_SC_ONLY);
5172
			else
5173
				hci_dev_clear_flag(hdev, HCI_SC_ONLY);
5174
		} else {
5175 5176
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_SC_ENABLED);
5177
			hci_dev_clear_flag(hdev, HCI_SC_ONLY);
5178
		}
5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189

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

5190
	if (pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
5191 5192
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				      MGMT_STATUS_BUSY);
5193 5194 5195
		goto failed;
	}

5196 5197
	val = !!cp->val;

5198 5199
	if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
	    (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
5200 5201 5202 5203 5204 5205 5206 5207 5208 5209
		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;
	}

5210 5211 5212
	hci_req_init(&req, hdev);
	hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
	err = hci_req_run(&req, sc_enable_complete);
5213 5214 5215 5216 5217 5218 5219 5220 5221 5222
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

5223 5224 5225 5226
static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
			  void *data, u16 len)
{
	struct mgmt_mode *cp = data;
5227
	bool changed, use_changed;
5228 5229 5230 5231
	int err;

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

5232
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
5233 5234
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5235 5236 5237 5238

	hci_dev_lock(hdev);

	if (cp->val)
5239
		changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
5240
	else
5241 5242
		changed = hci_dev_test_and_clear_flag(hdev,
						      HCI_KEEP_DEBUG_KEYS);
5243

5244
	if (cp->val == 0x02)
5245 5246
		use_changed = !hci_dev_test_and_set_flag(hdev,
							 HCI_USE_DEBUG_KEYS);
5247
	else
5248 5249
		use_changed = hci_dev_test_and_clear_flag(hdev,
							  HCI_USE_DEBUG_KEYS);
5250 5251

	if (hdev_is_powered(hdev) && use_changed &&
5252
	    hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
5253 5254 5255 5256 5257
		u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
			     sizeof(mode), &mode);
	}

5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269
	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;
}

5270 5271 5272 5273 5274 5275 5276 5277 5278 5279
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))
5280 5281
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_NOT_SUPPORTED);
5282 5283

	if (cp->privacy != 0x00 && cp->privacy != 0x01)
5284 5285
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_INVALID_PARAMS);
5286 5287

	if (hdev_is_powered(hdev))
5288 5289
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_REJECTED);
5290 5291 5292

	hci_dev_lock(hdev);

5293 5294 5295
	/* If user space supports this command it is also expected to
	 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
	 */
5296
	hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
5297

5298
	if (cp->privacy) {
5299
		changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
5300
		memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
5301
		hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
5302
	} else {
5303
		changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
5304
		memset(hdev->irk, 0, sizeof(hdev->irk));
5305
		hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319
	}

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

5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339
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;
5340 5341
	const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_irk_info));
5342 5343 5344 5345 5346 5347
	u16 irk_count, expected_len;
	int i, err;

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

	if (!lmp_le_capable(hdev))
5348 5349
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_NOT_SUPPORTED);
5350 5351

	irk_count = __le16_to_cpu(cp->irk_count);
5352 5353
	if (irk_count > max_irk_count) {
		BT_ERR("load_irks: too big irk_count value %u", irk_count);
5354 5355
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_INVALID_PARAMS);
5356
	}
5357 5358 5359 5360

	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",
5361
		       expected_len, len);
5362 5363
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_INVALID_PARAMS);
5364 5365 5366 5367 5368 5369 5370 5371
	}

	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))
5372 5373 5374
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_IRKS,
					       MGMT_STATUS_INVALID_PARAMS);
5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393
	}

	hci_dev_lock(hdev);

	hci_smp_irks_clear(hdev);

	for (i = 0; i < irk_count; i++) {
		struct mgmt_irk_info *irk = &cp->irks[i];
		u8 addr_type;

		if (irk->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;

		hci_add_irk(hdev, &irk->addr.bdaddr, addr_type, irk->val,
			    BDADDR_ANY);
	}

5394
	hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
5395

5396
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
5397 5398 5399 5400 5401 5402

	hci_dev_unlock(hdev);

	return err;
}

5403 5404 5405 5406
static bool ltk_is_valid(struct mgmt_ltk_info *key)
{
	if (key->master != 0x00 && key->master != 0x01)
		return false;
5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419

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

5422
static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
5423
			       void *cp_data, u16 len)
5424 5425
{
	struct mgmt_cp_load_long_term_keys *cp = cp_data;
5426 5427
	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_ltk_info));
5428
	u16 key_count, expected_len;
5429
	int i, err;
5430

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

	if (!lmp_le_capable(hdev))
5434 5435
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_NOT_SUPPORTED);
5436

5437
	key_count = __le16_to_cpu(cp->key_count);
5438 5439
	if (key_count > max_key_count) {
		BT_ERR("load_ltks: too big key_count value %u", key_count);
5440 5441
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5442
	}
5443 5444 5445 5446 5447

	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",
5448
		       expected_len, len);
5449 5450
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5451 5452
	}

5453
	BT_DBG("%s key_count %u", hdev->name, key_count);
5454

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

5458
		if (!ltk_is_valid(key))
5459 5460 5461
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_LONG_TERM_KEYS,
					       MGMT_STATUS_INVALID_PARAMS);
5462 5463
	}

5464 5465 5466 5467 5468 5469
	hci_dev_lock(hdev);

	hci_smp_ltks_clear(hdev);

	for (i = 0; i < key_count; i++) {
		struct mgmt_ltk_info *key = &cp->keys[i];
5470
		u8 type, addr_type, authenticated;
5471 5472 5473 5474 5475

		if (key->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;
5476

5477 5478
		switch (key->type) {
		case MGMT_LTK_UNAUTHENTICATED:
5479
			authenticated = 0x00;
5480
			type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
5481 5482
			break;
		case MGMT_LTK_AUTHENTICATED:
5483
			authenticated = 0x01;
5484 5485 5486 5487 5488
			type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
			break;
		case MGMT_LTK_P256_UNAUTH:
			authenticated = 0x00;
			type = SMP_LTK_P256;
5489
			break;
5490 5491 5492
		case MGMT_LTK_P256_AUTH:
			authenticated = 0x01;
			type = SMP_LTK_P256;
5493
			break;
5494 5495 5496
		case MGMT_LTK_P256_DEBUG:
			authenticated = 0x00;
			type = SMP_LTK_P256_DEBUG;
5497 5498 5499
		default:
			continue;
		}
5500

5501
		hci_add_ltk(hdev, &key->addr.bdaddr, addr_type, type,
5502
			    authenticated, key->val, key->enc_size, key->ediv,
5503
			    key->rand);
5504 5505
	}

5506
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
5507 5508
			   NULL, 0);

5509 5510
	hci_dev_unlock(hdev);

5511
	return err;
5512 5513
}

5514
static int conn_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
5515 5516
{
	struct hci_conn *conn = cmd->user_data;
5517
	struct mgmt_rp_get_conn_info rp;
5518
	int err;
5519

5520
	memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
5521

5522
	if (status == MGMT_STATUS_SUCCESS) {
5523
		rp.rssi = conn->rssi;
5524 5525 5526 5527 5528 5529
		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;
5530 5531
	}

5532 5533
	err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
				status, &rp, sizeof(rp));
5534 5535

	hci_conn_drop(conn);
5536
	hci_conn_put(conn);
5537 5538

	return err;
5539 5540
}

5541 5542
static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
				       u16 opcode)
5543 5544
{
	struct hci_cp_read_rssi *cp;
5545
	struct mgmt_pending_cmd *cmd;
5546 5547
	struct hci_conn *conn;
	u16 handle;
5548
	u8 status;
5549

5550
	BT_DBG("status 0x%02x", hci_status);
5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565

	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);
5566 5567 5568
		status = MGMT_STATUS_SUCCESS;
	} else {
		status = mgmt_status(hci_status);
5569 5570 5571
	}

	if (!cp) {
5572
		BT_ERR("invalid sent_cmd in conn_info response");
5573 5574 5575 5576 5577 5578
		goto unlock;
	}

	handle = __le16_to_cpu(cp->handle);
	conn = hci_conn_hash_lookup_handle(hdev, handle);
	if (!conn) {
5579
		BT_ERR("unknown handle (%d) in conn_info response", handle);
5580 5581 5582
		goto unlock;
	}

5583
	cmd = pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
5584 5585
	if (!cmd)
		goto unlock;
5586

5587 5588
	cmd->cmd_complete(cmd, status);
	mgmt_pending_remove(cmd);
5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609

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))
5610 5611 5612
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
5613 5614 5615 5616

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
5617 5618 5619
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
5620 5621 5622 5623 5624 5625 5626 5627 5628 5629
		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) {
5630 5631 5632
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_NOT_CONNECTED, &rp,
					sizeof(rp));
5633 5634 5635
		goto unlock;
	}

5636
	if (pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
5637 5638
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
5639 5640 5641
		goto unlock;
	}

5642 5643 5644 5645 5646 5647 5648 5649 5650 5651
	/* 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.
	 */
5652 5653
	if (time_after(jiffies, conn->conn_info_timestamp +
		       msecs_to_jiffies(conn_info_age)) ||
5654 5655 5656 5657
	    !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;
5658
		struct mgmt_pending_cmd *cmd;
5659 5660 5661 5662 5663 5664

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

5665 5666 5667 5668 5669 5670 5671 5672 5673 5674
		/* 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);
		}
5675

5676 5677 5678 5679 5680 5681 5682 5683
		/* 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);
		}

5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695
		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);
5696
		cmd->user_data = hci_conn_get(conn);
5697
		cmd->cmd_complete = conn_info_cmd_complete;
5698 5699 5700 5701 5702 5703

		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;
5704
		rp.max_tx_power = conn->max_tx_power;
5705

5706 5707
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
5708 5709 5710 5711 5712 5713 5714
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5715
static int clock_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
5716
{
5717
	struct hci_conn *conn = cmd->user_data;
5718
	struct mgmt_rp_get_clock_info rp;
5719
	struct hci_dev *hdev;
5720
	int err;
5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739

	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:
5740 5741
	err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
				sizeof(rp));
5742 5743 5744 5745 5746

	if (conn) {
		hci_conn_drop(conn);
		hci_conn_put(conn);
	}
5747 5748

	return err;
5749 5750
}

5751
static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5752
{
5753
	struct hci_cp_read_clock *hci_cp;
5754
	struct mgmt_pending_cmd *cmd;
5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771
	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;
	}

5772
	cmd = pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
5773 5774 5775
	if (!cmd)
		goto unlock;

5776
	cmd->cmd_complete(cmd, mgmt_status(status));
5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788
	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;
5789
	struct mgmt_pending_cmd *cmd;
5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800
	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)
5801 5802 5803
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
5804 5805 5806 5807

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
5808 5809 5810
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
5811 5812 5813 5814 5815 5816 5817
		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) {
5818 5819 5820 5821
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_GET_CLOCK_INFO,
						MGMT_STATUS_NOT_CONNECTED,
						&rp, sizeof(rp));
5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833
			goto unlock;
		}
	} else {
		conn = NULL;
	}

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

5834 5835
	cmd->cmd_complete = clock_info_cmd_complete;

5836 5837 5838 5839 5840 5841 5842
	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);
5843
		cmd->user_data = hci_conn_get(conn);
5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858

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

5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917
static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
{
	struct hci_conn *conn;

	conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
	if (!conn)
		return false;

	if (conn->dst_type != type)
		return false;

	if (conn->state != BT_CONNECTED)
		return false;

	return true;
}

/* This function requires the caller holds hdev->lock */
static int hci_conn_params_set(struct hci_request *req, bdaddr_t *addr,
			       u8 addr_type, u8 auto_connect)
{
	struct hci_dev *hdev = req->hdev;
	struct hci_conn_params *params;

	params = hci_conn_params_add(hdev, addr, addr_type);
	if (!params)
		return -EIO;

	if (params->auto_connect == auto_connect)
		return 0;

	list_del_init(&params->action);

	switch (auto_connect) {
	case HCI_AUTO_CONN_DISABLED:
	case HCI_AUTO_CONN_LINK_LOSS:
		__hci_update_background_scan(req);
		break;
	case HCI_AUTO_CONN_REPORT:
		list_add(&params->action, &hdev->pend_le_reports);
		__hci_update_background_scan(req);
		break;
	case HCI_AUTO_CONN_DIRECT:
	case HCI_AUTO_CONN_ALWAYS:
		if (!is_connected(hdev, addr, addr_type)) {
			list_add(&params->action, &hdev->pend_le_conns);
			__hci_update_background_scan(req);
		}
		break;
	}

	params->auto_connect = auto_connect;

	BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
	       auto_connect);

	return 0;
}

5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929
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);
}

5930
static void add_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5931
{
5932
	struct mgmt_pending_cmd *cmd;
5933 5934 5935 5936 5937

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

	hci_dev_lock(hdev);

5938
	cmd = pending_find(MGMT_OP_ADD_DEVICE, hdev);
5939 5940 5941 5942 5943 5944 5945 5946 5947 5948
	if (!cmd)
		goto unlock;

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

unlock:
	hci_dev_unlock(hdev);
}

5949 5950 5951 5952
static int add_device(struct sock *sk, struct hci_dev *hdev,
		      void *data, u16 len)
{
	struct mgmt_cp_add_device *cp = data;
5953
	struct mgmt_pending_cmd *cmd;
5954
	struct hci_request req;
5955 5956 5957 5958 5959
	u8 auto_conn, addr_type;
	int err;

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

5960
	if (!bdaddr_type_is_valid(cp->addr.type) ||
5961
	    !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
5962 5963 5964
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
5965

5966
	if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
5967 5968 5969
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
5970

5971 5972
	hci_req_init(&req, hdev);

5973 5974
	hci_dev_lock(hdev);

5975 5976 5977 5978 5979 5980 5981 5982
	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_DEVICE, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

	cmd->cmd_complete = addr_cmd_complete;

5983
	if (cp->addr.type == BDADDR_BREDR) {
5984
		/* Only incoming connections action is supported for now */
5985
		if (cp->action != 0x01) {
5986 5987
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
5988
			mgmt_pending_remove(cmd);
5989 5990 5991 5992 5993 5994 5995
			goto unlock;
		}

		err = hci_bdaddr_list_add(&hdev->whitelist, &cp->addr.bdaddr,
					  cp->addr.type);
		if (err)
			goto unlock;
5996

5997
		__hci_update_page_scan(&req);
5998

5999 6000 6001
		goto added;
	}

6002 6003 6004 6005 6006
	if (cp->addr.type == BDADDR_LE_PUBLIC)
		addr_type = ADDR_LE_DEV_PUBLIC;
	else
		addr_type = ADDR_LE_DEV_RANDOM;

6007
	if (cp->action == 0x02)
6008
		auto_conn = HCI_AUTO_CONN_ALWAYS;
6009 6010
	else if (cp->action == 0x01)
		auto_conn = HCI_AUTO_CONN_DIRECT;
6011
	else
6012
		auto_conn = HCI_AUTO_CONN_REPORT;
6013

6014 6015 6016
	/* If the connection parameters don't exist for this device,
	 * they will be created and configured with defaults.
	 */
6017
	if (hci_conn_params_set(&req, &cp->addr.bdaddr, addr_type,
6018
				auto_conn) < 0) {
6019
		err = cmd->cmd_complete(cmd, MGMT_STATUS_FAILED);
6020
		mgmt_pending_remove(cmd);
6021 6022 6023
		goto unlock;
	}

6024
added:
6025 6026
	device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);

6027 6028 6029 6030 6031
	err = hci_req_run(&req, add_device_complete);
	if (err < 0) {
		/* ENODATA means no HCI commands were needed (e.g. if
		 * the adapter is powered off).
		 */
6032 6033
		if (err == -ENODATA)
			err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
6034 6035
		mgmt_pending_remove(cmd);
	}
6036 6037 6038 6039 6040 6041

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052
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);
}

6053
static void remove_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
6054
{
6055
	struct mgmt_pending_cmd *cmd;
6056 6057 6058 6059 6060

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

	hci_dev_lock(hdev);

6061
	cmd = pending_find(MGMT_OP_REMOVE_DEVICE, hdev);
6062 6063 6064 6065 6066 6067 6068 6069 6070 6071
	if (!cmd)
		goto unlock;

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

unlock:
	hci_dev_unlock(hdev);
}

6072 6073 6074 6075
static int remove_device(struct sock *sk, struct hci_dev *hdev,
			 void *data, u16 len)
{
	struct mgmt_cp_remove_device *cp = data;
6076
	struct mgmt_pending_cmd *cmd;
6077
	struct hci_request req;
6078 6079 6080 6081
	int err;

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

6082 6083
	hci_req_init(&req, hdev);

6084 6085
	hci_dev_lock(hdev);

6086 6087 6088 6089 6090 6091 6092 6093
	cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_DEVICE, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

	cmd->cmd_complete = addr_cmd_complete;

6094
	if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
6095
		struct hci_conn_params *params;
6096 6097
		u8 addr_type;

6098
		if (!bdaddr_type_is_valid(cp->addr.type)) {
6099 6100
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
6101
			mgmt_pending_remove(cmd);
6102 6103 6104
			goto unlock;
		}

6105 6106 6107 6108 6109
		if (cp->addr.type == BDADDR_BREDR) {
			err = hci_bdaddr_list_del(&hdev->whitelist,
						  &cp->addr.bdaddr,
						  cp->addr.type);
			if (err) {
6110 6111
				err = cmd->cmd_complete(cmd,
							MGMT_STATUS_INVALID_PARAMS);
6112
				mgmt_pending_remove(cmd);
6113 6114 6115
				goto unlock;
			}

6116
			__hci_update_page_scan(&req);
6117

6118 6119 6120 6121 6122
			device_removed(sk, hdev, &cp->addr.bdaddr,
				       cp->addr.type);
			goto complete;
		}

6123 6124 6125 6126 6127
		if (cp->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;

6128 6129 6130
		params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
						addr_type);
		if (!params) {
6131 6132
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
6133
			mgmt_pending_remove(cmd);
6134 6135 6136 6137
			goto unlock;
		}

		if (params->auto_connect == HCI_AUTO_CONN_DISABLED) {
6138 6139
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
6140
			mgmt_pending_remove(cmd);
6141 6142 6143
			goto unlock;
		}

6144
		list_del(&params->action);
6145 6146
		list_del(&params->list);
		kfree(params);
6147
		__hci_update_background_scan(&req);
6148 6149

		device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
6150
	} else {
6151
		struct hci_conn_params *p, *tmp;
6152
		struct bdaddr_list *b, *btmp;
6153

6154
		if (cp->addr.type) {
6155 6156
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
6157
			mgmt_pending_remove(cmd);
6158 6159 6160
			goto unlock;
		}

6161 6162 6163 6164 6165 6166
		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);
		}

6167
		__hci_update_page_scan(&req);
6168

6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179
		list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) {
			if (p->auto_connect == HCI_AUTO_CONN_DISABLED)
				continue;
			device_removed(sk, hdev, &p->addr, p->addr_type);
			list_del(&p->action);
			list_del(&p->list);
			kfree(p);
		}

		BT_DBG("All LE connection parameters were removed");

6180
		__hci_update_background_scan(&req);
6181 6182
	}

6183
complete:
6184 6185 6186 6187 6188
	err = hci_req_run(&req, remove_device_complete);
	if (err < 0) {
		/* ENODATA means no HCI commands were needed (e.g. if
		 * the adapter is powered off).
		 */
6189 6190
		if (err == -ENODATA)
			err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
6191 6192
		mgmt_pending_remove(cmd);
	}
6193 6194 6195 6196 6197 6198

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6199 6200 6201 6202
static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 len)
{
	struct mgmt_cp_load_conn_param *cp = data;
6203 6204
	const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
				     sizeof(struct mgmt_conn_param));
6205 6206 6207 6208
	u16 param_count, expected_len;
	int i;

	if (!lmp_le_capable(hdev))
6209 6210
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_NOT_SUPPORTED);
6211 6212

	param_count = __le16_to_cpu(cp->param_count);
6213 6214 6215
	if (param_count > max_param_count) {
		BT_ERR("load_conn_param: too big param_count value %u",
		       param_count);
6216 6217
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_INVALID_PARAMS);
6218
	}
6219 6220 6221 6222 6223 6224

	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);
6225 6226
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_INVALID_PARAMS);
6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280
	}

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

6281 6282
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
				 NULL, 0);
6283 6284
}

6285 6286 6287 6288 6289 6290 6291 6292 6293 6294
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))
6295 6296
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				       MGMT_STATUS_REJECTED);
6297 6298

	if (cp->config != 0x00 && cp->config != 0x01)
6299 6300
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				         MGMT_STATUS_INVALID_PARAMS);
6301 6302

	if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
6303 6304
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				       MGMT_STATUS_NOT_SUPPORTED);
6305 6306 6307 6308

	hci_dev_lock(hdev);

	if (cp->config)
6309
		changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
6310
	else
6311
		changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
6312 6313 6314 6315 6316 6317 6318 6319

	err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
	if (err < 0)
		goto unlock;

	if (!changed)
		goto unlock;

6320 6321
	err = new_options(hdev, sk);

6322
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
6323
		mgmt_index_removed(hdev);
6324

6325
		if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
6326 6327
			hci_dev_set_flag(hdev, HCI_CONFIG);
			hci_dev_set_flag(hdev, HCI_AUTO_OFF);
6328 6329 6330

			queue_work(hdev->req_workqueue, &hdev->power_on);
		} else {
6331
			set_bit(HCI_RAW, &hdev->flags);
6332 6333
			mgmt_index_added(hdev);
		}
6334 6335 6336 6337 6338 6339 6340
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6341 6342 6343 6344 6345 6346 6347 6348 6349 6350
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))
6351 6352
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_REJECTED);
6353 6354

	if (!bacmp(&cp->bdaddr, BDADDR_ANY))
6355 6356
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_INVALID_PARAMS);
6357 6358

	if (!hdev->set_bdaddr)
6359 6360
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_NOT_SUPPORTED);
6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373

	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;

6374
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
6375 6376 6377 6378 6379
		err = new_options(hdev, sk);

	if (is_configured(hdev)) {
		mgmt_index_removed(hdev);

6380
		hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
6381

6382 6383
		hci_dev_set_flag(hdev, HCI_CONFIG);
		hci_dev_set_flag(hdev, HCI_AUTO_OFF);
6384 6385 6386 6387 6388 6389 6390 6391 6392

		queue_work(hdev->req_workqueue, &hdev->power_on);
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403
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;
}

6404 6405 6406 6407 6408 6409 6410
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;
6411
	u8 status, flags, role, addr[7], hash[16], rand[16];
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
	int err;

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

	if (!hdev_is_powered(hdev))
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
					 MGMT_STATUS_NOT_POWERED,
					 &cp->type, sizeof(cp->type));

	switch (cp->type) {
	case BIT(BDADDR_BREDR):
		status = mgmt_bredr_support(hdev);
		if (status)
			return mgmt_cmd_complete(sk, hdev->id,
						 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
						 status, &cp->type,
						 sizeof(cp->type));
		eir_len = 5;
		break;
	case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
		status = mgmt_le_support(hdev);
		if (status)
			return mgmt_cmd_complete(sk, hdev->id,
						 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
						 status, &cp->type,
						 sizeof(cp->type));
6439
		eir_len = 9 + 3 + 18 + 18 + 3;
6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463
		break;
	default:
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->type, sizeof(cp->type));
	}

	hci_dev_lock(hdev);

	rp_len = sizeof(*rp) + eir_len;
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
		hci_dev_unlock(hdev);
		return -ENOMEM;
	}

	eir_len = 0;
	switch (cp->type) {
	case BIT(BDADDR_BREDR):
		eir_len = eir_append_data(rp->eir, eir_len, EIR_CLASS_OF_DEV,
					  hdev->dev_class, 3);
		break;
	case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
6464 6465
		if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
		    smp_generate_oob(hdev, hash, rand) < 0) {
6466 6467
			hci_dev_unlock(hdev);
			err = mgmt_cmd_complete(sk, hdev->id,
6468 6469 6470
						MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
						MGMT_STATUS_FAILED,
						&cp->type, sizeof(cp->type));
6471 6472 6473
			goto done;
		}

6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498
		if (hci_dev_test_flag(hdev, HCI_PRIVACY)) {
			memcpy(addr, &hdev->rpa, 6);
			addr[6] = 0x01;
		} else 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))) {
			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));

6499 6500 6501 6502
		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));
6503

6504 6505 6506 6507
			eir_len = eir_append_data(rp->eir, eir_len,
						  EIR_LE_SC_RANDOM,
						  rand, sizeof(rand));
		}
6508

6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523
		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;
	}

	rp->type = cp->type;
	rp->eir_len = cpu_to_le16(eir_len);

	hci_dev_unlock(hdev);

6524 6525
	hci_sock_set_flag(sk, HCI_MGMT_OOB_DATA_EVENTS);

6526
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
6527
				MGMT_STATUS_SUCCESS, rp, sizeof(*rp) + eir_len);
6528 6529 6530 6531 6532 6533
	if (err < 0)
		goto done;

	err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
				 rp, sizeof(*rp) + eir_len,
				 HCI_MGMT_OOB_DATA_EVENTS, sk);
6534

6535
done:
6536 6537 6538 6539 6540
	kfree(rp);

	return err;
}

6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555
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;
}

6556 6557 6558 6559 6560 6561
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;
	int err;
6562
	bool instance;
6563
	u32 supported_flags;
6564 6565 6566

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

6567 6568 6569 6570
	if (!lmp_le_capable(hdev))
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
				       MGMT_STATUS_REJECTED);

6571 6572 6573
	hci_dev_lock(hdev);

	rp_len = sizeof(*rp);
6574 6575 6576 6577 6578 6579 6580 6581

	/* Currently only one instance is supported, so just add 1 to the
	 * response length.
	 */
	instance = hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE);
	if (instance)
		rp_len++;

6582 6583 6584 6585 6586 6587
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
		hci_dev_unlock(hdev);
		return -ENOMEM;
	}

6588 6589 6590
	supported_flags = get_supported_adv_flags(hdev);

	rp->supported_flags = cpu_to_le32(supported_flags);
6591 6592
	rp->max_adv_data_len = HCI_MAX_AD_LENGTH;
	rp->max_scan_rsp_len = HCI_MAX_AD_LENGTH;
6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603
	rp->max_instances = 1;

	/* Currently only one instance is supported, so simply return the
	 * current instance number.
	 */
	if (instance) {
		rp->num_instances = 1;
		rp->instance[0] = 1;
	} else {
		rp->num_instances = 0;
	}
6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614

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

6615
static bool tlv_data_is_valid(struct hci_dev *hdev, u32 adv_flags, u8 *data,
6616
			      u8 len, bool is_adv_data)
6617
{
6618
	u8 max_len = HCI_MAX_AD_LENGTH;
6619
	int i, cur_len;
6620
	bool flags_managed = false;
6621
	bool tx_power_managed = false;
6622 6623
	u32 flags_params = MGMT_ADV_FLAG_DISCOV | MGMT_ADV_FLAG_LIMITED_DISCOV |
			   MGMT_ADV_FLAG_MANAGED_FLAGS;
6624

6625
	if (is_adv_data && (adv_flags & flags_params)) {
6626 6627 6628
		flags_managed = true;
		max_len -= 3;
	}
6629

6630 6631 6632 6633 6634
	if (is_adv_data && (adv_flags & MGMT_ADV_FLAG_TX_POWER)) {
		tx_power_managed = true;
		max_len -= 3;
	}

6635
	if (len > max_len)
6636 6637
		return false;

6638 6639 6640
	/* Make sure that the data is correctly formatted. */
	for (i = 0, cur_len = 0; i < len; i += (cur_len + 1)) {
		cur_len = data[i];
6641

6642 6643 6644
		if (flags_managed && data[i + 1] == EIR_FLAGS)
			return false;

6645 6646 6647
		if (tx_power_managed && data[i + 1] == EIR_TX_POWER)
			return false;

6648 6649 6650
		/* If the current field length would exceed the total data
		 * length, then it's invalid.
		 */
6651
		if (i + cur_len >= len)
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
			return false;
	}

	return true;
}

static void add_advertising_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
{
	struct mgmt_pending_cmd *cmd;
	struct mgmt_rp_add_advertising rp;

	BT_DBG("status %d", status);

	hci_dev_lock(hdev);

	cmd = pending_find(MGMT_OP_ADD_ADVERTISING, hdev);

	if (status) {
		hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
		memset(&hdev->adv_instance, 0, sizeof(hdev->adv_instance));
		advertising_removed(cmd ? cmd->sk : NULL, hdev, 1);
	}

	if (!cmd)
		goto unlock;

	rp.instance = 0x01;

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

6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705
static void adv_timeout_expired(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
					    adv_instance.timeout_exp.work);

	hdev->adv_instance.timeout = 0;

	hci_dev_lock(hdev);
	clear_adv_instance(hdev);
	hci_dev_unlock(hdev);
}

6706 6707 6708 6709 6710 6711
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;
6712
	u32 supported_flags;
6713
	u8 status;
6714
	u16 timeout;
6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726
	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);
6727
	timeout = __le16_to_cpu(cp->timeout);
6728

6729 6730 6731 6732 6733
	/* The current implementation only supports adding one instance and only
	 * a subset of the specified flags.
	 */
	supported_flags = get_supported_adv_flags(hdev);
	if (cp->instance != 0x01 || (flags & ~supported_flags))
6734 6735 6736 6737 6738
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);

	hci_dev_lock(hdev);

6739 6740 6741 6742 6743 6744
	if (timeout && !hdev_is_powered(hdev)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_REJECTED);
		goto unlock;
	}

6745
	if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
6746
	    pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
6747 6748 6749 6750 6751 6752
	    pending_find(MGMT_OP_SET_LE, hdev)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_BUSY);
		goto unlock;
	}

6753
	if (!tlv_data_is_valid(hdev, flags, cp->data, cp->adv_data_len, true) ||
6754
	    !tlv_data_is_valid(hdev, flags, cp->data + cp->adv_data_len,
6755
			       cp->scan_rsp_len, false)) {
6756 6757 6758 6759 6760
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_INVALID_PARAMS);
		goto unlock;
	}

6761 6762
	INIT_DELAYED_WORK(&hdev->adv_instance.timeout_exp, adv_timeout_expired);

6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773
	hdev->adv_instance.flags = flags;
	hdev->adv_instance.adv_data_len = cp->adv_data_len;
	hdev->adv_instance.scan_rsp_len = cp->scan_rsp_len;

	if (cp->adv_data_len)
		memcpy(hdev->adv_instance.adv_data, cp->data, cp->adv_data_len);

	if (cp->scan_rsp_len)
		memcpy(hdev->adv_instance.scan_rsp_data,
		       cp->data + cp->adv_data_len, cp->scan_rsp_len);

6774 6775 6776 6777 6778 6779 6780 6781 6782 6783
	if (hdev->adv_instance.timeout)
		cancel_delayed_work(&hdev->adv_instance.timeout_exp);

	hdev->adv_instance.timeout = timeout;

	if (timeout)
		queue_delayed_work(hdev->workqueue,
				   &hdev->adv_instance.timeout_exp,
				   msecs_to_jiffies(timeout * 1000));

6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810
	if (!hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING_INSTANCE))
		advertising_added(sk, hdev, 1);

	/* If the HCI_ADVERTISING flag is set or the device isn't powered then
	 * we have no HCI communication to make. Simply return.
	 */
	if (!hdev_is_powered(hdev) ||
	    hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
		rp.instance = 0x01;
		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);

	update_adv_data(&req);
6811
	update_scan_rsp_data(&req);
6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823
	enable_advertising(&req);

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

unlock:
	hci_dev_unlock(hdev);

	return err;
}

6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885
static void remove_advertising_complete(struct hci_dev *hdev, u8 status,
					u16 opcode)
{
	struct mgmt_pending_cmd *cmd;
	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;

	rp.instance = 1;

	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;
	int err;
	struct mgmt_pending_cmd *cmd;
	struct hci_request req;

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

	/* The current implementation only allows modifying instance no 1. A
	 * value of 0 indicates that all instances should be cleared.
	 */
	if (cp->instance > 1)
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);

	hci_dev_lock(hdev);

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

6886 6887 6888
	if (hdev->adv_instance.timeout)
		cancel_delayed_work(&hdev->adv_instance.timeout_exp);

6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926
	memset(&hdev->adv_instance, 0, sizeof(hdev->adv_instance));

	advertising_removed(sk, hdev, 1);

	hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);

	/* If the HCI_ADVERTISING flag is set or the device isn't powered then
	 * we have no HCI communication to make. Simply return.
	 */
	if (!hdev_is_powered(hdev) ||
	    hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
		rp.instance = 1;
		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;
	}

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

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

unlock:
	hci_dev_unlock(hdev);

	return err;
}

6927
static const struct hci_mgmt_handler mgmt_handlers[] = {
6928
	{ NULL }, /* 0x0000 (no command) */
6929
	{ read_version,            MGMT_READ_VERSION_SIZE,
6930 6931
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
6932
	{ read_commands,           MGMT_READ_COMMANDS_SIZE,
6933 6934
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
6935
	{ read_index_list,         MGMT_READ_INDEX_LIST_SIZE,
6936 6937 6938 6939
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
	{ read_controller_info,    MGMT_READ_INFO_SIZE,
						HCI_MGMT_UNTRUSTED },
6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952
	{ 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 },
6953 6954 6955 6956
	{ 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 },
6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968
	{ 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 },
6969 6970 6971
	{ read_local_oob_data,     MGMT_READ_LOCAL_OOB_DATA_SIZE },
	{ add_remote_oob_data,     MGMT_ADD_REMOTE_OOB_DATA_SIZE,
						HCI_MGMT_VAR_LEN },
6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985
	{ 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 },
6986 6987
	{ load_irks,               MGMT_LOAD_IRKS_SIZE,
						HCI_MGMT_VAR_LEN },
6988 6989 6990 6991
	{ 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 },
6992 6993 6994
	{ load_conn_param,         MGMT_LOAD_CONN_PARAM_SIZE,
						HCI_MGMT_VAR_LEN },
	{ read_unconf_index_list,  MGMT_READ_UNCONF_INDEX_LIST_SIZE,
6995 6996
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
6997
	{ read_config_info,        MGMT_READ_CONFIG_INFO_SIZE,
6998 6999
						HCI_MGMT_UNCONFIGURED |
						HCI_MGMT_UNTRUSTED },
7000 7001 7002 7003 7004 7005
	{ 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 },
7006
	{ read_local_oob_ext_data, MGMT_READ_LOCAL_OOB_EXT_DATA_SIZE },
7007
	{ read_ext_index_list,     MGMT_READ_EXT_INDEX_LIST_SIZE,
7008 7009
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
7010
	{ read_adv_features,       MGMT_READ_ADV_FEATURES_SIZE },
7011 7012
	{ add_advertising,	   MGMT_ADD_ADVERTISING_SIZE,
						HCI_MGMT_VAR_LEN },
7013
	{ remove_advertising,	   MGMT_REMOVE_ADVERTISING_SIZE },
7014 7015
};

7016
void mgmt_index_added(struct hci_dev *hdev)
7017
{
7018
	struct mgmt_ev_ext_index ev;
7019

7020 7021 7022
	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		return;

7023 7024 7025 7026 7027
	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);
7028
			ev.type = 0x01;
7029 7030 7031
		} else {
			mgmt_index_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0,
					 HCI_MGMT_INDEX_EVENTS);
7032
			ev.type = 0x00;
7033 7034
		}
		break;
7035 7036 7037 7038 7039
	case HCI_AMP:
		ev.type = 0x02;
		break;
	default:
		return;
7040
	}
7041 7042 7043 7044 7045

	ev.bus = hdev->bus;

	mgmt_index_event(MGMT_EV_EXT_INDEX_ADDED, hdev, &ev, sizeof(ev),
			 HCI_MGMT_EXT_INDEX_EVENTS);
7046 7047
}

7048
void mgmt_index_removed(struct hci_dev *hdev)
7049
{
7050
	struct mgmt_ev_ext_index ev;
7051
	u8 status = MGMT_STATUS_INVALID_INDEX;
7052

7053 7054 7055
	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		return;

7056 7057 7058
	switch (hdev->dev_type) {
	case HCI_BREDR:
		mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
7059

7060 7061 7062
		if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
			mgmt_index_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev,
					 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
7063
			ev.type = 0x01;
7064 7065 7066
		} else {
			mgmt_index_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0,
					 HCI_MGMT_INDEX_EVENTS);
7067
			ev.type = 0x00;
7068 7069
		}
		break;
7070 7071 7072 7073 7074
	case HCI_AMP:
		ev.type = 0x02;
		break;
	default:
		return;
7075
	}
7076 7077 7078 7079 7080

	ev.bus = hdev->bus;

	mgmt_index_event(MGMT_EV_EXT_INDEX_REMOVED, hdev, &ev, sizeof(ev),
			 HCI_MGMT_EXT_INDEX_EVENTS);
7081 7082
}

7083
/* This function requires the caller holds hdev->lock */
7084
static void restart_le_actions(struct hci_request *req)
7085
{
7086
	struct hci_dev *hdev = req->hdev;
7087 7088 7089
	struct hci_conn_params *p;

	list_for_each_entry(p, &hdev->le_conn_params, list) {
7090 7091 7092 7093 7094 7095
		/* Needed for AUTO_OFF case where might not "really"
		 * have been powered off.
		 */
		list_del_init(&p->action);

		switch (p->auto_connect) {
7096
		case HCI_AUTO_CONN_DIRECT:
7097 7098 7099 7100 7101 7102 7103 7104
		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;
7105
		}
7106
	}
7107

7108
	__hci_update_background_scan(req);
7109 7110
}

7111
static void powered_complete(struct hci_dev *hdev, u8 status, u16 opcode)
7112 7113 7114 7115 7116
{
	struct cmd_lookup match = { NULL, hdev };

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

7117 7118 7119 7120 7121 7122 7123 7124 7125
	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);
	}

7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137
	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);
}

7138
static int powered_update_hci(struct hci_dev *hdev)
7139
{
7140
	struct hci_request req;
7141
	u8 link_sec;
7142

7143 7144
	hci_req_init(&req, hdev);

7145
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED) &&
7146
	    !lmp_host_ssp_capable(hdev)) {
7147
		u8 mode = 0x01;
7148

7149 7150 7151 7152
		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;
7153

7154 7155 7156
			hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT,
				    sizeof(support), &support);
		}
7157 7158
	}

7159
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
7160
	    lmp_bredr_capable(hdev)) {
7161
		struct hci_cp_write_le_host_supported cp;
7162

7163 7164
		cp.le = 0x01;
		cp.simul = 0x00;
7165

7166 7167 7168 7169 7170
		/* 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))
7171 7172
			hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
				    sizeof(cp), &cp);
7173
	}
7174

7175
	if (lmp_le_capable(hdev)) {
7176 7177 7178 7179
		/* 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.
		 */
7180
		if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
7181
			update_adv_data(&req);
7182 7183
			update_scan_rsp_data(&req);
		}
7184

7185 7186
		if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
		    hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
7187
			enable_advertising(&req);
7188 7189

		restart_le_actions(&req);
7190 7191
	}

7192
	link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY);
7193
	if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
7194 7195
		hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
			    sizeof(link_sec), &link_sec);
7196

7197
	if (lmp_bredr_capable(hdev)) {
7198
		if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
7199 7200 7201
			write_fast_connectable(&req, true);
		else
			write_fast_connectable(&req, false);
7202
		__hci_update_page_scan(&req);
7203
		update_class(&req);
7204
		update_name(&req);
7205
		update_eir(&req);
7206
	}
7207

7208
	return hci_req_run(&req, powered_complete);
7209
}
7210

7211 7212 7213
int mgmt_powered(struct hci_dev *hdev, u8 powered)
{
	struct cmd_lookup match = { NULL, hdev };
7214
	u8 status, zero_cod[] = { 0, 0, 0 };
7215
	int err;
7216

7217
	if (!hci_dev_test_flag(hdev, HCI_MGMT))
7218 7219 7220
		return 0;

	if (powered) {
7221 7222
		if (powered_update_hci(hdev) == 0)
			return 0;
7223

7224 7225 7226
		mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
				     &match);
		goto new_settings;
7227 7228
	}

7229
	mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
7230 7231 7232 7233 7234 7235 7236 7237

	/* 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.
	 */
7238
	if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
7239 7240 7241 7242 7243
		status = MGMT_STATUS_INVALID_INDEX;
	else
		status = MGMT_STATUS_NOT_POWERED;

	mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
7244 7245

	if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
7246 7247
		mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
				   zero_cod, sizeof(zero_cod), NULL);
7248 7249

new_settings:
7250
	err = new_settings(hdev, match.sk);
7251 7252 7253 7254

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

7255
	return err;
7256
}
7257

7258
void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
7259
{
7260
	struct mgmt_pending_cmd *cmd;
7261 7262
	u8 status;

7263
	cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
7264
	if (!cmd)
7265
		return;
7266 7267 7268 7269 7270 7271

	if (err == -ERFKILL)
		status = MGMT_STATUS_RFKILLED;
	else
		status = MGMT_STATUS_FAILED;

7272
	mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
7273 7274 7275 7276

	mgmt_pending_remove(cmd);
}

7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287
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.
	 */
7288 7289
	hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
	hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
7290 7291

	hci_req_init(&req, hdev);
7292
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
7293 7294 7295 7296
		u8 scan = SCAN_PAGE;
		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
			    sizeof(scan), &scan);
	}
7297
	update_class(&req);
7298 7299 7300 7301 7302 7303 7304

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

7305 7306 7307 7308
	hci_req_run(&req, NULL);

	hdev->discov_timeout = 0;

7309 7310
	new_settings(hdev, NULL);

7311 7312 7313
	hci_dev_unlock(hdev);
}

7314 7315
void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
		       bool persistent)
7316
{
7317
	struct mgmt_ev_new_link_key ev;
7318

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

7321
	ev.store_hint = persistent;
7322
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
7323
	ev.key.addr.type = BDADDR_BREDR;
7324
	ev.key.type = key->type;
7325
	memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
7326
	ev.key.pin_len = key->pin_len;
7327

7328
	mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
7329
}
7330

7331 7332
static u8 mgmt_ltk_type(struct smp_ltk *ltk)
{
7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345
	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;
	}
7346 7347 7348 7349

	return MGMT_LTK_UNAUTHENTICATED;
}

7350
void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
7351 7352 7353 7354 7355
{
	struct mgmt_ev_new_long_term_key ev;

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

7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366
	/* Devices using resolvable or non-resolvable random addresses
	 * without providing an indentity resolving key don't require
	 * to store long term keys. Their addresses will change the
	 * next time around.
	 *
	 * Only when a remote device provides an identity address
	 * make sure the long term key is stored. If the remote
	 * identity is known, the long term keys are internally
	 * mapped to the identity address. So allow static random
	 * and public addresses here.
	 */
7367 7368 7369 7370
	if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
	    (key->bdaddr.b[5] & 0xc0) != 0xc0)
		ev.store_hint = 0x00;
	else
7371
		ev.store_hint = persistent;
7372

7373
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
7374
	ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
7375
	ev.key.type = mgmt_ltk_type(key);
7376 7377
	ev.key.enc_size = key->enc_size;
	ev.key.ediv = key->ediv;
7378
	ev.key.rand = key->rand;
7379

7380
	if (key->type == SMP_LTK)
7381 7382 7383 7384
		ev.key.master = 1;

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

7385
	mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
7386 7387
}

7388 7389 7390 7391 7392 7393
void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk)
{
	struct mgmt_ev_new_irk ev;

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

7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409
	/* For identity resolving keys from devices that are already
	 * using a public address or static random address, do not
	 * ask for storing this key. The identity resolving key really
	 * is only mandatory for devices using resovlable random
	 * addresses.
	 *
	 * Storing all identity resolving keys has the downside that
	 * they will be also loaded on next boot of they system. More
	 * identity resolving keys, means more time during scanning is
	 * needed to actually resolve these addresses.
	 */
	if (bacmp(&irk->rpa, BDADDR_ANY))
		ev.store_hint = 0x01;
	else
		ev.store_hint = 0x00;

7410 7411 7412 7413 7414 7415 7416 7417
	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);
}

7418 7419
void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
		   bool persistent)
7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437
{
	struct mgmt_ev_new_csrk ev;

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

	/* Devices using resolvable or non-resolvable random addresses
	 * without providing an indentity resolving key don't require
	 * to store signature resolving keys. Their addresses will change
	 * the next time around.
	 *
	 * Only when a remote device provides an identity address
	 * make sure the signature resolving key is stored. So allow
	 * static random and public addresses here.
	 */
	if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
	    (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
		ev.store_hint = 0x00;
	else
7438
		ev.store_hint = persistent;
7439 7440 7441

	bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
	ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
7442
	ev.key.type = csrk->type;
7443 7444 7445 7446 7447
	memcpy(ev.key.val, csrk->val, sizeof(csrk->val));

	mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
}

7448
void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
7449 7450
			 u8 bdaddr_type, u8 store_hint, u16 min_interval,
			 u16 max_interval, u16 latency, u16 timeout)
7451 7452 7453
{
	struct mgmt_ev_new_conn_param ev;

7454 7455 7456
	if (!hci_is_identity_address(bdaddr, bdaddr_type))
		return;

7457 7458 7459
	memset(&ev, 0, sizeof(ev));
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
7460
	ev.store_hint = store_hint;
7461 7462 7463 7464 7465 7466 7467 7468
	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);
}

7469 7470
void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
			   u32 flags, u8 *name, u8 name_len)
7471
{
7472 7473 7474
	char buf[512];
	struct mgmt_ev_device_connected *ev = (void *) buf;
	u16 eir_len = 0;
7475

7476 7477
	bacpy(&ev->addr.bdaddr, &conn->dst);
	ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
7478

7479
	ev->flags = __cpu_to_le32(flags);
7480

7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492
	/* 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);
7493

7494
		if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
7495 7496 7497 7498
			eir_len = eir_append_data(ev->eir, eir_len,
						  EIR_CLASS_OF_DEV,
						  conn->dev_class, 3);
	}
7499

7500
	ev->eir_len = cpu_to_le16(eir_len);
7501

7502 7503
	mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
		    sizeof(*ev) + eir_len, NULL);
7504 7505
}

7506
static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
7507 7508 7509
{
	struct sock **sk = data;

7510
	cmd->cmd_complete(cmd, 0);
7511 7512 7513 7514

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

7515
	mgmt_pending_remove(cmd);
7516 7517
}

7518
static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
7519
{
7520
	struct hci_dev *hdev = data;
7521
	struct mgmt_cp_unpair_device *cp = cmd->param;
7522

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

7525
	cmd->cmd_complete(cmd, 0);
7526 7527 7528
	mgmt_pending_remove(cmd);
}

7529 7530
bool mgmt_powering_down(struct hci_dev *hdev)
{
7531
	struct mgmt_pending_cmd *cmd;
7532 7533
	struct mgmt_mode *cp;

7534
	cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
7535 7536 7537 7538 7539 7540 7541 7542 7543 7544
	if (!cmd)
		return false;

	cp = cmd->param;
	if (!cp->val)
		return true;

	return false;
}

7545
void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
7546 7547
			      u8 link_type, u8 addr_type, u8 reason,
			      bool mgmt_connected)
7548
{
7549
	struct mgmt_ev_device_disconnected ev;
7550 7551
	struct sock *sk = NULL;

7552 7553 7554 7555 7556 7557
	/* 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);
7558 7559
	}

7560 7561 7562
	if (!mgmt_connected)
		return;

7563 7564 7565
	if (link_type != ACL_LINK && link_type != LE_LINK)
		return;

7566
	mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
7567

7568 7569 7570
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
	ev.reason = reason;
7571

7572
	mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
7573 7574

	if (sk)
7575
		sock_put(sk);
7576

7577
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
7578
			     hdev);
7579 7580
}

7581 7582
void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
			    u8 link_type, u8 addr_type, u8 status)
7583
{
7584 7585
	u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
	struct mgmt_cp_disconnect *cp;
7586
	struct mgmt_pending_cmd *cmd;
7587

7588 7589 7590
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
			     hdev);

7591
	cmd = pending_find(MGMT_OP_DISCONNECT, hdev);
7592
	if (!cmd)
7593
		return;
7594

7595 7596 7597 7598 7599 7600 7601 7602
	cp = cmd->param;

	if (bacmp(bdaddr, &cp->addr.bdaddr))
		return;

	if (cp->addr.type != bdaddr_type)
		return;

7603
	cmd->cmd_complete(cmd, mgmt_status(status));
7604
	mgmt_pending_remove(cmd);
7605
}
7606

7607 7608
void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
			 u8 addr_type, u8 status)
7609 7610
{
	struct mgmt_ev_connect_failed ev;
7611

7612 7613 7614 7615 7616 7617
	/* 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);
7618
	}
7619

7620
	bacpy(&ev.addr.bdaddr, bdaddr);
7621
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
7622
	ev.status = mgmt_status(status);
7623

7624
	mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
7625
}
7626

7627
void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
7628 7629 7630
{
	struct mgmt_ev_pin_code_request ev;

7631
	bacpy(&ev.addr.bdaddr, bdaddr);
7632
	ev.addr.type = BDADDR_BREDR;
7633
	ev.secure = secure;
7634

7635
	mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
7636 7637
}

7638 7639
void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
				  u8 status)
7640
{
7641
	struct mgmt_pending_cmd *cmd;
7642

7643
	cmd = pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
7644
	if (!cmd)
7645
		return;
7646

7647
	cmd->cmd_complete(cmd, mgmt_status(status));
7648
	mgmt_pending_remove(cmd);
7649 7650
}

7651 7652
void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
				      u8 status)
7653
{
7654
	struct mgmt_pending_cmd *cmd;
7655

7656
	cmd = pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
7657
	if (!cmd)
7658
		return;
7659

7660
	cmd->cmd_complete(cmd, mgmt_status(status));
7661
	mgmt_pending_remove(cmd);
7662
}
7663

7664
int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
7665
			      u8 link_type, u8 addr_type, u32 value,
7666
			      u8 confirm_hint)
7667 7668 7669
{
	struct mgmt_ev_user_confirm_request ev;

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

7672
	bacpy(&ev.addr.bdaddr, bdaddr);
7673
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
7674
	ev.confirm_hint = confirm_hint;
7675
	ev.value = cpu_to_le32(value);
7676

7677
	return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
7678
			  NULL);
7679 7680
}

7681
int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
7682
			      u8 link_type, u8 addr_type)
7683 7684 7685 7686 7687
{
	struct mgmt_ev_user_passkey_request ev;

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

7688
	bacpy(&ev.addr.bdaddr, bdaddr);
7689
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
7690 7691

	return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
7692
			  NULL);
7693 7694
}

7695
static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7696 7697
				      u8 link_type, u8 addr_type, u8 status,
				      u8 opcode)
7698
{
7699
	struct mgmt_pending_cmd *cmd;
7700

7701
	cmd = pending_find(opcode, hdev);
7702 7703 7704
	if (!cmd)
		return -ENOENT;

7705
	cmd->cmd_complete(cmd, mgmt_status(status));
7706
	mgmt_pending_remove(cmd);
7707

7708
	return 0;
7709 7710
}

7711
int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7712
				     u8 link_type, u8 addr_type, u8 status)
7713
{
7714
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7715
					  status, MGMT_OP_USER_CONFIRM_REPLY);
7716 7717
}

7718
int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7719
					 u8 link_type, u8 addr_type, u8 status)
7720
{
7721
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7722 7723
					  status,
					  MGMT_OP_USER_CONFIRM_NEG_REPLY);
7724
}
7725

7726
int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7727
				     u8 link_type, u8 addr_type, u8 status)
7728
{
7729
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7730
					  status, MGMT_OP_USER_PASSKEY_REPLY);
7731 7732
}

7733
int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7734
					 u8 link_type, u8 addr_type, u8 status)
7735
{
7736
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7737 7738
					  status,
					  MGMT_OP_USER_PASSKEY_NEG_REPLY);
7739 7740
}

7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756
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);
}

7757
void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
7758 7759
{
	struct mgmt_ev_auth_failed ev;
7760
	struct mgmt_pending_cmd *cmd;
7761
	u8 status = mgmt_status(hci_status);
7762

7763 7764 7765
	bacpy(&ev.addr.bdaddr, &conn->dst);
	ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
	ev.status = status;
7766

7767 7768 7769 7770 7771
	cmd = find_pairing(conn);

	mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
		    cmd ? cmd->sk : NULL);

7772 7773 7774 7775
	if (cmd) {
		cmd->cmd_complete(cmd, status);
		mgmt_pending_remove(cmd);
	}
7776
}
7777

7778
void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
7779 7780
{
	struct cmd_lookup match = { NULL, hdev };
7781
	bool changed;
7782 7783 7784 7785

	if (status) {
		u8 mgmt_err = mgmt_status(status);
		mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
7786
				     cmd_status_rsp, &mgmt_err);
7787
		return;
7788 7789
	}

7790
	if (test_bit(HCI_AUTH, &hdev->flags))
7791
		changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
7792
	else
7793
		changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
7794

7795
	mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
7796
			     &match);
7797

7798
	if (changed)
7799
		new_settings(hdev, match.sk);
7800 7801 7802 7803 7804

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

7805
static void clear_eir(struct hci_request *req)
7806
{
7807
	struct hci_dev *hdev = req->hdev;
7808 7809
	struct hci_cp_write_eir cp;

7810
	if (!lmp_ext_inq_capable(hdev))
7811
		return;
7812

7813 7814
	memset(hdev->eir, 0, sizeof(hdev->eir));

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

7817
	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
7818 7819
}

7820
void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
7821 7822
{
	struct cmd_lookup match = { NULL, hdev };
7823
	struct hci_request req;
7824
	bool changed = false;
7825 7826 7827

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

7829 7830
		if (enable && hci_dev_test_and_clear_flag(hdev,
							  HCI_SSP_ENABLED)) {
7831
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
7832
			new_settings(hdev, NULL);
7833
		}
7834

7835 7836
		mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
				     &mgmt_err);
7837
		return;
7838 7839 7840
	}

	if (enable) {
7841
		changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
7842
	} else {
7843
		changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
7844
		if (!changed)
7845 7846
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_HS_ENABLED);
7847
		else
7848
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
7849 7850 7851 7852
	}

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

7853
	if (changed)
7854
		new_settings(hdev, match.sk);
7855

7856
	if (match.sk)
7857 7858
		sock_put(match.sk);

7859 7860
	hci_req_init(&req, hdev);

7861 7862
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
		if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
7863 7864
			hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
				    sizeof(enable), &enable);
7865
		update_eir(&req);
7866
	} else {
7867
		clear_eir(&req);
7868
	}
7869 7870

	hci_req_run(&req, NULL);
7871 7872
}

7873
static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
7874 7875 7876 7877 7878 7879 7880 7881 7882
{
	struct cmd_lookup *match = data;

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

7883 7884
void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
				    u8 status)
7885
{
7886
	struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
7887

7888 7889 7890
	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);
7891 7892

	if (!status)
7893 7894
		mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
				   dev_class, 3, NULL);
7895 7896 7897

	if (match.sk)
		sock_put(match.sk);
7898 7899
}

7900
void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
7901 7902
{
	struct mgmt_cp_set_local_name ev;
7903
	struct mgmt_pending_cmd *cmd;
7904

7905
	if (status)
7906
		return;
7907 7908 7909

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

7912
	cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
7913 7914
	if (!cmd) {
		memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
7915

7916 7917 7918
		/* If this is a HCI command related to powering on the
		 * HCI dev don't send any mgmt signals.
		 */
7919
		if (pending_find(MGMT_OP_SET_POWERED, hdev))
7920
			return;
7921
	}
7922

7923 7924
	mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
			   cmd ? cmd->sk : NULL);
7925
}
7926

7927
void mgmt_read_local_oob_data_complete(struct hci_dev *hdev, u8 *hash192,
7928 7929
				       u8 *rand192, u8 *hash256, u8 *rand256,
				       u8 status)
7930
{
7931
	struct mgmt_pending_cmd *cmd;
7932

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

7935
	cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
7936
	if (!cmd)
7937
		return;
7938 7939

	if (status) {
7940 7941
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
			        mgmt_status(status));
7942
	} else {
7943 7944
		struct mgmt_rp_read_local_oob_data rp;
		size_t rp_size = sizeof(rp);
7945

7946 7947
		memcpy(rp.hash192, hash192, sizeof(rp.hash192));
		memcpy(rp.rand192, rand192, sizeof(rp.rand192));
7948

7949
		if (bredr_sc_enabled(hdev) && hash256 && rand256) {
7950
			memcpy(rp.hash256, hash256, sizeof(rp.hash256));
7951
			memcpy(rp.rand256, rand256, sizeof(rp.rand256));
7952
		} else {
7953
			rp_size -= sizeof(rp.hash256) + sizeof(rp.rand256);
7954
		}
7955

7956 7957 7958
		mgmt_cmd_complete(cmd->sk, hdev->id,
				  MGMT_OP_READ_LOCAL_OOB_DATA, 0,
				  &rp, rp_size);
7959 7960 7961 7962
	}

	mgmt_pending_remove(cmd);
}
7963

7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975
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;
}

7976 7977
static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
{
7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994
	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) {
7995
				memcpy(uuid, bluetooth_base_uuid, 16);
7996 7997 7998 7999 8000 8001 8002 8003 8004
				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) {
8005
				memcpy(uuid, bluetooth_base_uuid, 16);
8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027
				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;
	}

8028 8029 8030
	return false;
}

8031 8032 8033
static void restart_le_scan(struct hci_dev *hdev)
{
	/* If controller is not scanning we are done. */
8034
	if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045
		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);
}

8046 8047
static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
			    u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
8048
{
8049 8050 8051 8052 8053
	/* 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.
8054 8055 8056
	 *
	 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
	 * the results are also dropped.
8057 8058
	 */
	if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
8059 8060 8061
	    (rssi == HCI_RSSI_INVALID ||
	    (rssi < hdev->discovery.rssi &&
	     !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
8062
		return  false;
8063

8064 8065 8066
	if (hdev->discovery.uuid_count != 0) {
		/* If a list of UUIDs is provided in filter, results with no
		 * matching UUID should be dropped.
8067
		 */
8068 8069 8070 8071 8072 8073
		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;
8074
	}
8075

8076 8077
	/* If duplicate filtering does not report RSSI changes, then restart
	 * scanning to ensure updated result with updated RSSI values.
8078
	 */
8079 8080 8081 8082 8083 8084 8085 8086
	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;
	}
8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109

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

8110
	if (hdev->discovery.result_filtering) {
8111 8112 8113 8114 8115 8116 8117 8118 8119 8120
		/* 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))
8121 8122
		return;

8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153
	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);

8154 8155
	ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
	ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
8156

8157
	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
8158
}
8159

8160 8161
void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
		      u8 addr_type, s8 rssi, u8 *name, u8 name_len)
8162
{
8163 8164 8165
	struct mgmt_ev_device_found *ev;
	char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
	u16 eir_len;
8166

8167
	ev = (struct mgmt_ev_device_found *) buf;
8168

8169 8170 8171
	memset(buf, 0, sizeof(buf));

	bacpy(&ev->addr.bdaddr, bdaddr);
8172
	ev->addr.type = link_to_bdaddr(link_type, addr_type);
8173 8174 8175
	ev->rssi = rssi;

	eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
8176
				  name_len);
8177

8178
	ev->eir_len = cpu_to_le16(eir_len);
8179

8180
	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
8181
}
8182

8183
void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
8184
{
8185
	struct mgmt_ev_discovering ev;
8186

8187 8188
	BT_DBG("%s discovering %u", hdev->name, discovering);

8189 8190 8191 8192
	memset(&ev, 0, sizeof(ev));
	ev.type = hdev->discovery.type;
	ev.discovering = discovering;

8193
	mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
8194
}
8195

8196
static void adv_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
8197 8198 8199 8200 8201 8202 8203 8204
{
	BT_DBG("%s status %u", hdev->name, status);
}

void mgmt_reenable_advertising(struct hci_dev *hdev)
{
	struct hci_request req;

8205 8206
	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
	    !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
8207 8208 8209 8210
		return;

	hci_req_init(&req, hdev);
	enable_advertising(&req);
8211
	hci_req_run(&req, adv_enable_complete);
8212
}
8213 8214 8215 8216 8217

static struct hci_mgmt_chan chan = {
	.channel	= HCI_CHANNEL_CONTROL,
	.handler_count	= ARRAY_SIZE(mgmt_handlers),
	.handlers	= mgmt_handlers,
8218
	.hdev_init	= mgmt_init_hdev,
8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229
};

int mgmt_init(void)
{
	return hci_mgmt_chan_register(&chan);
}

void mgmt_exit(void)
{
	hci_mgmt_chan_unregister(&chan);
}