mgmt.c 242.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
#include "mgmt_config.h"
40
#include "msft.h"
41
#include "eir.h"
42

43
#define MGMT_VERSION	1
44
#define MGMT_REVISION	21
45

46 47 48 49 50 51 52
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,
53
	MGMT_OP_SET_BONDABLE,
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 81 82 83
	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,
84
	MGMT_OP_SET_DEVICE_ID,
85
	MGMT_OP_SET_ADVERTISING,
86
	MGMT_OP_SET_BREDR,
87
	MGMT_OP_SET_STATIC_ADDRESS,
88
	MGMT_OP_SET_SCAN_PARAMS,
89
	MGMT_OP_SET_SECURE_CONN,
90
	MGMT_OP_SET_DEBUG_KEYS,
91
	MGMT_OP_SET_PRIVACY,
92
	MGMT_OP_LOAD_IRKS,
93
	MGMT_OP_GET_CONN_INFO,
94
	MGMT_OP_GET_CLOCK_INFO,
95 96
	MGMT_OP_ADD_DEVICE,
	MGMT_OP_REMOVE_DEVICE,
97
	MGMT_OP_LOAD_CONN_PARAM,
98
	MGMT_OP_READ_UNCONF_INDEX_LIST,
99
	MGMT_OP_READ_CONFIG_INFO,
100
	MGMT_OP_SET_EXTERNAL_CONFIG,
101
	MGMT_OP_SET_PUBLIC_ADDRESS,
102
	MGMT_OP_START_SERVICE_DISCOVERY,
103
	MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
104
	MGMT_OP_READ_EXT_INDEX_LIST,
105
	MGMT_OP_READ_ADV_FEATURES,
106
	MGMT_OP_ADD_ADVERTISING,
107
	MGMT_OP_REMOVE_ADVERTISING,
108
	MGMT_OP_GET_ADV_SIZE_INFO,
109
	MGMT_OP_START_LIMITED_DISCOVERY,
110
	MGMT_OP_READ_EXT_INFO,
111
	MGMT_OP_SET_APPEARANCE,
112 113
	MGMT_OP_GET_PHY_CONFIGURATION,
	MGMT_OP_SET_PHY_CONFIGURATION,
114
	MGMT_OP_SET_BLOCKED_KEYS,
115
	MGMT_OP_SET_WIDEBAND_SPEECH,
116
	MGMT_OP_READ_CONTROLLER_CAP,
117 118
	MGMT_OP_READ_EXP_FEATURES_INFO,
	MGMT_OP_SET_EXP_FEATURE,
119 120
	MGMT_OP_READ_DEF_SYSTEM_CONFIG,
	MGMT_OP_SET_DEF_SYSTEM_CONFIG,
121 122
	MGMT_OP_READ_DEF_RUNTIME_CONFIG,
	MGMT_OP_SET_DEF_RUNTIME_CONFIG,
123 124
	MGMT_OP_GET_DEVICE_FLAGS,
	MGMT_OP_SET_DEVICE_FLAGS,
125
	MGMT_OP_READ_ADV_MONITOR_FEATURES,
126
	MGMT_OP_ADD_ADV_PATTERNS_MONITOR,
127
	MGMT_OP_REMOVE_ADV_MONITOR,
128 129
	MGMT_OP_ADD_EXT_ADV_PARAMS,
	MGMT_OP_ADD_EXT_ADV_DATA,
130
	MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI,
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
};

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,
154
	MGMT_EV_PASSKEY_NOTIFY,
155
	MGMT_EV_NEW_IRK,
156
	MGMT_EV_NEW_CSRK,
157 158
	MGMT_EV_DEVICE_ADDED,
	MGMT_EV_DEVICE_REMOVED,
159
	MGMT_EV_NEW_CONN_PARAM,
160
	MGMT_EV_UNCONF_INDEX_ADDED,
161
	MGMT_EV_UNCONF_INDEX_REMOVED,
162
	MGMT_EV_NEW_CONFIG_OPTIONS,
163 164
	MGMT_EV_EXT_INDEX_ADDED,
	MGMT_EV_EXT_INDEX_REMOVED,
165
	MGMT_EV_LOCAL_OOB_DATA_UPDATED,
166 167
	MGMT_EV_ADVERTISING_ADDED,
	MGMT_EV_ADVERTISING_REMOVED,
168
	MGMT_EV_EXT_INFO_CHANGED,
169
	MGMT_EV_PHY_CONFIGURATION_CHANGED,
170
	MGMT_EV_EXP_FEATURE_CHANGED,
171
	MGMT_EV_DEVICE_FLAGS_CHANGED,
172 173
	MGMT_EV_ADV_MONITOR_ADDED,
	MGMT_EV_ADV_MONITOR_REMOVED,
174 175
	MGMT_EV_CONTROLLER_SUSPEND,
	MGMT_EV_CONTROLLER_RESUME,
176 177
};

178 179 180 181 182 183
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,
184
	MGMT_OP_READ_EXT_INFO,
185
	MGMT_OP_READ_CONTROLLER_CAP,
186
	MGMT_OP_READ_EXP_FEATURES_INFO,
187
	MGMT_OP_READ_DEF_SYSTEM_CONFIG,
188
	MGMT_OP_READ_DEF_RUNTIME_CONFIG,
189 190 191 192 193 194 195 196 197 198 199 200 201
};

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,
202
	MGMT_EV_EXT_INFO_CHANGED,
203
	MGMT_EV_EXP_FEATURE_CHANGED,
204 205
};

206
#define CACHE_TIMEOUT	msecs_to_jiffies(2 * 1000)
207

208 209 210
#define ZERO_KEY "\x00\x00\x00\x00\x00\x00\x00\x00" \
		 "\x00\x00\x00\x00\x00\x00\x00\x00"

211
/* HCI to MGMT error code conversion table */
212
static const u8 mgmt_status_table[] = {
213 214 215 216 217 218
	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 */
219
	MGMT_STATUS_AUTH_FAILED,	/* PIN or Key Missing */
220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255
	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 */
256
	MGMT_STATUS_FAILED,		/* Reserved for future use */
257 258 259 260 261
	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 */
262
	MGMT_STATUS_FAILED,		/* Reserved for future use */
263
	MGMT_STATUS_BUSY,		/* Role Switch Pending */
264
	MGMT_STATUS_FAILED,		/* Reserved for future use */
265 266 267 268 269 270 271 272 273 274 275 276 277 278
	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 */
};

279
static u8 mgmt_errno_status(int err)
280
{
281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
	switch (err) {
	case 0:
		return MGMT_STATUS_SUCCESS;
	case -EPERM:
		return MGMT_STATUS_REJECTED;
	case -EINVAL:
		return MGMT_STATUS_INVALID_PARAMS;
	case -EOPNOTSUPP:
		return MGMT_STATUS_NOT_SUPPORTED;
	case -EBUSY:
		return MGMT_STATUS_BUSY;
	case -ETIMEDOUT:
		return MGMT_STATUS_AUTH_FAILED;
	case -ENOMEM:
		return MGMT_STATUS_NO_RESOURCES;
	case -EISCONN:
		return MGMT_STATUS_ALREADY_CONNECTED;
	case -ENOTCONN:
		return MGMT_STATUS_DISCONNECTED;
	}

	return MGMT_STATUS_FAILED;
}

static u8 mgmt_status(int err)
{
	if (err < 0)
		return mgmt_errno_status(err);

	if (err < ARRAY_SIZE(mgmt_status_table))
		return mgmt_status_table[err];
312 313 314 315

	return MGMT_STATUS_FAILED;
}

316 317
static int mgmt_index_event(u16 event, struct hci_dev *hdev, void *data,
			    u16 len, int flag)
318
{
319 320
	return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
			       flag, NULL);
321 322
}

323 324 325 326 327 328 329
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);
}

330 331 332 333
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,
334
			       HCI_SOCK_TRUSTED, skip_sk);
335 336
}

337 338 339 340 341 342 343 344
static u8 le_addr_type(u8 mgmt_addr_type)
{
	if (mgmt_addr_type == BDADDR_LE_PUBLIC)
		return ADDR_LE_DEV_PUBLIC;
	else
		return ADDR_LE_DEV_RANDOM;
}

345 346 347 348 349 350 351 352
void mgmt_fill_version_info(void *ver)
{
	struct mgmt_rp_read_version *rp = ver;

	rp->version = MGMT_VERSION;
	rp->revision = cpu_to_le16(MGMT_REVISION);
}

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

358
	bt_dev_dbg(hdev, "sock %p", sk);
359

360
	mgmt_fill_version_info(&rp);
361

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

366 367
static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 data_len)
368 369
{
	struct mgmt_rp_read_commands *rp;
370
	u16 num_commands, num_events;
371 372 373
	size_t rp_size;
	int i, err;

374
	bt_dev_dbg(hdev, "sock %p", sk);
375

376 377 378 379 380 381 382 383
	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);
	}

384 385 386 387 388 389
	rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));

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

390 391
	rp->num_commands = cpu_to_le16(num_commands);
	rp->num_events = cpu_to_le16(num_events);
392

393 394 395 396 397
	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);
398

399 400 401 402 403 404 405 406 407 408 409
		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);
	}
410

411 412
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0,
				rp, rp_size);
413 414 415 416 417
	kfree(rp);

	return err;
}

418 419
static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
420 421
{
	struct mgmt_rp_read_index_list *rp;
422
	struct hci_dev *d;
423
	size_t rp_len;
424
	u16 count;
425
	int err;
426

427
	bt_dev_dbg(hdev, "sock %p", sk);
428 429 430 431

	read_lock(&hci_dev_list_lock);

	count = 0;
432
	list_for_each_entry(d, &hci_dev_list, list) {
433
		if (d->dev_type == HCI_PRIMARY &&
434
		    !hci_dev_test_flag(d, HCI_UNCONFIGURED))
435
			count++;
436 437
	}

438 439 440
	rp_len = sizeof(*rp) + (2 * count);
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
441
		read_unlock(&hci_dev_list_lock);
442
		return -ENOMEM;
443
	}
444

445
	count = 0;
446
	list_for_each_entry(d, &hci_dev_list, list) {
447 448 449
		if (hci_dev_test_flag(d, HCI_SETUP) ||
		    hci_dev_test_flag(d, HCI_CONFIG) ||
		    hci_dev_test_flag(d, HCI_USER_CHANNEL))
450 451
			continue;

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

458
		if (d->dev_type == HCI_PRIMARY &&
459
		    !hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
460
			rp->index[count++] = cpu_to_le16(d->id);
461
			bt_dev_dbg(hdev, "Added hci%u", d->id);
462
		}
463 464
	}

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

468 469
	read_unlock(&hci_dev_list_lock);

470 471
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST,
				0, rp, rp_len);
472

473 474 475
	kfree(rp);

	return err;
476 477
}

478 479 480 481 482 483 484 485 486
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;

487
	bt_dev_dbg(hdev, "sock %p", sk);
488 489 490 491 492

	read_lock(&hci_dev_list_lock);

	count = 0;
	list_for_each_entry(d, &hci_dev_list, list) {
493
		if (d->dev_type == HCI_PRIMARY &&
494
		    hci_dev_test_flag(d, HCI_UNCONFIGURED))
495 496 497 498 499 500 501 502 503 504 505 506
			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) {
507 508 509
		if (hci_dev_test_flag(d, HCI_SETUP) ||
		    hci_dev_test_flag(d, HCI_CONFIG) ||
		    hci_dev_test_flag(d, HCI_USER_CHANNEL))
510 511 512 513 514 515 516 517
			continue;

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

518
		if (d->dev_type == HCI_PRIMARY &&
519
		    hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
520
			rp->index[count++] = cpu_to_le16(d->id);
521
			bt_dev_dbg(hdev, "Added hci%u", d->id);
522 523 524 525 526 527 528 529
		}
	}

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

	read_unlock(&hci_dev_list_lock);

530 531
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
				MGMT_OP_READ_UNCONF_INDEX_LIST, 0, rp, rp_len);
532 533 534 535 536 537

	kfree(rp);

	return err;
}

538 539 540 541 542 543 544 545
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;
	u16 count;
	int err;

546
	bt_dev_dbg(hdev, "sock %p", sk);
547 548 549 550 551

	read_lock(&hci_dev_list_lock);

	count = 0;
	list_for_each_entry(d, &hci_dev_list, list) {
552
		if (d->dev_type == HCI_PRIMARY || d->dev_type == HCI_AMP)
553 554 555
			count++;
	}

556
	rp = kmalloc(struct_size(rp, entry, count), GFP_ATOMIC);
557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574
	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;

575
		if (d->dev_type == HCI_PRIMARY) {
576 577 578 579 580 581 582 583 584 585 586 587
			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);
588
		bt_dev_dbg(hdev, "Added hci%u", d->id);
589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
	}

	rp->num_controllers = cpu_to_le16(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,
604 605
				MGMT_OP_READ_EXT_INDEX_LIST, 0, rp,
				struct_size(rp, entry, count));
606 607 608 609 610 611

	kfree(rp);

	return err;
}

612 613 614
static bool is_configured(struct hci_dev *hdev)
{
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
615
	    !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
616 617
		return false;

618 619
	if ((test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) ||
	     test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks)) &&
620 621 622 623 624 625
	    !bacmp(&hdev->public_addr, BDADDR_ANY))
		return false;

	return true;
}

626 627 628 629
static __le32 get_missing_options(struct hci_dev *hdev)
{
	u32 options = 0;

630
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
631
	    !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
632 633
		options |= MGMT_OPTION_EXTERNAL_CONFIG;

634 635
	if ((test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) ||
	     test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks)) &&
636 637 638 639 640 641
	    !bacmp(&hdev->public_addr, BDADDR_ANY))
		options |= MGMT_OPTION_PUBLIC_ADDRESS;

	return cpu_to_le32(options);
}

642 643 644 645
static int new_options(struct hci_dev *hdev, struct sock *skip)
{
	__le32 options = get_missing_options(hdev);

646 647
	return mgmt_limited_event(MGMT_EV_NEW_CONFIG_OPTIONS, hdev, &options,
				  sizeof(options), HCI_MGMT_OPTION_EVENTS, skip);
648 649
}

650 651 652 653
static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
{
	__le32 options = get_missing_options(hdev);

654 655
	return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &options,
				 sizeof(options));
656 657
}

658 659 660 661
static int read_config_info(struct sock *sk, struct hci_dev *hdev,
			    void *data, u16 data_len)
{
	struct mgmt_rp_read_config_info rp;
662
	u32 options = 0;
663

664
	bt_dev_dbg(hdev, "sock %p", sk);
665 666 667 668 669

	hci_dev_lock(hdev);

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

671 672 673
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
		options |= MGMT_OPTION_EXTERNAL_CONFIG;

674
	if (hdev->set_bdaddr)
675 676 677 678
		options |= MGMT_OPTION_PUBLIC_ADDRESS;

	rp.supported_options = cpu_to_le32(options);
	rp.missing_options = get_missing_options(hdev);
679 680 681

	hci_dev_unlock(hdev);

682 683
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0,
				 &rp, sizeof(rp));
684 685
}

686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 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 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 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806
static u32 get_supported_phys(struct hci_dev *hdev)
{
	u32 supported_phys = 0;

	if (lmp_bredr_capable(hdev)) {
		supported_phys |= MGMT_PHY_BR_1M_1SLOT;

		if (hdev->features[0][0] & LMP_3SLOT)
			supported_phys |= MGMT_PHY_BR_1M_3SLOT;

		if (hdev->features[0][0] & LMP_5SLOT)
			supported_phys |= MGMT_PHY_BR_1M_5SLOT;

		if (lmp_edr_2m_capable(hdev)) {
			supported_phys |= MGMT_PHY_EDR_2M_1SLOT;

			if (lmp_edr_3slot_capable(hdev))
				supported_phys |= MGMT_PHY_EDR_2M_3SLOT;

			if (lmp_edr_5slot_capable(hdev))
				supported_phys |= MGMT_PHY_EDR_2M_5SLOT;

			if (lmp_edr_3m_capable(hdev)) {
				supported_phys |= MGMT_PHY_EDR_3M_1SLOT;

				if (lmp_edr_3slot_capable(hdev))
					supported_phys |= MGMT_PHY_EDR_3M_3SLOT;

				if (lmp_edr_5slot_capable(hdev))
					supported_phys |= MGMT_PHY_EDR_3M_5SLOT;
			}
		}
	}

	if (lmp_le_capable(hdev)) {
		supported_phys |= MGMT_PHY_LE_1M_TX;
		supported_phys |= MGMT_PHY_LE_1M_RX;

		if (hdev->le_features[1] & HCI_LE_PHY_2M) {
			supported_phys |= MGMT_PHY_LE_2M_TX;
			supported_phys |= MGMT_PHY_LE_2M_RX;
		}

		if (hdev->le_features[1] & HCI_LE_PHY_CODED) {
			supported_phys |= MGMT_PHY_LE_CODED_TX;
			supported_phys |= MGMT_PHY_LE_CODED_RX;
		}
	}

	return supported_phys;
}

static u32 get_selected_phys(struct hci_dev *hdev)
{
	u32 selected_phys = 0;

	if (lmp_bredr_capable(hdev)) {
		selected_phys |= MGMT_PHY_BR_1M_1SLOT;

		if (hdev->pkt_type & (HCI_DM3 | HCI_DH3))
			selected_phys |= MGMT_PHY_BR_1M_3SLOT;

		if (hdev->pkt_type & (HCI_DM5 | HCI_DH5))
			selected_phys |= MGMT_PHY_BR_1M_5SLOT;

		if (lmp_edr_2m_capable(hdev)) {
			if (!(hdev->pkt_type & HCI_2DH1))
				selected_phys |= MGMT_PHY_EDR_2M_1SLOT;

			if (lmp_edr_3slot_capable(hdev) &&
			    !(hdev->pkt_type & HCI_2DH3))
				selected_phys |= MGMT_PHY_EDR_2M_3SLOT;

			if (lmp_edr_5slot_capable(hdev) &&
			    !(hdev->pkt_type & HCI_2DH5))
				selected_phys |= MGMT_PHY_EDR_2M_5SLOT;

			if (lmp_edr_3m_capable(hdev)) {
				if (!(hdev->pkt_type & HCI_3DH1))
					selected_phys |= MGMT_PHY_EDR_3M_1SLOT;

				if (lmp_edr_3slot_capable(hdev) &&
				    !(hdev->pkt_type & HCI_3DH3))
					selected_phys |= MGMT_PHY_EDR_3M_3SLOT;

				if (lmp_edr_5slot_capable(hdev) &&
				    !(hdev->pkt_type & HCI_3DH5))
					selected_phys |= MGMT_PHY_EDR_3M_5SLOT;
			}
		}
	}

	if (lmp_le_capable(hdev)) {
		if (hdev->le_tx_def_phys & HCI_LE_SET_PHY_1M)
			selected_phys |= MGMT_PHY_LE_1M_TX;

		if (hdev->le_rx_def_phys & HCI_LE_SET_PHY_1M)
			selected_phys |= MGMT_PHY_LE_1M_RX;

		if (hdev->le_tx_def_phys & HCI_LE_SET_PHY_2M)
			selected_phys |= MGMT_PHY_LE_2M_TX;

		if (hdev->le_rx_def_phys & HCI_LE_SET_PHY_2M)
			selected_phys |= MGMT_PHY_LE_2M_RX;

		if (hdev->le_tx_def_phys & HCI_LE_SET_PHY_CODED)
			selected_phys |= MGMT_PHY_LE_CODED_TX;

		if (hdev->le_rx_def_phys & HCI_LE_SET_PHY_CODED)
			selected_phys |= MGMT_PHY_LE_CODED_RX;
	}

	return selected_phys;
}

static u32 get_configurable_phys(struct hci_dev *hdev)
{
	return (get_supported_phys(hdev) & ~MGMT_PHY_BR_1M_1SLOT &
		~MGMT_PHY_LE_1M_TX & ~MGMT_PHY_LE_1M_RX);
}

807 808 809 810 811
static u32 get_supported_settings(struct hci_dev *hdev)
{
	u32 settings = 0;

	settings |= MGMT_SETTING_POWERED;
812
	settings |= MGMT_SETTING_BONDABLE;
813
	settings |= MGMT_SETTING_DEBUG_KEYS;
814 815
	settings |= MGMT_SETTING_CONNECTABLE;
	settings |= MGMT_SETTING_DISCOVERABLE;
816

817
	if (lmp_bredr_capable(hdev)) {
818 819
		if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
			settings |= MGMT_SETTING_FAST_CONNECTABLE;
820 821
		settings |= MGMT_SETTING_BREDR;
		settings |= MGMT_SETTING_LINK_SECURITY;
822 823 824

		if (lmp_ssp_capable(hdev)) {
			settings |= MGMT_SETTING_SSP;
825 826
			if (IS_ENABLED(CONFIG_BT_HS))
				settings |= MGMT_SETTING_HS;
827
		}
828

829
		if (lmp_sc_capable(hdev))
830
			settings |= MGMT_SETTING_SECURE_CONN;
831

832
		if (test_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED,
833
			     &hdev->quirks))
834
			settings |= MGMT_SETTING_WIDEBAND_SPEECH;
835
	}
836

837
	if (lmp_le_capable(hdev)) {
838
		settings |= MGMT_SETTING_LE;
839
		settings |= MGMT_SETTING_SECURE_CONN;
840
		settings |= MGMT_SETTING_PRIVACY;
841
		settings |= MGMT_SETTING_STATIC_ADDRESS;
842
		settings |= MGMT_SETTING_ADVERTISING;
843
	}
844

845 846
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
	    hdev->set_bdaddr)
847 848
		settings |= MGMT_SETTING_CONFIGURATION;

849 850
	settings |= MGMT_SETTING_PHY_CONFIGURATION;

851 852 853 854 855 856 857
	return settings;
}

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

858
	if (hdev_is_powered(hdev))
859 860
		settings |= MGMT_SETTING_POWERED;

861
	if (hci_dev_test_flag(hdev, HCI_CONNECTABLE))
862 863
		settings |= MGMT_SETTING_CONNECTABLE;

864
	if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
865 866
		settings |= MGMT_SETTING_FAST_CONNECTABLE;

867
	if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
868 869
		settings |= MGMT_SETTING_DISCOVERABLE;

870
	if (hci_dev_test_flag(hdev, HCI_BONDABLE))
871
		settings |= MGMT_SETTING_BONDABLE;
872

873
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
874 875
		settings |= MGMT_SETTING_BREDR;

876
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
877 878
		settings |= MGMT_SETTING_LE;

879
	if (hci_dev_test_flag(hdev, HCI_LINK_SECURITY))
880 881
		settings |= MGMT_SETTING_LINK_SECURITY;

882
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
883 884
		settings |= MGMT_SETTING_SSP;

885
	if (hci_dev_test_flag(hdev, HCI_HS_ENABLED))
886 887
		settings |= MGMT_SETTING_HS;

888
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
889 890
		settings |= MGMT_SETTING_ADVERTISING;

891
	if (hci_dev_test_flag(hdev, HCI_SC_ENABLED))
892 893
		settings |= MGMT_SETTING_SECURE_CONN;

894
	if (hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS))
895 896
		settings |= MGMT_SETTING_DEBUG_KEYS;

897
	if (hci_dev_test_flag(hdev, HCI_PRIVACY))
898 899
		settings |= MGMT_SETTING_PRIVACY;

900 901 902 903 904
	/* 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
905
	 * will never be set. If the address is configured, then if the
906 907 908 909 910 911
	 * 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.
	 */
912
	if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
913
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
914 915 916 917 918
	    !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
		if (bacmp(&hdev->static_addr, BDADDR_ANY))
			settings |= MGMT_SETTING_STATIC_ADDRESS;
	}

919 920 921
	if (hci_dev_test_flag(hdev, HCI_WIDEBAND_SPEECH_ENABLED))
		settings |= MGMT_SETTING_WIDEBAND_SPEECH;

922 923 924
	return settings;
}

925 926 927 928 929
static struct mgmt_pending_cmd *pending_find(u16 opcode, struct hci_dev *hdev)
{
	return mgmt_pending_find(HCI_CHANNEL_CONTROL, opcode, hdev);
}

930
u8 mgmt_get_adv_discov_flags(struct hci_dev *hdev)
931
{
932
	struct mgmt_pending_cmd *cmd;
933 934 935 936

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

	return 0;
}

954
bool mgmt_get_connectable(struct hci_dev *hdev)
955 956
{
	struct mgmt_pending_cmd *cmd;
957

958 959 960 961 962 963
	/* 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;
964

965
		return cp->val;
966 967
	}

968 969
	return hci_dev_test_flag(hdev, HCI_CONNECTABLE);
}
970

971 972 973 974 975 976 977 978
static int service_cache_sync(struct hci_dev *hdev, void *data)
{
	hci_update_eir_sync(hdev);
	hci_update_class_sync(hdev);

	return 0;
}

979 980 981
static void service_cache_off(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
982
					    service_cache.work);
983

984
	if (!hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
985 986
		return;

987
	hci_cmd_sync_queue(hdev, service_cache_sync, NULL, NULL);
988 989
}

990 991 992 993 994 995 996 997 998 999 1000 1001
static int rpa_expired_sync(struct hci_dev *hdev, void *data)
{
	/* The generation of a new RPA and programming it into the
	 * controller happens in the hci_req_enable_advertising()
	 * function.
	 */
	if (ext_adv_capable(hdev))
		return hci_start_ext_adv_sync(hdev, hdev->cur_adv_instance);
	else
		return hci_enable_advertising_sync(hdev);
}

1002 1003 1004 1005 1006
static void rpa_expired(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
					    rpa_expired.work);

1007
	bt_dev_dbg(hdev, "");
1008

1009
	hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
1010

1011
	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
1012 1013
		return;

1014
	hci_cmd_sync_queue(hdev, rpa_expired_sync, NULL, NULL);
1015 1016
}

1017
static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
1018
{
1019
	if (hci_dev_test_and_set_flag(hdev, HCI_MGMT))
1020 1021
		return;

1022
	INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
1023
	INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
1024

1025 1026 1027 1028 1029
	/* 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
	 */
1030
	hci_dev_clear_flag(hdev, HCI_BONDABLE);
1031 1032
}

1033
static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
1034
				void *data, u16 data_len)
1035
{
1036
	struct mgmt_rp_read_info rp;
1037

1038
	bt_dev_dbg(hdev, "sock %p", sk);
1039

1040
	hci_dev_lock(hdev);
1041

1042 1043
	memset(&rp, 0, sizeof(rp));

1044
	bacpy(&rp.bdaddr, &hdev->bdaddr);
1045

1046
	rp.version = hdev->hci_ver;
1047
	rp.manufacturer = cpu_to_le16(hdev->manufacturer);
1048 1049 1050

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

1052
	memcpy(rp.dev_class, hdev->dev_class, 3);
1053

1054
	memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
1055
	memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
1056

1057
	hci_dev_unlock(hdev);
1058

1059 1060
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
				 sizeof(rp));
1061 1062
}

1063 1064 1065 1066 1067 1068 1069 1070 1071
static u16 append_eir_data_to_buf(struct hci_dev *hdev, u8 *eir)
{
	u16 eir_len = 0;
	size_t name_len;

	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
		eir_len = eir_append_data(eir, eir_len, EIR_CLASS_OF_DEV,
					  hdev->dev_class, 3);

1072 1073 1074 1075
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
		eir_len = eir_append_le16(eir, eir_len, EIR_APPEARANCE,
					  hdev->appearance);

1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
	name_len = strlen(hdev->dev_name);
	eir_len = eir_append_data(eir, eir_len, EIR_NAME_COMPLETE,
				  hdev->dev_name, name_len);

	name_len = strlen(hdev->short_name);
	eir_len = eir_append_data(eir, eir_len, EIR_NAME_SHORT,
				  hdev->short_name, name_len);

	return eir_len;
}

1087 1088 1089
static int read_ext_controller_info(struct sock *sk, struct hci_dev *hdev,
				    void *data, u16 data_len)
{
1090 1091
	char buf[512];
	struct mgmt_rp_read_ext_info *rp = (void *)buf;
1092
	u16 eir_len;
1093

1094
	bt_dev_dbg(hdev, "sock %p", sk);
1095

1096 1097
	memset(&buf, 0, sizeof(buf));

1098 1099
	hci_dev_lock(hdev);

1100 1101 1102 1103 1104 1105 1106 1107
	bacpy(&rp->bdaddr, &hdev->bdaddr);

	rp->version = hdev->hci_ver;
	rp->manufacturer = cpu_to_le16(hdev->manufacturer);

	rp->supported_settings = cpu_to_le32(get_supported_settings(hdev));
	rp->current_settings = cpu_to_le32(get_current_settings(hdev));

1108

1109
	eir_len = append_eir_data_to_buf(hdev, rp->eir);
1110
	rp->eir_len = cpu_to_le16(eir_len);
1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122

	hci_dev_unlock(hdev);

	/* If this command is called at least once, then the events
	 * for class of device and local name changes are disabled
	 * and only the new extended controller information event
	 * is used.
	 */
	hci_sock_set_flag(sk, HCI_MGMT_EXT_INFO_EVENTS);
	hci_sock_clear_flag(sk, HCI_MGMT_DEV_CLASS_EVENTS);
	hci_sock_clear_flag(sk, HCI_MGMT_LOCAL_NAME_EVENTS);

1123 1124
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_EXT_INFO, 0, rp,
				 sizeof(*rp) + eir_len);
1125 1126 1127 1128
}

static int ext_info_changed(struct hci_dev *hdev, struct sock *skip)
{
1129 1130 1131 1132 1133
	char buf[512];
	struct mgmt_ev_ext_info_changed *ev = (void *)buf;
	u16 eir_len;

	memset(buf, 0, sizeof(buf));
1134

1135 1136
	eir_len = append_eir_data_to_buf(hdev, ev->eir);
	ev->eir_len = cpu_to_le16(eir_len);
1137

1138 1139 1140
	return mgmt_limited_event(MGMT_EV_EXT_INFO_CHANGED, hdev, ev,
				  sizeof(*ev) + eir_len,
				  HCI_MGMT_EXT_INFO_EVENTS, skip);
1141 1142
}

1143
static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
1144
{
1145
	__le32 settings = cpu_to_le32(get_current_settings(hdev));
1146

1147 1148
	return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &settings,
				 sizeof(settings));
1149 1150
}

1151
void mgmt_advertising_added(struct sock *sk, struct hci_dev *hdev, u8 instance)
1152 1153 1154 1155 1156 1157 1158 1159
{
	struct mgmt_ev_advertising_added ev;

	ev.instance = instance;

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

1160 1161
void mgmt_advertising_removed(struct sock *sk, struct hci_dev *hdev,
			      u8 instance)
1162 1163 1164 1165 1166 1167 1168 1169
{
	struct mgmt_ev_advertising_removed ev;

	ev.instance = instance;

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

1170 1171 1172 1173 1174 1175 1176 1177
static void cancel_adv_timeout(struct hci_dev *hdev)
{
	if (hdev->adv_instance_timeout) {
		hdev->adv_instance_timeout = 0;
		cancel_delayed_work(&hdev->adv_instance_expire);
	}
}

1178 1179
/* This function requires the caller holds hdev->lock */
static void restart_le_actions(struct hci_dev *hdev)
1180
{
1181
	struct hci_conn_params *p;
1182

1183 1184 1185 1186 1187
	list_for_each_entry(p, &hdev->le_conn_params, list) {
		/* Needed for AUTO_OFF case where might not "really"
		 * have been powered off.
		 */
		list_del_init(&p->action);
1188

1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199
		switch (p->auto_connect) {
		case HCI_AUTO_CONN_DIRECT:
		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;
		}
1200
	}
1201
}
1202

1203 1204 1205
static int new_settings(struct hci_dev *hdev, struct sock *skip)
{
	__le32 ev = cpu_to_le32(get_current_settings(hdev));
1206

1207 1208 1209
	return mgmt_limited_event(MGMT_EV_NEW_SETTINGS, hdev, &ev,
				  sizeof(ev), HCI_MGMT_SETTING_EVENTS, skip);
}
1210

1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224
static void mgmt_set_powered_complete(struct hci_dev *hdev, void *data, int err)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_mode *cp = cmd->param;

	bt_dev_dbg(hdev, "err %d", err);

	if (!err) {
		if (cp->val) {
			hci_dev_lock(hdev);
			restart_le_actions(hdev);
			hci_update_passive_scan(hdev);
			hci_dev_unlock(hdev);
		}
1225

1226 1227 1228 1229 1230 1231 1232 1233 1234 1235
		send_settings_rsp(cmd->sk, cmd->opcode, hdev);

		/* Only call new_setting for power on as power off is deferred
		 * to hdev->power_off work which does call hci_dev_do_close.
		 */
		if (cp->val)
			new_settings(hdev, cmd->sk);
	} else {
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED,
				mgmt_status(err));
1236 1237
	}

1238 1239
	mgmt_pending_free(cmd);
}
1240

1241 1242 1243 1244 1245 1246 1247 1248
static int set_powered_sync(struct hci_dev *hdev, void *data)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_mode *cp = cmd->param;

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

	return hci_set_powered_sync(hdev, cp->val);
1249 1250
}

1251
static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
1252
		       u16 len)
1253
{
1254
	struct mgmt_mode *cp = data;
1255
	struct mgmt_pending_cmd *cmd;
1256
	int err;
1257

1258
	bt_dev_dbg(hdev, "sock %p", sk);
1259

1260
	if (cp->val != 0x00 && cp->val != 0x01)
1261 1262
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
				       MGMT_STATUS_INVALID_PARAMS);
1263

1264
	hci_dev_lock(hdev);
1265

1266
	if (pending_find(MGMT_OP_SET_POWERED, hdev)) {
1267 1268
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
				      MGMT_STATUS_BUSY);
1269 1270 1271
		goto failed;
	}

1272
	if (!!cp->val == hdev_is_powered(hdev)) {
1273
		err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
1274 1275 1276
		goto failed;
	}

1277
	cmd = mgmt_pending_new(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1278 1279
	if (!cmd) {
		err = -ENOMEM;
1280
		goto failed;
1281
	}
1282

1283 1284
	err = hci_cmd_sync_queue(hdev, set_powered_sync, cmd,
				 mgmt_set_powered_complete);
1285 1286

failed:
1287
	hci_dev_unlock(hdev);
1288
	return err;
1289 1290
}

1291 1292 1293 1294 1295
int mgmt_new_settings(struct hci_dev *hdev)
{
	return new_settings(hdev, NULL);
}

1296 1297 1298 1299 1300 1301
struct cmd_lookup {
	struct sock *sk;
	struct hci_dev *hdev;
	u8 mgmt_status;
};

1302
static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data)
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
{
	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);
}

1318
static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data)
1319 1320 1321
{
	u8 *status = data;

1322
	mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
1323 1324 1325
	mgmt_pending_remove(cmd);
}

1326
static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data)
1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339
{
	if (cmd->cmd_complete) {
		u8 *status = data;

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

		return;
	}

	cmd_status_rsp(cmd, data);
}

1340
static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
1341
{
1342 1343
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, cmd->param_len);
1344 1345
}

1346
static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
1347
{
1348 1349
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, sizeof(struct mgmt_addr_info));
1350 1351
}

1352 1353 1354 1355
static u8 mgmt_bredr_support(struct hci_dev *hdev)
{
	if (!lmp_bredr_capable(hdev))
		return MGMT_STATUS_NOT_SUPPORTED;
1356
	else if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1357 1358 1359 1360 1361 1362 1363 1364 1365
		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;
1366
	else if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1367 1368 1369 1370 1371
		return MGMT_STATUS_REJECTED;
	else
		return MGMT_STATUS_SUCCESS;
}

1372
void mgmt_set_discoverable_complete(struct hci_dev *hdev, u8 status)
1373
{
1374
	struct mgmt_pending_cmd *cmd;
1375

1376
	bt_dev_dbg(hdev, "status 0x%02x", status);
1377 1378 1379

	hci_dev_lock(hdev);

1380
	cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
1381 1382 1383 1384 1385
	if (!cmd)
		goto unlock;

	if (status) {
		u8 mgmt_err = mgmt_status(status);
1386
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1387
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1388 1389 1390
		goto remove_cmd;
	}

1391 1392 1393 1394
	if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
	    hdev->discov_timeout > 0) {
		int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
		queue_delayed_work(hdev->req_workqueue, &hdev->discov_off, to);
1395
	}
1396 1397

	send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1398
	new_settings(hdev, cmd->sk);
1399

1400 1401 1402 1403 1404 1405 1406
remove_cmd:
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

1407
static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
1408
			    u16 len)
1409
{
1410
	struct mgmt_cp_set_discoverable *cp = data;
1411
	struct mgmt_pending_cmd *cmd;
1412
	u16 timeout;
1413 1414
	int err;

1415
	bt_dev_dbg(hdev, "sock %p", sk);
1416

1417 1418
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1419 1420
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_REJECTED);
1421

1422
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
1423 1424
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1425

1426
	timeout = __le16_to_cpu(cp->timeout);
1427 1428 1429 1430 1431 1432

	/* 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))
1433 1434
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1435

1436
	hci_dev_lock(hdev);
1437

1438
	if (!hdev_is_powered(hdev) && timeout > 0) {
1439 1440
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_NOT_POWERED);
1441 1442 1443
		goto failed;
	}

1444 1445
	if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
	    pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
1446 1447
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_BUSY);
1448 1449 1450
		goto failed;
	}

1451
	if (!hci_dev_test_flag(hdev, HCI_CONNECTABLE)) {
1452 1453
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_REJECTED);
1454 1455 1456
		goto failed;
	}

1457 1458 1459 1460 1461 1462
	if (hdev->advertising_paused) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_BUSY);
		goto failed;
	}

1463
	if (!hdev_is_powered(hdev)) {
1464 1465
		bool changed = false;

1466 1467 1468 1469
		/* 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.
		 */
1470
		if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
1471
			hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
1472 1473 1474
			changed = true;
		}

1475
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1476 1477 1478 1479 1480 1481
		if (err < 0)
			goto failed;

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

1482 1483 1484
		goto failed;
	}

1485 1486 1487 1488
	/* 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.
	 */
1489 1490 1491
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
	    (cp->val == 0x02) == hci_dev_test_flag(hdev,
						   HCI_LIMITED_DISCOVERABLE)) {
1492 1493
		cancel_delayed_work(&hdev->discov_off);
		hdev->discov_timeout = timeout;
1494

1495 1496
		if (cp->val && hdev->discov_timeout > 0) {
			int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1497 1498
			queue_delayed_work(hdev->req_workqueue,
					   &hdev->discov_off, to);
1499 1500
		}

1501
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1502 1503 1504
		goto failed;
	}

1505
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1506 1507
	if (!cmd) {
		err = -ENOMEM;
1508
		goto failed;
1509
	}
1510

1511 1512 1513 1514 1515 1516 1517
	/* 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;

1518 1519 1520 1521 1522
	if (cp->val)
		hci_dev_set_flag(hdev, HCI_DISCOVERABLE);
	else
		hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);

1523 1524
	/* Limited discoverable mode */
	if (cp->val == 0x02)
1525
		hci_dev_set_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1526
	else
1527
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1528

1529 1530
	queue_work(hdev->req_workqueue, &hdev->discoverable_update);
	err = 0;
1531 1532

failed:
1533
	hci_dev_unlock(hdev);
1534 1535 1536
	return err;
}

1537
void mgmt_set_connectable_complete(struct hci_dev *hdev, u8 status)
1538
{
1539
	struct mgmt_pending_cmd *cmd;
1540

1541
	bt_dev_dbg(hdev, "status 0x%02x", status);
1542 1543 1544

	hci_dev_lock(hdev);

1545
	cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
1546 1547 1548
	if (!cmd)
		goto unlock;

1549 1550
	if (status) {
		u8 mgmt_err = mgmt_status(status);
1551
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1552 1553 1554
		goto remove_cmd;
	}

1555
	send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);
1556
	new_settings(hdev, cmd->sk);
1557

1558
remove_cmd:
1559 1560 1561 1562 1563 1564
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

1565 1566 1567 1568 1569 1570
static int set_connectable_update_settings(struct hci_dev *hdev,
					   struct sock *sk, u8 val)
{
	bool changed = false;
	int err;

1571
	if (!!val != hci_dev_test_flag(hdev, HCI_CONNECTABLE))
1572 1573 1574
		changed = true;

	if (val) {
1575
		hci_dev_set_flag(hdev, HCI_CONNECTABLE);
1576
	} else {
1577 1578
		hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
		hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
1579 1580 1581 1582 1583 1584
	}

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

1585
	if (changed) {
1586
		hci_req_update_scan(hdev);
1587
		hci_update_passive_scan(hdev);
1588
		return new_settings(hdev, sk);
1589
	}
1590 1591 1592 1593

	return 0;
}

1594
static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
1595
			   u16 len)
1596
{
1597
	struct mgmt_mode *cp = data;
1598
	struct mgmt_pending_cmd *cmd;
1599 1600
	int err;

1601
	bt_dev_dbg(hdev, "sock %p", sk);
1602

1603 1604
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1605 1606
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				       MGMT_STATUS_REJECTED);
1607

1608
	if (cp->val != 0x00 && cp->val != 0x01)
1609 1610
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1611

1612
	hci_dev_lock(hdev);
1613

1614
	if (!hdev_is_powered(hdev)) {
1615
		err = set_connectable_update_settings(hdev, sk, cp->val);
1616 1617 1618
		goto failed;
	}

1619 1620
	if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
	    pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
1621 1622
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				      MGMT_STATUS_BUSY);
1623 1624 1625
		goto failed;
	}

1626
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
1627 1628
	if (!cmd) {
		err = -ENOMEM;
1629
		goto failed;
1630
	}
1631

1632 1633 1634 1635 1636
	if (cp->val) {
		hci_dev_set_flag(hdev, HCI_CONNECTABLE);
	} else {
		if (hdev->discov_timeout > 0)
			cancel_delayed_work(&hdev->discov_off);
1637

1638 1639 1640
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
		hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
		hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
1641
	}
1642

1643 1644
	queue_work(hdev->req_workqueue, &hdev->connectable_update);
	err = 0;
1645 1646

failed:
1647
	hci_dev_unlock(hdev);
1648 1649 1650
	return err;
}

1651
static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
1652
			u16 len)
1653
{
1654
	struct mgmt_mode *cp = data;
1655
	bool changed;
1656 1657
	int err;

1658
	bt_dev_dbg(hdev, "sock %p", sk);
1659

1660
	if (cp->val != 0x00 && cp->val != 0x01)
1661 1662
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1663

1664
	hci_dev_lock(hdev);
1665 1666

	if (cp->val)
1667
		changed = !hci_dev_test_and_set_flag(hdev, HCI_BONDABLE);
1668
	else
1669
		changed = hci_dev_test_and_clear_flag(hdev, HCI_BONDABLE);
1670

1671
	err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
1672
	if (err < 0)
1673
		goto unlock;
1674

1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685
	if (changed) {
		/* In limited privacy mode the change of bondable mode
		 * may affect the local advertising address.
		 */
		if (hdev_is_powered(hdev) &&
		    hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
		    hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
		    hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY))
			queue_work(hdev->req_workqueue,
				   &hdev->discoverable_update);

1686
		err = new_settings(hdev, sk);
1687
	}
1688

1689
unlock:
1690
	hci_dev_unlock(hdev);
1691 1692 1693
	return err;
}

1694 1695
static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
1696 1697
{
	struct mgmt_mode *cp = data;
1698
	struct mgmt_pending_cmd *cmd;
1699
	u8 val, status;
1700 1701
	int err;

1702
	bt_dev_dbg(hdev, "sock %p", sk);
1703

1704 1705
	status = mgmt_bredr_support(hdev);
	if (status)
1706 1707
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				       status);
1708

1709
	if (cp->val != 0x00 && cp->val != 0x01)
1710 1711
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				       MGMT_STATUS_INVALID_PARAMS);
1712

1713 1714
	hci_dev_lock(hdev);

1715
	if (!hdev_is_powered(hdev)) {
1716 1717
		bool changed = false;

1718
		if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
1719
			hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
1720 1721 1722 1723 1724 1725 1726 1727 1728 1729
			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);

1730 1731 1732
		goto failed;
	}

1733
	if (pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
1734 1735
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				      MGMT_STATUS_BUSY);
1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762
		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;
}

1763
static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
1764 1765
{
	struct mgmt_mode *cp = data;
1766
	struct mgmt_pending_cmd *cmd;
1767
	u8 status;
1768 1769
	int err;

1770
	bt_dev_dbg(hdev, "sock %p", sk);
1771

1772 1773
	status = mgmt_bredr_support(hdev);
	if (status)
1774
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
1775

1776
	if (!lmp_ssp_capable(hdev))
1777 1778
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				       MGMT_STATUS_NOT_SUPPORTED);
1779

1780
	if (cp->val != 0x00 && cp->val != 0x01)
1781 1782
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				       MGMT_STATUS_INVALID_PARAMS);
1783

1784
	hci_dev_lock(hdev);
1785

1786
	if (!hdev_is_powered(hdev)) {
1787
		bool changed;
1788

1789
		if (cp->val) {
1790 1791
			changed = !hci_dev_test_and_set_flag(hdev,
							     HCI_SSP_ENABLED);
1792
		} else {
1793 1794
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_SSP_ENABLED);
1795
			if (!changed)
1796 1797
				changed = hci_dev_test_and_clear_flag(hdev,
								      HCI_HS_ENABLED);
1798
			else
1799
				hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
1800 1801 1802 1803 1804 1805 1806 1807 1808
		}

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

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

1809 1810 1811
		goto failed;
	}

1812
	if (pending_find(MGMT_OP_SET_SSP, hdev)) {
1813 1814
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				      MGMT_STATUS_BUSY);
1815 1816 1817
		goto failed;
	}

1818
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
1819 1820 1821 1822 1823 1824 1825 1826 1827 1828
		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;
	}

1829
	if (!cp->val && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
1830 1831 1832
		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
			     sizeof(cp->val), &cp->val);

1833
	err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
1834 1835 1836 1837 1838 1839 1840 1841 1842 1843
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

1844
static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
1845 1846
{
	struct mgmt_mode *cp = data;
1847
	bool changed;
1848
	u8 status;
1849
	int err;
1850

1851
	bt_dev_dbg(hdev, "sock %p", sk);
1852

1853 1854 1855 1856
	if (!IS_ENABLED(CONFIG_BT_HS))
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_NOT_SUPPORTED);

1857 1858
	status = mgmt_bredr_support(hdev);
	if (status)
1859
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
1860

1861
	if (!lmp_ssp_capable(hdev))
1862 1863
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_NOT_SUPPORTED);
1864

1865
	if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
1866 1867
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_REJECTED);
1868

1869
	if (cp->val != 0x00 && cp->val != 0x01)
1870 1871
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_INVALID_PARAMS);
1872

1873 1874
	hci_dev_lock(hdev);

1875
	if (pending_find(MGMT_OP_SET_SSP, hdev)) {
1876 1877
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				      MGMT_STATUS_BUSY);
1878 1879 1880
		goto unlock;
	}

1881
	if (cp->val) {
1882
		changed = !hci_dev_test_and_set_flag(hdev, HCI_HS_ENABLED);
1883 1884
	} else {
		if (hdev_is_powered(hdev)) {
1885 1886
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
					      MGMT_STATUS_REJECTED);
1887 1888 1889
			goto unlock;
		}

1890
		changed = hci_dev_test_and_clear_flag(hdev, HCI_HS_ENABLED);
1891
	}
1892 1893 1894 1895 1896 1897 1898

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

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

1900 1901 1902
unlock:
	hci_dev_unlock(hdev);
	return err;
1903 1904
}

1905
static void set_le_complete(struct hci_dev *hdev, void *data, int err)
1906 1907
{
	struct cmd_lookup match = { NULL, hdev };
1908
	u8 status = mgmt_status(err);
1909

1910
	bt_dev_dbg(hdev, "err %d", err);
1911

1912 1913
	if (status) {
		mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
1914 1915
							&status);
		return;
1916 1917 1918 1919 1920 1921 1922 1923
	}

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

	new_settings(hdev, match.sk);

	if (match.sk)
		sock_put(match.sk);
1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943
}

static int set_le_sync(struct hci_dev *hdev, void *data)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_mode *cp = cmd->param;
	u8 val = !!cp->val;
	int err;

	if (!val) {
		if (hci_dev_test_flag(hdev, HCI_LE_ADV))
			hci_disable_advertising_sync(hdev);

		if (ext_adv_capable(hdev))
			hci_remove_ext_adv_instance_sync(hdev, 0, cmd->sk);
	} else {
		hci_dev_set_flag(hdev, HCI_LE_ENABLED);
	}

	err = hci_write_le_host_supported_sync(hdev, val, 0);
1944 1945 1946 1947 1948 1949

	/* 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.
	 */
1950
	if (!err && hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
1951
		if (ext_adv_capable(hdev)) {
1952
			int status;
1953

1954 1955 1956
			status = hci_setup_ext_adv_instance_sync(hdev, 0x00);
			if (!status)
				hci_update_scan_rsp_data_sync(hdev, 0x00);
1957
		} else {
1958 1959
			hci_update_adv_data_sync(hdev, 0x00);
			hci_update_scan_rsp_data_sync(hdev, 0x00);
1960
		}
1961

1962
		hci_update_passive_scan(hdev);
1963
	}
1964

1965
	return err;
1966 1967
}

1968
static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
1969 1970
{
	struct mgmt_mode *cp = data;
1971
	struct mgmt_pending_cmd *cmd;
1972
	int err;
1973
	u8 val, enabled;
1974

1975
	bt_dev_dbg(hdev, "sock %p", sk);
1976

1977
	if (!lmp_le_capable(hdev))
1978 1979
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_NOT_SUPPORTED);
1980

1981
	if (cp->val != 0x00 && cp->val != 0x01)
1982 1983
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_INVALID_PARAMS);
1984

1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997
	/* 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);

1998 1999
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_REJECTED);
2000
	}
2001

2002
	hci_dev_lock(hdev);
2003 2004

	val = !!cp->val;
2005
	enabled = lmp_host_le_capable(hdev);
2006

2007
	if (!val)
2008
		hci_req_clear_adv_instance(hdev, NULL, NULL, 0x00, true);
2009

2010
	if (!hdev_is_powered(hdev) || val == enabled) {
2011 2012
		bool changed = false;

2013
		if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
2014
			hci_dev_change_flag(hdev, HCI_LE_ENABLED);
2015 2016 2017
			changed = true;
		}

2018
		if (!val && hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
2019
			hci_dev_clear_flag(hdev, HCI_ADVERTISING);
2020 2021 2022
			changed = true;
		}

2023 2024
		err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
		if (err < 0)
2025
			goto unlock;
2026 2027 2028 2029

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

2030
		goto unlock;
2031 2032
	}

2033 2034
	if (pending_find(MGMT_OP_SET_LE, hdev) ||
	    pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
2035 2036
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				      MGMT_STATUS_BUSY);
2037
		goto unlock;
2038 2039 2040
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
2041
	if (!cmd)
2042
		err = -ENOMEM;
2043 2044 2045
	else
		err = hci_cmd_sync_queue(hdev, set_le_sync, cmd,
					 set_le_complete);
2046

2047 2048 2049
	if (err < 0) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				      MGMT_STATUS_FAILED);
2050

2051 2052
		if (cmd)
			mgmt_pending_remove(cmd);
2053 2054
	}

2055 2056
unlock:
	hci_dev_unlock(hdev);
2057 2058 2059
	return err;
}

2060 2061 2062 2063 2064 2065 2066 2067
/* 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)
{
2068
	struct mgmt_pending_cmd *cmd;
2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082

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

2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101
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;
}

2102
static void mgmt_class_complete(struct hci_dev *hdev, void *data, int err)
2103
{
2104
	struct mgmt_pending_cmd *cmd = data;
2105

2106
	bt_dev_dbg(hdev, "err %d", err);
2107

2108
	mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
2109
			  mgmt_status(err), hdev->dev_class, 3);
2110

2111
	mgmt_pending_free(cmd);
2112 2113
}

2114
static int add_uuid_sync(struct hci_dev *hdev, void *data)
2115
{
2116
	int err;
2117

2118 2119 2120 2121 2122
	err = hci_update_class_sync(hdev);
	if (err)
		return err;

	return hci_update_eir_sync(hdev);
2123 2124
}

2125
static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2126
{
2127
	struct mgmt_cp_add_uuid *cp = data;
2128
	struct mgmt_pending_cmd *cmd;
2129 2130 2131
	struct bt_uuid *uuid;
	int err;

2132
	bt_dev_dbg(hdev, "sock %p", sk);
2133

2134
	hci_dev_lock(hdev);
2135

2136
	if (pending_eir_or_class(hdev)) {
2137 2138
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
				      MGMT_STATUS_BUSY);
2139 2140 2141
		goto failed;
	}

2142
	uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
2143 2144 2145 2146 2147 2148
	if (!uuid) {
		err = -ENOMEM;
		goto failed;
	}

	memcpy(uuid->uuid, cp->uuid, 16);
2149
	uuid->svc_hint = cp->svc_hint;
2150
	uuid->size = get_uuid_size(cp->uuid);
2151

2152
	list_add_tail(&uuid->list, &hdev->uuids);
2153

2154
	cmd = mgmt_pending_new(sk, MGMT_OP_ADD_UUID, hdev, data, len);
2155
	if (!cmd) {
2156
		err = -ENOMEM;
2157 2158 2159
		goto failed;
	}

2160 2161 2162 2163 2164
	err = hci_cmd_sync_queue(hdev, add_uuid_sync, cmd, mgmt_class_complete);
	if (err < 0) {
		mgmt_pending_free(cmd);
		goto failed;
	}
2165 2166

failed:
2167
	hci_dev_unlock(hdev);
2168 2169 2170
	return err;
}

2171 2172 2173 2174 2175
static bool enable_service_cache(struct hci_dev *hdev)
{
	if (!hdev_is_powered(hdev))
		return false;

2176
	if (!hci_dev_test_and_set_flag(hdev, HCI_SERVICE_CACHE)) {
2177 2178
		queue_delayed_work(hdev->workqueue, &hdev->service_cache,
				   CACHE_TIMEOUT);
2179 2180 2181 2182 2183 2184
		return true;
	}

	return false;
}

2185
static int remove_uuid_sync(struct hci_dev *hdev, void *data)
2186
{
2187
	int err;
2188

2189 2190 2191 2192 2193
	err = hci_update_class_sync(hdev);
	if (err)
		return err;

	return hci_update_eir_sync(hdev);
2194 2195
}

2196
static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
2197
		       u16 len)
2198
{
2199
	struct mgmt_cp_remove_uuid *cp = data;
2200
	struct mgmt_pending_cmd *cmd;
2201
	struct bt_uuid *match, *tmp;
2202 2203 2204
	u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
	int err, found;

2205
	bt_dev_dbg(hdev, "sock %p", sk);
2206

2207
	hci_dev_lock(hdev);
2208

2209
	if (pending_eir_or_class(hdev)) {
2210 2211
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
				      MGMT_STATUS_BUSY);
2212 2213 2214
		goto unlock;
	}

2215
	if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
2216
		hci_uuids_clear(hdev);
2217

2218
		if (enable_service_cache(hdev)) {
2219 2220 2221
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_UUID,
						0, hdev->dev_class, 3);
2222 2223
			goto unlock;
		}
2224

2225
		goto update_class;
2226 2227 2228 2229
	}

	found = 0;

2230
	list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
2231 2232 2233 2234
		if (memcmp(match->uuid, cp->uuid, 16) != 0)
			continue;

		list_del(&match->list);
2235
		kfree(match);
2236 2237 2238 2239
		found++;
	}

	if (found == 0) {
2240 2241
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
				      MGMT_STATUS_INVALID_PARAMS);
2242 2243 2244
		goto unlock;
	}

2245
update_class:
2246
	cmd = mgmt_pending_new(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
2247
	if (!cmd) {
2248
		err = -ENOMEM;
2249 2250 2251
		goto unlock;
	}

2252 2253 2254 2255
	err = hci_cmd_sync_queue(hdev, remove_uuid_sync, cmd,
				 mgmt_class_complete);
	if (err < 0)
		mgmt_pending_free(cmd);
2256 2257

unlock:
2258
	hci_dev_unlock(hdev);
2259 2260 2261
	return err;
}

2262
static int set_class_sync(struct hci_dev *hdev, void *data)
2263
{
2264 2265 2266 2267 2268 2269 2270 2271 2272
	int err = 0;

	if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) {
		cancel_delayed_work_sync(&hdev->service_cache);
		err = hci_update_eir_sync(hdev);
	}

	if (err)
		return err;
2273

2274
	return hci_update_class_sync(hdev);
2275 2276
}

2277
static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
2278
			 u16 len)
2279
{
2280
	struct mgmt_cp_set_dev_class *cp = data;
2281
	struct mgmt_pending_cmd *cmd;
2282 2283
	int err;

2284
	bt_dev_dbg(hdev, "sock %p", sk);
2285

2286
	if (!lmp_bredr_capable(hdev))
2287 2288
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				       MGMT_STATUS_NOT_SUPPORTED);
2289

2290
	hci_dev_lock(hdev);
2291

2292
	if (pending_eir_or_class(hdev)) {
2293 2294
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				      MGMT_STATUS_BUSY);
2295 2296
		goto unlock;
	}
2297

2298
	if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
2299 2300
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				      MGMT_STATUS_INVALID_PARAMS);
2301 2302
		goto unlock;
	}
2303

2304 2305 2306
	hdev->major_class = cp->major;
	hdev->minor_class = cp->minor;

2307
	if (!hdev_is_powered(hdev)) {
2308 2309
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
					hdev->dev_class, 3);
2310 2311 2312
		goto unlock;
	}

2313
	cmd = mgmt_pending_new(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
2314
	if (!cmd) {
2315
		err = -ENOMEM;
2316 2317 2318
		goto unlock;
	}

2319 2320 2321 2322
	err = hci_cmd_sync_queue(hdev, set_class_sync, cmd,
				 mgmt_class_complete);
	if (err < 0)
		mgmt_pending_free(cmd);
2323

2324
unlock:
2325
	hci_dev_unlock(hdev);
2326 2327 2328
	return err;
}

2329
static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
2330
			  u16 len)
2331
{
2332
	struct mgmt_cp_load_link_keys *cp = data;
2333 2334
	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_link_key_info));
2335
	u16 key_count, expected_len;
2336
	bool changed;
2337
	int i;
2338

2339
	bt_dev_dbg(hdev, "sock %p", sk);
2340 2341

	if (!lmp_bredr_capable(hdev))
2342 2343
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_NOT_SUPPORTED);
2344

2345
	key_count = __le16_to_cpu(cp->key_count);
2346
	if (key_count > max_key_count) {
2347 2348
		bt_dev_err(hdev, "load_link_keys: too big key_count value %u",
			   key_count);
2349 2350
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2351
	}
2352

2353
	expected_len = struct_size(cp, keys, key_count);
2354
	if (expected_len != len) {
2355 2356
		bt_dev_err(hdev, "load_link_keys: expected %u bytes, got %u bytes",
			   expected_len, len);
2357 2358
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2359 2360
	}

2361
	if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
2362 2363
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2364

2365 2366
	bt_dev_dbg(hdev, "debug_keys %u key_count %u", cp->debug_keys,
		   key_count);
2367

2368 2369 2370
	for (i = 0; i < key_count; i++) {
		struct mgmt_link_key_info *key = &cp->keys[i];

2371
		if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
2372 2373 2374
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_LINK_KEYS,
					       MGMT_STATUS_INVALID_PARAMS);
2375 2376
	}

2377
	hci_dev_lock(hdev);
2378 2379 2380 2381

	hci_link_keys_clear(hdev);

	if (cp->debug_keys)
2382
		changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
2383
	else
2384 2385
		changed = hci_dev_test_and_clear_flag(hdev,
						      HCI_KEEP_DEBUG_KEYS);
2386 2387 2388

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

2390
	for (i = 0; i < key_count; i++) {
2391
		struct mgmt_link_key_info *key = &cp->keys[i];
2392

2393 2394 2395 2396 2397 2398 2399 2400
		if (hci_is_blocked_key(hdev,
				       HCI_BLOCKED_KEY_TYPE_LINKKEY,
				       key->val)) {
			bt_dev_warn(hdev, "Skipping blocked link key for %pMR",
				    &key->addr.bdaddr);
			continue;
		}

2401 2402 2403 2404 2405 2406
		/* Always ignore debug keys and require a new pairing if
		 * the user wants to use them.
		 */
		if (key->type == HCI_LK_DEBUG_COMBINATION)
			continue;

2407 2408
		hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
				 key->type, key->pin_len, NULL);
2409 2410
	}

2411
	mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
2412

2413
	hci_dev_unlock(hdev);
2414

2415
	return 0;
2416 2417
}

2418
static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
2419
			   u8 addr_type, struct sock *skip_sk)
2420 2421 2422 2423 2424 2425 2426
{
	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),
2427
			  skip_sk);
2428 2429
}

2430
static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2431
			 u16 len)
2432
{
2433 2434
	struct mgmt_cp_unpair_device *cp = data;
	struct mgmt_rp_unpair_device rp;
2435
	struct hci_conn_params *params;
2436
	struct mgmt_pending_cmd *cmd;
2437
	struct hci_conn *conn;
2438
	u8 addr_type;
2439 2440
	int err;

2441
	memset(&rp, 0, sizeof(rp));
2442 2443
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;
2444

2445
	if (!bdaddr_type_is_valid(cp->addr.type))
2446 2447 2448
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2449

2450
	if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
2451 2452 2453
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2454

2455 2456
	hci_dev_lock(hdev);

2457
	if (!hdev_is_powered(hdev)) {
2458 2459 2460
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
2461 2462 2463
		goto unlock;
	}

2464
	if (cp->addr.type == BDADDR_BREDR) {
2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477
		/* 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;

2478
		err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
2479 2480 2481 2482 2483 2484
		if (err < 0) {
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_UNPAIR_DEVICE,
						MGMT_STATUS_NOT_PAIRED, &rp,
						sizeof(rp));
			goto unlock;
2485 2486
		}

2487
		goto done;
2488
	}
2489

2490 2491 2492
	/* LE address type */
	addr_type = le_addr_type(cp->addr.type);

2493 2494
	/* Abort any ongoing SMP pairing. Removes ltk and irk if they exist. */
	err = smp_cancel_and_remove_pairing(hdev, &cp->addr.bdaddr, addr_type);
2495
	if (err < 0) {
2496 2497 2498
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					MGMT_STATUS_NOT_PAIRED, &rp,
					sizeof(rp));
2499 2500 2501
		goto unlock;
	}

2502 2503 2504 2505 2506 2507
	conn = hci_conn_hash_lookup_le(hdev, &cp->addr.bdaddr, addr_type);
	if (!conn) {
		hci_conn_params_del(hdev, &cp->addr.bdaddr, addr_type);
		goto done;
	}

2508

2509 2510 2511 2512 2513
	/* 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);

2514 2515 2516 2517 2518 2519 2520 2521 2522
	/* Disable auto-connection parameters if present */
	params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr, addr_type);
	if (params) {
		if (params->explicit_connect)
			params->auto_connect = HCI_AUTO_CONN_EXPLICIT;
		else
			params->auto_connect = HCI_AUTO_CONN_DISABLED;
	}

2523 2524 2525 2526 2527 2528 2529
	/* If disconnection is not requested, then clear the connection
	 * variable so that the link is not terminated.
	 */
	if (!cp->disconnect)
		conn = NULL;

done:
2530 2531 2532
	/* If the connection variable is set, then termination of the
	 * link is requested.
	 */
2533
	if (!conn) {
2534 2535
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
					&rp, sizeof(rp));
2536
		device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
2537 2538
		goto unlock;
	}
2539

2540
	cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
2541
			       sizeof(*cp));
2542 2543 2544
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
2545 2546
	}

2547 2548
	cmd->cmd_complete = addr_cmd_complete;

2549
	err = hci_abort_conn(conn, HCI_ERROR_REMOTE_USER_TERM);
2550 2551 2552
	if (err < 0)
		mgmt_pending_remove(cmd);

2553
unlock:
2554
	hci_dev_unlock(hdev);
2555 2556 2557
	return err;
}

2558
static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
2559
		      u16 len)
2560
{
2561
	struct mgmt_cp_disconnect *cp = data;
2562
	struct mgmt_rp_disconnect rp;
2563
	struct mgmt_pending_cmd *cmd;
2564 2565 2566
	struct hci_conn *conn;
	int err;

2567
	bt_dev_dbg(hdev, "sock %p", sk);
2568

2569 2570 2571 2572
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

2573
	if (!bdaddr_type_is_valid(cp->addr.type))
2574 2575 2576
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2577

2578
	hci_dev_lock(hdev);
2579 2580

	if (!test_bit(HCI_UP, &hdev->flags)) {
2581 2582 2583
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
2584 2585 2586
		goto failed;
	}

2587
	if (pending_find(MGMT_OP_DISCONNECT, hdev)) {
2588 2589
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
2590 2591 2592
		goto failed;
	}

2593
	if (cp->addr.type == BDADDR_BREDR)
2594 2595
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
					       &cp->addr.bdaddr);
2596
	else
2597 2598
		conn = hci_conn_hash_lookup_le(hdev, &cp->addr.bdaddr,
					       le_addr_type(cp->addr.type));
2599

2600
	if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
2601 2602 2603
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_NOT_CONNECTED, &rp,
					sizeof(rp));
2604 2605 2606
		goto failed;
	}

2607
	cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
2608 2609
	if (!cmd) {
		err = -ENOMEM;
2610
		goto failed;
2611
	}
2612

2613 2614
	cmd->cmd_complete = generic_cmd_complete;

2615
	err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
2616
	if (err < 0)
2617
		mgmt_pending_remove(cmd);
2618 2619

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

2624
static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
2625 2626 2627
{
	switch (link_type) {
	case LE_LINK:
2628 2629
		switch (addr_type) {
		case ADDR_LE_DEV_PUBLIC:
2630
			return BDADDR_LE_PUBLIC;
2631

2632
		default:
2633
			/* Fallback to LE Random address type */
2634
			return BDADDR_LE_RANDOM;
2635
		}
2636

2637
	default:
2638
		/* Fallback to BR/EDR type */
2639
		return BDADDR_BREDR;
2640 2641 2642
	}
}

2643 2644
static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
2645 2646
{
	struct mgmt_rp_get_connections *rp;
2647
	struct hci_conn *c;
2648 2649
	int err;
	u16 i;
2650

2651
	bt_dev_dbg(hdev, "sock %p", sk);
2652

2653
	hci_dev_lock(hdev);
2654

2655
	if (!hdev_is_powered(hdev)) {
2656 2657
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
				      MGMT_STATUS_NOT_POWERED);
2658 2659 2660
		goto unlock;
	}

2661
	i = 0;
2662 2663
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
		if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
2664
			i++;
2665 2666
	}

2667
	rp = kmalloc(struct_size(rp, addr, i), GFP_KERNEL);
2668
	if (!rp) {
2669 2670 2671 2672 2673
		err = -ENOMEM;
		goto unlock;
	}

	i = 0;
2674
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
2675 2676
		if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
			continue;
2677
		bacpy(&rp->addr[i].bdaddr, &c->dst);
2678
		rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
2679
		if (c->type == SCO_LINK || c->type == ESCO_LINK)
2680 2681 2682 2683
			continue;
		i++;
	}

2684
	rp->conn_count = cpu_to_le16(i);
2685

2686
	/* Recalculate length in case of filtered SCO connections, etc */
2687
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
2688
				struct_size(rp, addr, i));
2689

2690
	kfree(rp);
2691 2692

unlock:
2693
	hci_dev_unlock(hdev);
2694 2695 2696
	return err;
}

2697
static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
2698
				   struct mgmt_cp_pin_code_neg_reply *cp)
2699
{
2700
	struct mgmt_pending_cmd *cmd;
2701 2702
	int err;

2703
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
2704
			       sizeof(*cp));
2705 2706 2707
	if (!cmd)
		return -ENOMEM;

2708 2709
	cmd->cmd_complete = addr_cmd_complete;

2710
	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
2711
			   sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
2712 2713 2714 2715 2716 2717
	if (err < 0)
		mgmt_pending_remove(cmd);

	return err;
}

2718
static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
2719
			  u16 len)
2720
{
2721
	struct hci_conn *conn;
2722
	struct mgmt_cp_pin_code_reply *cp = data;
2723
	struct hci_cp_pin_code_reply reply;
2724
	struct mgmt_pending_cmd *cmd;
2725 2726
	int err;

2727
	bt_dev_dbg(hdev, "sock %p", sk);
2728

2729
	hci_dev_lock(hdev);
2730

2731
	if (!hdev_is_powered(hdev)) {
2732 2733
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
				      MGMT_STATUS_NOT_POWERED);
2734 2735 2736
		goto failed;
	}

2737
	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
2738
	if (!conn) {
2739 2740
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
				      MGMT_STATUS_NOT_CONNECTED);
2741 2742 2743 2744
		goto failed;
	}

	if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
2745 2746 2747
		struct mgmt_cp_pin_code_neg_reply ncp;

		memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
2748

2749
		bt_dev_err(hdev, "PIN code is not 16 bytes long");
2750

2751
		err = send_pin_code_neg_reply(sk, hdev, &ncp);
2752
		if (err >= 0)
2753 2754
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
					      MGMT_STATUS_INVALID_PARAMS);
2755 2756 2757 2758

		goto failed;
	}

2759
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
2760 2761
	if (!cmd) {
		err = -ENOMEM;
2762
		goto failed;
2763
	}
2764

2765 2766
	cmd->cmd_complete = addr_cmd_complete;

2767
	bacpy(&reply.bdaddr, &cp->addr.bdaddr);
2768
	reply.pin_len = cp->pin_len;
2769
	memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
2770 2771 2772

	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
	if (err < 0)
2773
		mgmt_pending_remove(cmd);
2774 2775

failed:
2776
	hci_dev_unlock(hdev);
2777 2778 2779
	return err;
}

2780 2781
static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
2782
{
2783
	struct mgmt_cp_set_io_capability *cp = data;
2784

2785
	bt_dev_dbg(hdev, "sock %p", sk);
2786

2787
	if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
2788 2789
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
				       MGMT_STATUS_INVALID_PARAMS);
2790

2791
	hci_dev_lock(hdev);
2792 2793 2794

	hdev->io_capability = cp->io_capability;

2795
	bt_dev_dbg(hdev, "IO capability set to 0x%02x", hdev->io_capability);
2796

2797
	hci_dev_unlock(hdev);
2798

2799 2800
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0,
				 NULL, 0);
2801 2802
}

2803
static struct mgmt_pending_cmd *find_pairing(struct hci_conn *conn)
2804 2805
{
	struct hci_dev *hdev = conn->hdev;
2806
	struct mgmt_pending_cmd *cmd;
2807

2808
	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820
		if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
			continue;

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

		return cmd;
	}

	return NULL;
}

2821
static int pairing_complete(struct mgmt_pending_cmd *cmd, u8 status)
2822 2823 2824
{
	struct mgmt_rp_pair_device rp;
	struct hci_conn *conn = cmd->user_data;
2825
	int err;
2826

2827 2828
	bacpy(&rp.addr.bdaddr, &conn->dst);
	rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
2829

2830 2831
	err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE,
				status, &rp, sizeof(rp));
2832 2833 2834 2835 2836 2837

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

2838
	hci_conn_drop(conn);
2839 2840 2841 2842 2843

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

	hci_conn_put(conn);
2846 2847

	return err;
2848 2849
}

2850 2851 2852
void mgmt_smp_complete(struct hci_conn *conn, bool complete)
{
	u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
2853
	struct mgmt_pending_cmd *cmd;
2854 2855

	cmd = find_pairing(conn);
2856
	if (cmd) {
2857
		cmd->cmd_complete(cmd, status);
2858 2859
		mgmt_pending_remove(cmd);
	}
2860 2861
}

2862 2863
static void pairing_complete_cb(struct hci_conn *conn, u8 status)
{
2864
	struct mgmt_pending_cmd *cmd;
2865 2866 2867 2868

	BT_DBG("status %u", status);

	cmd = find_pairing(conn);
2869
	if (!cmd) {
2870
		BT_DBG("Unable to find a pending command");
2871 2872 2873 2874 2875
		return;
	}

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);
2876 2877
}

2878
static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
2879
{
2880
	struct mgmt_pending_cmd *cmd;
2881 2882 2883 2884 2885 2886 2887

	BT_DBG("status %u", status);

	if (!status)
		return;

	cmd = find_pairing(conn);
2888
	if (!cmd) {
2889
		BT_DBG("Unable to find a pending command");
2890 2891 2892 2893 2894
		return;
	}

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);
2895 2896
}

2897
static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2898
		       u16 len)
2899
{
2900
	struct mgmt_cp_pair_device *cp = data;
2901
	struct mgmt_rp_pair_device rp;
2902
	struct mgmt_pending_cmd *cmd;
2903 2904 2905 2906
	u8 sec_level, auth_type;
	struct hci_conn *conn;
	int err;

2907
	bt_dev_dbg(hdev, "sock %p", sk);
2908

2909 2910 2911 2912
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

2913
	if (!bdaddr_type_is_valid(cp->addr.type))
2914 2915 2916
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2917

2918
	if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
2919 2920 2921
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2922

2923
	hci_dev_lock(hdev);
2924

2925
	if (!hdev_is_powered(hdev)) {
2926 2927 2928
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
2929 2930 2931
		goto unlock;
	}

2932 2933 2934 2935 2936 2937 2938
	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;
	}

2939
	sec_level = BT_SECURITY_MEDIUM;
2940
	auth_type = HCI_AT_DEDICATED_BONDING;
2941

2942
	if (cp->addr.type == BDADDR_BREDR) {
2943
		conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
2944
				       auth_type, CONN_REASON_PAIR_DEVICE);
2945
	} else {
2946
		u8 addr_type = le_addr_type(cp->addr.type);
2947
		struct hci_conn_params *p;
2948

2949 2950 2951
		/* 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
2952
		 * of the peripheral preferred values and will speed up any
2953 2954 2955 2956 2957
		 * further connection establishment.
		 *
		 * If connection parameters already exist, then they
		 * will be kept and this function does nothing.
		 */
2958 2959 2960 2961
		p = hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);

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

2963 2964 2965
		conn = hci_connect_le_scan(hdev, &cp->addr.bdaddr, addr_type,
					   sec_level, HCI_LE_CONN_TIMEOUT,
					   CONN_REASON_PAIR_DEVICE);
2966
	}
2967

2968
	if (IS_ERR(conn)) {
2969 2970 2971 2972
		int status;

		if (PTR_ERR(conn) == -EBUSY)
			status = MGMT_STATUS_BUSY;
2973 2974 2975 2976
		else if (PTR_ERR(conn) == -EOPNOTSUPP)
			status = MGMT_STATUS_NOT_SUPPORTED;
		else if (PTR_ERR(conn) == -ECONNREFUSED)
			status = MGMT_STATUS_REJECTED;
2977 2978 2979
		else
			status = MGMT_STATUS_CONNECT_FAILED;

2980 2981
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					status, &rp, sizeof(rp));
2982 2983 2984 2985
		goto unlock;
	}

	if (conn->connect_cfm_cb) {
2986
		hci_conn_drop(conn);
2987 2988
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
2989 2990 2991
		goto unlock;
	}

2992
	cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
2993 2994
	if (!cmd) {
		err = -ENOMEM;
2995
		hci_conn_drop(conn);
2996 2997 2998
		goto unlock;
	}

2999 3000
	cmd->cmd_complete = pairing_complete;

3001
	/* For LE, just connecting isn't a proof that the pairing finished */
3002
	if (cp->addr.type == BDADDR_BREDR) {
3003
		conn->connect_cfm_cb = pairing_complete_cb;
3004 3005 3006 3007 3008 3009 3010
		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;
	}
3011

3012
	conn->io_capability = cp->io_cap;
3013
	cmd->user_data = hci_conn_get(conn);
3014

3015
	if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
3016 3017 3018 3019
	    hci_conn_security(conn, sec_level, auth_type, true)) {
		cmd->cmd_complete(cmd, 0);
		mgmt_pending_remove(cmd);
	}
3020 3021 3022 3023

	err = 0;

unlock:
3024
	hci_dev_unlock(hdev);
3025 3026 3027
	return err;
}

3028 3029
static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3030
{
3031
	struct mgmt_addr_info *addr = data;
3032
	struct mgmt_pending_cmd *cmd;
3033 3034 3035
	struct hci_conn *conn;
	int err;

3036
	bt_dev_dbg(hdev, "sock %p", sk);
3037 3038 3039

	hci_dev_lock(hdev);

3040
	if (!hdev_is_powered(hdev)) {
3041 3042
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_NOT_POWERED);
3043 3044 3045
		goto unlock;
	}

3046
	cmd = pending_find(MGMT_OP_PAIR_DEVICE, hdev);
3047
	if (!cmd) {
3048 3049
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_INVALID_PARAMS);
3050 3051 3052 3053 3054 3055
		goto unlock;
	}

	conn = cmd->user_data;

	if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
3056 3057
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_INVALID_PARAMS);
3058 3059 3060
		goto unlock;
	}

3061 3062
	cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
	mgmt_pending_remove(cmd);
3063

3064 3065
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
				addr, sizeof(*addr));
3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079

	/* Since user doesn't want to proceed with the connection, abort any
	 * ongoing pairing and then terminate the link if it was created
	 * because of the pair device action.
	 */
	if (addr->type == BDADDR_BREDR)
		hci_remove_link_key(hdev, &addr->bdaddr);
	else
		smp_cancel_and_remove_pairing(hdev, &addr->bdaddr,
					      le_addr_type(addr->type));

	if (conn->conn_reason == CONN_REASON_PAIR_DEVICE)
		hci_abort_conn(conn, HCI_ERROR_REMOTE_USER_TERM);

3080 3081 3082 3083 3084
unlock:
	hci_dev_unlock(hdev);
	return err;
}

3085
static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
3086
			     struct mgmt_addr_info *addr, u16 mgmt_op,
3087
			     u16 hci_op, __le32 passkey)
3088
{
3089
	struct mgmt_pending_cmd *cmd;
3090
	struct hci_conn *conn;
3091 3092
	int err;

3093
	hci_dev_lock(hdev);
3094

3095
	if (!hdev_is_powered(hdev)) {
3096 3097 3098
		err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
					MGMT_STATUS_NOT_POWERED, addr,
					sizeof(*addr));
3099
		goto done;
3100 3101
	}

3102 3103
	if (addr->type == BDADDR_BREDR)
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
3104
	else
3105 3106
		conn = hci_conn_hash_lookup_le(hdev, &addr->bdaddr,
					       le_addr_type(addr->type));
3107 3108

	if (!conn) {
3109 3110 3111
		err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
					MGMT_STATUS_NOT_CONNECTED, addr,
					sizeof(*addr));
3112 3113
		goto done;
	}
3114

3115
	if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
3116 3117
		err = smp_user_confirm_reply(conn, mgmt_op, passkey);
		if (!err)
3118 3119 3120
			err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
						MGMT_STATUS_SUCCESS, addr,
						sizeof(*addr));
3121
		else
3122 3123 3124
			err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
						MGMT_STATUS_FAILED, addr,
						sizeof(*addr));
3125 3126 3127 3128

		goto done;
	}

3129
	cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
3130 3131
	if (!cmd) {
		err = -ENOMEM;
3132
		goto done;
3133 3134
	}

3135 3136
	cmd->cmd_complete = addr_cmd_complete;

3137
	/* Continue with pairing via HCI */
3138 3139 3140
	if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
		struct hci_cp_user_passkey_reply cp;

3141
		bacpy(&cp.bdaddr, &addr->bdaddr);
3142 3143 3144
		cp.passkey = passkey;
		err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
	} else
3145 3146
		err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
				   &addr->bdaddr);
3147

3148 3149
	if (err < 0)
		mgmt_pending_remove(cmd);
3150

3151
done:
3152
	hci_dev_unlock(hdev);
3153 3154 3155
	return err;
}

3156 3157 3158 3159 3160
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;

3161
	bt_dev_dbg(hdev, "sock %p", sk);
3162

3163
	return user_pairing_resp(sk, hdev, &cp->addr,
3164 3165 3166 3167
				MGMT_OP_PIN_CODE_NEG_REPLY,
				HCI_OP_PIN_CODE_NEG_REPLY, 0);
}

3168 3169
static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3170
{
3171
	struct mgmt_cp_user_confirm_reply *cp = data;
3172

3173
	bt_dev_dbg(hdev, "sock %p", sk);
3174 3175

	if (len != sizeof(*cp))
3176 3177
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
				       MGMT_STATUS_INVALID_PARAMS);
3178

3179
	return user_pairing_resp(sk, hdev, &cp->addr,
3180 3181
				 MGMT_OP_USER_CONFIRM_REPLY,
				 HCI_OP_USER_CONFIRM_REPLY, 0);
3182 3183
}

3184
static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
3185
				  void *data, u16 len)
3186
{
3187
	struct mgmt_cp_user_confirm_neg_reply *cp = data;
3188

3189
	bt_dev_dbg(hdev, "sock %p", sk);
3190

3191
	return user_pairing_resp(sk, hdev, &cp->addr,
3192 3193
				 MGMT_OP_USER_CONFIRM_NEG_REPLY,
				 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
3194 3195
}

3196 3197
static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3198
{
3199
	struct mgmt_cp_user_passkey_reply *cp = data;
3200

3201
	bt_dev_dbg(hdev, "sock %p", sk);
3202

3203
	return user_pairing_resp(sk, hdev, &cp->addr,
3204 3205
				 MGMT_OP_USER_PASSKEY_REPLY,
				 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
3206 3207
}

3208
static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
3209
				  void *data, u16 len)
3210
{
3211
	struct mgmt_cp_user_passkey_neg_reply *cp = data;
3212

3213
	bt_dev_dbg(hdev, "sock %p", sk);
3214

3215
	return user_pairing_resp(sk, hdev, &cp->addr,
3216 3217
				 MGMT_OP_USER_PASSKEY_NEG_REPLY,
				 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
3218 3219
}

3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248
static void adv_expire(struct hci_dev *hdev, u32 flags)
{
	struct adv_info *adv_instance;
	struct hci_request req;
	int err;

	adv_instance = hci_find_adv_instance(hdev, hdev->cur_adv_instance);
	if (!adv_instance)
		return;

	/* stop if current instance doesn't need to be changed */
	if (!(adv_instance->flags & flags))
		return;

	cancel_adv_timeout(hdev);

	adv_instance = hci_get_next_instance(hdev, adv_instance->instance);
	if (!adv_instance)
		return;

	hci_req_init(&req, hdev);
	err = __hci_req_schedule_adv_instance(&req, adv_instance->instance,
					      true);
	if (err)
		return;

	hci_req_run(&req, NULL);
}

3249
static void set_name_complete(struct hci_dev *hdev, void *data, int err)
3250
{
3251 3252 3253
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_set_local_name *cp = cmd->param;
	u8 status = mgmt_status(err);
3254

3255
	bt_dev_dbg(hdev, "err %d", err);
3256

3257
	if (status) {
3258
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3259
				status);
3260
	} else {
3261 3262
		mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
				  cp, sizeof(*cp));
3263

3264 3265 3266 3267
		if (hci_dev_test_flag(hdev, HCI_LE_ADV))
			adv_expire(hdev, MGMT_ADV_FLAG_LOCAL_NAME);
	}

3268
	mgmt_pending_remove(cmd);
3269
}
3270

3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284
static int set_name_sync(struct hci_dev *hdev, void *data)
{
	if (lmp_bredr_capable(hdev)) {
		hci_update_name_sync(hdev);
		hci_update_eir_sync(hdev);
	}

	/* The name is stored in the scan response data and so
	 * no need to update the advertising data here.
	 */
	if (lmp_le_capable(hdev) && hci_dev_test_flag(hdev, HCI_ADVERTISING))
		hci_update_scan_rsp_data_sync(hdev, hdev->cur_adv_instance);

	return 0;
3285 3286
}

3287
static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
3288
			  u16 len)
3289
{
3290
	struct mgmt_cp_set_local_name *cp = data;
3291
	struct mgmt_pending_cmd *cmd;
3292 3293
	int err;

3294
	bt_dev_dbg(hdev, "sock %p", sk);
3295

3296
	hci_dev_lock(hdev);
3297

3298 3299 3300 3301 3302 3303
	/* 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))) {
3304 3305
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
					data, len);
3306 3307 3308
		goto failed;
	}

3309
	memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
3310

3311
	if (!hdev_is_powered(hdev)) {
3312
		memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3313

3314 3315
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
					data, len);
3316 3317 3318
		if (err < 0)
			goto failed;

3319 3320
		err = mgmt_limited_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data,
					 len, HCI_MGMT_LOCAL_NAME_EVENTS, sk);
3321
		ext_info_changed(hdev, sk);
3322

3323 3324 3325
		goto failed;
	}

3326
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
3327
	if (!cmd)
3328
		err = -ENOMEM;
3329 3330 3331
	else
		err = hci_cmd_sync_queue(hdev, set_name_sync, cmd,
					 set_name_complete);
3332

3333 3334 3335
	if (err < 0) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
				      MGMT_STATUS_FAILED);
3336

3337 3338
		if (cmd)
			mgmt_pending_remove(cmd);
3339

3340
		goto failed;
3341 3342
	}

3343
	memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3344 3345

failed:
3346
	hci_dev_unlock(hdev);
3347 3348 3349
	return err;
}

3350 3351 3352 3353
static int set_appearance(struct sock *sk, struct hci_dev *hdev, void *data,
			  u16 len)
{
	struct mgmt_cp_set_appearance *cp = data;
3354
	u16 appearance;
3355 3356
	int err;

3357
	bt_dev_dbg(hdev, "sock %p", sk);
3358

3359 3360 3361 3362
	if (!lmp_le_capable(hdev))
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_APPEARANCE,
				       MGMT_STATUS_NOT_SUPPORTED);

3363
	appearance = le16_to_cpu(cp->appearance);
3364 3365 3366

	hci_dev_lock(hdev);

3367 3368
	if (hdev->appearance != appearance) {
		hdev->appearance = appearance;
3369 3370 3371

		if (hci_dev_test_flag(hdev, HCI_LE_ADV))
			adv_expire(hdev, MGMT_ADV_FLAG_APPEARANCE);
3372 3373

		ext_info_changed(hdev, sk);
3374 3375 3376 3377 3378 3379 3380 3381 3382 3383
	}

	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_APPEARANCE, 0, NULL,
				0);

	hci_dev_unlock(hdev);

	return err;
}

3384 3385 3386
static int get_phy_configuration(struct sock *sk, struct hci_dev *hdev,
				 void *data, u16 len)
{
R
Reo Shiseki 已提交
3387
	struct mgmt_rp_get_phy_configuration rp;
3388

3389
	bt_dev_dbg(hdev, "sock %p", sk);
3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404

	hci_dev_lock(hdev);

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

	rp.supported_phys = cpu_to_le32(get_supported_phys(hdev));
	rp.selected_phys = cpu_to_le32(get_selected_phys(hdev));
	rp.configurable_phys = cpu_to_le32(get_configurable_phys(hdev));

	hci_dev_unlock(hdev);

	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_PHY_CONFIGURATION, 0,
				 &rp, sizeof(rp));
}

3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416
int mgmt_phy_configuration_changed(struct hci_dev *hdev, struct sock *skip)
{
	struct mgmt_ev_phy_configuration_changed ev;

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

	ev.selected_phys = cpu_to_le32(get_selected_phys(hdev));

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

3417 3418 3419 3420 3421
static void set_default_phy_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode, struct sk_buff *skb)
{
	struct mgmt_pending_cmd *cmd;

3422
	bt_dev_dbg(hdev, "status 0x%02x", status);
3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437

	hci_dev_lock(hdev);

	cmd = pending_find(MGMT_OP_SET_PHY_CONFIGURATION, hdev);
	if (!cmd)
		goto unlock;

	if (status) {
		mgmt_cmd_status(cmd->sk, hdev->id,
				MGMT_OP_SET_PHY_CONFIGURATION,
				mgmt_status(status));
	} else {
		mgmt_cmd_complete(cmd->sk, hdev->id,
				  MGMT_OP_SET_PHY_CONFIGURATION, 0,
				  NULL, 0);
3438 3439

		mgmt_phy_configuration_changed(hdev, cmd->sk);
3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450
	}

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

static int set_phy_configuration(struct sock *sk, struct hci_dev *hdev,
				 void *data, u16 len)
{
R
Reo Shiseki 已提交
3451
	struct mgmt_cp_set_phy_configuration *cp = data;
3452 3453 3454 3455 3456
	struct hci_cp_le_set_default_phy cp_phy;
	struct mgmt_pending_cmd *cmd;
	struct hci_request req;
	u32 selected_phys, configurable_phys, supported_phys, unconfigure_phys;
	u16 pkt_type = (HCI_DH1 | HCI_DM1);
3457
	bool changed = false;
3458 3459
	int err;

3460
	bt_dev_dbg(hdev, "sock %p", sk);
3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538

	configurable_phys = get_configurable_phys(hdev);
	supported_phys = get_supported_phys(hdev);
	selected_phys = __le32_to_cpu(cp->selected_phys);

	if (selected_phys & ~supported_phys)
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_PHY_CONFIGURATION,
				       MGMT_STATUS_INVALID_PARAMS);

	unconfigure_phys = supported_phys & ~configurable_phys;

	if ((selected_phys & unconfigure_phys) != unconfigure_phys)
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_PHY_CONFIGURATION,
				       MGMT_STATUS_INVALID_PARAMS);

	if (selected_phys == get_selected_phys(hdev))
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_SET_PHY_CONFIGURATION,
					 0, NULL, 0);

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
		err = mgmt_cmd_status(sk, hdev->id,
				      MGMT_OP_SET_PHY_CONFIGURATION,
				      MGMT_STATUS_REJECTED);
		goto unlock;
	}

	if (pending_find(MGMT_OP_SET_PHY_CONFIGURATION, hdev)) {
		err = mgmt_cmd_status(sk, hdev->id,
				      MGMT_OP_SET_PHY_CONFIGURATION,
				      MGMT_STATUS_BUSY);
		goto unlock;
	}

	if (selected_phys & MGMT_PHY_BR_1M_3SLOT)
		pkt_type |= (HCI_DH3 | HCI_DM3);
	else
		pkt_type &= ~(HCI_DH3 | HCI_DM3);

	if (selected_phys & MGMT_PHY_BR_1M_5SLOT)
		pkt_type |= (HCI_DH5 | HCI_DM5);
	else
		pkt_type &= ~(HCI_DH5 | HCI_DM5);

	if (selected_phys & MGMT_PHY_EDR_2M_1SLOT)
		pkt_type &= ~HCI_2DH1;
	else
		pkt_type |= HCI_2DH1;

	if (selected_phys & MGMT_PHY_EDR_2M_3SLOT)
		pkt_type &= ~HCI_2DH3;
	else
		pkt_type |= HCI_2DH3;

	if (selected_phys & MGMT_PHY_EDR_2M_5SLOT)
		pkt_type &= ~HCI_2DH5;
	else
		pkt_type |= HCI_2DH5;

	if (selected_phys & MGMT_PHY_EDR_3M_1SLOT)
		pkt_type &= ~HCI_3DH1;
	else
		pkt_type |= HCI_3DH1;

	if (selected_phys & MGMT_PHY_EDR_3M_3SLOT)
		pkt_type &= ~HCI_3DH3;
	else
		pkt_type |= HCI_3DH3;

	if (selected_phys & MGMT_PHY_EDR_3M_5SLOT)
		pkt_type &= ~HCI_3DH5;
	else
		pkt_type |= HCI_3DH5;

3539
	if (pkt_type != hdev->pkt_type) {
3540
		hdev->pkt_type = pkt_type;
3541 3542
		changed = true;
	}
3543 3544 3545

	if ((selected_phys & MGMT_PHY_LE_MASK) ==
	    (get_selected_phys(hdev) & MGMT_PHY_LE_MASK)) {
3546 3547 3548
		if (changed)
			mgmt_phy_configuration_changed(hdev, sk);

3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_SET_PHY_CONFIGURATION,
					0, NULL, 0);

		goto unlock;
	}

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

	hci_req_init(&req, hdev);

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

	if (!(selected_phys & MGMT_PHY_LE_TX_MASK))
		cp_phy.all_phys |= 0x01;

	if (!(selected_phys & MGMT_PHY_LE_RX_MASK))
		cp_phy.all_phys |= 0x02;

	if (selected_phys & MGMT_PHY_LE_1M_TX)
		cp_phy.tx_phys |= HCI_LE_SET_PHY_1M;

	if (selected_phys & MGMT_PHY_LE_2M_TX)
		cp_phy.tx_phys |= HCI_LE_SET_PHY_2M;

	if (selected_phys & MGMT_PHY_LE_CODED_TX)
		cp_phy.tx_phys |= HCI_LE_SET_PHY_CODED;

	if (selected_phys & MGMT_PHY_LE_1M_RX)
		cp_phy.rx_phys |= HCI_LE_SET_PHY_1M;

	if (selected_phys & MGMT_PHY_LE_2M_RX)
		cp_phy.rx_phys |= HCI_LE_SET_PHY_2M;

	if (selected_phys & MGMT_PHY_LE_CODED_RX)
		cp_phy.rx_phys |= HCI_LE_SET_PHY_CODED;

	hci_req_add(&req, HCI_OP_LE_SET_DEFAULT_PHY, sizeof(cp_phy), &cp_phy);

	err = hci_req_run_skb(&req, set_default_phy_complete);
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);

	return err;
}

3603 3604 3605 3606 3607 3608 3609 3610 3611 3612
static int set_blocked_keys(struct sock *sk, struct hci_dev *hdev, void *data,
			    u16 len)
{
	int err = MGMT_STATUS_SUCCESS;
	struct mgmt_cp_set_blocked_keys *keys = data;
	const u16 max_key_count = ((U16_MAX - sizeof(*keys)) /
				   sizeof(struct mgmt_blocked_key_info));
	u16 key_count, expected_len;
	int i;

3613
	bt_dev_dbg(hdev, "sock %p", sk);
3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651

	key_count = __le16_to_cpu(keys->key_count);
	if (key_count > max_key_count) {
		bt_dev_err(hdev, "too big key_count value %u", key_count);
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BLOCKED_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
	}

	expected_len = struct_size(keys, keys, key_count);
	if (expected_len != len) {
		bt_dev_err(hdev, "expected %u bytes, got %u bytes",
			   expected_len, len);
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BLOCKED_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
	}

	hci_dev_lock(hdev);

	hci_blocked_keys_clear(hdev);

	for (i = 0; i < keys->key_count; ++i) {
		struct blocked_key *b = kzalloc(sizeof(*b), GFP_KERNEL);

		if (!b) {
			err = MGMT_STATUS_NO_RESOURCES;
			break;
		}

		b->type = keys->keys[i].type;
		memcpy(b->val, keys->keys[i].val, sizeof(b->val));
		list_add_rcu(&b->list, &hdev->blocked_keys);
	}
	hci_dev_unlock(hdev);

	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_BLOCKED_KEYS,
				err, NULL, 0);
}

3652 3653 3654 3655 3656 3657 3658
static int set_wideband_speech(struct sock *sk, struct hci_dev *hdev,
			       void *data, u16 len)
{
	struct mgmt_mode *cp = data;
	int err;
	bool changed = false;

3659
	bt_dev_dbg(hdev, "sock %p", sk);
3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707

	if (!test_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks))
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_WIDEBAND_SPEECH,
				       MGMT_STATUS_NOT_SUPPORTED);

	if (cp->val != 0x00 && cp->val != 0x01)
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_WIDEBAND_SPEECH,
				       MGMT_STATUS_INVALID_PARAMS);

	hci_dev_lock(hdev);

	if (pending_find(MGMT_OP_SET_WIDEBAND_SPEECH, hdev)) {
		err = mgmt_cmd_status(sk, hdev->id,
				      MGMT_OP_SET_WIDEBAND_SPEECH,
				      MGMT_STATUS_BUSY);
		goto unlock;
	}

	if (hdev_is_powered(hdev) &&
	    !!cp->val != hci_dev_test_flag(hdev,
					   HCI_WIDEBAND_SPEECH_ENABLED)) {
		err = mgmt_cmd_status(sk, hdev->id,
				      MGMT_OP_SET_WIDEBAND_SPEECH,
				      MGMT_STATUS_REJECTED);
		goto unlock;
	}

	if (cp->val)
		changed = !hci_dev_test_and_set_flag(hdev,
						   HCI_WIDEBAND_SPEECH_ENABLED);
	else
		changed = hci_dev_test_and_clear_flag(hdev,
						   HCI_WIDEBAND_SPEECH_ENABLED);

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

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

unlock:
	hci_dev_unlock(hdev);
	return err;
}

3708 3709
static int read_controller_cap(struct sock *sk, struct hci_dev *hdev,
			       void *data, u16 data_len)
3710
{
3711 3712 3713
	char buf[20];
	struct mgmt_rp_read_controller_cap *rp = (void *)buf;
	u16 cap_len = 0;
3714
	u8 flags = 0;
3715
	u8 tx_power_range[2];
3716 3717 3718 3719 3720 3721 3722 3723 3724

	bt_dev_dbg(hdev, "sock %p", sk);

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

	hci_dev_lock(hdev);

	/* When the Read Simple Pairing Options command is supported, then
	 * the remote public key validation is supported.
3725 3726 3727
	 *
	 * Alternatively, when Microsoft extensions are available, they can
	 * indicate support for public key validation as well.
3728
	 */
3729
	if ((hdev->commands[41] & 0x08) || msft_curve_validity(hdev))
3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741
		flags |= 0x01;	/* Remote public key validation (BR/EDR) */

	flags |= 0x02;		/* Remote public key validation (LE) */

	/* When the Read Encryption Key Size command is supported, then the
	 * encryption key size is enforced.
	 */
	if (hdev->commands[20] & 0x10)
		flags |= 0x04;	/* Encryption key size enforcement (BR/EDR) */

	flags |= 0x08;		/* Encryption key size enforcement (LE) */

3742 3743
	cap_len = eir_append_data(rp->cap, cap_len, MGMT_CAP_SEC_FLAGS,
				  &flags, 1);
3744 3745 3746 3747 3748

	/* When the Read Simple Pairing Options command is supported, then
	 * also max encryption key size information is provided.
	 */
	if (hdev->commands[41] & 0x08)
3749 3750
		cap_len = eir_append_le16(rp->cap, cap_len,
					  MGMT_CAP_MAX_ENC_KEY_SIZE,
3751 3752
					  hdev->max_enc_key_size);

3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765
	cap_len = eir_append_le16(rp->cap, cap_len,
				  MGMT_CAP_SMP_MAX_ENC_KEY_SIZE,
				  SMP_MAX_ENC_KEY_SIZE);

	/* Append the min/max LE tx power parameters if we were able to fetch
	 * it from the controller
	 */
	if (hdev->commands[38] & 0x80) {
		memcpy(&tx_power_range[0], &hdev->min_le_tx_power, 1);
		memcpy(&tx_power_range[1], &hdev->max_le_tx_power, 1);
		cap_len = eir_append_data(rp->cap, cap_len, MGMT_CAP_LE_TX_PWR,
					  tx_power_range, 2);
	}
3766

3767
	rp->cap_len = cpu_to_le16(cap_len);
3768 3769 3770

	hci_dev_unlock(hdev);

3771 3772
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONTROLLER_CAP, 0,
				 rp, sizeof(*rp) + cap_len);
3773 3774
}

3775 3776 3777 3778 3779 3780 3781 3782
#ifdef CONFIG_BT_FEATURE_DEBUG
/* d4992530-b9ec-469f-ab01-6c481c47da1c */
static const u8 debug_uuid[16] = {
	0x1c, 0xda, 0x47, 0x1c, 0x48, 0x6c, 0x01, 0xab,
	0x9f, 0x46, 0xec, 0xb9, 0x30, 0x25, 0x99, 0xd4,
};
#endif

3783 3784 3785 3786 3787 3788
/* 330859bc-7506-492d-9370-9a6f0614037f */
static const u8 quality_report_uuid[16] = {
	0x7f, 0x03, 0x14, 0x06, 0x6f, 0x9a, 0x70, 0x93,
	0x2d, 0x49, 0x06, 0x75, 0xbc, 0x59, 0x08, 0x33,
};

3789 3790 3791 3792 3793 3794
/* a6695ace-ee7f-4fb9-881a-5fac66c629af */
static const u8 offload_codecs_uuid[16] = {
	0xaf, 0x29, 0xc6, 0x66, 0xac, 0x5f, 0x1a, 0x88,
	0xb9, 0x4f, 0x7f, 0xee, 0xce, 0x5a, 0x69, 0xa6,
};

3795 3796 3797 3798 3799 3800
/* 671b10b5-42c0-4696-9227-eb28d1b049d6 */
static const u8 simult_central_periph_uuid[16] = {
	0xd6, 0x49, 0xb0, 0xd1, 0x28, 0xeb, 0x27, 0x92,
	0x96, 0x46, 0xc0, 0x42, 0xb5, 0x10, 0x1b, 0x67,
};

3801 3802 3803 3804 3805 3806
/* 15c0a148-c273-11ea-b3de-0242ac130004 */
static const u8 rpa_resolution_uuid[16] = {
	0x04, 0x00, 0x13, 0xac, 0x42, 0x02, 0xde, 0xb3,
	0xea, 0x11, 0x73, 0xc2, 0x48, 0xa1, 0xc0, 0x15,
};

3807 3808 3809
static int read_exp_features_info(struct sock *sk, struct hci_dev *hdev,
				  void *data, u16 data_len)
{
3810
	char buf[102];   /* Enough space for 5 features: 2 + 20 * 5 */
3811 3812
	struct mgmt_rp_read_exp_features_info *rp = (void *)buf;
	u16 idx = 0;
3813
	u32 flags;
3814 3815 3816 3817 3818

	bt_dev_dbg(hdev, "sock %p", sk);

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

3819 3820
#ifdef CONFIG_BT_FEATURE_DEBUG
	if (!hdev) {
3821
		flags = bt_dbg_get() ? BIT(0) : 0;
3822 3823 3824 3825 3826 3827 3828

		memcpy(rp->features[idx].uuid, debug_uuid, 16);
		rp->features[idx].flags = cpu_to_le32(flags);
		idx++;
	}
#endif

3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842
	if (hdev) {
		if (test_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks) &&
		    (hdev->le_states[4] & 0x08) &&	/* Central */
		    (hdev->le_states[4] & 0x40) &&	/* Peripheral */
		    (hdev->le_states[3] & 0x10))	/* Simultaneous */
			flags = BIT(0);
		else
			flags = 0;

		memcpy(rp->features[idx].uuid, simult_central_periph_uuid, 16);
		rp->features[idx].flags = cpu_to_le32(flags);
		idx++;
	}

3843
	if (hdev && ll_privacy_capable(hdev)) {
3844 3845 3846 3847 3848 3849 3850 3851 3852 3853
		if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
			flags = BIT(0) | BIT(1);
		else
			flags = BIT(1);

		memcpy(rp->features[idx].uuid, rpa_resolution_uuid, 16);
		rp->features[idx].flags = cpu_to_le32(flags);
		idx++;
	}

3854 3855
	if (hdev && hdev->set_quality_report) {
		if (hci_dev_test_flag(hdev, HCI_QUALITY_REPORT))
3856
			flags = BIT(0);
3857
		else
3858
			flags = 0;
3859

3860 3861 3862 3863 3864
		memcpy(rp->features[idx].uuid, quality_report_uuid, 16);
		rp->features[idx].flags = cpu_to_le32(flags);
		idx++;
	}

3865 3866
	if (hdev && hdev->get_data_path_id) {
		if (hci_dev_test_flag(hdev, HCI_OFFLOAD_CODECS_ENABLED))
3867
			flags = BIT(0);
3868
		else
3869
			flags = 0;
3870

3871 3872 3873 3874 3875
		memcpy(rp->features[idx].uuid, offload_codecs_uuid, 16);
		rp->features[idx].flags = cpu_to_le32(flags);
		idx++;
	}

3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887
	rp->feature_count = cpu_to_le16(idx);

	/* After reading the experimental features information, enable
	 * the events to update client on any future change.
	 */
	hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);

	return mgmt_cmd_complete(sk, hdev ? hdev->id : MGMT_INDEX_NONE,
				 MGMT_OP_READ_EXP_FEATURES_INFO,
				 0, rp, sizeof(*rp) + (20 * idx));
}

3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902
static int exp_ll_privacy_feature_changed(bool enabled, struct hci_dev *hdev,
					  struct sock *skip)
{
	struct mgmt_ev_exp_feature_changed ev;

	memset(&ev, 0, sizeof(ev));
	memcpy(ev.uuid, rpa_resolution_uuid, 16);
	ev.flags = cpu_to_le32((enabled ? BIT(0) : 0) | BIT(1));

	return mgmt_limited_event(MGMT_EV_EXP_FEATURE_CHANGED, hdev,
				  &ev, sizeof(ev),
				  HCI_MGMT_EXP_FEATURE_EVENTS, skip);

}

3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917
#ifdef CONFIG_BT_FEATURE_DEBUG
static int exp_debug_feature_changed(bool enabled, struct sock *skip)
{
	struct mgmt_ev_exp_feature_changed ev;

	memset(&ev, 0, sizeof(ev));
	memcpy(ev.uuid, debug_uuid, 16);
	ev.flags = cpu_to_le32(enabled ? BIT(0) : 0);

	return mgmt_limited_event(MGMT_EV_EXP_FEATURE_CHANGED, NULL,
				  &ev, sizeof(ev),
				  HCI_MGMT_EXP_FEATURE_EVENTS, skip);
}
#endif

3918 3919 3920
static int exp_quality_report_feature_changed(bool enabled,
					      struct hci_dev *hdev,
					      struct sock *skip)
3921 3922 3923 3924 3925 3926 3927
{
	struct mgmt_ev_exp_feature_changed ev;

	memset(&ev, 0, sizeof(ev));
	memcpy(ev.uuid, quality_report_uuid, 16);
	ev.flags = cpu_to_le32(enabled ? BIT(0) : 0);

3928
	return mgmt_limited_event(MGMT_EV_EXP_FEATURE_CHANGED, hdev,
3929 3930 3931 3932
				  &ev, sizeof(ev),
				  HCI_MGMT_EXP_FEATURE_EVENTS, skip);
}

3933 3934 3935 3936 3937 3938 3939 3940 3941
#define EXP_FEAT(_uuid, _set_func)	\
{					\
	.uuid = _uuid,			\
	.set_func = _set_func,		\
}

/* The zero key uuid is special. Multiple exp features are set through it. */
static int set_zero_key_func(struct sock *sk, struct hci_dev *hdev,
			     struct mgmt_cp_set_exp_feature *cp, u16 data_len)
3942 3943 3944
{
	struct mgmt_rp_set_exp_feature rp;

3945 3946
	memset(rp.uuid, 0, 16);
	rp.flags = cpu_to_le32(0);
3947

3948
#ifdef CONFIG_BT_FEATURE_DEBUG
3949 3950
	if (!hdev) {
		bool changed = bt_dbg_get();
3951

3952
		bt_dbg_set(false);
3953

3954 3955 3956
		if (changed)
			exp_debug_feature_changed(false, sk);
	}
3957 3958
#endif

3959 3960
	if (hdev && use_ll_privacy(hdev) && !hdev_is_powered(hdev)) {
		bool changed = hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY);
3961

3962
		hci_dev_clear_flag(hdev, HCI_ENABLE_LL_PRIVACY);
3963

3964 3965 3966
		if (changed)
			exp_ll_privacy_feature_changed(false, hdev, sk);
	}
3967

3968
	hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
3969

3970 3971 3972 3973
	return mgmt_cmd_complete(sk, hdev ? hdev->id : MGMT_INDEX_NONE,
				 MGMT_OP_SET_EXP_FEATURE, 0,
				 &rp, sizeof(rp));
}
3974

3975
#ifdef CONFIG_BT_FEATURE_DEBUG
3976 3977 3978 3979
static int set_debug_func(struct sock *sk, struct hci_dev *hdev,
			  struct mgmt_cp_set_exp_feature *cp, u16 data_len)
{
	struct mgmt_rp_set_exp_feature rp;
3980

3981 3982
	bool val, changed;
	int err;
3983

3984 3985 3986 3987 3988
	/* Command requires to use the non-controller index */
	if (hdev)
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_INDEX);
3989

3990 3991 3992 3993 3994
	/* Parameters are limited to a single octet */
	if (data_len != MGMT_SET_EXP_FEATURE_SIZE + 1)
		return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_PARAMS);
3995

3996 3997 3998 3999 4000
	/* Only boolean on/off is supported */
	if (cp->param[0] != 0x00 && cp->param[0] != 0x01)
		return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_PARAMS);
4001

4002 4003 4004
	val = !!cp->param[0];
	changed = val ? !bt_dbg_get() : bt_dbg_get();
	bt_dbg_set(val);
4005

4006 4007
	memcpy(rp.uuid, debug_uuid, 16);
	rp.flags = cpu_to_le32(val ? BIT(0) : 0);
4008

4009
	hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
4010

4011 4012 4013
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
				MGMT_OP_SET_EXP_FEATURE, 0,
				&rp, sizeof(rp));
4014

4015 4016 4017 4018 4019
	if (changed)
		exp_debug_feature_changed(val, sk);

	return err;
}
4020 4021
#endif

4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035
static int set_rpa_resolution_func(struct sock *sk, struct hci_dev *hdev,
				   struct mgmt_cp_set_exp_feature *cp,
				   u16 data_len)
{
	struct mgmt_rp_set_exp_feature rp;
	bool val, changed;
	int err;
	u32 flags;

	/* Command requires to use the controller index */
	if (!hdev)
		return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_INDEX);
4036

4037 4038 4039 4040 4041
	/* Changes can only be made when controller is powered down */
	if (hdev_is_powered(hdev))
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_REJECTED);
4042

4043 4044 4045 4046 4047
	/* Parameters are limited to a single octet */
	if (data_len != MGMT_SET_EXP_FEATURE_SIZE + 1)
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_PARAMS);
4048

4049 4050 4051 4052 4053
	/* Only boolean on/off is supported */
	if (cp->param[0] != 0x00 && cp->param[0] != 0x01)
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_PARAMS);
4054

4055
	val = !!cp->param[0];
4056

4057 4058 4059 4060
	if (val) {
		changed = !hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY);
		hci_dev_set_flag(hdev, HCI_ENABLE_LL_PRIVACY);
		hci_dev_clear_flag(hdev, HCI_ADVERTISING);
4061

4062 4063 4064 4065 4066
		/* Enable LL privacy + supported settings changed */
		flags = BIT(0) | BIT(1);
	} else {
		changed = hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY);
		hci_dev_clear_flag(hdev, HCI_ENABLE_LL_PRIVACY);
4067

4068 4069 4070
		/* Disable LL privacy + supported settings changed */
		flags = BIT(1);
	}
4071

4072 4073
	memcpy(rp.uuid, rpa_resolution_uuid, 16);
	rp.flags = cpu_to_le32(flags);
4074

4075
	hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
4076

4077 4078 4079
	err = mgmt_cmd_complete(sk, hdev->id,
				MGMT_OP_SET_EXP_FEATURE, 0,
				&rp, sizeof(rp));
4080

4081 4082
	if (changed)
		exp_ll_privacy_feature_changed(val, hdev, sk);
4083

4084 4085
	return err;
}
4086

4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148
static int set_quality_report_func(struct sock *sk, struct hci_dev *hdev,
				   struct mgmt_cp_set_exp_feature *cp,
				   u16 data_len)
{
	struct mgmt_rp_set_exp_feature rp;
	bool val, changed;
	int err;

	/* Command requires to use a valid controller index */
	if (!hdev)
		return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_INDEX);

	/* Parameters are limited to a single octet */
	if (data_len != MGMT_SET_EXP_FEATURE_SIZE + 1)
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_PARAMS);

	/* Only boolean on/off is supported */
	if (cp->param[0] != 0x00 && cp->param[0] != 0x01)
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_PARAMS);

	hci_req_sync_lock(hdev);

	val = !!cp->param[0];
	changed = (val != hci_dev_test_flag(hdev, HCI_QUALITY_REPORT));

	if (!hdev->set_quality_report) {
		err = mgmt_cmd_status(sk, hdev->id,
				      MGMT_OP_SET_EXP_FEATURE,
				      MGMT_STATUS_NOT_SUPPORTED);
		goto unlock_quality_report;
	}

	if (changed) {
		err = hdev->set_quality_report(hdev, val);
		if (err) {
			err = mgmt_cmd_status(sk, hdev->id,
					      MGMT_OP_SET_EXP_FEATURE,
					      MGMT_STATUS_FAILED);
			goto unlock_quality_report;
		}
		if (val)
			hci_dev_set_flag(hdev, HCI_QUALITY_REPORT);
		else
			hci_dev_clear_flag(hdev, HCI_QUALITY_REPORT);
	}

	bt_dev_dbg(hdev, "quality report enable %d changed %d", val, changed);

	memcpy(rp.uuid, quality_report_uuid, 16);
	rp.flags = cpu_to_le32(val ? BIT(0) : 0);
	hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
	err = mgmt_cmd_complete(sk, hdev->id,
				MGMT_OP_SET_EXP_FEATURE, 0,
				&rp, sizeof(rp));

	if (changed)
4149
		exp_quality_report_feature_changed(val, hdev, sk);
4150 4151 4152 4153 4154 4155

unlock_quality_report:
	hci_req_sync_unlock(hdev);
	return err;
}

4156 4157
static int exp_offload_codec_feature_changed(bool enabled, struct hci_dev *hdev,
					     struct sock *skip)
4158 4159 4160 4161 4162 4163 4164
{
	struct mgmt_ev_exp_feature_changed ev;

	memset(&ev, 0, sizeof(ev));
	memcpy(ev.uuid, offload_codecs_uuid, 16);
	ev.flags = cpu_to_le32(enabled ? BIT(0) : 0);

4165
	return mgmt_limited_event(MGMT_EV_EXP_FEATURE_CHANGED, hdev,
4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222
				  &ev, sizeof(ev),
				  HCI_MGMT_EXP_FEATURE_EVENTS, skip);
}

static int set_offload_codec_func(struct sock *sk, struct hci_dev *hdev,
				  struct mgmt_cp_set_exp_feature *cp,
				  u16 data_len)
{
	bool val, changed;
	int err;
	struct mgmt_rp_set_exp_feature rp;

	/* Command requires to use a valid controller index */
	if (!hdev)
		return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_INDEX);

	/* Parameters are limited to a single octet */
	if (data_len != MGMT_SET_EXP_FEATURE_SIZE + 1)
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_PARAMS);

	/* Only boolean on/off is supported */
	if (cp->param[0] != 0x00 && cp->param[0] != 0x01)
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_INVALID_PARAMS);

	val = !!cp->param[0];
	changed = (val != hci_dev_test_flag(hdev, HCI_OFFLOAD_CODECS_ENABLED));

	if (!hdev->get_data_path_id) {
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_EXP_FEATURE,
				       MGMT_STATUS_NOT_SUPPORTED);
	}

	if (changed) {
		if (val)
			hci_dev_set_flag(hdev, HCI_OFFLOAD_CODECS_ENABLED);
		else
			hci_dev_clear_flag(hdev, HCI_OFFLOAD_CODECS_ENABLED);
	}

	bt_dev_info(hdev, "offload codecs enable %d changed %d",
		    val, changed);

	memcpy(rp.uuid, offload_codecs_uuid, 16);
	rp.flags = cpu_to_le32(val ? BIT(0) : 0);
	hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
	err = mgmt_cmd_complete(sk, hdev->id,
				MGMT_OP_SET_EXP_FEATURE, 0,
				&rp, sizeof(rp));

	if (changed)
4223
		exp_offload_codec_feature_changed(val, hdev, sk);
4224 4225 4226 4227

	return err;
}

4228 4229 4230 4231 4232 4233 4234 4235 4236 4237
static const struct mgmt_exp_feature {
	const u8 *uuid;
	int (*set_func)(struct sock *sk, struct hci_dev *hdev,
			struct mgmt_cp_set_exp_feature *cp, u16 data_len);
} exp_features[] = {
	EXP_FEAT(ZERO_KEY, set_zero_key_func),
#ifdef CONFIG_BT_FEATURE_DEBUG
	EXP_FEAT(debug_uuid, set_debug_func),
#endif
	EXP_FEAT(rpa_resolution_uuid, set_rpa_resolution_func),
4238
	EXP_FEAT(quality_report_uuid, set_quality_report_func),
4239
	EXP_FEAT(offload_codecs_uuid, set_offload_codec_func),
4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255

	/* end with a null feature */
	EXP_FEAT(NULL, NULL)
};

static int set_exp_feature(struct sock *sk, struct hci_dev *hdev,
			   void *data, u16 data_len)
{
	struct mgmt_cp_set_exp_feature *cp = data;
	size_t i = 0;

	bt_dev_dbg(hdev, "sock %p", sk);

	for (i = 0; exp_features[i].uuid; i++) {
		if (!memcmp(cp->uuid, exp_features[i].uuid, 16))
			return exp_features[i].set_func(sk, hdev, cp, data_len);
4256 4257
	}

4258 4259 4260 4261 4262
	return mgmt_cmd_status(sk, hdev ? hdev->id : MGMT_INDEX_NONE,
			       MGMT_OP_SET_EXP_FEATURE,
			       MGMT_STATUS_NOT_SUPPORTED);
}

4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278
#define SUPPORTED_DEVICE_FLAGS() ((1U << HCI_CONN_FLAG_MAX) - 1)

static int get_device_flags(struct sock *sk, struct hci_dev *hdev, void *data,
			    u16 data_len)
{
	struct mgmt_cp_get_device_flags *cp = data;
	struct mgmt_rp_get_device_flags rp;
	struct bdaddr_list_with_flags *br_params;
	struct hci_conn_params *params;
	u32 supported_flags = SUPPORTED_DEVICE_FLAGS();
	u32 current_flags = 0;
	u8 status = MGMT_STATUS_INVALID_PARAMS;

	bt_dev_dbg(hdev, "Get device flags %pMR (type 0x%x)\n",
		   &cp->addr.bdaddr, cp->addr.type);

4279 4280
	hci_dev_lock(hdev);

4281 4282
	memset(&rp, 0, sizeof(rp));

4283
	if (cp->addr.type == BDADDR_BREDR) {
4284
		br_params = hci_bdaddr_list_lookup_with_flags(&hdev->accept_list,
4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308
							      &cp->addr.bdaddr,
							      cp->addr.type);
		if (!br_params)
			goto done;

		current_flags = br_params->current_flags;
	} else {
		params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
						le_addr_type(cp->addr.type));

		if (!params)
			goto done;

		current_flags = params->current_flags;
	}

	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;
	rp.supported_flags = cpu_to_le32(supported_flags);
	rp.current_flags = cpu_to_le32(current_flags);

	status = MGMT_STATUS_SUCCESS;

done:
4309 4310
	hci_dev_unlock(hdev);

4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_DEVICE_FLAGS, status,
				&rp, sizeof(rp));
}

static void device_flags_changed(struct sock *sk, struct hci_dev *hdev,
				 bdaddr_t *bdaddr, u8 bdaddr_type,
				 u32 supported_flags, u32 current_flags)
{
	struct mgmt_ev_device_flags_changed ev;

	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = bdaddr_type;
	ev.supported_flags = cpu_to_le32(supported_flags);
	ev.current_flags = cpu_to_le32(current_flags);

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

static int set_device_flags(struct sock *sk, struct hci_dev *hdev, void *data,
			    u16 len)
{
	struct mgmt_cp_set_device_flags *cp = data;
	struct bdaddr_list_with_flags *br_params;
	struct hci_conn_params *params;
	u8 status = MGMT_STATUS_INVALID_PARAMS;
	u32 supported_flags = SUPPORTED_DEVICE_FLAGS();
	u32 current_flags = __le32_to_cpu(cp->current_flags);

	bt_dev_dbg(hdev, "Set device flags %pMR (type 0x%x) = 0x%x",
		   &cp->addr.bdaddr, cp->addr.type,
		   __le32_to_cpu(current_flags));

	if ((supported_flags | current_flags) != supported_flags) {
		bt_dev_warn(hdev, "Bad flag given (0x%x) vs supported (0x%0x)",
			    current_flags, supported_flags);
		goto done;
	}

4349 4350
	hci_dev_lock(hdev);

4351
	if (cp->addr.type == BDADDR_BREDR) {
4352
		br_params = hci_bdaddr_list_lookup_with_flags(&hdev->accept_list,
4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376
							      &cp->addr.bdaddr,
							      cp->addr.type);

		if (br_params) {
			br_params->current_flags = current_flags;
			status = MGMT_STATUS_SUCCESS;
		} else {
			bt_dev_warn(hdev, "No such BR/EDR device %pMR (0x%x)",
				    &cp->addr.bdaddr, cp->addr.type);
		}
	} else {
		params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
						le_addr_type(cp->addr.type));
		if (params) {
			params->current_flags = current_flags;
			status = MGMT_STATUS_SUCCESS;
		} else {
			bt_dev_warn(hdev, "No such LE device %pMR (0x%x)",
				    &cp->addr.bdaddr,
				    le_addr_type(cp->addr.type));
		}
	}

done:
4377 4378
	hci_dev_unlock(hdev);

4379 4380 4381 4382 4383 4384 4385 4386
	if (status == MGMT_STATUS_SUCCESS)
		device_flags_changed(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
				     supported_flags, current_flags);

	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_FLAGS, status,
				 &cp->addr, sizeof(cp->addr));
}

4387 4388 4389 4390 4391 4392 4393 4394 4395 4396
static void mgmt_adv_monitor_added(struct sock *sk, struct hci_dev *hdev,
				   u16 handle)
{
	struct mgmt_ev_adv_monitor_added ev;

	ev.monitor_handle = cpu_to_le16(handle);

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

4397
void mgmt_adv_monitor_removed(struct hci_dev *hdev, u16 handle)
4398
{
4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410
	struct mgmt_ev_adv_monitor_removed ev;
	struct mgmt_pending_cmd *cmd;
	struct sock *sk_skip = NULL;
	struct mgmt_cp_remove_adv_monitor *cp;

	cmd = pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev);
	if (cmd) {
		cp = cmd->param;

		if (cp->monitor_handle)
			sk_skip = cmd->sk;
	}
4411 4412 4413

	ev.monitor_handle = cpu_to_le16(handle);

4414
	mgmt_event(MGMT_EV_ADV_MONITOR_REMOVED, hdev, &ev, sizeof(ev), sk_skip);
4415 4416
}

4417 4418 4419 4420 4421
static int read_adv_mon_features(struct sock *sk, struct hci_dev *hdev,
				 void *data, u16 len)
{
	struct adv_monitor *monitor = NULL;
	struct mgmt_rp_read_adv_monitor_features *rp = NULL;
4422
	int handle, err;
4423 4424
	size_t rp_size = 0;
	__u32 supported = 0;
4425
	__u32 enabled = 0;
4426 4427 4428 4429 4430 4431 4432
	__u16 num_handles = 0;
	__u16 handles[HCI_MAX_ADV_MONITOR_NUM_HANDLES];

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

	hci_dev_lock(hdev);

4433
	if (msft_monitor_supported(hdev))
4434 4435
		supported |= MGMT_ADV_MONITOR_FEATURE_MASK_OR_PATTERNS;

4436
	idr_for_each_entry(&hdev->adv_monitors_idr, monitor, handle)
4437 4438 4439 4440 4441 4442 4443 4444 4445
		handles[num_handles++] = monitor->handle;

	hci_dev_unlock(hdev);

	rp_size = sizeof(*rp) + (num_handles * sizeof(u16));
	rp = kmalloc(rp_size, GFP_KERNEL);
	if (!rp)
		return -ENOMEM;

4446 4447 4448
	/* All supported features are currently enabled */
	enabled = supported;

4449
	rp->supported_features = cpu_to_le32(supported);
4450
	rp->enabled_features = cpu_to_le32(enabled);
4451 4452 4453 4454 4455 4456
	rp->max_num_handles = cpu_to_le16(HCI_MAX_ADV_MONITOR_NUM_HANDLES);
	rp->max_num_patterns = HCI_MAX_ADV_MONITOR_NUM_PATTERNS;
	rp->num_handles = cpu_to_le16(num_handles);
	if (num_handles)
		memcpy(&rp->handles, &handles, (num_handles * sizeof(u16)));

4457 4458 4459 4460 4461 4462 4463
	err = mgmt_cmd_complete(sk, hdev->id,
				MGMT_OP_READ_ADV_MONITOR_FEATURES,
				MGMT_STATUS_SUCCESS, rp, rp_size);

	kfree(rp);

	return err;
4464 4465
}

4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489
int mgmt_add_adv_patterns_monitor_complete(struct hci_dev *hdev, u8 status)
{
	struct mgmt_rp_add_adv_patterns_monitor rp;
	struct mgmt_pending_cmd *cmd;
	struct adv_monitor *monitor;
	int err = 0;

	hci_dev_lock(hdev);

	cmd = pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI, hdev);
	if (!cmd) {
		cmd = pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR, hdev);
		if (!cmd)
			goto done;
	}

	monitor = cmd->user_data;
	rp.monitor_handle = cpu_to_le16(monitor->handle);

	if (!status) {
		mgmt_adv_monitor_added(cmd->sk, hdev, monitor->handle);
		hdev->adv_monitors_cnt++;
		if (monitor->state == ADV_MONITOR_STATE_NOT_REGISTERED)
			monitor->state = ADV_MONITOR_STATE_REGISTERED;
4490
		hci_update_passive_scan(hdev);
4491 4492 4493 4494 4495 4496 4497 4498
	}

	err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
				mgmt_status(status), &rp, sizeof(rp));
	mgmt_pending_remove(cmd);

done:
	hci_dev_unlock(hdev);
4499
	bt_dev_dbg(hdev, "add monitor %d complete, status %u",
4500 4501 4502 4503 4504
		   rp.monitor_handle, status);

	return err;
}

4505
static int __add_adv_patterns_monitor(struct sock *sk, struct hci_dev *hdev,
4506 4507
				      struct adv_monitor *m, u8 status,
				      void *data, u16 len, u16 op)
4508 4509
{
	struct mgmt_rp_add_adv_patterns_monitor rp;
4510
	struct mgmt_pending_cmd *cmd;
4511
	int err;
4512 4513 4514
	bool pending;

	hci_dev_lock(hdev);
4515

4516
	if (status)
4517
		goto unlock;
4518

4519 4520 4521 4522 4523 4524 4525
	if (pending_find(MGMT_OP_SET_LE, hdev) ||
	    pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR, hdev) ||
	    pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI, hdev) ||
	    pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev)) {
		status = MGMT_STATUS_BUSY;
		goto unlock;
	}
4526

4527 4528 4529 4530 4531
	cmd = mgmt_pending_add(sk, op, hdev, data, len);
	if (!cmd) {
		status = MGMT_STATUS_NO_RESOURCES;
		goto unlock;
	}
4532

4533
	cmd->user_data = m;
4534
	pending = hci_add_adv_monitor(hdev, m, &err);
4535
	if (err) {
4536
		if (err == -ENOSPC || err == -ENOMEM)
4537
			status = MGMT_STATUS_NO_RESOURCES;
4538 4539
		else if (err == -EINVAL)
			status = MGMT_STATUS_INVALID_PARAMS;
4540 4541 4542
		else
			status = MGMT_STATUS_FAILED;

4543
		mgmt_pending_remove(cmd);
4544 4545 4546
		goto unlock;
	}

4547 4548 4549
	if (!pending) {
		mgmt_pending_remove(cmd);
		rp.monitor_handle = cpu_to_le16(m->handle);
4550
		mgmt_adv_monitor_added(sk, hdev, m->handle);
4551 4552
		m->state = ADV_MONITOR_STATE_REGISTERED;
		hdev->adv_monitors_cnt++;
4553

4554 4555 4556 4557
		hci_dev_unlock(hdev);
		return mgmt_cmd_complete(sk, hdev->id, op, MGMT_STATUS_SUCCESS,
					 &rp, sizeof(rp));
	}
4558

4559
	hci_dev_unlock(hdev);
4560

4561
	return 0;
4562 4563

unlock:
4564
	hci_free_adv_monitor(hdev, m);
4565
	hci_dev_unlock(hdev);
4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657
	return mgmt_cmd_status(sk, hdev->id, op, status);
}

static void parse_adv_monitor_rssi(struct adv_monitor *m,
				   struct mgmt_adv_rssi_thresholds *rssi)
{
	if (rssi) {
		m->rssi.low_threshold = rssi->low_threshold;
		m->rssi.low_threshold_timeout =
		    __le16_to_cpu(rssi->low_threshold_timeout);
		m->rssi.high_threshold = rssi->high_threshold;
		m->rssi.high_threshold_timeout =
		    __le16_to_cpu(rssi->high_threshold_timeout);
		m->rssi.sampling_period = rssi->sampling_period;
	} else {
		/* Default values. These numbers are the least constricting
		 * parameters for MSFT API to work, so it behaves as if there
		 * are no rssi parameter to consider. May need to be changed
		 * if other API are to be supported.
		 */
		m->rssi.low_threshold = -127;
		m->rssi.low_threshold_timeout = 60;
		m->rssi.high_threshold = -127;
		m->rssi.high_threshold_timeout = 0;
		m->rssi.sampling_period = 0;
	}
}

static u8 parse_adv_monitor_pattern(struct adv_monitor *m, u8 pattern_count,
				    struct mgmt_adv_pattern *patterns)
{
	u8 offset = 0, length = 0;
	struct adv_pattern *p = NULL;
	int i;

	for (i = 0; i < pattern_count; i++) {
		offset = patterns[i].offset;
		length = patterns[i].length;
		if (offset >= HCI_MAX_AD_LENGTH ||
		    length > HCI_MAX_AD_LENGTH ||
		    (offset + length) > HCI_MAX_AD_LENGTH)
			return MGMT_STATUS_INVALID_PARAMS;

		p = kmalloc(sizeof(*p), GFP_KERNEL);
		if (!p)
			return MGMT_STATUS_NO_RESOURCES;

		p->ad_type = patterns[i].ad_type;
		p->offset = patterns[i].offset;
		p->length = patterns[i].length;
		memcpy(p->value, patterns[i].value, p->length);

		INIT_LIST_HEAD(&p->list);
		list_add(&p->list, &m->patterns);
	}

	return MGMT_STATUS_SUCCESS;
}

static int add_adv_patterns_monitor(struct sock *sk, struct hci_dev *hdev,
				    void *data, u16 len)
{
	struct mgmt_cp_add_adv_patterns_monitor *cp = data;
	struct adv_monitor *m = NULL;
	u8 status = MGMT_STATUS_SUCCESS;
	size_t expected_size = sizeof(*cp);

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

	if (len <= sizeof(*cp)) {
		status = MGMT_STATUS_INVALID_PARAMS;
		goto done;
	}

	expected_size += cp->pattern_count * sizeof(struct mgmt_adv_pattern);
	if (len != expected_size) {
		status = MGMT_STATUS_INVALID_PARAMS;
		goto done;
	}

	m = kzalloc(sizeof(*m), GFP_KERNEL);
	if (!m) {
		status = MGMT_STATUS_NO_RESOURCES;
		goto done;
	}

	INIT_LIST_HEAD(&m->patterns);

	parse_adv_monitor_rssi(m, NULL);
	status = parse_adv_monitor_pattern(m, cp->pattern_count, cp->patterns);

done:
4658
	return __add_adv_patterns_monitor(sk, hdev, m, status, data, len,
4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694
					  MGMT_OP_ADD_ADV_PATTERNS_MONITOR);
}

static int add_adv_patterns_monitor_rssi(struct sock *sk, struct hci_dev *hdev,
					 void *data, u16 len)
{
	struct mgmt_cp_add_adv_patterns_monitor_rssi *cp = data;
	struct adv_monitor *m = NULL;
	u8 status = MGMT_STATUS_SUCCESS;
	size_t expected_size = sizeof(*cp);

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

	if (len <= sizeof(*cp)) {
		status = MGMT_STATUS_INVALID_PARAMS;
		goto done;
	}

	expected_size += cp->pattern_count * sizeof(struct mgmt_adv_pattern);
	if (len != expected_size) {
		status = MGMT_STATUS_INVALID_PARAMS;
		goto done;
	}

	m = kzalloc(sizeof(*m), GFP_KERNEL);
	if (!m) {
		status = MGMT_STATUS_NO_RESOURCES;
		goto done;
	}

	INIT_LIST_HEAD(&m->patterns);

	parse_adv_monitor_rssi(m, &cp->rssi);
	status = parse_adv_monitor_pattern(m, cp->pattern_count, cp->patterns);

done:
4695
	return __add_adv_patterns_monitor(sk, hdev, m, status, data, len,
4696
					 MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI);
4697 4698
}

4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715
int mgmt_remove_adv_monitor_complete(struct hci_dev *hdev, u8 status)
{
	struct mgmt_rp_remove_adv_monitor rp;
	struct mgmt_cp_remove_adv_monitor *cp;
	struct mgmt_pending_cmd *cmd;
	int err = 0;

	hci_dev_lock(hdev);

	cmd = pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev);
	if (!cmd)
		goto done;

	cp = cmd->param;
	rp.monitor_handle = cp->monitor_handle;

	if (!status)
4716
		hci_update_passive_scan(hdev);
4717 4718 4719 4720 4721 4722 4723

	err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
				mgmt_status(status), &rp, sizeof(rp));
	mgmt_pending_remove(cmd);

done:
	hci_dev_unlock(hdev);
4724
	bt_dev_dbg(hdev, "remove monitor %d complete, status %u",
4725 4726 4727 4728 4729
		   rp.monitor_handle, status);

	return err;
}

4730 4731 4732 4733 4734
static int remove_adv_monitor(struct sock *sk, struct hci_dev *hdev,
			      void *data, u16 len)
{
	struct mgmt_cp_remove_adv_monitor *cp = data;
	struct mgmt_rp_remove_adv_monitor rp;
4735 4736 4737 4738
	struct mgmt_pending_cmd *cmd;
	u16 handle = __le16_to_cpu(cp->monitor_handle);
	int err, status;
	bool pending;
4739 4740

	BT_DBG("request for %s", hdev->name);
4741
	rp.monitor_handle = cp->monitor_handle;
4742 4743 4744

	hci_dev_lock(hdev);

4745 4746 4747 4748 4749 4750 4751
	if (pending_find(MGMT_OP_SET_LE, hdev) ||
	    pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev) ||
	    pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR, hdev) ||
	    pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI, hdev)) {
		status = MGMT_STATUS_BUSY;
		goto unlock;
	}
4752

4753 4754 4755
	cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_ADV_MONITOR, hdev, data, len);
	if (!cmd) {
		status = MGMT_STATUS_NO_RESOURCES;
4756 4757 4758
		goto unlock;
	}

4759 4760 4761 4762
	if (handle)
		pending = hci_remove_single_adv_monitor(hdev, handle, &err);
	else
		pending = hci_remove_all_adv_monitor(hdev, &err);
4763

4764 4765
	if (err) {
		mgmt_pending_remove(cmd);
4766

4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784
		if (err == -ENOENT)
			status = MGMT_STATUS_INVALID_INDEX;
		else
			status = MGMT_STATUS_FAILED;

		goto unlock;
	}

	/* monitor can be removed without forwarding request to controller */
	if (!pending) {
		mgmt_pending_remove(cmd);
		hci_dev_unlock(hdev);

		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_REMOVE_ADV_MONITOR,
					 MGMT_STATUS_SUCCESS,
					 &rp, sizeof(rp));
	}
4785

4786 4787
	hci_dev_unlock(hdev);
	return 0;
4788 4789 4790

unlock:
	hci_dev_unlock(hdev);
4791 4792
	return mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADV_MONITOR,
			       status);
4793 4794
}

4795
static void read_local_oob_data_complete(struct hci_dev *hdev, void *data, int err)
4796 4797 4798
{
	struct mgmt_rp_read_local_oob_data mgmt_rp;
	size_t rp_size = sizeof(mgmt_rp);
4799 4800 4801
	struct mgmt_pending_cmd *cmd = data;
	struct sk_buff *skb = cmd->skb;
	u8 status = mgmt_status(err);
4802

4803 4804 4805 4806 4807 4808 4809 4810
	if (!status) {
		if (!skb)
			status = MGMT_STATUS_FAILED;
		else if (IS_ERR(skb))
			status = mgmt_status(PTR_ERR(skb));
		else
			status = mgmt_status(skb->data[0]);
	}
4811

4812
	bt_dev_dbg(hdev, "status %d", status);
4813

4814 4815
	if (status) {
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA, status);
4816 4817 4818 4819 4820
		goto remove;
	}

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

4821
	if (!bredr_sc_enabled(hdev)) {
4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855
		struct hci_rp_read_local_oob_data *rp = (void *) skb->data;

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

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

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

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

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

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

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

remove:
4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874
	if (skb && !IS_ERR(skb))
		kfree_skb(skb);

	mgmt_pending_free(cmd);
}

static int read_local_oob_data_sync(struct hci_dev *hdev, void *data)
{
	struct mgmt_pending_cmd *cmd = data;

	if (bredr_sc_enabled(hdev))
		cmd->skb = hci_read_local_oob_data_sync(hdev, true, cmd->sk);
	else
		cmd->skb = hci_read_local_oob_data_sync(hdev, false, cmd->sk);

	if (IS_ERR(cmd->skb))
		return PTR_ERR(cmd->skb);
	else
		return 0;
4875 4876
}

4877
static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
4878
			       void *data, u16 data_len)
4879
{
4880
	struct mgmt_pending_cmd *cmd;
4881 4882
	int err;

4883
	bt_dev_dbg(hdev, "sock %p", sk);
4884

4885
	hci_dev_lock(hdev);
4886

4887
	if (!hdev_is_powered(hdev)) {
4888 4889
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_NOT_POWERED);
4890 4891 4892
		goto unlock;
	}

4893
	if (!lmp_ssp_capable(hdev)) {
4894 4895
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_NOT_SUPPORTED);
4896 4897 4898
		goto unlock;
	}

4899
	if (pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
4900 4901
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_BUSY);
4902 4903 4904
		goto unlock;
	}

4905 4906
	cmd = mgmt_pending_new(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
	if (!cmd)
4907
		err = -ENOMEM;
4908
	else
4909 4910
		err = hci_cmd_sync_queue(hdev, read_local_oob_data_sync, cmd,
					 read_local_oob_data_complete);
4911

4912 4913 4914 4915 4916 4917 4918
	if (err < 0) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_FAILED);

		if (cmd)
			mgmt_pending_free(cmd);
	}
4919 4920

unlock:
4921
	hci_dev_unlock(hdev);
4922 4923 4924
	return err;
}

4925
static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
4926
			       void *data, u16 len)
4927
{
4928
	struct mgmt_addr_info *addr = data;
4929 4930
	int err;

4931
	bt_dev_dbg(hdev, "sock %p", sk);
4932

4933
	if (!bdaddr_type_is_valid(addr->type))
4934 4935 4936 4937
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_ADD_REMOTE_OOB_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 addr, sizeof(*addr));
4938

4939
	hci_dev_lock(hdev);
4940

4941 4942 4943
	if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
		struct mgmt_cp_add_remote_oob_data *cp = data;
		u8 status;
4944

4945
		if (cp->addr.type != BDADDR_BREDR) {
4946 4947 4948 4949
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_ADD_REMOTE_OOB_DATA,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
4950 4951 4952
			goto unlock;
		}

4953
		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
4954 4955
					      cp->addr.type, cp->hash,
					      cp->rand, NULL, NULL);
4956 4957 4958 4959 4960
		if (err < 0)
			status = MGMT_STATUS_FAILED;
		else
			status = MGMT_STATUS_SUCCESS;

4961 4962 4963
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_REMOTE_OOB_DATA, status,
					&cp->addr, sizeof(cp->addr));
4964 4965
	} else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
		struct mgmt_cp_add_remote_oob_ext_data *cp = data;
4966
		u8 *rand192, *hash192, *rand256, *hash256;
4967 4968
		u8 status;

4969
		if (bdaddr_type_is_le(cp->addr.type)) {
4970 4971 4972 4973 4974
			/* 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)) {
4975 4976 4977 4978
				err = mgmt_cmd_complete(sk, hdev->id,
							MGMT_OP_ADD_REMOTE_OOB_DATA,
							MGMT_STATUS_INVALID_PARAMS,
							addr, sizeof(*addr));
4979 4980 4981
				goto unlock;
			}

4982 4983 4984
			rand192 = NULL;
			hash192 = NULL;
		} else {
4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007
			/* 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;
5008 5009
		}

5010
		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
5011
					      cp->addr.type, hash192, rand192,
5012
					      hash256, rand256);
5013 5014 5015 5016 5017
		if (err < 0)
			status = MGMT_STATUS_FAILED;
		else
			status = MGMT_STATUS_SUCCESS;

5018 5019 5020
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_REMOTE_OOB_DATA,
					status, &cp->addr, sizeof(cp->addr));
5021
	} else {
5022 5023
		bt_dev_err(hdev, "add_remote_oob_data: invalid len of %u bytes",
			   len);
5024 5025
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
				      MGMT_STATUS_INVALID_PARAMS);
5026
	}
5027

5028
unlock:
5029
	hci_dev_unlock(hdev);
5030 5031 5032
	return err;
}

5033
static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
5034
				  void *data, u16 len)
5035
{
5036
	struct mgmt_cp_remove_remote_oob_data *cp = data;
5037
	u8 status;
5038 5039
	int err;

5040
	bt_dev_dbg(hdev, "sock %p", sk);
5041

5042
	if (cp->addr.type != BDADDR_BREDR)
5043 5044 5045 5046
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
5047

5048
	hci_dev_lock(hdev);
5049

5050 5051 5052 5053 5054 5055
	if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
		hci_remote_oob_data_clear(hdev);
		status = MGMT_STATUS_SUCCESS;
		goto done;
	}

5056
	err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
5057
	if (err < 0)
5058
		status = MGMT_STATUS_INVALID_PARAMS;
5059
	else
5060
		status = MGMT_STATUS_SUCCESS;
5061

5062
done:
5063 5064
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
				status, &cp->addr, sizeof(cp->addr));
5065

5066
	hci_dev_unlock(hdev);
5067 5068 5069
	return err;
}

5070
void mgmt_start_discovery_complete(struct hci_dev *hdev, u8 status)
5071
{
5072
	struct mgmt_pending_cmd *cmd;
5073

5074
	bt_dev_dbg(hdev, "status %u", status);
5075

5076
	hci_dev_lock(hdev);
5077

5078
	cmd = pending_find(MGMT_OP_START_DISCOVERY, hdev);
5079
	if (!cmd)
5080
		cmd = pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);
5081

5082 5083 5084
	if (!cmd)
		cmd = pending_find(MGMT_OP_START_LIMITED_DISCOVERY, hdev);

5085
	if (cmd) {
5086
		cmd->cmd_complete(cmd, mgmt_status(status));
5087 5088
		mgmt_pending_remove(cmd);
	}
5089

5090
	hci_dev_unlock(hdev);
5091 5092 5093 5094 5095 5096 5097

	/* Handle suspend notifier */
	if (test_and_clear_bit(SUSPEND_UNPAUSE_DISCOVERY,
			       hdev->suspend_tasks)) {
		bt_dev_dbg(hdev, "Unpaused discovery");
		wake_up(&hdev->suspend_wait_q);
	}
5098 5099
}

5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112
static bool discovery_type_is_valid(struct hci_dev *hdev, uint8_t type,
				    uint8_t *mgmt_status)
{
	switch (type) {
	case DISCOV_TYPE_LE:
		*mgmt_status = mgmt_le_support(hdev);
		if (*mgmt_status)
			return false;
		break;
	case DISCOV_TYPE_INTERLEAVED:
		*mgmt_status = mgmt_le_support(hdev);
		if (*mgmt_status)
			return false;
5113
		fallthrough;
5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126
	case DISCOV_TYPE_BREDR:
		*mgmt_status = mgmt_bredr_support(hdev);
		if (*mgmt_status)
			return false;
		break;
	default:
		*mgmt_status = MGMT_STATUS_INVALID_PARAMS;
		return false;
	}

	return true;
}

5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152
static void start_discovery_complete(struct hci_dev *hdev, void *data, int err)
{
	struct mgmt_pending_cmd *cmd = data;

	bt_dev_dbg(hdev, "err %d", err);

	mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, mgmt_status(err),
			  cmd->param, 1);
	mgmt_pending_free(cmd);

	/* Handle suspend notifier */
	if (test_and_clear_bit(SUSPEND_UNPAUSE_DISCOVERY,
			       hdev->suspend_tasks)) {
		bt_dev_dbg(hdev, "Unpaused discovery");
		wake_up(&hdev->suspend_wait_q);
	}

	hci_discovery_set_state(hdev, err ? DISCOVERY_STOPPED :
				DISCOVERY_FINDING);
}

static int start_discovery_sync(struct hci_dev *hdev, void *data)
{
	return hci_start_discovery_sync(hdev);
}

5153 5154
static int start_discovery_internal(struct sock *sk, struct hci_dev *hdev,
				    u16 op, void *data, u16 len)
5155
{
5156
	struct mgmt_cp_start_discovery *cp = data;
5157
	struct mgmt_pending_cmd *cmd;
5158
	u8 status;
5159 5160
	int err;

5161
	bt_dev_dbg(hdev, "sock %p", sk);
5162

5163
	hci_dev_lock(hdev);
5164

5165
	if (!hdev_is_powered(hdev)) {
5166
		err = mgmt_cmd_complete(sk, hdev->id, op,
5167 5168
					MGMT_STATUS_NOT_POWERED,
					&cp->type, sizeof(cp->type));
5169 5170 5171
		goto failed;
	}

5172
	if (hdev->discovery.state != DISCOVERY_STOPPED ||
5173
	    hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
5174 5175
		err = mgmt_cmd_complete(sk, hdev->id, op, MGMT_STATUS_BUSY,
					&cp->type, sizeof(cp->type));
5176 5177 5178
		goto failed;
	}

5179
	if (!discovery_type_is_valid(hdev, cp->type, &status)) {
5180 5181
		err = mgmt_cmd_complete(sk, hdev->id, op, status,
					&cp->type, sizeof(cp->type));
5182 5183 5184
		goto failed;
	}

5185 5186 5187 5188 5189 5190 5191
	/* Can't start discovery when it is paused */
	if (hdev->discovery_paused) {
		err = mgmt_cmd_complete(sk, hdev->id, op, MGMT_STATUS_BUSY,
					&cp->type, sizeof(cp->type));
		goto failed;
	}

5192 5193 5194 5195 5196
	/* Clear the discovery filter first to free any previously
	 * allocated memory for the UUID list.
	 */
	hci_discovery_filter_clear(hdev);

A
Andre Guedes 已提交
5197
	hdev->discovery.type = cp->type;
5198
	hdev->discovery.report_invalid_rssi = false;
5199 5200 5201 5202
	if (op == MGMT_OP_START_LIMITED_DISCOVERY)
		hdev->discovery.limited = true;
	else
		hdev->discovery.limited = false;
A
Andre Guedes 已提交
5203

5204
	cmd = mgmt_pending_new(sk, op, hdev, data, len);
5205 5206
	if (!cmd) {
		err = -ENOMEM;
5207
		goto failed;
5208
	}
5209

5210 5211 5212 5213 5214 5215
	err = hci_cmd_sync_queue(hdev, start_discovery_sync, cmd,
				 start_discovery_complete);
	if (err < 0) {
		mgmt_pending_free(cmd);
		goto failed;
	}
5216

5217
	hci_discovery_set_state(hdev, DISCOVERY_STARTING);
5218

5219
failed:
5220
	hci_dev_unlock(hdev);
5221 5222
	return err;
}
5223

5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238
static int start_discovery(struct sock *sk, struct hci_dev *hdev,
			   void *data, u16 len)
{
	return start_discovery_internal(sk, hdev, MGMT_OP_START_DISCOVERY,
					data, len);
}

static int start_limited_discovery(struct sock *sk, struct hci_dev *hdev,
				   void *data, u16 len)
{
	return start_discovery_internal(sk, hdev,
					MGMT_OP_START_LIMITED_DISCOVERY,
					data, len);
}

5239 5240 5241 5242
static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
				   void *data, u16 len)
{
	struct mgmt_cp_start_service_discovery *cp = data;
5243
	struct mgmt_pending_cmd *cmd;
5244 5245 5246 5247
	const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
	u16 uuid_count, expected_len;
	u8 status;
	int err;
5248

5249
	bt_dev_dbg(hdev, "sock %p", sk);
5250

5251
	hci_dev_lock(hdev);
5252

5253
	if (!hdev_is_powered(hdev)) {
5254 5255 5256 5257
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_NOT_POWERED,
					&cp->type, sizeof(cp->type));
5258 5259
		goto failed;
	}
5260

5261
	if (hdev->discovery.state != DISCOVERY_STOPPED ||
5262
	    hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
5263 5264 5265 5266 5267 5268 5269 5270
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_BUSY, &cp->type,
					sizeof(cp->type));
		goto failed;
	}

	if (hdev->discovery_paused) {
5271 5272 5273 5274
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_BUSY, &cp->type,
					sizeof(cp->type));
5275 5276
		goto failed;
	}
5277

5278 5279
	uuid_count = __le16_to_cpu(cp->uuid_count);
	if (uuid_count > max_uuid_count) {
5280 5281
		bt_dev_err(hdev, "service_discovery: too big uuid_count value %u",
			   uuid_count);
5282 5283 5284 5285
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS, &cp->type,
					sizeof(cp->type));
5286 5287 5288 5289 5290
		goto failed;
	}

	expected_len = sizeof(*cp) + uuid_count * 16;
	if (expected_len != len) {
5291 5292
		bt_dev_err(hdev, "service_discovery: expected %u bytes, got %u bytes",
			   expected_len, len);
5293 5294 5295 5296
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS, &cp->type,
					sizeof(cp->type));
5297 5298 5299
		goto failed;
	}

5300 5301 5302 5303 5304 5305 5306
	if (!discovery_type_is_valid(hdev, cp->type, &status)) {
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					status, &cp->type, sizeof(cp->type));
		goto failed;
	}

5307
	cmd = mgmt_pending_new(sk, MGMT_OP_START_SERVICE_DISCOVERY,
5308
			       hdev, data, len);
5309 5310 5311 5312 5313
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

5314 5315 5316 5317 5318
	/* Clear the discovery filter first to free any previously
	 * allocated memory for the UUID list.
	 */
	hci_discovery_filter_clear(hdev);

5319
	hdev->discovery.result_filtering = true;
5320 5321 5322 5323 5324 5325 5326 5327
	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) {
5328 5329 5330 5331
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_START_SERVICE_DISCOVERY,
						MGMT_STATUS_FAILED,
						&cp->type, sizeof(cp->type));
5332 5333 5334
			mgmt_pending_remove(cmd);
			goto failed;
		}
5335
	}
5336

5337 5338 5339 5340 5341 5342 5343
	err = hci_cmd_sync_queue(hdev, start_discovery_sync, cmd,
				 start_discovery_complete);
	if (err < 0) {
		mgmt_pending_free(cmd);
		goto failed;
	}

5344
	hci_discovery_set_state(hdev, DISCOVERY_STARTING);
5345 5346

failed:
5347
	hci_dev_unlock(hdev);
5348 5349 5350
	return err;
}

5351
void mgmt_stop_discovery_complete(struct hci_dev *hdev, u8 status)
5352
{
5353
	struct mgmt_pending_cmd *cmd;
5354

5355
	bt_dev_dbg(hdev, "status %u", status);
5356 5357 5358

	hci_dev_lock(hdev);

5359
	cmd = pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
5360
	if (cmd) {
5361
		cmd->cmd_complete(cmd, mgmt_status(status));
5362
		mgmt_pending_remove(cmd);
5363 5364 5365
	}

	hci_dev_unlock(hdev);
5366 5367 5368 5369 5370 5371

	/* Handle suspend notifier */
	if (test_and_clear_bit(SUSPEND_PAUSE_DISCOVERY, hdev->suspend_tasks)) {
		bt_dev_dbg(hdev, "Paused discovery");
		wake_up(&hdev->suspend_wait_q);
	}
5372 5373
}

5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398
static void stop_discovery_complete(struct hci_dev *hdev, void *data, int err)
{
	struct mgmt_pending_cmd *cmd = data;

	bt_dev_dbg(hdev, "err %d", err);

	mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, mgmt_status(err),
			  cmd->param, 1);
	mgmt_pending_free(cmd);

	/* Handle suspend notifier */
	if (test_and_clear_bit(SUSPEND_PAUSE_DISCOVERY, hdev->suspend_tasks)) {
		bt_dev_dbg(hdev, "Paused discovery");
		wake_up(&hdev->suspend_wait_q);
	}

	if (!err)
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
}

static int stop_discovery_sync(struct hci_dev *hdev, void *data)
{
	return hci_stop_discovery_sync(hdev);
}

5399
static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
5400
			  u16 len)
5401
{
5402
	struct mgmt_cp_stop_discovery *mgmt_cp = data;
5403
	struct mgmt_pending_cmd *cmd;
5404 5405
	int err;

5406
	bt_dev_dbg(hdev, "sock %p", sk);
5407

5408
	hci_dev_lock(hdev);
5409

5410
	if (!hci_discovery_active(hdev)) {
5411 5412 5413
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
					MGMT_STATUS_REJECTED, &mgmt_cp->type,
					sizeof(mgmt_cp->type));
5414 5415 5416 5417
		goto unlock;
	}

	if (hdev->discovery.type != mgmt_cp->type) {
5418 5419 5420
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS,
					&mgmt_cp->type, sizeof(mgmt_cp->type));
5421
		goto unlock;
5422 5423
	}

5424
	cmd = mgmt_pending_new(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
5425 5426
	if (!cmd) {
		err = -ENOMEM;
5427 5428 5429
		goto unlock;
	}

5430 5431 5432 5433 5434 5435
	err = hci_cmd_sync_queue(hdev, stop_discovery_sync, cmd,
				 stop_discovery_complete);
	if (err < 0) {
		mgmt_pending_free(cmd);
		goto unlock;
	}
5436

5437
	hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
5438

5439
unlock:
5440
	hci_dev_unlock(hdev);
5441 5442 5443
	return err;
}

5444
static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
5445
			u16 len)
5446
{
5447
	struct mgmt_cp_confirm_name *cp = data;
5448 5449 5450
	struct inquiry_entry *e;
	int err;

5451
	bt_dev_dbg(hdev, "sock %p", sk);
5452 5453 5454

	hci_dev_lock(hdev);

5455
	if (!hci_discovery_active(hdev)) {
5456 5457 5458
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
					MGMT_STATUS_FAILED, &cp->addr,
					sizeof(cp->addr));
5459 5460 5461
		goto failed;
	}

5462
	e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
5463
	if (!e) {
5464 5465 5466
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
					MGMT_STATUS_INVALID_PARAMS, &cp->addr,
					sizeof(cp->addr));
5467 5468 5469 5470 5471 5472 5473 5474
		goto failed;
	}

	if (cp->name_known) {
		e->name_state = NAME_KNOWN;
		list_del(&e->list);
	} else {
		e->name_state = NAME_NEEDED;
5475
		hci_inquiry_cache_update_resolve(hdev, e);
5476 5477
	}

5478 5479
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
				&cp->addr, sizeof(cp->addr));
5480 5481 5482 5483 5484 5485

failed:
	hci_dev_unlock(hdev);
	return err;
}

5486
static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
5487
			u16 len)
5488
{
5489
	struct mgmt_cp_block_device *cp = data;
5490
	u8 status;
5491 5492
	int err;

5493
	bt_dev_dbg(hdev, "sock %p", sk);
5494

5495
	if (!bdaddr_type_is_valid(cp->addr.type))
5496 5497 5498
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
5499

5500
	hci_dev_lock(hdev);
5501

5502
	err = hci_bdaddr_list_add(&hdev->reject_list, &cp->addr.bdaddr,
5503
				  cp->addr.type);
5504
	if (err < 0) {
5505
		status = MGMT_STATUS_FAILED;
5506 5507 5508 5509 5510 5511
		goto done;
	}

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

5513
done:
5514 5515
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
				&cp->addr, sizeof(cp->addr));
5516

5517
	hci_dev_unlock(hdev);
5518 5519 5520 5521

	return err;
}

5522
static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
5523
			  u16 len)
5524
{
5525
	struct mgmt_cp_unblock_device *cp = data;
5526
	u8 status;
5527 5528
	int err;

5529
	bt_dev_dbg(hdev, "sock %p", sk);
5530

5531
	if (!bdaddr_type_is_valid(cp->addr.type))
5532 5533 5534
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
5535

5536
	hci_dev_lock(hdev);
5537

5538
	err = hci_bdaddr_list_del(&hdev->reject_list, &cp->addr.bdaddr,
5539
				  cp->addr.type);
5540
	if (err < 0) {
5541
		status = MGMT_STATUS_INVALID_PARAMS;
5542 5543 5544 5545 5546 5547
		goto done;
	}

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

5549
done:
5550 5551
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
				&cp->addr, sizeof(cp->addr));
5552

5553
	hci_dev_unlock(hdev);
5554 5555 5556 5557

	return err;
}

5558 5559 5560 5561 5562
static int set_device_id_sync(struct hci_dev *hdev, void *data)
{
	return hci_update_eir_sync(hdev);
}

5563 5564 5565 5566 5567
static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 len)
{
	struct mgmt_cp_set_device_id *cp = data;
	int err;
5568
	__u16 source;
5569

5570
	bt_dev_dbg(hdev, "sock %p", sk);
5571

5572 5573 5574
	source = __le16_to_cpu(cp->source);

	if (source > 0x0002)
5575 5576
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
				       MGMT_STATUS_INVALID_PARAMS);
5577

5578 5579
	hci_dev_lock(hdev);

5580
	hdev->devid_source = source;
5581 5582 5583 5584
	hdev->devid_vendor = __le16_to_cpu(cp->vendor);
	hdev->devid_product = __le16_to_cpu(cp->product);
	hdev->devid_version = __le16_to_cpu(cp->version);

5585 5586
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
				NULL, 0);
5587

5588
	hci_cmd_sync_queue(hdev, set_device_id_sync, NULL, NULL);
5589 5590 5591 5592 5593 5594

	hci_dev_unlock(hdev);

	return err;
}

5595 5596 5597
static void enable_advertising_instance(struct hci_dev *hdev, u8 status,
					u16 opcode)
{
5598
	bt_dev_dbg(hdev, "status %u", status);
5599 5600
}

5601 5602
static void set_advertising_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
5603 5604
{
	struct cmd_lookup match = { NULL, hdev };
5605
	struct hci_request req;
5606 5607 5608
	u8 instance;
	struct adv_info *adv_instance;
	int err;
5609

5610 5611
	hci_dev_lock(hdev);

5612 5613 5614 5615 5616
	if (status) {
		u8 mgmt_err = mgmt_status(status);

		mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
				     cmd_status_rsp, &mgmt_err);
5617
		goto unlock;
5618 5619
	}

5620
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
5621
		hci_dev_set_flag(hdev, HCI_ADVERTISING);
5622
	else
5623
		hci_dev_clear_flag(hdev, HCI_ADVERTISING);
5624

5625 5626 5627 5628 5629 5630 5631
	mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
			     &match);

	new_settings(hdev, match.sk);

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

5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643
	/* Handle suspend notifier */
	if (test_and_clear_bit(SUSPEND_PAUSE_ADVERTISING,
			       hdev->suspend_tasks)) {
		bt_dev_dbg(hdev, "Paused advertising");
		wake_up(&hdev->suspend_wait_q);
	} else if (test_and_clear_bit(SUSPEND_UNPAUSE_ADVERTISING,
				      hdev->suspend_tasks)) {
		bt_dev_dbg(hdev, "Unpaused advertising");
		wake_up(&hdev->suspend_wait_q);
	}

5644
	/* If "Set Advertising" was just disabled and instance advertising was
5645
	 * set up earlier, then re-enable multi-instance advertising.
5646 5647
	 */
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
5648
	    list_empty(&hdev->adv_instances))
5649 5650
		goto unlock;

5651 5652 5653 5654 5655 5656 5657 5658 5659 5660
	instance = hdev->cur_adv_instance;
	if (!instance) {
		adv_instance = list_first_entry_or_null(&hdev->adv_instances,
							struct adv_info, list);
		if (!adv_instance)
			goto unlock;

		instance = adv_instance->instance;
	}

5661 5662
	hci_req_init(&req, hdev);

5663
	err = __hci_req_schedule_adv_instance(&req, instance, true);
5664 5665 5666

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

5668
	if (err)
5669
		bt_dev_err(hdev, "failed to re-configure advertising");
5670

5671 5672
unlock:
	hci_dev_unlock(hdev);
5673 5674
}

5675 5676
static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 len)
5677 5678
{
	struct mgmt_mode *cp = data;
5679
	struct mgmt_pending_cmd *cmd;
5680
	struct hci_request req;
5681
	u8 val, status;
5682 5683
	int err;

5684
	bt_dev_dbg(hdev, "sock %p", sk);
5685

5686 5687
	status = mgmt_le_support(hdev);
	if (status)
5688 5689
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				       status);
5690

5691
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
5692 5693
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);
5694

5695 5696 5697 5698
	if (hdev->advertising_paused)
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				       MGMT_STATUS_BUSY);

5699 5700 5701 5702
	hci_dev_lock(hdev);

	val = !!cp->val;

5703 5704 5705 5706 5707
	/* 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).
	 */
5708
	if (!hdev_is_powered(hdev) ||
5709 5710
	    (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
	     (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
5711
	    hci_conn_num(hdev, LE_LINK) > 0 ||
5712
	    (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
5713
	     hdev->le_scan_type == LE_SCAN_ACTIVE)) {
5714
		bool changed;
5715

5716
		if (cp->val) {
5717
			hdev->cur_adv_instance = 0x00;
5718
			changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
5719
			if (cp->val == 0x02)
5720
				hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
5721
			else
5722
				hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
5723
		} else {
5724
			changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
5725
			hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737
		}

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

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

		goto unlock;
	}

5738 5739
	if (pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
	    pending_find(MGMT_OP_SET_LE, hdev)) {
5740 5741
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				      MGMT_STATUS_BUSY);
5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752
		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);

5753
	if (cp->val == 0x02)
5754
		hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
5755
	else
5756
		hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
5757

5758 5759
	cancel_adv_timeout(hdev);

5760
	if (val) {
5761 5762 5763 5764
		/* Switch to instance "0" for the Set Advertising setting.
		 * We cannot use update_[adv|scan_rsp]_data() here as the
		 * HCI_ADVERTISING flag is not yet set.
		 */
5765
		hdev->cur_adv_instance = 0x00;
5766 5767 5768 5769 5770 5771 5772 5773

		if (ext_adv_capable(hdev)) {
			__hci_req_start_ext_adv(&req, 0x00);
		} else {
			__hci_req_update_adv_data(&req, 0x00);
			__hci_req_update_scan_rsp_data(&req, 0x00);
			__hci_req_enable_advertising(&req);
		}
5774
	} else {
5775
		__hci_req_disable_advertising(&req);
5776
	}
5777 5778 5779 5780 5781 5782 5783 5784 5785 5786

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

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5787 5788 5789 5790 5791 5792
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;

5793
	bt_dev_dbg(hdev, "sock %p", sk);
5794

5795
	if (!lmp_le_capable(hdev))
5796 5797
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
				       MGMT_STATUS_NOT_SUPPORTED);
5798 5799

	if (hdev_is_powered(hdev))
5800 5801
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
				       MGMT_STATUS_REJECTED);
5802 5803 5804

	if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
		if (!bacmp(&cp->bdaddr, BDADDR_NONE))
5805 5806 5807
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_SET_STATIC_ADDRESS,
					       MGMT_STATUS_INVALID_PARAMS);
5808 5809 5810

		/* Two most significant bits shall be set */
		if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
5811 5812 5813
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_SET_STATIC_ADDRESS,
					       MGMT_STATUS_INVALID_PARAMS);
5814 5815 5816 5817 5818 5819
	}

	hci_dev_lock(hdev);

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

5820 5821 5822 5823 5824
	err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
	if (err < 0)
		goto unlock;

	err = new_settings(hdev, sk);
5825

5826
unlock:
5827 5828 5829 5830
	hci_dev_unlock(hdev);
	return err;
}

5831 5832 5833 5834 5835 5836 5837
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;

5838
	bt_dev_dbg(hdev, "sock %p", sk);
5839 5840

	if (!lmp_le_capable(hdev))
5841 5842
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_NOT_SUPPORTED);
5843 5844 5845 5846

	interval = __le16_to_cpu(cp->interval);

	if (interval < 0x0004 || interval > 0x4000)
5847 5848
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
5849 5850 5851 5852

	window = __le16_to_cpu(cp->window);

	if (window < 0x0004 || window > 0x4000)
5853 5854
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
5855

5856
	if (window > interval)
5857 5858
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
5859

5860 5861 5862 5863 5864
	hci_dev_lock(hdev);

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

5865 5866
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
				NULL, 0);
5867

5868 5869 5870
	/* If background scan is running, restart it so new parameters are
	 * loaded.
	 */
5871
	if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
5872 5873
	    hdev->discovery.state == DISCOVERY_STOPPED)
		hci_update_passive_scan(hdev);
5874

5875 5876 5877 5878 5879
	hci_dev_unlock(hdev);

	return err;
}

5880
static void fast_connectable_complete(struct hci_dev *hdev, void *data, int err)
5881
{
5882
	struct mgmt_pending_cmd *cmd = data;
5883

5884
	bt_dev_dbg(hdev, "err %d", err);
5885

5886
	if (err) {
5887
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5888
				mgmt_status(err));
5889
	} else {
5890 5891 5892
		struct mgmt_mode *cp = cmd->param;

		if (cp->val)
5893
			hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
5894
		else
5895
			hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
5896

5897 5898 5899 5900
		send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
		new_settings(hdev, cmd->sk);
	}

5901 5902
	mgmt_pending_free(cmd);
}
5903

5904 5905 5906 5907 5908 5909
static int write_fast_connectable_sync(struct hci_dev *hdev, void *data)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_mode *cp = cmd->param;

	return hci_write_fast_connectable_sync(hdev, cp->val);
5910 5911
}

5912
static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
5913
				void *data, u16 len)
5914
{
5915
	struct mgmt_mode *cp = data;
5916
	struct mgmt_pending_cmd *cmd;
5917 5918
	int err;

5919
	bt_dev_dbg(hdev, "sock %p", sk);
5920

5921
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
5922
	    hdev->hci_ver < BLUETOOTH_VER_1_2)
5923 5924
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_FAST_CONNECTABLE,
5925
				       MGMT_STATUS_NOT_SUPPORTED);
5926

5927
	if (cp->val != 0x00 && cp->val != 0x01)
5928 5929
		return mgmt_cmd_status(sk, hdev->id,
				       MGMT_OP_SET_FAST_CONNECTABLE,
5930
				       MGMT_STATUS_INVALID_PARAMS);
5931

5932 5933
	hci_dev_lock(hdev);

5934
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
5935
		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
5936 5937 5938
		goto unlock;
	}

5939
	if (!hdev_is_powered(hdev)) {
5940
		hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
5941
		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
5942 5943 5944 5945
		new_settings(hdev, sk);
		goto unlock;
	}

5946 5947 5948
	cmd = mgmt_pending_new(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev, data,
			       len);
	if (!cmd)
5949
		err = -ENOMEM;
5950 5951 5952
	else
		err = hci_cmd_sync_queue(hdev, write_fast_connectable_sync, cmd,
					 fast_connectable_complete);
5953

5954 5955 5956
	if (err < 0) {
		mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				MGMT_STATUS_FAILED);
5957

5958 5959
		if (cmd)
			mgmt_pending_free(cmd);
5960 5961
	}

5962
unlock:
5963
	hci_dev_unlock(hdev);
5964

5965 5966 5967
	return err;
}

5968
static void set_bredr_complete(struct hci_dev *hdev, void *data, int err)
5969
{
5970
	struct mgmt_pending_cmd *cmd = data;
5971

5972
	bt_dev_dbg(hdev, "err %d", err);
5973

5974 5975
	if (err) {
		u8 mgmt_err = mgmt_status(err);
5976 5977 5978 5979

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

5982
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
5983 5984 5985 5986 5987
	} else {
		send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
		new_settings(hdev, cmd->sk);
	}

5988 5989
	mgmt_pending_free(cmd);
}
5990

5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006
static int set_bredr_sync(struct hci_dev *hdev, void *data)
{
	int status;

	status = hci_write_fast_connectable_sync(hdev, false);

	if (!status)
		status = hci_update_scan_sync(hdev);

	/* Since only the advertising data flags will change, there
	 * is no need to update the scan response data.
	 */
	if (!status)
		status = hci_update_adv_data_sync(hdev, hdev->cur_adv_instance);

	return status;
6007 6008 6009 6010 6011
}

static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
{
	struct mgmt_mode *cp = data;
6012
	struct mgmt_pending_cmd *cmd;
6013 6014
	int err;

6015
	bt_dev_dbg(hdev, "sock %p", sk);
6016 6017

	if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
6018 6019
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_NOT_SUPPORTED);
6020

6021
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
6022 6023
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_REJECTED);
6024 6025

	if (cp->val != 0x00 && cp->val != 0x01)
6026 6027
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_INVALID_PARAMS);
6028 6029 6030

	hci_dev_lock(hdev);

6031
	if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
6032 6033 6034 6035 6036 6037
		err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
		goto unlock;
	}

	if (!hdev_is_powered(hdev)) {
		if (!cp->val) {
6038 6039 6040 6041 6042
			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);
6043 6044
		}

6045
		hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056

		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) {
6057 6058
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				      MGMT_STATUS_REJECTED);
6059
		goto unlock;
6060 6061 6062 6063 6064 6065 6066 6067
	} 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.
6068 6069 6070 6071 6072 6073
		 *
		 * 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.
6074
		 */
6075
		if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
6076
		    (bacmp(&hdev->static_addr, BDADDR_ANY) ||
6077
		     hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
6078 6079
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
					      MGMT_STATUS_REJECTED);
6080 6081
			goto unlock;
		}
6082 6083
	}

6084 6085
	cmd = mgmt_pending_new(sk, MGMT_OP_SET_BREDR, hdev, data, len);
	if (!cmd)
6086
		err = -ENOMEM;
6087 6088 6089 6090 6091 6092 6093 6094 6095 6096
	else
		err = hci_cmd_sync_queue(hdev, set_bredr_sync, cmd,
					 set_bredr_complete);

	if (err < 0) {
		mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				MGMT_STATUS_FAILED);
		if (cmd)
			mgmt_pending_free(cmd);

6097 6098 6099
		goto unlock;
	}

6100 6101
	/* We need to flip the bit already here so that
	 * hci_req_update_adv_data generates the correct flags.
6102
	 */
6103
	hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
6104 6105 6106 6107 6108 6109

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6110
static void set_secure_conn_complete(struct hci_dev *hdev, void *data, int err)
6111
{
6112
	struct mgmt_pending_cmd *cmd = data;
6113 6114
	struct mgmt_mode *cp;

6115
	bt_dev_dbg(hdev, "err %d", err);
6116

6117 6118
	if (err) {
		u8 mgmt_err = mgmt_status(err);
6119

6120 6121
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
		goto done;
6122 6123 6124 6125 6126 6127
	}

	cp = cmd->param;

	switch (cp->val) {
	case 0x00:
6128 6129
		hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
		hci_dev_clear_flag(hdev, HCI_SC_ONLY);
6130 6131
		break;
	case 0x01:
6132
		hci_dev_set_flag(hdev, HCI_SC_ENABLED);
6133
		hci_dev_clear_flag(hdev, HCI_SC_ONLY);
6134 6135
		break;
	case 0x02:
6136 6137
		hci_dev_set_flag(hdev, HCI_SC_ENABLED);
		hci_dev_set_flag(hdev, HCI_SC_ONLY);
6138 6139 6140
		break;
	}

6141
	send_settings_rsp(cmd->sk, cmd->opcode, hdev);
6142 6143
	new_settings(hdev, cmd->sk);

6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157
done:
	mgmt_pending_free(cmd);
}

static int set_secure_conn_sync(struct hci_dev *hdev, void *data)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_mode *cp = cmd->param;
	u8 val = !!cp->val;

	/* Force write of val */
	hci_dev_set_flag(hdev, HCI_SC_ENABLED);

	return hci_write_sc_support_sync(hdev, val);
6158 6159
}

6160 6161 6162 6163
static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
			   void *data, u16 len)
{
	struct mgmt_mode *cp = data;
6164
	struct mgmt_pending_cmd *cmd;
6165
	u8 val;
6166 6167
	int err;

6168
	bt_dev_dbg(hdev, "sock %p", sk);
6169

6170
	if (!lmp_sc_capable(hdev) &&
6171
	    !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
6172 6173
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				       MGMT_STATUS_NOT_SUPPORTED);
6174

6175
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
6176
	    lmp_sc_capable(hdev) &&
6177
	    !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
6178 6179
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				       MGMT_STATUS_REJECTED);
6180

6181
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
6182
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
6183
				       MGMT_STATUS_INVALID_PARAMS);
6184 6185 6186

	hci_dev_lock(hdev);

6187
	if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
6188
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
6189 6190
		bool changed;

6191
		if (cp->val) {
6192 6193
			changed = !hci_dev_test_and_set_flag(hdev,
							     HCI_SC_ENABLED);
6194
			if (cp->val == 0x02)
6195
				hci_dev_set_flag(hdev, HCI_SC_ONLY);
6196
			else
6197
				hci_dev_clear_flag(hdev, HCI_SC_ONLY);
6198
		} else {
6199 6200
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_SC_ENABLED);
6201
			hci_dev_clear_flag(hdev, HCI_SC_ONLY);
6202
		}
6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213

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

6214 6215
	val = !!cp->val;

6216 6217
	if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
	    (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
6218 6219 6220 6221
		err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
		goto failed;
	}

6222 6223
	cmd = mgmt_pending_new(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
	if (!cmd)
6224
		err = -ENOMEM;
6225 6226 6227
	else
		err = hci_cmd_sync_queue(hdev, set_secure_conn_sync, cmd,
					 set_secure_conn_complete);
6228 6229

	if (err < 0) {
6230 6231 6232 6233
		mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				MGMT_STATUS_FAILED);
		if (cmd)
			mgmt_pending_free(cmd);
6234 6235 6236 6237 6238 6239 6240
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

6241 6242 6243 6244
static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
			  void *data, u16 len)
{
	struct mgmt_mode *cp = data;
6245
	bool changed, use_changed;
6246 6247
	int err;

6248
	bt_dev_dbg(hdev, "sock %p", sk);
6249

6250
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
6251 6252
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
6253 6254 6255 6256

	hci_dev_lock(hdev);

	if (cp->val)
6257
		changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
6258
	else
6259 6260
		changed = hci_dev_test_and_clear_flag(hdev,
						      HCI_KEEP_DEBUG_KEYS);
6261

6262
	if (cp->val == 0x02)
6263 6264
		use_changed = !hci_dev_test_and_set_flag(hdev,
							 HCI_USE_DEBUG_KEYS);
6265
	else
6266 6267
		use_changed = hci_dev_test_and_clear_flag(hdev,
							  HCI_USE_DEBUG_KEYS);
6268 6269

	if (hdev_is_powered(hdev) && use_changed &&
6270
	    hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
6271 6272 6273 6274 6275
		u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
			     sizeof(mode), &mode);
	}

6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287
	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;
}

6288 6289 6290 6291 6292 6293 6294
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;

6295
	bt_dev_dbg(hdev, "sock %p", sk);
6296 6297

	if (!lmp_le_capable(hdev))
6298 6299
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_NOT_SUPPORTED);
6300

6301
	if (cp->privacy != 0x00 && cp->privacy != 0x01 && cp->privacy != 0x02)
6302 6303
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_INVALID_PARAMS);
6304 6305

	if (hdev_is_powered(hdev))
6306 6307
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_REJECTED);
6308 6309 6310

	hci_dev_lock(hdev);

6311 6312 6313
	/* If user space supports this command it is also expected to
	 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
	 */
6314
	hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
6315

6316
	if (cp->privacy) {
6317
		changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
6318
		memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
6319
		hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
6320
		hci_adv_instances_set_rpa_expired(hdev, true);
6321 6322 6323 6324
		if (cp->privacy == 0x02)
			hci_dev_set_flag(hdev, HCI_LIMITED_PRIVACY);
		else
			hci_dev_clear_flag(hdev, HCI_LIMITED_PRIVACY);
6325
	} else {
6326
		changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
6327
		memset(hdev->irk, 0, sizeof(hdev->irk));
6328
		hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
6329
		hci_adv_instances_set_rpa_expired(hdev, false);
6330
		hci_dev_clear_flag(hdev, HCI_LIMITED_PRIVACY);
6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344
	}

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

6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364
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;
6365 6366
	const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_irk_info));
6367 6368 6369
	u16 irk_count, expected_len;
	int i, err;

6370
	bt_dev_dbg(hdev, "sock %p", sk);
6371 6372

	if (!lmp_le_capable(hdev))
6373 6374
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_NOT_SUPPORTED);
6375 6376

	irk_count = __le16_to_cpu(cp->irk_count);
6377
	if (irk_count > max_irk_count) {
6378 6379
		bt_dev_err(hdev, "load_irks: too big irk_count value %u",
			   irk_count);
6380 6381
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_INVALID_PARAMS);
6382
	}
6383

6384
	expected_len = struct_size(cp, irks, irk_count);
6385
	if (expected_len != len) {
6386 6387
		bt_dev_err(hdev, "load_irks: expected %u bytes, got %u bytes",
			   expected_len, len);
6388 6389
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_INVALID_PARAMS);
6390 6391
	}

6392
	bt_dev_dbg(hdev, "irk_count %u", irk_count);
6393 6394 6395 6396 6397

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

		if (!irk_is_valid(key))
6398 6399 6400
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_IRKS,
					       MGMT_STATUS_INVALID_PARAMS);
6401 6402 6403 6404 6405 6406 6407 6408 6409
	}

	hci_dev_lock(hdev);

	hci_smp_irks_clear(hdev);

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

6410 6411 6412 6413 6414 6415 6416 6417
		if (hci_is_blocked_key(hdev,
				       HCI_BLOCKED_KEY_TYPE_IRK,
				       irk->val)) {
			bt_dev_warn(hdev, "Skipping blocked IRK for %pMR",
				    &irk->addr.bdaddr);
			continue;
		}

6418 6419
		hci_add_irk(hdev, &irk->addr.bdaddr,
			    le_addr_type(irk->addr.type), irk->val,
6420 6421 6422
			    BDADDR_ANY);
	}

6423
	hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
6424

6425
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
6426 6427 6428 6429 6430 6431

	hci_dev_unlock(hdev);

	return err;
}

6432 6433
static bool ltk_is_valid(struct mgmt_ltk_info *key)
{
6434
	if (key->initiator != 0x00 && key->initiator != 0x01)
6435
		return false;
6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448

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

6451
static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
6452
			       void *cp_data, u16 len)
6453 6454
{
	struct mgmt_cp_load_long_term_keys *cp = cp_data;
6455 6456
	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_ltk_info));
6457
	u16 key_count, expected_len;
6458
	int i, err;
6459

6460
	bt_dev_dbg(hdev, "sock %p", sk);
6461 6462

	if (!lmp_le_capable(hdev))
6463 6464
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_NOT_SUPPORTED);
6465

6466
	key_count = __le16_to_cpu(cp->key_count);
6467
	if (key_count > max_key_count) {
6468 6469
		bt_dev_err(hdev, "load_ltks: too big key_count value %u",
			   key_count);
6470 6471
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
6472
	}
6473

6474
	expected_len = struct_size(cp, keys, key_count);
6475
	if (expected_len != len) {
6476 6477
		bt_dev_err(hdev, "load_keys: expected %u bytes, got %u bytes",
			   expected_len, len);
6478 6479
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
6480 6481
	}

6482
	bt_dev_dbg(hdev, "key_count %u", key_count);
6483

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

6487
		if (!ltk_is_valid(key))
6488 6489 6490
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_LONG_TERM_KEYS,
					       MGMT_STATUS_INVALID_PARAMS);
6491 6492
	}

6493 6494 6495 6496 6497 6498
	hci_dev_lock(hdev);

	hci_smp_ltks_clear(hdev);

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

6501 6502 6503 6504 6505 6506 6507 6508
		if (hci_is_blocked_key(hdev,
				       HCI_BLOCKED_KEY_TYPE_LTK,
				       key->val)) {
			bt_dev_warn(hdev, "Skipping blocked LTK for %pMR",
				    &key->addr.bdaddr);
			continue;
		}

6509 6510
		switch (key->type) {
		case MGMT_LTK_UNAUTHENTICATED:
6511
			authenticated = 0x00;
6512
			type = key->initiator ? SMP_LTK : SMP_LTK_RESPONDER;
6513 6514
			break;
		case MGMT_LTK_AUTHENTICATED:
6515
			authenticated = 0x01;
6516
			type = key->initiator ? SMP_LTK : SMP_LTK_RESPONDER;
6517 6518 6519 6520
			break;
		case MGMT_LTK_P256_UNAUTH:
			authenticated = 0x00;
			type = SMP_LTK_P256;
6521
			break;
6522 6523 6524
		case MGMT_LTK_P256_AUTH:
			authenticated = 0x01;
			type = SMP_LTK_P256;
6525
			break;
6526 6527 6528
		case MGMT_LTK_P256_DEBUG:
			authenticated = 0x00;
			type = SMP_LTK_P256_DEBUG;
6529
			fallthrough;
6530 6531 6532
		default:
			continue;
		}
6533

6534 6535 6536
		hci_add_ltk(hdev, &key->addr.bdaddr,
			    le_addr_type(key->addr.type), type, authenticated,
			    key->val, key->enc_size, key->ediv, key->rand);
6537 6538
	}

6539
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
6540 6541
			   NULL, 0);

6542 6543
	hci_dev_unlock(hdev);

6544
	return err;
6545 6546
}

6547
static void get_conn_info_complete(struct hci_dev *hdev, void *data, int err)
6548
{
6549
	struct mgmt_pending_cmd *cmd = data;
6550
	struct hci_conn *conn = cmd->user_data;
6551
	struct mgmt_cp_get_conn_info *cp = cmd->param;
6552
	struct mgmt_rp_get_conn_info rp;
6553
	u8 status;
6554

6555 6556 6557
	bt_dev_dbg(hdev, "err %d", err);

	memcpy(&rp.addr, &cp->addr.bdaddr, sizeof(rp.addr));
6558

6559
	status = mgmt_status(err);
6560
	if (status == MGMT_STATUS_SUCCESS) {
6561
		rp.rssi = conn->rssi;
6562 6563 6564 6565 6566 6567
		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;
6568 6569
	}

6570 6571
	mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO, status,
			  &rp, sizeof(rp));
6572

6573 6574 6575 6576
	if (conn) {
		hci_conn_drop(conn);
		hci_conn_put(conn);
	}
6577

6578
	mgmt_pending_free(cmd);
6579 6580
}

6581
static int get_conn_info_sync(struct hci_dev *hdev, void *data)
6582
{
6583 6584
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_get_conn_info *cp = cmd->param;
6585
	struct hci_conn *conn;
6586 6587
	int err;
	__le16   handle;
6588

6589 6590 6591 6592 6593 6594
	/* Make sure we are still connected */
	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);
6595

6596 6597 6598 6599 6600 6601 6602
	if (!conn || conn != cmd->user_data || conn->state != BT_CONNECTED) {
		if (cmd->user_data) {
			hci_conn_drop(cmd->user_data);
			hci_conn_put(cmd->user_data);
			cmd->user_data = NULL;
		}
		return MGMT_STATUS_NOT_CONNECTED;
6603 6604
	}

6605
	handle = cpu_to_le16(conn->handle);
6606

6607 6608
	/* Refresh RSSI each time */
	err = hci_read_rssi_sync(hdev, handle);
6609

6610 6611 6612 6613 6614 6615
	/* For LE links TX power does not change thus we don't need to
	 * query for it once value is known.
	 */
	if (!err && (!bdaddr_type_is_le(cp->addr.type) ||
		     conn->tx_power == HCI_TX_POWER_INVALID))
		err = hci_read_tx_power_sync(hdev, handle, 0x00);
6616

6617 6618 6619
	/* Max TX power needs to be read only once per connection */
	if (!err && conn->max_tx_power == HCI_TX_POWER_INVALID)
		err = hci_read_tx_power_sync(hdev, handle, 0x01);
6620

6621
	return err;
6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632
}

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;

6633
	bt_dev_dbg(hdev, "sock %p", sk);
6634 6635 6636 6637 6638 6639

	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))
6640 6641 6642
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
6643 6644 6645 6646

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
6647 6648 6649
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
6650 6651 6652 6653 6654 6655 6656 6657 6658 6659
		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) {
6660 6661 6662
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_NOT_CONNECTED, &rp,
					sizeof(rp));
6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675
		goto unlock;
	}

	/* 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.
	 */
6676 6677
	if (time_after(jiffies, conn->conn_info_timestamp +
		       msecs_to_jiffies(conn_info_age)) ||
6678
	    !conn->conn_info_timestamp) {
6679
		struct mgmt_pending_cmd *cmd;
6680

6681 6682 6683 6684 6685 6686 6687
		cmd = mgmt_pending_new(sk, MGMT_OP_GET_CONN_INFO, hdev, data,
				       len);
		if (!cmd)
			err = -ENOMEM;
		else
			err = hci_cmd_sync_queue(hdev, get_conn_info_sync,
						 cmd, get_conn_info_complete);
6688

6689 6690 6691
		if (err < 0) {
			mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					  MGMT_STATUS_FAILED, &rp, sizeof(rp));
6692

6693 6694
			if (cmd)
				mgmt_pending_free(cmd);
6695 6696 6697 6698 6699

			goto unlock;
		}

		hci_conn_hold(conn);
6700
		cmd->user_data = hci_conn_get(conn);
6701 6702 6703 6704 6705 6706

		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;
6707
		rp.max_tx_power = conn->max_tx_power;
6708

6709 6710
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
6711 6712 6713 6714 6715 6716 6717
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6718
static void get_clock_info_complete(struct hci_dev *hdev, void *data, int err)
6719
{
6720 6721
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_get_clock_info *cp = cmd->param;
6722
	struct mgmt_rp_get_clock_info rp;
6723 6724 6725 6726
	struct hci_conn *conn = cmd->user_data;
	u8 status = mgmt_status(err);

	bt_dev_dbg(hdev, "err %d", err);
6727 6728

	memset(&rp, 0, sizeof(rp));
6729 6730
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;
6731

6732
	if (err)
6733 6734
		goto complete;

6735
	rp.local_clock = cpu_to_le32(hdev->clock);
6736 6737 6738 6739 6740 6741 6742

	if (conn) {
		rp.piconet_clock = cpu_to_le32(conn->clock);
		rp.accuracy = cpu_to_le16(conn->clock_accuracy);
		hci_conn_drop(conn);
		hci_conn_put(conn);
	}
6743

6744 6745 6746 6747 6748
complete:
	mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
			  sizeof(rp));

	mgmt_pending_free(cmd);
6749 6750
}

6751
static int get_clock_info_sync(struct hci_dev *hdev, void *data)
6752
{
6753 6754 6755 6756 6757
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_get_clock_info *cp = cmd->param;
	struct hci_cp_read_clock hci_cp;
	struct hci_conn *conn = cmd->user_data;
	int err;
6758

6759 6760
	memset(&hci_cp, 0, sizeof(hci_cp));
	err = hci_read_clock_sync(hdev, &hci_cp);
6761

6762 6763 6764 6765
	if (conn) {
		/* Make sure connection still exists */
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
					       &cp->addr.bdaddr);
6766

6767 6768 6769 6770 6771 6772 6773 6774 6775 6776
		if (conn && conn == cmd->user_data &&
		    conn->state == BT_CONNECTED) {
			hci_cp.handle = cpu_to_le16(conn->handle);
			hci_cp.which = 0x01; /* Piconet clock */
			err = hci_read_clock_sync(hdev, &hci_cp);
		} else if (cmd->user_data) {
			hci_conn_drop(cmd->user_data);
			hci_conn_put(cmd->user_data);
			cmd->user_data = NULL;
		}
6777 6778
	}

6779
	return err;
6780 6781 6782
}

static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data,
6783
								u16 len)
6784 6785 6786
{
	struct mgmt_cp_get_clock_info *cp = data;
	struct mgmt_rp_get_clock_info rp;
6787
	struct mgmt_pending_cmd *cmd;
6788 6789 6790
	struct hci_conn *conn;
	int err;

6791
	bt_dev_dbg(hdev, "sock %p", sk);
6792 6793 6794 6795 6796 6797

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

	if (cp->addr.type != BDADDR_BREDR)
6798 6799 6800
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
6801 6802 6803 6804

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
6805 6806 6807
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
6808 6809 6810 6811 6812 6813 6814
		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) {
6815 6816 6817 6818
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_GET_CLOCK_INFO,
						MGMT_STATUS_NOT_CONNECTED,
						&rp, sizeof(rp));
6819 6820 6821 6822 6823 6824
			goto unlock;
		}
	} else {
		conn = NULL;
	}

6825 6826
	cmd = mgmt_pending_new(sk, MGMT_OP_GET_CLOCK_INFO, hdev, data, len);
	if (!cmd)
6827
		err = -ENOMEM;
6828 6829 6830
	else
		err = hci_cmd_sync_queue(hdev, get_clock_info_sync, cmd,
					 get_clock_info_complete);
6831

6832 6833 6834
	if (err < 0) {
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					MGMT_STATUS_FAILED, &rp, sizeof(rp));
6835

6836 6837
		if (cmd)
			mgmt_pending_free(cmd);
6838

6839
	} else if (conn) {
6840
		hci_conn_hold(conn);
6841
		cmd->user_data = hci_conn_get(conn);
6842 6843 6844 6845 6846 6847 6848 6849
	}


unlock:
	hci_dev_unlock(hdev);
	return err;
}

6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867
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 */
6868
static int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr,
6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884
			       u8 addr_type, u8 auto_connect)
{
	struct hci_conn_params *params;

	params = hci_conn_params_add(hdev, addr, addr_type);
	if (!params)
		return -EIO;

	if (params->auto_connect == auto_connect)
		return 0;

	list_del_init(&params->action);

	switch (auto_connect) {
	case HCI_AUTO_CONN_DISABLED:
	case HCI_AUTO_CONN_LINK_LOSS:
6885 6886 6887 6888 6889
		/* If auto connect is being disabled when we're trying to
		 * connect to device, keep connecting.
		 */
		if (params->explicit_connect)
			list_add(&params->action, &hdev->pend_le_conns);
6890 6891
		break;
	case HCI_AUTO_CONN_REPORT:
6892 6893 6894 6895
		if (params->explicit_connect)
			list_add(&params->action, &hdev->pend_le_conns);
		else
			list_add(&params->action, &hdev->pend_le_reports);
6896 6897 6898
		break;
	case HCI_AUTO_CONN_DIRECT:
	case HCI_AUTO_CONN_ALWAYS:
6899
		if (!is_connected(hdev, addr, addr_type))
6900 6901 6902 6903 6904 6905
			list_add(&params->action, &hdev->pend_le_conns);
		break;
	}

	params->auto_connect = auto_connect;

6906 6907
	bt_dev_dbg(hdev, "addr %pMR (type %u) auto_connect %u",
		   addr, addr_type, auto_connect);
6908 6909 6910 6911

	return 0;
}

6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923
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);
}

6924 6925 6926 6927 6928
static int add_device_sync(struct hci_dev *hdev, void *data)
{
	return hci_update_passive_scan_sync(hdev);
}

6929 6930 6931 6932 6933
static int add_device(struct sock *sk, struct hci_dev *hdev,
		      void *data, u16 len)
{
	struct mgmt_cp_add_device *cp = data;
	u8 auto_conn, addr_type;
6934
	struct hci_conn_params *params;
6935
	int err;
6936
	u32 current_flags = 0;
6937

6938
	bt_dev_dbg(hdev, "sock %p", sk);
6939

6940
	if (!bdaddr_type_is_valid(cp->addr.type) ||
6941
	    !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
6942 6943 6944
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
6945

6946
	if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
6947 6948 6949
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
6950 6951 6952

	hci_dev_lock(hdev);

6953
	if (cp->addr.type == BDADDR_BREDR) {
6954
		/* Only incoming connections action is supported for now */
6955
		if (cp->action != 0x01) {
6956 6957 6958 6959
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_ADD_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
6960 6961 6962
			goto unlock;
		}

6963
		err = hci_bdaddr_list_add_with_flags(&hdev->accept_list,
6964 6965
						     &cp->addr.bdaddr,
						     cp->addr.type, 0);
6966 6967
		if (err)
			goto unlock;
6968

6969
		hci_req_update_scan(hdev);
6970

6971 6972 6973
		goto added;
	}

6974
	addr_type = le_addr_type(cp->addr.type);
6975

6976
	if (cp->action == 0x02)
6977
		auto_conn = HCI_AUTO_CONN_ALWAYS;
6978 6979
	else if (cp->action == 0x01)
		auto_conn = HCI_AUTO_CONN_DIRECT;
6980
	else
6981
		auto_conn = HCI_AUTO_CONN_REPORT;
6982

6983 6984 6985 6986 6987 6988
	/* Kernel internally uses conn_params with resolvable private
	 * address, but Add Device allows only identity addresses.
	 * Make sure it is enforced before calling
	 * hci_conn_params_lookup.
	 */
	if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
6989 6990 6991
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					MGMT_STATUS_INVALID_PARAMS,
					&cp->addr, sizeof(cp->addr));
6992 6993 6994
		goto unlock;
	}

6995 6996 6997
	/* If the connection parameters don't exist for this device,
	 * they will be created and configured with defaults.
	 */
6998
	if (hci_conn_params_set(hdev, &cp->addr.bdaddr, addr_type,
6999
				auto_conn) < 0) {
7000 7001 7002
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					MGMT_STATUS_FAILED, &cp->addr,
					sizeof(cp->addr));
7003
		goto unlock;
7004 7005 7006 7007 7008
	} else {
		params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
						addr_type);
		if (params)
			current_flags = params->current_flags;
7009 7010
	}

7011 7012 7013
	err = hci_cmd_sync_queue(hdev, add_device_sync, NULL, NULL);
	if (err < 0)
		goto unlock;
7014

7015
added:
7016
	device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);
7017 7018
	device_flags_changed(NULL, hdev, &cp->addr.bdaddr, cp->addr.type,
			     SUPPORTED_DEVICE_FLAGS(), current_flags);
7019

7020 7021 7022
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
				MGMT_STATUS_SUCCESS, &cp->addr,
				sizeof(cp->addr));
7023 7024 7025 7026 7027 7028

unlock:
	hci_dev_unlock(hdev);
	return err;
}

7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039
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);
}

7040 7041 7042 7043 7044
static int remove_device_sync(struct hci_dev *hdev, void *data)
{
	return hci_update_passive_scan_sync(hdev);
}

7045 7046 7047 7048 7049 7050
static int remove_device(struct sock *sk, struct hci_dev *hdev,
			 void *data, u16 len)
{
	struct mgmt_cp_remove_device *cp = data;
	int err;

7051
	bt_dev_dbg(hdev, "sock %p", sk);
7052 7053 7054 7055

	hci_dev_lock(hdev);

	if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
7056
		struct hci_conn_params *params;
7057 7058
		u8 addr_type;

7059
		if (!bdaddr_type_is_valid(cp->addr.type)) {
7060 7061 7062 7063
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
7064 7065 7066
			goto unlock;
		}

7067
		if (cp->addr.type == BDADDR_BREDR) {
7068
			err = hci_bdaddr_list_del(&hdev->accept_list,
7069 7070 7071
						  &cp->addr.bdaddr,
						  cp->addr.type);
			if (err) {
7072 7073 7074 7075 7076
				err = mgmt_cmd_complete(sk, hdev->id,
							MGMT_OP_REMOVE_DEVICE,
							MGMT_STATUS_INVALID_PARAMS,
							&cp->addr,
							sizeof(cp->addr));
7077 7078 7079
				goto unlock;
			}

7080
			hci_req_update_scan(hdev);
7081

7082 7083 7084 7085 7086
			device_removed(sk, hdev, &cp->addr.bdaddr,
				       cp->addr.type);
			goto complete;
		}

7087
		addr_type = le_addr_type(cp->addr.type);
7088

7089 7090 7091 7092 7093 7094
		/* Kernel internally uses conn_params with resolvable private
		 * address, but Remove Device allows only identity addresses.
		 * Make sure it is enforced before calling
		 * hci_conn_params_lookup.
		 */
		if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
7095 7096 7097 7098
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
7099 7100 7101
			goto unlock;
		}

7102 7103 7104
		params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
						addr_type);
		if (!params) {
7105 7106 7107 7108
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
7109 7110 7111
			goto unlock;
		}

7112 7113
		if (params->auto_connect == HCI_AUTO_CONN_DISABLED ||
		    params->auto_connect == HCI_AUTO_CONN_EXPLICIT) {
7114 7115 7116 7117
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
7118 7119 7120
			goto unlock;
		}

7121
		list_del(&params->action);
7122 7123
		list_del(&params->list);
		kfree(params);
7124 7125

		device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
7126
	} else {
7127
		struct hci_conn_params *p, *tmp;
7128
		struct bdaddr_list *b, *btmp;
7129

7130
		if (cp->addr.type) {
7131 7132 7133 7134
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_DEVICE,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
7135 7136 7137
			goto unlock;
		}

7138
		list_for_each_entry_safe(b, btmp, &hdev->accept_list, list) {
7139 7140 7141 7142 7143
			device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type);
			list_del(&b->list);
			kfree(b);
		}

7144
		hci_req_update_scan(hdev);
7145

7146 7147 7148 7149
		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);
7150 7151 7152 7153
			if (p->explicit_connect) {
				p->auto_connect = HCI_AUTO_CONN_EXPLICIT;
				continue;
			}
7154 7155 7156 7157 7158
			list_del(&p->action);
			list_del(&p->list);
			kfree(p);
		}

7159
		bt_dev_dbg(hdev, "All LE connection parameters were removed");
7160 7161
	}

7162 7163
	hci_cmd_sync_queue(hdev, remove_device_sync, NULL, NULL);

7164
complete:
7165 7166 7167
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE,
				MGMT_STATUS_SUCCESS, &cp->addr,
				sizeof(cp->addr));
7168 7169 7170 7171 7172
unlock:
	hci_dev_unlock(hdev);
	return err;
}

7173 7174 7175 7176
static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 len)
{
	struct mgmt_cp_load_conn_param *cp = data;
7177 7178
	const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
				     sizeof(struct mgmt_conn_param));
7179 7180 7181 7182
	u16 param_count, expected_len;
	int i;

	if (!lmp_le_capable(hdev))
7183 7184
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_NOT_SUPPORTED);
7185 7186

	param_count = __le16_to_cpu(cp->param_count);
7187
	if (param_count > max_param_count) {
7188 7189
		bt_dev_err(hdev, "load_conn_param: too big param_count value %u",
			   param_count);
7190 7191
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_INVALID_PARAMS);
7192
	}
7193

7194
	expected_len = struct_size(cp, params, param_count);
7195
	if (expected_len != len) {
7196 7197
		bt_dev_err(hdev, "load_conn_param: expected %u bytes, got %u bytes",
			   expected_len, len);
7198 7199
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_INVALID_PARAMS);
7200 7201
	}

7202
	bt_dev_dbg(hdev, "param_count %u", param_count);
7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213

	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;

7214 7215
		bt_dev_dbg(hdev, "Adding %pMR (type %u)", &param->addr.bdaddr,
			   param->addr.type);
7216 7217 7218 7219 7220 7221

		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 {
7222
			bt_dev_err(hdev, "ignoring invalid connection parameters");
7223 7224 7225 7226 7227 7228 7229 7230
			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);

7231 7232
		bt_dev_dbg(hdev, "min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x",
			   min, max, latency, timeout);
7233 7234

		if (hci_check_conn_params(min, max, latency, timeout) < 0) {
7235
			bt_dev_err(hdev, "ignoring invalid connection parameters");
7236 7237 7238 7239 7240 7241
			continue;
		}

		hci_param = hci_conn_params_add(hdev, &param->addr.bdaddr,
						addr_type);
		if (!hci_param) {
7242
			bt_dev_err(hdev, "failed to add connection parameters");
7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253
			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);

7254 7255
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
				 NULL, 0);
7256 7257
}

7258 7259 7260 7261 7262 7263 7264
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;

7265
	bt_dev_dbg(hdev, "sock %p", sk);
7266 7267

	if (hdev_is_powered(hdev))
7268 7269
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				       MGMT_STATUS_REJECTED);
7270 7271

	if (cp->config != 0x00 && cp->config != 0x01)
7272 7273
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				         MGMT_STATUS_INVALID_PARAMS);
7274 7275

	if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
7276 7277
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				       MGMT_STATUS_NOT_SUPPORTED);
7278 7279 7280 7281

	hci_dev_lock(hdev);

	if (cp->config)
7282
		changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
7283
	else
7284
		changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
7285 7286 7287 7288 7289 7290 7291 7292

	err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
	if (err < 0)
		goto unlock;

	if (!changed)
		goto unlock;

7293 7294
	err = new_options(hdev, sk);

7295
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
7296
		mgmt_index_removed(hdev);
7297

7298
		if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
7299 7300
			hci_dev_set_flag(hdev, HCI_CONFIG);
			hci_dev_set_flag(hdev, HCI_AUTO_OFF);
7301 7302 7303

			queue_work(hdev->req_workqueue, &hdev->power_on);
		} else {
7304
			set_bit(HCI_RAW, &hdev->flags);
7305 7306
			mgmt_index_added(hdev);
		}
7307 7308 7309 7310 7311 7312 7313
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

7314 7315 7316 7317 7318 7319 7320
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;

7321
	bt_dev_dbg(hdev, "sock %p", sk);
7322 7323

	if (hdev_is_powered(hdev))
7324 7325
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_REJECTED);
7326 7327

	if (!bacmp(&cp->bdaddr, BDADDR_ANY))
7328 7329
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_INVALID_PARAMS);
7330 7331

	if (!hdev->set_bdaddr)
7332 7333
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_NOT_SUPPORTED);
7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346

	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;

7347
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
7348 7349 7350 7351 7352
		err = new_options(hdev, sk);

	if (is_configured(hdev)) {
		mgmt_index_removed(hdev);

7353
		hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
7354

7355 7356
		hci_dev_set_flag(hdev, HCI_CONFIG);
		hci_dev_set_flag(hdev, HCI_AUTO_OFF);
7357 7358 7359 7360 7361 7362 7363 7364 7365

		queue_work(hdev->req_workqueue, &hdev->power_on);
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

7366 7367
static void read_local_oob_ext_data_complete(struct hci_dev *hdev, void *data,
					     int err)
7368 7369 7370 7371
{
	const struct mgmt_cp_read_local_oob_ext_data *mgmt_cp;
	struct mgmt_rp_read_local_oob_ext_data *mgmt_rp;
	u8 *h192, *r192, *h256, *r256;
7372 7373 7374
	struct mgmt_pending_cmd *cmd = data;
	struct sk_buff *skb = cmd->skb;
	u8 status = mgmt_status(err);
7375 7376
	u16 eir_len;

7377 7378 7379 7380 7381 7382 7383 7384
	if (!status) {
		if (!skb)
			status = MGMT_STATUS_FAILED;
		else if (IS_ERR(skb))
			status = mgmt_status(PTR_ERR(skb));
		else
			status = mgmt_status(skb->data[0]);
	}
7385

7386
	bt_dev_dbg(hdev, "status %u", status);
7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397

	mgmt_cp = cmd->param;

	if (status) {
		status = mgmt_status(status);
		eir_len = 0;

		h192 = NULL;
		r192 = NULL;
		h256 = NULL;
		r256 = NULL;
7398
	} else if (!bredr_sc_enabled(hdev)) {
7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442
		struct hci_rp_read_local_oob_data *rp;

		if (skb->len != sizeof(*rp)) {
			status = MGMT_STATUS_FAILED;
			eir_len = 0;
		} else {
			status = MGMT_STATUS_SUCCESS;
			rp = (void *)skb->data;

			eir_len = 5 + 18 + 18;
			h192 = rp->hash;
			r192 = rp->rand;
			h256 = NULL;
			r256 = NULL;
		}
	} else {
		struct hci_rp_read_local_oob_ext_data *rp;

		if (skb->len != sizeof(*rp)) {
			status = MGMT_STATUS_FAILED;
			eir_len = 0;
		} else {
			status = MGMT_STATUS_SUCCESS;
			rp = (void *)skb->data;

			if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
				eir_len = 5 + 18 + 18;
				h192 = NULL;
				r192 = NULL;
			} else {
				eir_len = 5 + 18 + 18 + 18 + 18;
				h192 = rp->hash192;
				r192 = rp->rand192;
			}

			h256 = rp->hash256;
			r256 = rp->rand256;
		}
	}

	mgmt_rp = kmalloc(sizeof(*mgmt_rp) + eir_len, GFP_KERNEL);
	if (!mgmt_rp)
		goto done;

7443
	if (eir_len == 0)
7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478
		goto send_rsp;

	eir_len = eir_append_data(mgmt_rp->eir, 0, EIR_CLASS_OF_DEV,
				  hdev->dev_class, 3);

	if (h192 && r192) {
		eir_len = eir_append_data(mgmt_rp->eir, eir_len,
					  EIR_SSP_HASH_C192, h192, 16);
		eir_len = eir_append_data(mgmt_rp->eir, eir_len,
					  EIR_SSP_RAND_R192, r192, 16);
	}

	if (h256 && r256) {
		eir_len = eir_append_data(mgmt_rp->eir, eir_len,
					  EIR_SSP_HASH_C256, h256, 16);
		eir_len = eir_append_data(mgmt_rp->eir, eir_len,
					  EIR_SSP_RAND_R256, r256, 16);
	}

send_rsp:
	mgmt_rp->type = mgmt_cp->type;
	mgmt_rp->eir_len = cpu_to_le16(eir_len);

	err = mgmt_cmd_complete(cmd->sk, hdev->id,
				MGMT_OP_READ_LOCAL_OOB_EXT_DATA, status,
				mgmt_rp, sizeof(*mgmt_rp) + eir_len);
	if (err < 0 || status)
		goto done;

	hci_sock_set_flag(cmd->sk, HCI_MGMT_OOB_DATA_EVENTS);

	err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
				 mgmt_rp, sizeof(*mgmt_rp) + eir_len,
				 HCI_MGMT_OOB_DATA_EVENTS, cmd->sk);
done:
7479 7480 7481
	if (skb && !IS_ERR(skb))
		kfree_skb(skb);

7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496
	kfree(mgmt_rp);
	mgmt_pending_remove(cmd);
}

static int read_local_ssp_oob_req(struct hci_dev *hdev, struct sock *sk,
				  struct mgmt_cp_read_local_oob_ext_data *cp)
{
	struct mgmt_pending_cmd *cmd;
	int err;

	cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev,
			       cp, sizeof(*cp));
	if (!cmd)
		return -ENOMEM;

7497 7498
	err = hci_cmd_sync_queue(hdev, read_local_oob_data_sync, cmd,
				 read_local_oob_ext_data_complete);
7499 7500 7501 7502 7503 7504 7505 7506 7507

	if (err < 0) {
		mgmt_pending_remove(cmd);
		return err;
	}

	return 0;
}

7508 7509 7510 7511 7512 7513 7514
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;
7515
	u8 status, flags, role, addr[7], hash[16], rand[16];
7516 7517
	int err;

7518
	bt_dev_dbg(hdev, "sock %p", sk);
7519

7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543
	if (hdev_is_powered(hdev)) {
		switch (cp->type) {
		case BIT(BDADDR_BREDR):
			status = mgmt_bredr_support(hdev);
			if (status)
				eir_len = 0;
			else
				eir_len = 5;
			break;
		case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
			status = mgmt_le_support(hdev);
			if (status)
				eir_len = 0;
			else
				eir_len = 9 + 3 + 18 + 18 + 3;
			break;
		default:
			status = MGMT_STATUS_INVALID_PARAMS;
			eir_len = 0;
			break;
		}
	} else {
		status = MGMT_STATUS_NOT_POWERED;
		eir_len = 0;
7544 7545 7546 7547
	}

	rp_len = sizeof(*rp) + eir_len;
	rp = kmalloc(rp_len, GFP_ATOMIC);
7548
	if (!rp)
7549
		return -ENOMEM;
7550

7551 7552 7553 7554 7555
	if (!status && !lmp_ssp_capable(hdev)) {
		status = MGMT_STATUS_NOT_SUPPORTED;
		eir_len = 0;
	}

7556 7557 7558
	if (status)
		goto complete;

7559
	hci_dev_lock(hdev);
7560 7561 7562 7563

	eir_len = 0;
	switch (cp->type) {
	case BIT(BDADDR_BREDR):
7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576
		if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
			err = read_local_ssp_oob_req(hdev, sk, cp);
			hci_dev_unlock(hdev);
			if (!err)
				goto done;

			status = MGMT_STATUS_FAILED;
			goto complete;
		} else {
			eir_len = eir_append_data(rp->eir, eir_len,
						  EIR_CLASS_OF_DEV,
						  hdev->dev_class, 3);
		}
7577 7578
		break;
	case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
7579 7580
		if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
		    smp_generate_oob(hdev, hash, rand) < 0) {
7581
			hci_dev_unlock(hdev);
7582 7583
			status = MGMT_STATUS_FAILED;
			goto complete;
7584 7585
		}

7586 7587 7588 7589 7590 7591 7592 7593 7594 7595
		/* This should return the active RPA, but since the RPA
		 * is only programmed on demand, it is really hard to fill
		 * this in at the moment. For now disallow retrieving
		 * local out-of-band data when privacy is in use.
		 *
		 * Returning the identity address will not help here since
		 * pairing happens before the identity resolving key is
		 * known and thus the connection establishment happens
		 * based on the RPA and not the identity address.
		 */
7596
		if (hci_dev_test_flag(hdev, HCI_PRIVACY)) {
7597 7598 7599 7600 7601 7602 7603 7604 7605
			hci_dev_unlock(hdev);
			status = MGMT_STATUS_REJECTED;
			goto complete;
		}

		if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
		   !bacmp(&hdev->bdaddr, BDADDR_ANY) ||
		   (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
		    bacmp(&hdev->static_addr, BDADDR_ANY))) {
7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623
			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));

7624 7625 7626 7627
		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));
7628

7629 7630 7631 7632
			eir_len = eir_append_data(rp->eir, eir_len,
						  EIR_LE_SC_RANDOM,
						  rand, sizeof(rand));
		}
7633

7634
		flags = mgmt_get_adv_discov_flags(hdev);
7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645

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

		eir_len = eir_append_data(rp->eir, eir_len, EIR_FLAGS,
					  &flags, sizeof(flags));
		break;
	}

	hci_dev_unlock(hdev);

7646 7647
	hci_sock_set_flag(sk, HCI_MGMT_OOB_DATA_EVENTS);

7648 7649 7650
	status = MGMT_STATUS_SUCCESS;

complete:
7651 7652 7653
	rp->type = cp->type;
	rp->eir_len = cpu_to_le16(eir_len);

7654
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
7655 7656
				status, rp, sizeof(*rp) + eir_len);
	if (err < 0 || status)
7657 7658 7659 7660 7661
		goto done;

	err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
				 rp, sizeof(*rp) + eir_len,
				 HCI_MGMT_OOB_DATA_EVENTS, sk);
7662

7663
done:
7664 7665 7666 7667 7668
	kfree(rp);

	return err;
}

7669 7670 7671 7672 7673 7674 7675 7676
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;
7677
	flags |= MGMT_ADV_FLAG_APPEARANCE;
7678
	flags |= MGMT_ADV_FLAG_LOCAL_NAME;
7679 7680 7681 7682
	flags |= MGMT_ADV_PARAM_DURATION;
	flags |= MGMT_ADV_PARAM_TIMEOUT;
	flags |= MGMT_ADV_PARAM_INTERVALS;
	flags |= MGMT_ADV_PARAM_TX_POWER;
7683
	flags |= MGMT_ADV_PARAM_SCAN_RSP;
7684

7685 7686 7687 7688 7689
	/* In extended adv TX_POWER returned from Set Adv Param
	 * will be always valid.
	 */
	if ((hdev->adv_tx_power != HCI_TX_POWER_INVALID) ||
	    ext_adv_capable(hdev))
7690 7691
		flags |= MGMT_ADV_FLAG_TX_POWER;

7692 7693
	if (ext_adv_capable(hdev)) {
		flags |= MGMT_ADV_FLAG_SEC_1M;
7694 7695
		flags |= MGMT_ADV_FLAG_HW_OFFLOAD;
		flags |= MGMT_ADV_FLAG_CAN_SET_TX_POWER;
7696 7697 7698 7699 7700 7701 7702 7703

		if (hdev->le_features[1] & HCI_LE_PHY_2M)
			flags |= MGMT_ADV_FLAG_SEC_2M;

		if (hdev->le_features[1] & HCI_LE_PHY_CODED)
			flags |= MGMT_ADV_FLAG_SEC_CODED;
	}

7704 7705 7706
	return flags;
}

7707 7708 7709 7710 7711
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;
7712
	int err;
7713
	struct adv_info *adv_instance;
7714
	u32 supported_flags;
7715
	u8 *instance;
7716

7717
	bt_dev_dbg(hdev, "sock %p", sk);
7718

7719 7720 7721 7722
	if (!lmp_le_capable(hdev))
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
				       MGMT_STATUS_REJECTED);

7723 7724
	hci_dev_lock(hdev);

7725
	rp_len = sizeof(*rp) + hdev->adv_instance_cnt;
7726 7727 7728 7729 7730 7731
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
		hci_dev_unlock(hdev);
		return -ENOMEM;
	}

7732 7733 7734
	supported_flags = get_supported_adv_flags(hdev);

	rp->supported_flags = cpu_to_le32(supported_flags);
7735 7736
	rp->max_adv_data_len = HCI_MAX_AD_LENGTH;
	rp->max_scan_rsp_len = HCI_MAX_AD_LENGTH;
7737
	rp->max_instances = hdev->le_num_of_adv_sets;
7738
	rp->num_instances = hdev->adv_instance_cnt;
7739

7740 7741 7742 7743
	instance = rp->instance;
	list_for_each_entry(adv_instance, &hdev->adv_instances, list) {
		*instance = adv_instance->instance;
		instance++;
7744
	}
7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755

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

7756 7757 7758 7759
static u8 calculate_name_len(struct hci_dev *hdev)
{
	u8 buf[HCI_MAX_SHORT_NAME_LENGTH + 3];

7760
	return eir_append_local_name(hdev, buf, 0);
7761 7762 7763 7764
}

static u8 tlv_data_max_len(struct hci_dev *hdev, u32 adv_flags,
			   bool is_adv_data)
7765
{
7766
	u8 max_len = HCI_MAX_AD_LENGTH;
7767

7768 7769 7770
	if (is_adv_data) {
		if (adv_flags & (MGMT_ADV_FLAG_DISCOV |
				 MGMT_ADV_FLAG_LIMITED_DISCOV |
7771
				 MGMT_ADV_FLAG_MANAGED_FLAGS))
7772
			max_len -= 3;
7773

7774
		if (adv_flags & MGMT_ADV_FLAG_TX_POWER)
7775
			max_len -= 3;
7776 7777
	} else {
		if (adv_flags & MGMT_ADV_FLAG_LOCAL_NAME)
7778
			max_len -= calculate_name_len(hdev);
7779

7780
		if (adv_flags & (MGMT_ADV_FLAG_APPEARANCE))
7781
			max_len -= 4;
7782 7783
	}

7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808
	return max_len;
}

static bool flags_managed(u32 adv_flags)
{
	return adv_flags & (MGMT_ADV_FLAG_DISCOV |
			    MGMT_ADV_FLAG_LIMITED_DISCOV |
			    MGMT_ADV_FLAG_MANAGED_FLAGS);
}

static bool tx_power_managed(u32 adv_flags)
{
	return adv_flags & MGMT_ADV_FLAG_TX_POWER;
}

static bool name_managed(u32 adv_flags)
{
	return adv_flags & MGMT_ADV_FLAG_LOCAL_NAME;
}

static bool appearance_managed(u32 adv_flags)
{
	return adv_flags & MGMT_ADV_FLAG_APPEARANCE;
}

7809 7810
static bool tlv_data_is_valid(struct hci_dev *hdev, u32 adv_flags, u8 *data,
			      u8 len, bool is_adv_data)
7811 7812 7813 7814
{
	int i, cur_len;
	u8 max_len;

7815
	max_len = tlv_data_max_len(hdev, adv_flags, is_adv_data);
7816

7817
	if (len > max_len)
7818 7819
		return false;

7820 7821 7822
	/* Make sure that the data is correctly formatted. */
	for (i = 0, cur_len = 0; i < len; i += (cur_len + 1)) {
		cur_len = data[i];
7823

7824 7825 7826
		if (!cur_len)
			continue;

7827 7828
		if (data[i + 1] == EIR_FLAGS &&
		    (!is_adv_data || flags_managed(adv_flags)))
7829 7830 7831 7832 7833 7834 7835 7836 7837
			return false;

		if (data[i + 1] == EIR_TX_POWER && tx_power_managed(adv_flags))
			return false;

		if (data[i + 1] == EIR_NAME_COMPLETE && name_managed(adv_flags))
			return false;

		if (data[i + 1] == EIR_NAME_SHORT && name_managed(adv_flags))
7838 7839
			return false;

7840 7841
		if (data[i + 1] == EIR_APPEARANCE &&
		    appearance_managed(adv_flags))
7842 7843
			return false;

7844 7845 7846
		/* If the current field length would exceed the total data
		 * length, then it's invalid.
		 */
7847
		if (i + cur_len >= len)
7848 7849 7850 7851 7852 7853
			return false;
	}

	return true;
}

7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878
static bool requested_adv_flags_are_valid(struct hci_dev *hdev, u32 adv_flags)
{
	u32 supported_flags, phy_flags;

	/* The current implementation only supports a subset of the specified
	 * flags. Also need to check mutual exclusiveness of sec flags.
	 */
	supported_flags = get_supported_adv_flags(hdev);
	phy_flags = adv_flags & MGMT_ADV_FLAG_SEC_MASK;
	if (adv_flags & ~supported_flags ||
	    ((phy_flags && (phy_flags ^ (phy_flags & -phy_flags)))))
		return false;

	return true;
}

static bool adv_busy(struct hci_dev *hdev)
{
	return (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
		pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
		pending_find(MGMT_OP_SET_LE, hdev) ||
		pending_find(MGMT_OP_ADD_EXT_ADV_PARAMS, hdev) ||
		pending_find(MGMT_OP_ADD_EXT_ADV_DATA, hdev));
}

7879 7880
static void add_adv_complete(struct hci_dev *hdev, struct sock *sk, u8 instance,
			     int err)
7881
{
7882
	struct adv_info *adv, *n;
7883

7884
	bt_dev_dbg(hdev, "err %d", err);
7885 7886 7887

	hci_dev_lock(hdev);

7888 7889
	list_for_each_entry_safe(adv, n, &hdev->adv_instances, list) {
		u8 instance;
7890

7891
		if (!adv->pending)
7892 7893
			continue;

7894 7895
		if (!err) {
			adv->pending = false;
7896 7897 7898
			continue;
		}

7899
		instance = adv->instance;
7900 7901 7902 7903 7904

		if (hdev->cur_adv_instance == instance)
			cancel_adv_timeout(hdev);

		hci_remove_adv_instance(hdev, instance);
7905
		mgmt_advertising_removed(sk, hdev, instance);
7906 7907
	}

7908 7909 7910 7911 7912 7913 7914 7915 7916 7917
	hci_dev_unlock(hdev);
}

static void add_advertising_complete(struct hci_dev *hdev, void *data, int err)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_add_advertising *cp = cmd->param;
	struct mgmt_rp_add_advertising rp;

	memset(&rp, 0, sizeof(rp));
7918

7919
	rp.instance = cp->instance;
7920

7921
	if (err)
7922
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
7923
				mgmt_status(err));
7924 7925
	else
		mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
7926
				  mgmt_status(err), &rp, sizeof(rp));
7927

7928
	add_adv_complete(hdev, cmd->sk, cp->instance, err);
7929

7930 7931 7932 7933 7934 7935 7936 7937 7938
	mgmt_pending_free(cmd);
}

static int add_advertising_sync(struct hci_dev *hdev, void *data)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_add_advertising *cp = cmd->param;

	return hci_schedule_adv_instance_sync(hdev, cp->instance, true);
7939 7940 7941 7942 7943 7944 7945 7946 7947
}

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;
	u8 status;
7948 7949 7950 7951
	u16 timeout, duration;
	unsigned int prev_instance_cnt = hdev->adv_instance_cnt;
	u8 schedule_instance = 0;
	struct adv_info *next_instance;
7952 7953 7954
	int err;
	struct mgmt_pending_cmd *cmd;

7955
	bt_dev_dbg(hdev, "sock %p", sk);
7956 7957 7958 7959 7960 7961

	status = mgmt_le_support(hdev);
	if (status)
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				       status);

7962
	if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets)
7963 7964 7965 7966
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);

	if (data_len != sizeof(*cp) + cp->adv_data_len + cp->scan_rsp_len)
7967 7968 7969
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);

7970
	flags = __le32_to_cpu(cp->flags);
7971
	timeout = __le16_to_cpu(cp->timeout);
7972
	duration = __le16_to_cpu(cp->duration);
7973

7974
	if (!requested_adv_flags_are_valid(hdev, flags))
7975 7976 7977 7978 7979
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);

	hci_dev_lock(hdev);

7980 7981 7982 7983 7984 7985
	if (timeout && !hdev_is_powered(hdev)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_REJECTED);
		goto unlock;
	}

7986
	if (adv_busy(hdev)) {
7987 7988 7989 7990 7991
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_BUSY);
		goto unlock;
	}

7992 7993
	if (!tlv_data_is_valid(hdev, flags, cp->data, cp->adv_data_len, true) ||
	    !tlv_data_is_valid(hdev, flags, cp->data + cp->adv_data_len,
7994
			       cp->scan_rsp_len, false)) {
7995 7996 7997 7998 7999
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_INVALID_PARAMS);
		goto unlock;
	}

8000 8001 8002 8003
	err = hci_add_adv_instance(hdev, cp->instance, flags,
				   cp->adv_data_len, cp->data,
				   cp->scan_rsp_len,
				   cp->data + cp->adv_data_len,
8004 8005 8006 8007
				   timeout, duration,
				   HCI_ADV_TX_POWER_NO_PREFERENCE,
				   hdev->le_adv_min_interval,
				   hdev->le_adv_max_interval);
8008 8009 8010 8011 8012
	if (err < 0) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				      MGMT_STATUS_FAILED);
		goto unlock;
	}
8013

8014 8015 8016 8017
	/* Only trigger an advertising added event if a new instance was
	 * actually added.
	 */
	if (hdev->adv_instance_cnt > prev_instance_cnt)
8018
		mgmt_advertising_added(sk, hdev, cp->instance);
8019

8020 8021 8022 8023 8024 8025 8026
	if (hdev->cur_adv_instance == cp->instance) {
		/* If the currently advertised instance is being changed then
		 * cancel the current advertising and schedule the next
		 * instance. If there is only one instance then the overridden
		 * advertising data will be visible right away.
		 */
		cancel_adv_timeout(hdev);
8027

8028 8029 8030 8031 8032 8033 8034 8035 8036
		next_instance = hci_get_next_instance(hdev, cp->instance);
		if (next_instance)
			schedule_instance = next_instance->instance;
	} else if (!hdev->adv_instance_timeout) {
		/* Immediately advertise the new instance if no other
		 * instance is currently being advertised.
		 */
		schedule_instance = cp->instance;
	}
8037

8038 8039 8040
	/* If the HCI_ADVERTISING flag is set or the device isn't powered or
	 * there is no instance to be advertised then we have no HCI
	 * communication to make. Simply return.
8041 8042
	 */
	if (!hdev_is_powered(hdev) ||
8043 8044 8045
	    hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
	    !schedule_instance) {
		rp.instance = cp->instance;
8046 8047 8048 8049 8050 8051 8052 8053
		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.
	 */
8054
	cmd = mgmt_pending_new(sk, MGMT_OP_ADD_ADVERTISING, hdev, data,
8055 8056 8057 8058 8059 8060
			       data_len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

8061
	cp->instance = schedule_instance;
8062

8063 8064 8065 8066
	err = hci_cmd_sync_queue(hdev, add_advertising_sync, cmd,
				 add_advertising_complete);
	if (err < 0)
		mgmt_pending_free(cmd);
8067 8068 8069 8070 8071 8072 8073

unlock:
	hci_dev_unlock(hdev);

	return err;
}

8074 8075
static void add_ext_adv_params_complete(struct hci_dev *hdev, void *data,
					int err)
8076
{
8077 8078
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_add_ext_adv_params *cp = cmd->param;
8079
	struct mgmt_rp_add_ext_adv_params rp;
8080
	struct adv_info *adv;
8081 8082 8083 8084 8085 8086
	u32 flags;

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

	hci_dev_lock(hdev);

8087 8088
	adv = hci_find_adv_instance(hdev, cp->instance);
	if (!adv)
8089 8090 8091
		goto unlock;

	rp.instance = cp->instance;
8092
	rp.tx_power = adv->tx_power;
8093 8094 8095 8096 8097 8098 8099 8100

	/* While we're at it, inform userspace of the available space for this
	 * advertisement, given the flags that will be used.
	 */
	flags = __le32_to_cpu(cp->flags);
	rp.max_adv_data_len = tlv_data_max_len(hdev, flags, true);
	rp.max_scan_rsp_len = tlv_data_max_len(hdev, flags, false);

8101
	if (err) {
8102 8103 8104 8105
		/* If this advertisement was previously advertising and we
		 * failed to update it, we signal that it has been removed and
		 * delete its structure
		 */
8106
		if (!adv->pending)
8107 8108 8109 8110 8111
			mgmt_advertising_removed(cmd->sk, hdev, cp->instance);

		hci_remove_adv_instance(hdev, cp->instance);

		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
8112
				mgmt_status(err));
8113 8114
	} else {
		mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
8115
				  mgmt_status(err), &rp, sizeof(rp));
8116 8117 8118 8119
	}

unlock:
	if (cmd)
8120
		mgmt_pending_free(cmd);
8121 8122 8123 8124

	hci_dev_unlock(hdev);
}

8125 8126 8127 8128 8129 8130 8131 8132
static int add_ext_adv_params_sync(struct hci_dev *hdev, void *data)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_add_ext_adv_params *cp = cmd->param;

	return hci_setup_ext_adv_instance_sync(hdev, cp->instance);
}

8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208
static int add_ext_adv_params(struct sock *sk, struct hci_dev *hdev,
			      void *data, u16 data_len)
{
	struct mgmt_cp_add_ext_adv_params *cp = data;
	struct mgmt_rp_add_ext_adv_params rp;
	struct mgmt_pending_cmd *cmd = NULL;
	u32 flags, min_interval, max_interval;
	u16 timeout, duration;
	u8 status;
	s8 tx_power;
	int err;

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

	status = mgmt_le_support(hdev);
	if (status)
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
				       status);

	if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets)
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);

	/* The purpose of breaking add_advertising into two separate MGMT calls
	 * for params and data is to allow more parameters to be added to this
	 * structure in the future. For this reason, we verify that we have the
	 * bare minimum structure we know of when the interface was defined. Any
	 * extra parameters we don't know about will be ignored in this request.
	 */
	if (data_len < MGMT_ADD_EXT_ADV_PARAMS_MIN_SIZE)
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);

	flags = __le32_to_cpu(cp->flags);

	if (!requested_adv_flags_are_valid(hdev, flags))
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);

	hci_dev_lock(hdev);

	/* In new interface, we require that we are powered to register */
	if (!hdev_is_powered(hdev)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
				      MGMT_STATUS_REJECTED);
		goto unlock;
	}

	if (adv_busy(hdev)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
				      MGMT_STATUS_BUSY);
		goto unlock;
	}

	/* Parse defined parameters from request, use defaults otherwise */
	timeout = (flags & MGMT_ADV_PARAM_TIMEOUT) ?
		  __le16_to_cpu(cp->timeout) : 0;

	duration = (flags & MGMT_ADV_PARAM_DURATION) ?
		   __le16_to_cpu(cp->duration) :
		   hdev->def_multi_adv_rotation_duration;

	min_interval = (flags & MGMT_ADV_PARAM_INTERVALS) ?
		       __le32_to_cpu(cp->min_interval) :
		       hdev->le_adv_min_interval;

	max_interval = (flags & MGMT_ADV_PARAM_INTERVALS) ?
		       __le32_to_cpu(cp->max_interval) :
		       hdev->le_adv_max_interval;

	tx_power = (flags & MGMT_ADV_PARAM_TX_POWER) ?
		   cp->tx_power :
		   HCI_ADV_TX_POWER_NO_PREFERENCE;

	/* Create advertising instance with no advertising or response data */
	err = hci_add_adv_instance(hdev, cp->instance, flags,
8209 8210
				   0, NULL, 0, NULL, timeout, duration,
				   tx_power, min_interval, max_interval);
8211 8212 8213 8214 8215 8216 8217 8218 8219

	if (err < 0) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
				      MGMT_STATUS_FAILED);
		goto unlock;
	}

	/* Submit request for advertising params if ext adv available */
	if (ext_adv_capable(hdev)) {
8220 8221
		cmd = mgmt_pending_new(sk, MGMT_OP_ADD_EXT_ADV_PARAMS, hdev,
				       data, data_len);
8222 8223 8224 8225 8226 8227
		if (!cmd) {
			err = -ENOMEM;
			hci_remove_adv_instance(hdev, cp->instance);
			goto unlock;
		}

8228 8229 8230 8231
		err = hci_cmd_sync_queue(hdev, add_ext_adv_params_sync, cmd,
					 add_ext_adv_params_complete);
		if (err < 0)
			mgmt_pending_free(cmd);
8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247
	} else {
		rp.instance = cp->instance;
		rp.tx_power = HCI_ADV_TX_POWER_NO_PREFERENCE;
		rp.max_adv_data_len = tlv_data_max_len(hdev, flags, true);
		rp.max_scan_rsp_len = tlv_data_max_len(hdev, flags, false);
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_EXT_ADV_PARAMS,
					MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
	}

unlock:
	hci_dev_unlock(hdev);

	return err;
}

8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290
static void add_ext_adv_data_complete(struct hci_dev *hdev, void *data, int err)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_add_ext_adv_data *cp = cmd->param;
	struct mgmt_rp_add_advertising rp;

	add_adv_complete(hdev, cmd->sk, cp->instance, err);

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

	rp.instance = cp->instance;

	if (err)
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
				mgmt_status(err));
	else
		mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
				  mgmt_status(err), &rp, sizeof(rp));

	mgmt_pending_free(cmd);
}

static int add_ext_adv_data_sync(struct hci_dev *hdev, void *data)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_add_ext_adv_data *cp = cmd->param;
	int err;

	if (ext_adv_capable(hdev)) {
		err = hci_update_adv_data_sync(hdev, cp->instance);
		if (err)
			return err;

		err = hci_update_scan_rsp_data_sync(hdev, cp->instance);
		if (err)
			return err;

		return hci_enable_ext_advertising_sync(hdev, cp->instance);
	}

	return hci_schedule_adv_instance_sync(hdev, cp->instance, true);
}

8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341
static int add_ext_adv_data(struct sock *sk, struct hci_dev *hdev, void *data,
			    u16 data_len)
{
	struct mgmt_cp_add_ext_adv_data *cp = data;
	struct mgmt_rp_add_ext_adv_data rp;
	u8 schedule_instance = 0;
	struct adv_info *next_instance;
	struct adv_info *adv_instance;
	int err = 0;
	struct mgmt_pending_cmd *cmd;

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

	hci_dev_lock(hdev);

	adv_instance = hci_find_adv_instance(hdev, cp->instance);

	if (!adv_instance) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
				      MGMT_STATUS_INVALID_PARAMS);
		goto unlock;
	}

	/* In new interface, we require that we are powered to register */
	if (!hdev_is_powered(hdev)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
				      MGMT_STATUS_REJECTED);
		goto clear_new_instance;
	}

	if (adv_busy(hdev)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
				      MGMT_STATUS_BUSY);
		goto clear_new_instance;
	}

	/* Validate new data */
	if (!tlv_data_is_valid(hdev, adv_instance->flags, cp->data,
			       cp->adv_data_len, true) ||
	    !tlv_data_is_valid(hdev, adv_instance->flags, cp->data +
			       cp->adv_data_len, cp->scan_rsp_len, false)) {
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
				      MGMT_STATUS_INVALID_PARAMS);
		goto clear_new_instance;
	}

	/* Set the data in the advertising instance */
	hci_set_adv_instance_data(hdev, cp->instance, cp->adv_data_len,
				  cp->data, cp->scan_rsp_len,
				  cp->data + cp->adv_data_len);

8342 8343 8344 8345 8346 8347 8348 8349 8350
	/* If using software rotation, determine next instance to use */
	if (hdev->cur_adv_instance == cp->instance) {
		/* If the currently advertised instance is being changed
		 * then cancel the current advertising and schedule the
		 * next instance. If there is only one instance then the
		 * overridden advertising data will be visible right
		 * away
		 */
		cancel_adv_timeout(hdev);
8351

8352 8353 8354 8355 8356 8357
		next_instance = hci_get_next_instance(hdev, cp->instance);
		if (next_instance)
			schedule_instance = next_instance->instance;
	} else if (!hdev->adv_instance_timeout) {
		/* Immediately advertise the new instance if no other
		 * instance is currently being advertised.
8358
		 */
8359 8360
		schedule_instance = cp->instance;
	}
8361

8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374
	/* If the HCI_ADVERTISING flag is set or there is no instance to
	 * be advertised then we have no HCI communication to make.
	 * Simply return.
	 */
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING) || !schedule_instance) {
		if (adv_instance->pending) {
			mgmt_advertising_added(sk, hdev, cp->instance);
			adv_instance->pending = false;
		}
		rp.instance = cp->instance;
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
					MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
		goto unlock;
8375 8376
	}

8377
	cmd = mgmt_pending_new(sk, MGMT_OP_ADD_EXT_ADV_DATA, hdev, data,
8378 8379 8380 8381 8382 8383
			       data_len);
	if (!cmd) {
		err = -ENOMEM;
		goto clear_new_instance;
	}

8384 8385
	err = hci_cmd_sync_queue(hdev, add_ext_adv_data_sync, cmd,
				 add_ext_adv_data_complete);
8386
	if (err < 0) {
8387
		mgmt_pending_free(cmd);
8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409
		goto clear_new_instance;
	}

	/* We were successful in updating data, so trigger advertising_added
	 * event if this is an instance that wasn't previously advertising. If
	 * a failure occurs in the requests we initiated, we will remove the
	 * instance again in add_advertising_complete
	 */
	if (adv_instance->pending)
		mgmt_advertising_added(sk, hdev, cp->instance);

	goto unlock;

clear_new_instance:
	hci_remove_adv_instance(hdev, cp->instance);

unlock:
	hci_dev_unlock(hdev);

	return err;
}

8410 8411
static void remove_advertising_complete(struct hci_dev *hdev, void *data,
					int err)
8412
{
8413 8414
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_remove_advertising *cp = cmd->param;
8415 8416
	struct mgmt_rp_remove_advertising rp;

8417
	bt_dev_dbg(hdev, "err %d", err);
8418

8419 8420
	memset(&rp, 0, sizeof(rp));
	rp.instance = cp->instance;
8421

8422 8423 8424 8425 8426 8427
	if (err)
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
				mgmt_status(err));
	else
		mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
				  MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
8428

8429 8430
	mgmt_pending_free(cmd);
}
8431

8432 8433 8434 8435 8436
static int remove_advertising_sync(struct hci_dev *hdev, void *data)
{
	struct mgmt_pending_cmd *cmd = data;
	struct mgmt_cp_remove_advertising *cp = cmd->param;
	int err;
8437

8438 8439 8440 8441 8442 8443 8444 8445
	err = hci_remove_advertising_sync(hdev, cmd->sk, cp->instance, true);
	if (err)
		return err;

	if (list_empty(&hdev->adv_instances))
		err = hci_disable_advertising_sync(hdev);

	return err;
8446 8447 8448 8449 8450 8451 8452
}

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_pending_cmd *cmd;
8453
	int err;
8454

8455
	bt_dev_dbg(hdev, "sock %p", sk);
8456 8457 8458

	hci_dev_lock(hdev);

8459
	if (cp->instance && !hci_find_adv_instance(hdev, cp->instance)) {
8460 8461 8462 8463 8464 8465
		err = mgmt_cmd_status(sk, hdev->id,
				      MGMT_OP_REMOVE_ADVERTISING,
				      MGMT_STATUS_INVALID_PARAMS);
		goto unlock;
	}

8466 8467 8468 8469 8470 8471 8472 8473
	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;
	}

8474
	if (list_empty(&hdev->adv_instances)) {
8475 8476 8477 8478 8479
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
				      MGMT_STATUS_INVALID_PARAMS);
		goto unlock;
	}

8480
	cmd = mgmt_pending_new(sk, MGMT_OP_REMOVE_ADVERTISING, hdev, data,
8481 8482 8483 8484 8485 8486
			       data_len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

8487 8488
	err = hci_cmd_sync_queue(hdev, remove_advertising_sync, cmd,
				 remove_advertising_complete);
8489
	if (err < 0)
8490
		mgmt_pending_free(cmd);
8491 8492 8493 8494 8495 8496 8497

unlock:
	hci_dev_unlock(hdev);

	return err;
}

8498 8499 8500 8501 8502 8503 8504 8505
static int get_adv_size_info(struct sock *sk, struct hci_dev *hdev,
			     void *data, u16 data_len)
{
	struct mgmt_cp_get_adv_size_info *cp = data;
	struct mgmt_rp_get_adv_size_info rp;
	u32 flags, supported_flags;
	int err;

8506
	bt_dev_dbg(hdev, "sock %p", sk);
8507 8508 8509 8510 8511

	if (!lmp_le_capable(hdev))
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
				       MGMT_STATUS_REJECTED);

8512
	if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets)
8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
				       MGMT_STATUS_INVALID_PARAMS);

	flags = __le32_to_cpu(cp->flags);

	/* The current implementation only supports a subset of the specified
	 * flags.
	 */
	supported_flags = get_supported_adv_flags(hdev);
	if (flags & ~supported_flags)
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
				       MGMT_STATUS_INVALID_PARAMS);

	rp.instance = cp->instance;
	rp.flags = cp->flags;
8528 8529
	rp.max_adv_data_len = tlv_data_max_len(hdev, flags, true);
	rp.max_scan_rsp_len = tlv_data_max_len(hdev, flags, false);
8530 8531 8532 8533 8534 8535 8536

	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
				MGMT_STATUS_SUCCESS, &rp, sizeof(rp));

	return err;
}

8537
static const struct hci_mgmt_handler mgmt_handlers[] = {
8538
	{ NULL }, /* 0x0000 (no command) */
8539
	{ read_version,            MGMT_READ_VERSION_SIZE,
8540 8541
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
8542
	{ read_commands,           MGMT_READ_COMMANDS_SIZE,
8543 8544
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
8545
	{ read_index_list,         MGMT_READ_INDEX_LIST_SIZE,
8546 8547 8548 8549
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
	{ read_controller_info,    MGMT_READ_INFO_SIZE,
						HCI_MGMT_UNTRUSTED },
8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562
	{ 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 },
8563 8564 8565 8566
	{ 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 },
8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578
	{ 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 },
8579 8580 8581
	{ read_local_oob_data,     MGMT_READ_LOCAL_OOB_DATA_SIZE },
	{ add_remote_oob_data,     MGMT_ADD_REMOTE_OOB_DATA_SIZE,
						HCI_MGMT_VAR_LEN },
8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595
	{ 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 },
8596 8597
	{ load_irks,               MGMT_LOAD_IRKS_SIZE,
						HCI_MGMT_VAR_LEN },
8598 8599 8600 8601
	{ 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 },
8602 8603 8604
	{ load_conn_param,         MGMT_LOAD_CONN_PARAM_SIZE,
						HCI_MGMT_VAR_LEN },
	{ read_unconf_index_list,  MGMT_READ_UNCONF_INDEX_LIST_SIZE,
8605 8606
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
8607
	{ read_config_info,        MGMT_READ_CONFIG_INFO_SIZE,
8608 8609
						HCI_MGMT_UNCONFIGURED |
						HCI_MGMT_UNTRUSTED },
8610 8611 8612 8613 8614 8615
	{ 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 },
8616
	{ read_local_oob_ext_data, MGMT_READ_LOCAL_OOB_EXT_DATA_SIZE },
8617
	{ read_ext_index_list,     MGMT_READ_EXT_INDEX_LIST_SIZE,
8618 8619
						HCI_MGMT_NO_HDEV |
						HCI_MGMT_UNTRUSTED },
8620
	{ read_adv_features,       MGMT_READ_ADV_FEATURES_SIZE },
8621 8622
	{ add_advertising,	   MGMT_ADD_ADVERTISING_SIZE,
						HCI_MGMT_VAR_LEN },
8623
	{ remove_advertising,	   MGMT_REMOVE_ADVERTISING_SIZE },
8624
	{ get_adv_size_info,       MGMT_GET_ADV_SIZE_INFO_SIZE },
8625
	{ start_limited_discovery, MGMT_START_DISCOVERY_SIZE },
8626 8627
	{ read_ext_controller_info,MGMT_READ_EXT_INFO_SIZE,
						HCI_MGMT_UNTRUSTED },
8628
	{ set_appearance,	   MGMT_SET_APPEARANCE_SIZE },
8629
	{ get_phy_configuration,   MGMT_GET_PHY_CONFIGURATION_SIZE },
8630
	{ set_phy_configuration,   MGMT_SET_PHY_CONFIGURATION_SIZE },
8631 8632
	{ set_blocked_keys,	   MGMT_OP_SET_BLOCKED_KEYS_SIZE,
						HCI_MGMT_VAR_LEN },
8633
	{ set_wideband_speech,	   MGMT_SETTING_SIZE },
8634
	{ read_controller_cap,     MGMT_READ_CONTROLLER_CAP_SIZE,
8635
						HCI_MGMT_UNTRUSTED },
8636 8637 8638 8639 8640 8641
	{ read_exp_features_info,  MGMT_READ_EXP_FEATURES_INFO_SIZE,
						HCI_MGMT_UNTRUSTED |
						HCI_MGMT_HDEV_OPTIONAL },
	{ set_exp_feature,         MGMT_SET_EXP_FEATURE_SIZE,
						HCI_MGMT_VAR_LEN |
						HCI_MGMT_HDEV_OPTIONAL },
8642 8643 8644 8645
	{ read_def_system_config,  MGMT_READ_DEF_SYSTEM_CONFIG_SIZE,
						HCI_MGMT_UNTRUSTED },
	{ set_def_system_config,   MGMT_SET_DEF_SYSTEM_CONFIG_SIZE,
						HCI_MGMT_VAR_LEN },
8646 8647 8648 8649
	{ read_def_runtime_config, MGMT_READ_DEF_RUNTIME_CONFIG_SIZE,
						HCI_MGMT_UNTRUSTED },
	{ set_def_runtime_config,  MGMT_SET_DEF_RUNTIME_CONFIG_SIZE,
						HCI_MGMT_VAR_LEN },
8650 8651
	{ get_device_flags,        MGMT_GET_DEVICE_FLAGS_SIZE },
	{ set_device_flags,        MGMT_SET_DEVICE_FLAGS_SIZE },
8652
	{ read_adv_mon_features,   MGMT_READ_ADV_MONITOR_FEATURES_SIZE },
8653 8654
	{ add_adv_patterns_monitor,MGMT_ADD_ADV_PATTERNS_MONITOR_SIZE,
						HCI_MGMT_VAR_LEN },
8655
	{ remove_adv_monitor,      MGMT_REMOVE_ADV_MONITOR_SIZE },
8656 8657 8658 8659
	{ add_ext_adv_params,      MGMT_ADD_EXT_ADV_PARAMS_MIN_SIZE,
						HCI_MGMT_VAR_LEN },
	{ add_ext_adv_data,        MGMT_ADD_EXT_ADV_DATA_SIZE,
						HCI_MGMT_VAR_LEN },
8660 8661 8662
	{ add_adv_patterns_monitor_rssi,
				   MGMT_ADD_ADV_PATTERNS_MONITOR_RSSI_SIZE,
						HCI_MGMT_VAR_LEN },
8663 8664
};

8665
void mgmt_index_added(struct hci_dev *hdev)
8666
{
8667
	struct mgmt_ev_ext_index ev;
8668

8669 8670 8671
	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		return;

8672
	switch (hdev->dev_type) {
8673
	case HCI_PRIMARY:
8674 8675 8676
		if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
			mgmt_index_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev,
					 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
8677
			ev.type = 0x01;
8678 8679 8680
		} else {
			mgmt_index_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0,
					 HCI_MGMT_INDEX_EVENTS);
8681
			ev.type = 0x00;
8682 8683
		}
		break;
8684 8685 8686 8687 8688
	case HCI_AMP:
		ev.type = 0x02;
		break;
	default:
		return;
8689
	}
8690 8691 8692 8693 8694

	ev.bus = hdev->bus;

	mgmt_index_event(MGMT_EV_EXT_INDEX_ADDED, hdev, &ev, sizeof(ev),
			 HCI_MGMT_EXT_INDEX_EVENTS);
8695 8696
}

8697
void mgmt_index_removed(struct hci_dev *hdev)
8698
{
8699
	struct mgmt_ev_ext_index ev;
8700
	u8 status = MGMT_STATUS_INVALID_INDEX;
8701

8702 8703 8704
	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		return;

8705
	switch (hdev->dev_type) {
8706
	case HCI_PRIMARY:
8707
		mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
8708

8709 8710 8711
		if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
			mgmt_index_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev,
					 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
8712
			ev.type = 0x01;
8713 8714 8715
		} else {
			mgmt_index_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0,
					 HCI_MGMT_INDEX_EVENTS);
8716
			ev.type = 0x00;
8717 8718
		}
		break;
8719 8720 8721 8722 8723
	case HCI_AMP:
		ev.type = 0x02;
		break;
	default:
		return;
8724
	}
8725 8726 8727 8728 8729

	ev.bus = hdev->bus;

	mgmt_index_event(MGMT_EV_EXT_INDEX_REMOVED, hdev, &ev, sizeof(ev),
			 HCI_MGMT_EXT_INDEX_EVENTS);
8730 8731
}

8732
void mgmt_power_on(struct hci_dev *hdev, int err)
8733 8734 8735
{
	struct cmd_lookup match = { NULL, hdev };

8736
	bt_dev_dbg(hdev, "err %d", err);
8737

8738 8739 8740
	hci_dev_lock(hdev);

	if (!err) {
8741
		restart_le_actions(hdev);
8742
		hci_update_passive_scan(hdev);
8743 8744
	}

8745 8746 8747 8748 8749 8750 8751
	mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);

	new_settings(hdev, match.sk);

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

8752
	hci_dev_unlock(hdev);
8753
}
8754

8755
void __mgmt_power_off(struct hci_dev *hdev)
8756 8757
{
	struct cmd_lookup match = { NULL, hdev };
8758
	u8 status, zero_cod[] = { 0, 0, 0 };
8759

8760
	mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
8761 8762 8763 8764 8765 8766 8767 8768

	/* 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.
	 */
8769
	if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
8770 8771 8772 8773 8774
		status = MGMT_STATUS_INVALID_INDEX;
	else
		status = MGMT_STATUS_NOT_POWERED;

	mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
8775

8776
	if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0) {
8777 8778 8779
		mgmt_limited_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
				   zero_cod, sizeof(zero_cod),
				   HCI_MGMT_DEV_CLASS_EVENTS, NULL);
8780 8781
		ext_info_changed(hdev, NULL);
	}
8782

8783
	new_settings(hdev, match.sk);
8784 8785 8786

	if (match.sk)
		sock_put(match.sk);
8787
}
8788

8789
void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
8790
{
8791
	struct mgmt_pending_cmd *cmd;
8792 8793
	u8 status;

8794
	cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
8795
	if (!cmd)
8796
		return;
8797 8798 8799 8800 8801 8802

	if (err == -ERFKILL)
		status = MGMT_STATUS_RFKILLED;
	else
		status = MGMT_STATUS_FAILED;

8803
	mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
8804 8805 8806 8807

	mgmt_pending_remove(cmd);
}

8808 8809
void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
		       bool persistent)
8810
{
8811
	struct mgmt_ev_new_link_key ev;
8812

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

8815
	ev.store_hint = persistent;
8816
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
8817
	ev.key.addr.type = BDADDR_BREDR;
8818
	ev.key.type = key->type;
8819
	memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
8820
	ev.key.pin_len = key->pin_len;
8821

8822
	mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
8823
}
8824

8825 8826
static u8 mgmt_ltk_type(struct smp_ltk *ltk)
{
8827 8828
	switch (ltk->type) {
	case SMP_LTK:
8829
	case SMP_LTK_RESPONDER:
8830 8831 8832 8833 8834 8835 8836 8837 8838 8839
		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;
	}
8840 8841 8842 8843

	return MGMT_LTK_UNAUTHENTICATED;
}

8844
void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
8845 8846 8847 8848 8849
{
	struct mgmt_ev_new_long_term_key ev;

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

8850
	/* Devices using resolvable or non-resolvable random addresses
F
Florian Grandel 已提交
8851
	 * without providing an identity resolving key don't require
8852 8853 8854 8855 8856 8857 8858 8859 8860
	 * 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.
	 */
8861 8862 8863 8864
	if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
	    (key->bdaddr.b[5] & 0xc0) != 0xc0)
		ev.store_hint = 0x00;
	else
8865
		ev.store_hint = persistent;
8866

8867
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
8868
	ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
8869
	ev.key.type = mgmt_ltk_type(key);
8870 8871
	ev.key.enc_size = key->enc_size;
	ev.key.ediv = key->ediv;
8872
	ev.key.rand = key->rand;
8873

8874
	if (key->type == SMP_LTK)
8875
		ev.key.initiator = 1;
8876

8877 8878 8879
	/* Make sure we copy only the significant bytes based on the
	 * encryption key size, and set the rest of the value to zeroes.
	 */
8880
	memcpy(ev.key.val, key->val, key->enc_size);
8881 8882
	memset(ev.key.val + key->enc_size, 0,
	       sizeof(ev.key.val) - key->enc_size);
8883

8884
	mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
8885 8886
}

8887
void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk, bool persistent)
8888 8889 8890 8891 8892
{
	struct mgmt_ev_new_irk ev;

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

8893
	ev.store_hint = persistent;
8894

8895 8896 8897 8898 8899 8900 8901 8902
	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);
}

8903 8904
void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
		   bool persistent)
8905 8906 8907 8908 8909 8910
{
	struct mgmt_ev_new_csrk ev;

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

	/* Devices using resolvable or non-resolvable random addresses
F
Florian Grandel 已提交
8911
	 * without providing an identity resolving key don't require
8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922
	 * 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
8923
		ev.store_hint = persistent;
8924 8925 8926

	bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
	ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
8927
	ev.key.type = csrk->type;
8928 8929 8930 8931 8932
	memcpy(ev.key.val, csrk->val, sizeof(csrk->val));

	mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
}

8933
void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
8934 8935
			 u8 bdaddr_type, u8 store_hint, u16 min_interval,
			 u16 max_interval, u16 latency, u16 timeout)
8936 8937 8938
{
	struct mgmt_ev_new_conn_param ev;

8939 8940 8941
	if (!hci_is_identity_address(bdaddr, bdaddr_type))
		return;

8942 8943 8944
	memset(&ev, 0, sizeof(ev));
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
8945
	ev.store_hint = store_hint;
8946 8947 8948 8949 8950 8951 8952 8953
	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);
}

8954
void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
8955
			   u8 *name, u8 name_len)
8956
{
8957 8958 8959
	char buf[512];
	struct mgmt_ev_device_connected *ev = (void *) buf;
	u16 eir_len = 0;
8960
	u32 flags = 0;
8961

8962 8963
	bacpy(&ev->addr.bdaddr, &conn->dst);
	ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
8964

8965 8966 8967
	if (conn->out)
		flags |= MGMT_DEV_FOUND_INITIATED_CONN;

8968
	ev->flags = __cpu_to_le32(flags);
8969

8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981
	/* 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);
8982

8983
		if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
8984 8985 8986 8987
			eir_len = eir_append_data(ev->eir, eir_len,
						  EIR_CLASS_OF_DEV,
						  conn->dev_class, 3);
	}
8988

8989
	ev->eir_len = cpu_to_le16(eir_len);
8990

8991 8992
	mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
		    sizeof(*ev) + eir_len, NULL);
8993 8994
}

8995
static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
8996 8997 8998
{
	struct sock **sk = data;

8999
	cmd->cmd_complete(cmd, 0);
9000 9001 9002 9003

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

9004
	mgmt_pending_remove(cmd);
9005 9006
}

9007
static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
9008
{
9009
	struct hci_dev *hdev = data;
9010
	struct mgmt_cp_unpair_device *cp = cmd->param;
9011

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

9014
	cmd->cmd_complete(cmd, 0);
9015 9016 9017
	mgmt_pending_remove(cmd);
}

9018 9019
bool mgmt_powering_down(struct hci_dev *hdev)
{
9020
	struct mgmt_pending_cmd *cmd;
9021 9022
	struct mgmt_mode *cp;

9023
	cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
9024 9025 9026 9027 9028 9029 9030 9031 9032 9033
	if (!cmd)
		return false;

	cp = cmd->param;
	if (!cp->val)
		return true;

	return false;
}

9034
void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
9035 9036
			      u8 link_type, u8 addr_type, u8 reason,
			      bool mgmt_connected)
9037
{
9038
	struct mgmt_ev_device_disconnected ev;
9039 9040
	struct sock *sk = NULL;

9041 9042 9043 9044 9045 9046
	/* 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);
9047 9048
	}

9049 9050 9051
	if (!mgmt_connected)
		return;

9052 9053 9054
	if (link_type != ACL_LINK && link_type != LE_LINK)
		return;

9055
	mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
9056

9057 9058 9059
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
	ev.reason = reason;
9060

9061 9062 9063 9064
	/* Report disconnects due to suspend */
	if (hdev->suspended)
		ev.reason = MGMT_DEV_DISCONN_LOCAL_HOST_SUSPEND;

9065
	mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
9066 9067

	if (sk)
9068
		sock_put(sk);
9069

9070
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
9071
			     hdev);
9072 9073
}

9074 9075
void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
			    u8 link_type, u8 addr_type, u8 status)
9076
{
9077 9078
	u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
	struct mgmt_cp_disconnect *cp;
9079
	struct mgmt_pending_cmd *cmd;
9080

9081 9082 9083
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
			     hdev);

9084
	cmd = pending_find(MGMT_OP_DISCONNECT, hdev);
9085
	if (!cmd)
9086
		return;
9087

9088 9089 9090 9091 9092 9093 9094 9095
	cp = cmd->param;

	if (bacmp(bdaddr, &cp->addr.bdaddr))
		return;

	if (cp->addr.type != bdaddr_type)
		return;

9096
	cmd->cmd_complete(cmd, mgmt_status(status));
9097
	mgmt_pending_remove(cmd);
9098
}
9099

9100 9101
void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
			 u8 addr_type, u8 status)
9102 9103
{
	struct mgmt_ev_connect_failed ev;
9104

9105 9106 9107 9108 9109 9110
	/* 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);
9111
	}
9112

9113
	bacpy(&ev.addr.bdaddr, bdaddr);
9114
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
9115
	ev.status = mgmt_status(status);
9116

9117
	mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
9118
}
9119

9120
void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
9121 9122 9123
{
	struct mgmt_ev_pin_code_request ev;

9124
	bacpy(&ev.addr.bdaddr, bdaddr);
9125
	ev.addr.type = BDADDR_BREDR;
9126
	ev.secure = secure;
9127

9128
	mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
9129 9130
}

9131 9132
void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
				  u8 status)
9133
{
9134
	struct mgmt_pending_cmd *cmd;
9135

9136
	cmd = pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
9137
	if (!cmd)
9138
		return;
9139

9140
	cmd->cmd_complete(cmd, mgmt_status(status));
9141
	mgmt_pending_remove(cmd);
9142 9143
}

9144 9145
void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
				      u8 status)
9146
{
9147
	struct mgmt_pending_cmd *cmd;
9148

9149
	cmd = pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
9150
	if (!cmd)
9151
		return;
9152

9153
	cmd->cmd_complete(cmd, mgmt_status(status));
9154
	mgmt_pending_remove(cmd);
9155
}
9156

9157
int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
9158
			      u8 link_type, u8 addr_type, u32 value,
9159
			      u8 confirm_hint)
9160 9161 9162
{
	struct mgmt_ev_user_confirm_request ev;

9163
	bt_dev_dbg(hdev, "bdaddr %pMR", bdaddr);
9164

9165
	bacpy(&ev.addr.bdaddr, bdaddr);
9166
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
9167
	ev.confirm_hint = confirm_hint;
9168
	ev.value = cpu_to_le32(value);
9169

9170
	return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
9171
			  NULL);
9172 9173
}

9174
int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
9175
			      u8 link_type, u8 addr_type)
9176 9177 9178
{
	struct mgmt_ev_user_passkey_request ev;

9179
	bt_dev_dbg(hdev, "bdaddr %pMR", bdaddr);
9180

9181
	bacpy(&ev.addr.bdaddr, bdaddr);
9182
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
9183 9184

	return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
9185
			  NULL);
9186 9187
}

9188
static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
9189 9190
				      u8 link_type, u8 addr_type, u8 status,
				      u8 opcode)
9191
{
9192
	struct mgmt_pending_cmd *cmd;
9193

9194
	cmd = pending_find(opcode, hdev);
9195 9196 9197
	if (!cmd)
		return -ENOENT;

9198
	cmd->cmd_complete(cmd, mgmt_status(status));
9199
	mgmt_pending_remove(cmd);
9200

9201
	return 0;
9202 9203
}

9204
int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
9205
				     u8 link_type, u8 addr_type, u8 status)
9206
{
9207
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
9208
					  status, MGMT_OP_USER_CONFIRM_REPLY);
9209 9210
}

9211
int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
9212
					 u8 link_type, u8 addr_type, u8 status)
9213
{
9214
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
9215 9216
					  status,
					  MGMT_OP_USER_CONFIRM_NEG_REPLY);
9217
}
9218

9219
int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
9220
				     u8 link_type, u8 addr_type, u8 status)
9221
{
9222
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
9223
					  status, MGMT_OP_USER_PASSKEY_REPLY);
9224 9225
}

9226
int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
9227
					 u8 link_type, u8 addr_type, u8 status)
9228
{
9229
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
9230 9231
					  status,
					  MGMT_OP_USER_PASSKEY_NEG_REPLY);
9232 9233
}

9234 9235 9236 9237 9238 9239
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;

9240
	bt_dev_dbg(hdev, "bdaddr %pMR", bdaddr);
9241 9242 9243 9244 9245 9246 9247 9248 9249

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

9250
void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
9251 9252
{
	struct mgmt_ev_auth_failed ev;
9253
	struct mgmt_pending_cmd *cmd;
9254
	u8 status = mgmt_status(hci_status);
9255

9256 9257 9258
	bacpy(&ev.addr.bdaddr, &conn->dst);
	ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
	ev.status = status;
9259

9260 9261 9262 9263 9264
	cmd = find_pairing(conn);

	mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
		    cmd ? cmd->sk : NULL);

9265 9266 9267 9268
	if (cmd) {
		cmd->cmd_complete(cmd, status);
		mgmt_pending_remove(cmd);
	}
9269
}
9270

9271
void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
9272 9273
{
	struct cmd_lookup match = { NULL, hdev };
9274
	bool changed;
9275 9276 9277 9278

	if (status) {
		u8 mgmt_err = mgmt_status(status);
		mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
9279
				     cmd_status_rsp, &mgmt_err);
9280
		return;
9281 9282
	}

9283
	if (test_bit(HCI_AUTH, &hdev->flags))
9284
		changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
9285
	else
9286
		changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
9287

9288
	mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
9289
			     &match);
9290

9291
	if (changed)
9292
		new_settings(hdev, match.sk);
9293 9294 9295 9296 9297

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

9298
static void clear_eir(struct hci_request *req)
9299
{
9300
	struct hci_dev *hdev = req->hdev;
9301 9302
	struct hci_cp_write_eir cp;

9303
	if (!lmp_ext_inq_capable(hdev))
9304
		return;
9305

9306 9307
	memset(hdev->eir, 0, sizeof(hdev->eir));

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

9310
	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
9311 9312
}

9313
void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
9314 9315
{
	struct cmd_lookup match = { NULL, hdev };
9316
	struct hci_request req;
9317
	bool changed = false;
9318 9319 9320

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

9322 9323
		if (enable && hci_dev_test_and_clear_flag(hdev,
							  HCI_SSP_ENABLED)) {
9324
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
9325
			new_settings(hdev, NULL);
9326
		}
9327

9328 9329
		mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
				     &mgmt_err);
9330
		return;
9331 9332 9333
	}

	if (enable) {
9334
		changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
9335
	} else {
9336
		changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
9337
		if (!changed)
9338 9339
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_HS_ENABLED);
9340
		else
9341
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
9342 9343 9344 9345
	}

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

9346
	if (changed)
9347
		new_settings(hdev, match.sk);
9348

9349
	if (match.sk)
9350 9351
		sock_put(match.sk);

9352 9353
	hci_req_init(&req, hdev);

9354 9355
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
		if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
9356 9357
			hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
				    sizeof(enable), &enable);
9358
		__hci_req_update_eir(&req);
9359
	} else {
9360
		clear_eir(&req);
9361
	}
9362 9363

	hci_req_run(&req, NULL);
9364 9365
}

9366
static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
9367 9368 9369 9370 9371 9372 9373 9374 9375
{
	struct cmd_lookup *match = data;

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

9376 9377
void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
				    u8 status)
9378
{
9379
	struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
9380

9381 9382 9383
	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);
9384

9385
	if (!status) {
9386 9387
		mgmt_limited_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class,
				   3, HCI_MGMT_DEV_CLASS_EVENTS, NULL);
9388 9389
		ext_info_changed(hdev, NULL);
	}
9390 9391 9392

	if (match.sk)
		sock_put(match.sk);
9393 9394
}

9395
void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
9396 9397
{
	struct mgmt_cp_set_local_name ev;
9398
	struct mgmt_pending_cmd *cmd;
9399

9400
	if (status)
9401
		return;
9402 9403 9404

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

9407
	cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
9408 9409
	if (!cmd) {
		memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
9410

9411 9412 9413
		/* If this is a HCI command related to powering on the
		 * HCI dev don't send any mgmt signals.
		 */
9414
		if (pending_find(MGMT_OP_SET_POWERED, hdev))
9415
			return;
9416
	}
9417

9418 9419
	mgmt_limited_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
			   HCI_MGMT_LOCAL_NAME_EVENTS, cmd ? cmd->sk : NULL);
9420
	ext_info_changed(hdev, cmd ? cmd->sk : NULL);
9421
}
9422

9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434
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;
}

9435 9436
static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
{
9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453
	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) {
9454
				memcpy(uuid, bluetooth_base_uuid, 16);
9455 9456 9457 9458 9459 9460 9461 9462 9463
				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) {
9464
				memcpy(uuid, bluetooth_base_uuid, 16);
9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486
				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;
	}

9487 9488 9489
	return false;
}

9490 9491 9492
static void restart_le_scan(struct hci_dev *hdev)
{
	/* If controller is not scanning we are done. */
9493
	if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
9494 9495 9496 9497 9498 9499 9500
		return;

	if (time_after(jiffies + DISCOV_LE_RESTART_DELAY,
		       hdev->discovery.scan_start +
		       hdev->discovery.scan_duration))
		return;

9501
	queue_delayed_work(hdev->req_workqueue, &hdev->le_scan_restart,
9502 9503 9504
			   DISCOV_LE_RESTART_DELAY);
}

9505 9506
static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
			    u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
9507
{
9508 9509 9510 9511 9512
	/* 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.
9513 9514 9515
	 *
	 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
	 * the results are also dropped.
9516 9517
	 */
	if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
9518 9519 9520
	    (rssi == HCI_RSSI_INVALID ||
	    (rssi < hdev->discovery.rssi &&
	     !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
9521
		return  false;
9522

9523 9524 9525
	if (hdev->discovery.uuid_count != 0) {
		/* If a list of UUIDs is provided in filter, results with no
		 * matching UUID should be dropped.
9526
		 */
9527 9528 9529 9530 9531 9532
		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;
9533
	}
9534

9535 9536
	/* If duplicate filtering does not report RSSI changes, then restart
	 * scanning to ensure updated result with updated RSSI values.
9537
	 */
9538 9539 9540 9541 9542 9543 9544 9545
	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;
	}
9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564

	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;
9565 9566 9567
		if (link_type == LE_LINK &&
		    list_empty(&hdev->pend_le_reports) &&
		    !hci_is_adv_monitoring(hdev)) {
9568
			return;
9569
		}
9570 9571
	}

9572
	if (hdev->discovery.result_filtering) {
9573 9574 9575 9576 9577 9578
		/* We are using service discovery */
		if (!is_filter_match(hdev, rssi, eir, eir_len, scan_rsp,
				     scan_rsp_len))
			return;
	}

9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590
	if (hdev->discovery.limited) {
		/* Check for limited discoverable bit */
		if (dev_class) {
			if (!(dev_class[1] & 0x20))
				return;
		} else {
			u8 *flags = eir_get_data(eir, eir_len, EIR_FLAGS, NULL);
			if (!flags || !(flags[0] & LE_AD_LIMITED))
				return;
		}
	}

9591 9592 9593 9594
	/* 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))
9595 9596
		return;

9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619
	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);

9620 9621
	if (dev_class && !eir_get_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
				       NULL))
9622 9623 9624 9625 9626 9627 9628
		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);

9629 9630
	ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
	ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
9631

9632
	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
9633
}
9634

9635 9636
void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
		      u8 addr_type, s8 rssi, u8 *name, u8 name_len)
9637
{
9638 9639 9640
	struct mgmt_ev_device_found *ev;
	char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
	u16 eir_len;
9641

9642
	ev = (struct mgmt_ev_device_found *) buf;
9643

9644 9645 9646
	memset(buf, 0, sizeof(buf));

	bacpy(&ev->addr.bdaddr, bdaddr);
9647
	ev->addr.type = link_to_bdaddr(link_type, addr_type);
9648 9649 9650
	ev->rssi = rssi;

	eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
9651
				  name_len);
9652

9653
	ev->eir_len = cpu_to_le16(eir_len);
9654

9655
	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
9656
}
9657

9658
void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
9659
{
9660
	struct mgmt_ev_discovering ev;
9661

9662
	bt_dev_dbg(hdev, "discovering %u", discovering);
9663

9664 9665 9666 9667
	memset(&ev, 0, sizeof(ev));
	ev.type = hdev->discovery.type;
	ev.discovering = discovering;

9668
	mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
9669
}
9670

9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694
void mgmt_suspending(struct hci_dev *hdev, u8 state)
{
	struct mgmt_ev_controller_suspend ev;

	ev.suspend_state = state;
	mgmt_event(MGMT_EV_CONTROLLER_SUSPEND, hdev, &ev, sizeof(ev), NULL);
}

void mgmt_resuming(struct hci_dev *hdev, u8 reason, bdaddr_t *bdaddr,
		   u8 addr_type)
{
	struct mgmt_ev_controller_resume ev;

	ev.wake_reason = reason;
	if (bdaddr) {
		bacpy(&ev.addr.bdaddr, bdaddr);
		ev.addr.type = addr_type;
	} else {
		memset(&ev.addr, 0, sizeof(ev.addr));
	}

	mgmt_event(MGMT_EV_CONTROLLER_RESUME, hdev, &ev, sizeof(ev), NULL);
}

9695 9696 9697 9698
static struct hci_mgmt_chan chan = {
	.channel	= HCI_CHANNEL_CONTROL,
	.handler_count	= ARRAY_SIZE(mgmt_handlers),
	.handlers	= mgmt_handlers,
9699
	.hdev_init	= mgmt_init_hdev,
9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710
};

int mgmt_init(void)
{
	return hci_mgmt_chan_register(&chan);
}

void mgmt_exit(void)
{
	hci_mgmt_chan_unregister(&chan);
}