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

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

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License version 2 as
   published by the Free Software Foundation;

   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
   IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
   CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
   SOFTWARE IS DISCLAIMED.
*/

/* Bluetooth HCI Management interface */

27
#include <linux/module.h>
28 29 30 31
#include <asm/unaligned.h>

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

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

39
#define MGMT_VERSION	1
40
#define MGMT_REVISION	9
41

42 43 44 45 46 47 48
static const u16 mgmt_commands[] = {
	MGMT_OP_READ_INDEX_LIST,
	MGMT_OP_READ_INFO,
	MGMT_OP_SET_POWERED,
	MGMT_OP_SET_DISCOVERABLE,
	MGMT_OP_SET_CONNECTABLE,
	MGMT_OP_SET_FAST_CONNECTABLE,
49
	MGMT_OP_SET_BONDABLE,
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
	MGMT_OP_SET_LINK_SECURITY,
	MGMT_OP_SET_SSP,
	MGMT_OP_SET_HS,
	MGMT_OP_SET_LE,
	MGMT_OP_SET_DEV_CLASS,
	MGMT_OP_SET_LOCAL_NAME,
	MGMT_OP_ADD_UUID,
	MGMT_OP_REMOVE_UUID,
	MGMT_OP_LOAD_LINK_KEYS,
	MGMT_OP_LOAD_LONG_TERM_KEYS,
	MGMT_OP_DISCONNECT,
	MGMT_OP_GET_CONNECTIONS,
	MGMT_OP_PIN_CODE_REPLY,
	MGMT_OP_PIN_CODE_NEG_REPLY,
	MGMT_OP_SET_IO_CAPABILITY,
	MGMT_OP_PAIR_DEVICE,
	MGMT_OP_CANCEL_PAIR_DEVICE,
	MGMT_OP_UNPAIR_DEVICE,
	MGMT_OP_USER_CONFIRM_REPLY,
	MGMT_OP_USER_CONFIRM_NEG_REPLY,
	MGMT_OP_USER_PASSKEY_REPLY,
	MGMT_OP_USER_PASSKEY_NEG_REPLY,
	MGMT_OP_READ_LOCAL_OOB_DATA,
	MGMT_OP_ADD_REMOTE_OOB_DATA,
	MGMT_OP_REMOVE_REMOTE_OOB_DATA,
	MGMT_OP_START_DISCOVERY,
	MGMT_OP_STOP_DISCOVERY,
	MGMT_OP_CONFIRM_NAME,
	MGMT_OP_BLOCK_DEVICE,
	MGMT_OP_UNBLOCK_DEVICE,
80
	MGMT_OP_SET_DEVICE_ID,
81
	MGMT_OP_SET_ADVERTISING,
82
	MGMT_OP_SET_BREDR,
83
	MGMT_OP_SET_STATIC_ADDRESS,
84
	MGMT_OP_SET_SCAN_PARAMS,
85
	MGMT_OP_SET_SECURE_CONN,
86
	MGMT_OP_SET_DEBUG_KEYS,
87
	MGMT_OP_SET_PRIVACY,
88
	MGMT_OP_LOAD_IRKS,
89
	MGMT_OP_GET_CONN_INFO,
90
	MGMT_OP_GET_CLOCK_INFO,
91 92
	MGMT_OP_ADD_DEVICE,
	MGMT_OP_REMOVE_DEVICE,
93
	MGMT_OP_LOAD_CONN_PARAM,
94
	MGMT_OP_READ_UNCONF_INDEX_LIST,
95
	MGMT_OP_READ_CONFIG_INFO,
96
	MGMT_OP_SET_EXTERNAL_CONFIG,
97
	MGMT_OP_SET_PUBLIC_ADDRESS,
98
	MGMT_OP_START_SERVICE_DISCOVERY,
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
};

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

133
#define CACHE_TIMEOUT	msecs_to_jiffies(2 * 1000)
134

135 136 137
#define ZERO_KEY "\x00\x00\x00\x00\x00\x00\x00\x00" \
		 "\x00\x00\x00\x00\x00\x00\x00\x00"

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

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

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

	return MGMT_STATUS_FAILED;
}

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

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

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

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

	/* Time stamp */
	__net_timestamp(skb);

247
	hci_send_to_channel(channel, skb, skip_sk);
248 249 250 251 252
	kfree_skb(skb);

	return 0;
}

253 254 255 256 257 258 259
static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 len,
		      struct sock *skip_sk)
{
	return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
			       skip_sk);
}

260
static int mgmt_cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
261 262 263 264
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;
	struct mgmt_ev_cmd_status *ev;
265
	int err;
266

267
	BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
268

269
	skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL);
270 271 272 273 274
	if (!skb)
		return -ENOMEM;

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

275
	hdr->opcode = cpu_to_le16(MGMT_EV_CMD_STATUS);
276
	hdr->index = cpu_to_le16(index);
277 278 279 280
	hdr->len = cpu_to_le16(sizeof(*ev));

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

283 284
	err = sock_queue_rcv_skb(sk, skb);
	if (err < 0)
285 286
		kfree_skb(skb);

287
	return err;
288 289
}

290 291
static int mgmt_cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status,
			     void *rp, size_t rp_len)
292 293 294 295
{
	struct sk_buff *skb;
	struct mgmt_hdr *hdr;
	struct mgmt_ev_cmd_complete *ev;
296
	int err;
297 298 299

	BT_DBG("sock %p", sk);

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

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

306
	hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
307
	hdr->index = cpu_to_le16(index);
308
	hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
309

310
	ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
311
	ev->opcode = cpu_to_le16(cmd);
312
	ev->status = status;
313 314 315

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

317 318
	err = sock_queue_rcv_skb(sk, skb);
	if (err < 0)
319 320
		kfree_skb(skb);

321
	return err;
322 323
}

324 325
static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
			u16 data_len)
326 327 328 329 330 331
{
	struct mgmt_rp_read_version rp;

	BT_DBG("sock %p", sk);

	rp.version = MGMT_VERSION;
332
	rp.revision = cpu_to_le16(MGMT_REVISION);
333

334 335
	return mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0,
				 &rp, sizeof(rp));
336 337
}

338 339
static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 data_len)
340 341
{
	struct mgmt_rp_read_commands *rp;
342 343
	const u16 num_commands = ARRAY_SIZE(mgmt_commands);
	const u16 num_events = ARRAY_SIZE(mgmt_events);
344
	__le16 *opcode;
345 346 347 348 349 350 351 352 353 354 355
	size_t rp_size;
	int i, err;

	BT_DBG("sock %p", sk);

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

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

356 357
	rp->num_commands = cpu_to_le16(num_commands);
	rp->num_events = cpu_to_le16(num_events);
358 359 360 361 362 363 364

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

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

365 366
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0,
				rp, rp_size);
367 368 369 370 371
	kfree(rp);

	return err;
}

372 373
static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
374 375
{
	struct mgmt_rp_read_index_list *rp;
376
	struct hci_dev *d;
377
	size_t rp_len;
378
	u16 count;
379
	int err;
380 381 382 383 384 385

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

	count = 0;
386
	list_for_each_entry(d, &hci_dev_list, list) {
387
		if (d->dev_type == HCI_BREDR &&
388
		    !hci_dev_test_flag(d, HCI_UNCONFIGURED))
389
			count++;
390 391
	}

392 393 394
	rp_len = sizeof(*rp) + (2 * count);
	rp = kmalloc(rp_len, GFP_ATOMIC);
	if (!rp) {
395
		read_unlock(&hci_dev_list_lock);
396
		return -ENOMEM;
397
	}
398

399
	count = 0;
400
	list_for_each_entry(d, &hci_dev_list, list) {
401 402 403
		if (hci_dev_test_flag(d, HCI_SETUP) ||
		    hci_dev_test_flag(d, HCI_CONFIG) ||
		    hci_dev_test_flag(d, HCI_USER_CHANNEL))
404 405
			continue;

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

412
		if (d->dev_type == HCI_BREDR &&
413
		    !hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
414 415 416
			rp->index[count++] = cpu_to_le16(d->id);
			BT_DBG("Added hci%u", d->id);
		}
417 418
	}

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

422 423
	read_unlock(&hci_dev_list_lock);

424 425
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST,
				0, rp, rp_len);
426

427 428 429
	kfree(rp);

	return err;
430 431
}

432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
static int read_unconf_index_list(struct sock *sk, struct hci_dev *hdev,
				  void *data, u16 data_len)
{
	struct mgmt_rp_read_unconf_index_list *rp;
	struct hci_dev *d;
	size_t rp_len;
	u16 count;
	int err;

	BT_DBG("sock %p", sk);

	read_lock(&hci_dev_list_lock);

	count = 0;
	list_for_each_entry(d, &hci_dev_list, list) {
		if (d->dev_type == HCI_BREDR &&
448
		    hci_dev_test_flag(d, HCI_UNCONFIGURED))
449 450 451 452 453 454 455 456 457 458 459 460
			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) {
461 462 463
		if (hci_dev_test_flag(d, HCI_SETUP) ||
		    hci_dev_test_flag(d, HCI_CONFIG) ||
		    hci_dev_test_flag(d, HCI_USER_CHANNEL))
464 465 466 467 468 469 470 471 472
			continue;

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

		if (d->dev_type == HCI_BREDR &&
473
		    hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
474 475 476 477 478 479 480 481 482 483
			rp->index[count++] = cpu_to_le16(d->id);
			BT_DBG("Added hci%u", d->id);
		}
	}

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

	read_unlock(&hci_dev_list_lock);

484 485
	err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
				MGMT_OP_READ_UNCONF_INDEX_LIST, 0, rp, rp_len);
486 487 488 489 490 491

	kfree(rp);

	return err;
}

492 493 494
static bool is_configured(struct hci_dev *hdev)
{
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
495
	    !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
496 497 498 499 500 501 502 503 504
		return false;

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

	return true;
}

505 506 507 508
static __le32 get_missing_options(struct hci_dev *hdev)
{
	u32 options = 0;

509
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
510
	    !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
511 512
		options |= MGMT_OPTION_EXTERNAL_CONFIG;

513 514 515 516 517 518 519
	if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
	    !bacmp(&hdev->public_addr, BDADDR_ANY))
		options |= MGMT_OPTION_PUBLIC_ADDRESS;

	return cpu_to_le32(options);
}

520 521 522 523 524 525 526 527
static int new_options(struct hci_dev *hdev, struct sock *skip)
{
	__le32 options = get_missing_options(hdev);

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

528 529 530 531
static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
{
	__le32 options = get_missing_options(hdev);

532 533
	return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &options,
				 sizeof(options));
534 535
}

536 537 538 539
static int read_config_info(struct sock *sk, struct hci_dev *hdev,
			    void *data, u16 data_len)
{
	struct mgmt_rp_read_config_info rp;
540
	u32 options = 0;
541 542 543 544 545 546 547

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

	hci_dev_lock(hdev);

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

549 550 551
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
		options |= MGMT_OPTION_EXTERNAL_CONFIG;

552
	if (hdev->set_bdaddr)
553 554 555 556
		options |= MGMT_OPTION_PUBLIC_ADDRESS;

	rp.supported_options = cpu_to_le32(options);
	rp.missing_options = get_missing_options(hdev);
557 558 559

	hci_dev_unlock(hdev);

560 561
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0,
				 &rp, sizeof(rp));
562 563
}

564 565 566 567 568
static u32 get_supported_settings(struct hci_dev *hdev)
{
	u32 settings = 0;

	settings |= MGMT_SETTING_POWERED;
569
	settings |= MGMT_SETTING_BONDABLE;
570
	settings |= MGMT_SETTING_DEBUG_KEYS;
571 572
	settings |= MGMT_SETTING_CONNECTABLE;
	settings |= MGMT_SETTING_DISCOVERABLE;
573

574
	if (lmp_bredr_capable(hdev)) {
575 576
		if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
			settings |= MGMT_SETTING_FAST_CONNECTABLE;
577 578
		settings |= MGMT_SETTING_BREDR;
		settings |= MGMT_SETTING_LINK_SECURITY;
579 580 581 582 583

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

585
		if (lmp_sc_capable(hdev))
586
			settings |= MGMT_SETTING_SECURE_CONN;
587
	}
588

589
	if (lmp_le_capable(hdev)) {
590
		settings |= MGMT_SETTING_LE;
591
		settings |= MGMT_SETTING_ADVERTISING;
592
		settings |= MGMT_SETTING_SECURE_CONN;
593
		settings |= MGMT_SETTING_PRIVACY;
594
		settings |= MGMT_SETTING_STATIC_ADDRESS;
595
	}
596

597 598
	if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
	    hdev->set_bdaddr)
599 600
		settings |= MGMT_SETTING_CONFIGURATION;

601 602 603 604 605 606 607
	return settings;
}

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

608
	if (hdev_is_powered(hdev))
609 610
		settings |= MGMT_SETTING_POWERED;

611
	if (hci_dev_test_flag(hdev, HCI_CONNECTABLE))
612 613
		settings |= MGMT_SETTING_CONNECTABLE;

614
	if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
615 616
		settings |= MGMT_SETTING_FAST_CONNECTABLE;

617
	if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
618 619
		settings |= MGMT_SETTING_DISCOVERABLE;

620
	if (hci_dev_test_flag(hdev, HCI_BONDABLE))
621
		settings |= MGMT_SETTING_BONDABLE;
622

623
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
624 625
		settings |= MGMT_SETTING_BREDR;

626
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
627 628
		settings |= MGMT_SETTING_LE;

629
	if (hci_dev_test_flag(hdev, HCI_LINK_SECURITY))
630 631
		settings |= MGMT_SETTING_LINK_SECURITY;

632
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
633 634
		settings |= MGMT_SETTING_SSP;

635
	if (hci_dev_test_flag(hdev, HCI_HS_ENABLED))
636 637
		settings |= MGMT_SETTING_HS;

638
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
639 640
		settings |= MGMT_SETTING_ADVERTISING;

641
	if (hci_dev_test_flag(hdev, HCI_SC_ENABLED))
642 643
		settings |= MGMT_SETTING_SECURE_CONN;

644
	if (hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS))
645 646
		settings |= MGMT_SETTING_DEBUG_KEYS;

647
	if (hci_dev_test_flag(hdev, HCI_PRIVACY))
648 649
		settings |= MGMT_SETTING_PRIVACY;

650 651 652 653 654 655 656 657 658 659 660 661 662
	/* The current setting for static address has two purposes. The
	 * first is to indicate if the static address will be used and
	 * the second is to indicate if it is actually set.
	 *
	 * This means if the static address is not configured, this flag
	 * will never bet set. If the address is configured, then if the
	 * address is actually used decides if the flag is set or not.
	 *
	 * For single mode LE only controllers and dual-mode controllers
	 * with BR/EDR disabled, the existence of the static address will
	 * be evaluated.
	 */
	if (test_bit(HCI_FORCE_STATIC_ADDR, &hdev->dbg_flags) ||
663
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
664 665 666 667 668
	    !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
		if (bacmp(&hdev->static_addr, BDADDR_ANY))
			settings |= MGMT_SETTING_STATIC_ADDRESS;
	}

669 670 671
	return settings;
}

672 673
#define PNP_INFO_SVCLASS_ID		0x1200

674 675 676 677 678 679 680 681 682 683 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
static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
{
	u8 *ptr = data, *uuids_start = NULL;
	struct bt_uuid *uuid;

	if (len < 4)
		return ptr;

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

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

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

		if (uuid16 == PNP_INFO_SVCLASS_ID)
			continue;

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

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

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

	return ptr;
}

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
static u8 *create_uuid32_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
{
	u8 *ptr = data, *uuids_start = NULL;
	struct bt_uuid *uuid;

	if (len < 6)
		return ptr;

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

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

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

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

	return ptr;
}

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
static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
{
	u8 *ptr = data, *uuids_start = NULL;
	struct bt_uuid *uuid;

	if (len < 18)
		return ptr;

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

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

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

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

	return ptr;
}

782 783
static struct mgmt_pending_cmd *mgmt_pending_find(u16 opcode,
						  struct hci_dev *hdev)
784
{
785
	struct mgmt_pending_cmd *cmd;
786 787 788 789 790 791 792 793 794

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

	return NULL;
}

795 796 797
static struct mgmt_pending_cmd *mgmt_pending_find_data(u16 opcode,
						       struct hci_dev *hdev,
						       const void *data)
798
{
799
	struct mgmt_pending_cmd *cmd;
800 801 802 803 804 805 806 807 808 809 810

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

	return NULL;
}

811 812
static u8 create_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
{
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
	u8 ad_len = 0;
	size_t name_len;

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

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

		ptr[0] = name_len + 1;

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

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

	return ad_len;
835 836 837 838 839 840 841 842
}

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

843
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
844 845 846 847 848 849
		return;

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

	len = create_scan_rsp_data(hdev, cp.data);

850 851
	if (hdev->scan_rsp_data_len == len &&
	    memcmp(cp.data, hdev->scan_rsp_data, len) == 0)
852 853
		return;

854 855
	memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
	hdev->scan_rsp_data_len = len;
856 857 858 859 860 861

	cp.length = len;

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

862 863
static u8 get_adv_discov_flags(struct hci_dev *hdev)
{
864
	struct mgmt_pending_cmd *cmd;
865 866 867 868 869 870 871 872 873 874 875 876

	/* If there's a pending mgmt command the flags will not yet have
	 * their final values, so check for this first.
	 */
	cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
	if (cmd) {
		struct mgmt_mode *cp = cmd->param;
		if (cp->val == 0x01)
			return LE_AD_GENERAL;
		else if (cp->val == 0x02)
			return LE_AD_LIMITED;
	} else {
877
		if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
878
			return LE_AD_LIMITED;
879
		else if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
880 881 882 883 884 885
			return LE_AD_GENERAL;
	}

	return 0;
}

886
static u8 create_adv_data(struct hci_dev *hdev, u8 *ptr)
887 888 889
{
	u8 ad_len = 0, flags = 0;

890
	flags |= get_adv_discov_flags(hdev);
891

892
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
		flags |= LE_AD_NO_BREDR;

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

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

		ad_len += 3;
		ptr += 3;
	}

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

		ad_len += 3;
		ptr += 3;
	}

	return ad_len;
}

918
static void update_adv_data(struct hci_request *req)
919 920 921 922 923
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_adv_data cp;
	u8 len;

924
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
925 926 927 928
		return;

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

929
	len = create_adv_data(hdev, cp.data);
930 931 932 933 934 935 936 937 938 939 940 941 942

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

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

	cp.length = len;

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

943 944 945 946 947 948 949 950 951 952
int mgmt_update_adv_data(struct hci_dev *hdev)
{
	struct hci_request req;

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

	return hci_req_run(&req, NULL);
}

953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
static void create_eir(struct hci_dev *hdev, u8 *data)
{
	u8 *ptr = data;
	size_t name_len;

	name_len = strlen(hdev->dev_name);

	if (name_len > 0) {
		/* EIR Data type */
		if (name_len > 48) {
			name_len = 48;
			ptr[1] = EIR_NAME_SHORT;
		} else
			ptr[1] = EIR_NAME_COMPLETE;

		/* EIR Data length */
		ptr[0] = name_len + 1;

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

		ptr += (name_len + 2);
	}

976
	if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
977 978 979 980 981 982 983
		ptr[0] = 2;
		ptr[1] = EIR_TX_POWER;
		ptr[2] = (u8) hdev->inq_tx_power;

		ptr += 3;
	}

984 985 986 987 988 989 990 991 992 993 994 995
	if (hdev->devid_source > 0) {
		ptr[0] = 9;
		ptr[1] = EIR_DEVICE_ID;

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

		ptr += 10;
	}

996
	ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
997
	ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
998
	ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
999 1000
}

1001
static void update_eir(struct hci_request *req)
1002
{
1003
	struct hci_dev *hdev = req->hdev;
1004 1005
	struct hci_cp_write_eir cp;

1006
	if (!hdev_is_powered(hdev))
1007
		return;
1008

1009
	if (!lmp_ext_inq_capable(hdev))
1010
		return;
1011

1012
	if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
1013
		return;
1014

1015
	if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
1016
		return;
1017 1018 1019 1020 1021 1022

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

	create_eir(hdev, cp.data);

	if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
1023
		return;
1024 1025 1026

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

1027
	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040
}

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

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

	return val;
}

1041
static void update_class(struct hci_request *req)
1042
{
1043
	struct hci_dev *hdev = req->hdev;
1044 1045 1046 1047
	u8 cod[3];

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

1048
	if (!hdev_is_powered(hdev))
1049
		return;
1050

1051
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1052 1053
		return;

1054
	if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
1055
		return;
1056 1057 1058 1059 1060

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

1061
	if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
1062 1063
		cod[1] |= 0x20;

1064
	if (memcmp(cod, hdev->dev_class, 3) == 0)
1065
		return;
1066

1067
	hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
1068 1069
}

1070
static bool get_connectable(struct hci_dev *hdev)
1071
{
1072
	struct mgmt_pending_cmd *cmd;
1073 1074 1075 1076 1077 1078 1079

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

1083
	return hci_dev_test_flag(hdev, HCI_CONNECTABLE);
1084 1085
}

1086 1087 1088 1089 1090 1091 1092
static void disable_advertising(struct hci_request *req)
{
	u8 enable = 0x00;

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

1093 1094 1095 1096
static void enable_advertising(struct hci_request *req)
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_adv_param cp;
1097
	u8 own_addr_type, enable = 0x01;
1098
	bool connectable;
1099

1100 1101 1102
	if (hci_conn_num(hdev, LE_LINK) > 0)
		return;

1103
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
1104 1105
		disable_advertising(req);

1106
	/* Clear the HCI_LE_ADV bit temporarily so that the
1107 1108 1109 1110
	 * hci_update_random_address knows that it's safe to go ahead
	 * and write a new random address. The flag will be set back on
	 * as soon as the SET_ADV_ENABLE HCI command completes.
	 */
1111
	hci_dev_clear_flag(hdev, HCI_LE_ADV);
1112

1113
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE))
1114 1115 1116
		connectable = true;
	else
		connectable = get_connectable(hdev);
1117

1118 1119 1120 1121 1122
	/* Set require_privacy to true only when non-connectable
	 * advertising is used. In that case it is fine to use a
	 * non-resolvable private address.
	 */
	if (hci_update_random_address(req, !connectable, &own_addr_type) < 0)
1123 1124
		return;

1125
	memset(&cp, 0, sizeof(cp));
1126 1127
	cp.min_interval = cpu_to_le16(hdev->le_adv_min_interval);
	cp.max_interval = cpu_to_le16(hdev->le_adv_max_interval);
1128
	cp.type = connectable ? LE_ADV_IND : LE_ADV_NONCONN_IND;
1129
	cp.own_address_type = own_addr_type;
1130 1131 1132 1133 1134 1135 1136
	cp.channel_map = hdev->le_adv_channel_map;

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

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

1137 1138 1139
static void service_cache_off(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
1140
					    service_cache.work);
1141
	struct hci_request req;
1142

1143
	if (!hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
1144 1145
		return;

1146 1147
	hci_req_init(&req, hdev);

1148 1149
	hci_dev_lock(hdev);

1150 1151
	update_eir(&req);
	update_class(&req);
1152 1153

	hci_dev_unlock(hdev);
1154 1155

	hci_req_run(&req, NULL);
1156 1157
}

1158 1159 1160 1161 1162 1163 1164 1165
static void rpa_expired(struct work_struct *work)
{
	struct hci_dev *hdev = container_of(work, struct hci_dev,
					    rpa_expired.work);
	struct hci_request req;

	BT_DBG("");

1166
	hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
1167

1168
	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178
		return;

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

1179
static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
1180
{
1181
	if (hci_dev_test_and_set_flag(hdev, HCI_MGMT))
1182 1183
		return;

1184
	INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
1185
	INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
1186

1187 1188 1189 1190 1191
	/* 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
	 */
1192
	hci_dev_clear_flag(hdev, HCI_BONDABLE);
1193 1194
}

1195
static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
1196
				void *data, u16 data_len)
1197
{
1198
	struct mgmt_rp_read_info rp;
1199

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

1202
	hci_dev_lock(hdev);
1203

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

1206
	bacpy(&rp.bdaddr, &hdev->bdaddr);
1207

1208
	rp.version = hdev->hci_ver;
1209
	rp.manufacturer = cpu_to_le16(hdev->manufacturer);
1210 1211 1212

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

1214
	memcpy(rp.dev_class, hdev->dev_class, 3);
1215

1216
	memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
1217
	memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
1218

1219
	hci_dev_unlock(hdev);
1220

1221 1222
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
				 sizeof(rp));
1223 1224
}

1225
static void mgmt_pending_free(struct mgmt_pending_cmd *cmd)
1226 1227
{
	sock_put(cmd->sk);
1228
	kfree(cmd->param);
1229 1230 1231
	kfree(cmd);
}

1232 1233 1234
static struct mgmt_pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
						 struct hci_dev *hdev,
						 void *data, u16 len)
1235
{
1236
	struct mgmt_pending_cmd *cmd;
1237

1238
	cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
1239
	if (!cmd)
1240
		return NULL;
1241 1242

	cmd->opcode = opcode;
1243
	cmd->index = hdev->id;
1244

1245
	cmd->param = kmemdup(data, len, GFP_KERNEL);
1246
	if (!cmd->param) {
1247
		kfree(cmd);
1248
		return NULL;
1249 1250
	}

1251
	cmd->param_len = len;
1252 1253 1254 1255

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

1256
	list_add(&cmd->list, &hdev->mgmt_pending);
1257

1258
	return cmd;
1259 1260
}

1261
static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
1262
				 void (*cb)(struct mgmt_pending_cmd *cmd,
1263
					    void *data),
1264
				 void *data)
1265
{
1266
	struct mgmt_pending_cmd *cmd, *tmp;
1267

1268
	list_for_each_entry_safe(cmd, tmp, &hdev->mgmt_pending, list) {
1269
		if (opcode > 0 && cmd->opcode != opcode)
1270 1271 1272 1273 1274 1275
			continue;

		cb(cmd, data);
	}
}

1276
static void mgmt_pending_remove(struct mgmt_pending_cmd *cmd)
1277 1278 1279 1280 1281
{
	list_del(&cmd->list);
	mgmt_pending_free(cmd);
}

1282
static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
1283
{
1284
	__le32 settings = cpu_to_le32(get_current_settings(hdev));
1285

1286 1287
	return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &settings,
				 sizeof(settings));
1288 1289
}

1290
static void clean_up_hci_complete(struct hci_dev *hdev, u8 status, u16 opcode)
1291 1292 1293
{
	BT_DBG("%s status 0x%02x", hdev->name, status);

1294 1295
	if (hci_conn_count(hdev) == 0) {
		cancel_delayed_work(&hdev->power_off);
1296
		queue_work(hdev->req_workqueue, &hdev->power_off.work);
1297
	}
1298 1299
}

1300
static bool hci_stop_discovery(struct hci_request *req)
1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314
{
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_remote_name_req_cancel cp;
	struct inquiry_entry *e;

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

1315
		return true;
1316 1317 1318 1319 1320

	case DISCOVERY_RESOLVING:
		e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
						     NAME_PENDING);
		if (!e)
1321
			break;
1322 1323 1324 1325 1326

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

1327
		return true;
1328 1329 1330

	default:
		/* Passive scanning */
1331
		if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
1332
			hci_req_add_le_scan_disable(req);
1333 1334 1335
			return true;
		}

1336 1337
		break;
	}
1338 1339

	return false;
1340 1341
}

1342 1343 1344 1345
static int clean_up_hci_state(struct hci_dev *hdev)
{
	struct hci_request req;
	struct hci_conn *conn;
1346 1347
	bool discov_stopped;
	int err;
1348 1349 1350 1351 1352 1353 1354 1355 1356

	hci_req_init(&req, hdev);

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

1357
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
1358 1359
		disable_advertising(&req);

1360
	discov_stopped = hci_stop_discovery(&req);
1361 1362 1363

	list_for_each_entry(conn, &hdev->conn_hash.list, list) {
		struct hci_cp_disconnect dc;
1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391
		struct hci_cp_reject_conn_req rej;

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

1394 1395 1396 1397 1398
	err = hci_req_run(&req, clean_up_hci_complete);
	if (!err && discov_stopped)
		hci_discovery_set_state(hdev, DISCOVERY_STOPPING);

	return err;
1399 1400
}

1401
static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
1402
		       u16 len)
1403
{
1404
	struct mgmt_mode *cp = data;
1405
	struct mgmt_pending_cmd *cmd;
1406
	int err;
1407

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

1410
	if (cp->val != 0x00 && cp->val != 0x01)
1411 1412
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
				       MGMT_STATUS_INVALID_PARAMS);
1413

1414
	hci_dev_lock(hdev);
1415

1416
	if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
1417 1418
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
				      MGMT_STATUS_BUSY);
1419 1420 1421
		goto failed;
	}

1422
	if (hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) {
1423 1424 1425
		cancel_delayed_work(&hdev->power_off);

		if (cp->val) {
1426 1427 1428
			mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
					 data, len);
			err = mgmt_powered(hdev, 1);
1429 1430 1431 1432
			goto failed;
		}
	}

1433
	if (!!cp->val == hdev_is_powered(hdev)) {
1434
		err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
1435 1436 1437
		goto failed;
	}

1438
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1439 1440
	if (!cmd) {
		err = -ENOMEM;
1441
		goto failed;
1442
	}
1443

1444
	if (cp->val) {
1445
		queue_work(hdev->req_workqueue, &hdev->power_on);
1446 1447 1448 1449
		err = 0;
	} else {
		/* Disconnect connections, stop scans, etc */
		err = clean_up_hci_state(hdev);
1450 1451 1452
		if (!err)
			queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
					   HCI_POWER_OFF_TIMEOUT);
1453

1454 1455
		/* ENODATA means there were no HCI commands queued */
		if (err == -ENODATA) {
1456
			cancel_delayed_work(&hdev->power_off);
1457 1458 1459 1460
			queue_work(hdev->req_workqueue, &hdev->power_off.work);
			err = 0;
		}
	}
1461 1462

failed:
1463
	hci_dev_unlock(hdev);
1464
	return err;
1465 1466
}

1467 1468 1469 1470 1471 1472 1473 1474 1475
static int new_settings(struct hci_dev *hdev, struct sock *skip)
{
	__le32 ev;

	ev = cpu_to_le32(get_current_settings(hdev));

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

1476 1477 1478 1479 1480
int mgmt_new_settings(struct hci_dev *hdev)
{
	return new_settings(hdev, NULL);
}

1481 1482 1483 1484 1485 1486
struct cmd_lookup {
	struct sock *sk;
	struct hci_dev *hdev;
	u8 mgmt_status;
};

1487
static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data)
1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502
{
	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);
}

1503
static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data)
1504 1505 1506
{
	u8 *status = data;

1507
	mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
1508 1509 1510
	mgmt_pending_remove(cmd);
}

1511
static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data)
1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524
{
	if (cmd->cmd_complete) {
		u8 *status = data;

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

		return;
	}

	cmd_status_rsp(cmd, data);
}

1525
static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
1526
{
1527 1528
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, cmd->param_len);
1529 1530
}

1531
static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
1532
{
1533 1534
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, sizeof(struct mgmt_addr_info));
1535 1536
}

1537 1538 1539 1540
static u8 mgmt_bredr_support(struct hci_dev *hdev)
{
	if (!lmp_bredr_capable(hdev))
		return MGMT_STATUS_NOT_SUPPORTED;
1541
	else if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1542 1543 1544 1545 1546 1547 1548 1549 1550
		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;
1551
	else if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1552 1553 1554 1555 1556
		return MGMT_STATUS_REJECTED;
	else
		return MGMT_STATUS_SUCCESS;
}

1557 1558
static void set_discoverable_complete(struct hci_dev *hdev, u8 status,
				      u16 opcode)
1559
{
1560
	struct mgmt_pending_cmd *cmd;
1561
	struct mgmt_mode *cp;
1562
	struct hci_request req;
1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574
	bool changed;

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

	hci_dev_lock(hdev);

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

	if (status) {
		u8 mgmt_err = mgmt_status(status);
1575
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1576
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1577 1578 1579 1580
		goto remove_cmd;
	}

	cp = cmd->param;
1581
	if (cp->val) {
1582
		changed = !hci_dev_test_and_set_flag(hdev, HCI_DISCOVERABLE);
1583 1584 1585 1586 1587 1588 1589

		if (hdev->discov_timeout > 0) {
			int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
			queue_delayed_work(hdev->workqueue, &hdev->discov_off,
					   to);
		}
	} else {
1590
		changed = hci_dev_test_and_clear_flag(hdev, HCI_DISCOVERABLE);
1591
	}
1592 1593 1594 1595 1596 1597

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

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

1598 1599
	/* When the discoverable mode gets changed, make sure
	 * that class of device has the limited discoverable
1600 1601
	 * bit correctly set. Also update page scan based on whitelist
	 * entries.
1602 1603
	 */
	hci_req_init(&req, hdev);
1604
	__hci_update_page_scan(&req);
1605 1606 1607
	update_class(&req);
	hci_req_run(&req, NULL);

1608 1609 1610 1611 1612 1613 1614
remove_cmd:
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

1615
static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
1616
			    u16 len)
1617
{
1618
	struct mgmt_cp_set_discoverable *cp = data;
1619
	struct mgmt_pending_cmd *cmd;
1620
	struct hci_request req;
1621
	u16 timeout;
1622
	u8 scan;
1623 1624
	int err;

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

1627 1628
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1629 1630
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_REJECTED);
1631

1632
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
1633 1634
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1635

1636
	timeout = __le16_to_cpu(cp->timeout);
1637 1638 1639 1640 1641 1642

	/* 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))
1643 1644
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1645

1646
	hci_dev_lock(hdev);
1647

1648
	if (!hdev_is_powered(hdev) && timeout > 0) {
1649 1650
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_NOT_POWERED);
1651 1652 1653
		goto failed;
	}

1654
	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
1655
	    mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
1656 1657
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_BUSY);
1658 1659 1660
		goto failed;
	}

1661
	if (!hci_dev_test_flag(hdev, HCI_CONNECTABLE)) {
1662 1663
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
				      MGMT_STATUS_REJECTED);
1664 1665 1666 1667
		goto failed;
	}

	if (!hdev_is_powered(hdev)) {
1668 1669
		bool changed = false;

1670 1671 1672 1673
		/* 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.
		 */
1674
		if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
1675
			hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
1676 1677 1678
			changed = true;
		}

1679
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1680 1681 1682 1683 1684 1685
		if (err < 0)
			goto failed;

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

1686 1687 1688
		goto failed;
	}

1689 1690 1691 1692
	/* 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.
	 */
1693 1694 1695
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
	    (cp->val == 0x02) == hci_dev_test_flag(hdev,
						   HCI_LIMITED_DISCOVERABLE)) {
1696 1697
		cancel_delayed_work(&hdev->discov_off);
		hdev->discov_timeout = timeout;
1698

1699 1700
		if (cp->val && hdev->discov_timeout > 0) {
			int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1701
			queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1702
					   to);
1703 1704
		}

1705
		err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1706 1707 1708
		goto failed;
	}

1709
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1710 1711
	if (!cmd) {
		err = -ENOMEM;
1712
		goto failed;
1713
	}
1714

1715 1716 1717 1718 1719 1720 1721
	/* 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;

1722 1723
	/* Limited discoverable mode */
	if (cp->val == 0x02)
1724
		hci_dev_set_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1725
	else
1726
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1727

1728 1729
	hci_req_init(&req, hdev);

1730 1731 1732
	/* The procedure for LE-only controllers is much simpler - just
	 * update the advertising data.
	 */
1733
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1734 1735
		goto update_ad;

1736 1737
	scan = SCAN_PAGE;

1738 1739 1740 1741 1742
	if (cp->val) {
		struct hci_cp_write_current_iac_lap hci_cp;

		if (cp->val == 0x02) {
			/* Limited discoverable mode */
1743
			hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760
			hci_cp.iac_lap[0] = 0x00;	/* LIAC */
			hci_cp.iac_lap[1] = 0x8b;
			hci_cp.iac_lap[2] = 0x9e;
			hci_cp.iac_lap[3] = 0x33;	/* GIAC */
			hci_cp.iac_lap[4] = 0x8b;
			hci_cp.iac_lap[5] = 0x9e;
		} else {
			/* General discoverable mode */
			hci_cp.num_iac = 1;
			hci_cp.iac_lap[0] = 0x33;	/* GIAC */
			hci_cp.iac_lap[1] = 0x8b;
			hci_cp.iac_lap[2] = 0x9e;
		}

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

1761
		scan |= SCAN_INQUIRY;
1762
	} else {
1763
		hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1764
	}
1765

1766
	hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
1767

1768 1769 1770
update_ad:
	update_adv_data(&req);

1771
	err = hci_req_run(&req, set_discoverable_complete);
1772
	if (err < 0)
1773
		mgmt_pending_remove(cmd);
1774 1775

failed:
1776
	hci_dev_unlock(hdev);
1777 1778 1779
	return err;
}

1780 1781
static void write_fast_connectable(struct hci_request *req, bool enable)
{
1782
	struct hci_dev *hdev = req->hdev;
1783 1784 1785
	struct hci_cp_write_page_scan_activity acp;
	u8 type;

1786
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1787 1788
		return;

1789 1790 1791
	if (hdev->hci_ver < BLUETOOTH_VER_1_2)
		return;

1792 1793 1794 1795
	if (enable) {
		type = PAGE_SCAN_TYPE_INTERLACED;

		/* 160 msec page scan interval */
1796
		acp.interval = cpu_to_le16(0x0100);
1797 1798 1799 1800
	} else {
		type = PAGE_SCAN_TYPE_STANDARD;	/* default */

		/* default 1.28 sec page scan */
1801
		acp.interval = cpu_to_le16(0x0800);
1802 1803
	}

1804
	acp.window = cpu_to_le16(0x0012);
1805

1806 1807 1808 1809 1810 1811 1812
	if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval ||
	    __cpu_to_le16(hdev->page_scan_window) != acp.window)
		hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
			    sizeof(acp), &acp);

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

1815 1816
static void set_connectable_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
1817
{
1818
	struct mgmt_pending_cmd *cmd;
1819
	struct mgmt_mode *cp;
1820
	bool conn_changed, discov_changed;
1821 1822 1823 1824 1825 1826 1827 1828 1829

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

	hci_dev_lock(hdev);

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

1830 1831
	if (status) {
		u8 mgmt_err = mgmt_status(status);
1832
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1833 1834 1835
		goto remove_cmd;
	}

1836
	cp = cmd->param;
1837
	if (cp->val) {
1838 1839
		conn_changed = !hci_dev_test_and_set_flag(hdev,
							  HCI_CONNECTABLE);
1840 1841
		discov_changed = false;
	} else {
1842 1843 1844 1845
		conn_changed = hci_dev_test_and_clear_flag(hdev,
							   HCI_CONNECTABLE);
		discov_changed = hci_dev_test_and_clear_flag(hdev,
							     HCI_DISCOVERABLE);
1846
	}
1847

1848 1849
	send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);

1850
	if (conn_changed || discov_changed) {
1851
		new_settings(hdev, cmd->sk);
1852
		hci_update_page_scan(hdev);
1853 1854
		if (discov_changed)
			mgmt_update_adv_data(hdev);
1855 1856
		hci_update_background_scan(hdev);
	}
1857

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

unlock:
	hci_dev_unlock(hdev);
}

1865 1866 1867 1868 1869 1870
static int set_connectable_update_settings(struct hci_dev *hdev,
					   struct sock *sk, u8 val)
{
	bool changed = false;
	int err;

1871
	if (!!val != hci_dev_test_flag(hdev, HCI_CONNECTABLE))
1872 1873 1874
		changed = true;

	if (val) {
1875
		hci_dev_set_flag(hdev, HCI_CONNECTABLE);
1876
	} else {
1877 1878
		hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
		hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
1879 1880 1881 1882 1883 1884
	}

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

1885
	if (changed) {
1886
		hci_update_page_scan(hdev);
1887
		hci_update_background_scan(hdev);
1888
		return new_settings(hdev, sk);
1889
	}
1890 1891 1892 1893

	return 0;
}

1894
static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
1895
			   u16 len)
1896
{
1897
	struct mgmt_mode *cp = data;
1898
	struct mgmt_pending_cmd *cmd;
1899
	struct hci_request req;
1900
	u8 scan;
1901 1902
	int err;

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

1905 1906
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1907 1908
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				       MGMT_STATUS_REJECTED);
1909

1910
	if (cp->val != 0x00 && cp->val != 0x01)
1911 1912
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				       MGMT_STATUS_INVALID_PARAMS);
1913

1914
	hci_dev_lock(hdev);
1915

1916
	if (!hdev_is_powered(hdev)) {
1917
		err = set_connectable_update_settings(hdev, sk, cp->val);
1918 1919 1920
		goto failed;
	}

1921
	if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
1922
	    mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
1923 1924
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
				      MGMT_STATUS_BUSY);
1925 1926 1927
		goto failed;
	}

1928
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
1929 1930
	if (!cmd) {
		err = -ENOMEM;
1931
		goto failed;
1932
	}
1933

1934
	hci_req_init(&req, hdev);
1935

1936 1937 1938 1939
	/* If BR/EDR is not enabled and we disable advertising as a
	 * by-product of disabling connectable, we need to update the
	 * advertising flags.
	 */
1940
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
1941
		if (!cp->val) {
1942 1943
			hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
			hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
1944 1945 1946
		}
		update_adv_data(&req);
	} else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
1947 1948 1949
		if (cp->val) {
			scan = SCAN_PAGE;
		} else {
1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961
			/* If we don't have any whitelist entries just
			 * disable all scanning. If there are entries
			 * and we had both page and inquiry scanning
			 * enabled then fall back to only page scanning.
			 * Otherwise no changes are needed.
			 */
			if (list_empty(&hdev->whitelist))
				scan = SCAN_DISABLED;
			else if (test_bit(HCI_ISCAN, &hdev->flags))
				scan = SCAN_PAGE;
			else
				goto no_scan_update;
1962 1963

			if (test_bit(HCI_ISCAN, &hdev->flags) &&
1964
			    hdev->discov_timeout > 0)
1965 1966
				cancel_delayed_work(&hdev->discov_off);
		}
1967

1968 1969
		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
	}
1970

1971
no_scan_update:
1972
	/* Update the advertising parameters if necessary */
1973
	if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
1974 1975
		enable_advertising(&req);

1976
	err = hci_req_run(&req, set_connectable_complete);
1977
	if (err < 0) {
1978
		mgmt_pending_remove(cmd);
1979
		if (err == -ENODATA)
1980 1981
			err = set_connectable_update_settings(hdev, sk,
							      cp->val);
1982 1983
		goto failed;
	}
1984 1985

failed:
1986
	hci_dev_unlock(hdev);
1987 1988 1989
	return err;
}

1990
static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
1991
			u16 len)
1992
{
1993
	struct mgmt_mode *cp = data;
1994
	bool changed;
1995 1996
	int err;

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

1999
	if (cp->val != 0x00 && cp->val != 0x01)
2000 2001
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE,
				       MGMT_STATUS_INVALID_PARAMS);
2002

2003
	hci_dev_lock(hdev);
2004 2005

	if (cp->val)
2006
		changed = !hci_dev_test_and_set_flag(hdev, HCI_BONDABLE);
2007
	else
2008
		changed = hci_dev_test_and_clear_flag(hdev, HCI_BONDABLE);
2009

2010
	err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
2011
	if (err < 0)
2012
		goto unlock;
2013

2014 2015
	if (changed)
		err = new_settings(hdev, sk);
2016

2017
unlock:
2018
	hci_dev_unlock(hdev);
2019 2020 2021
	return err;
}

2022 2023
static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
2024 2025
{
	struct mgmt_mode *cp = data;
2026
	struct mgmt_pending_cmd *cmd;
2027
	u8 val, status;
2028 2029
	int err;

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

2032 2033
	status = mgmt_bredr_support(hdev);
	if (status)
2034 2035
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				       status);
2036

2037
	if (cp->val != 0x00 && cp->val != 0x01)
2038 2039
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				       MGMT_STATUS_INVALID_PARAMS);
2040

2041 2042
	hci_dev_lock(hdev);

2043
	if (!hdev_is_powered(hdev)) {
2044 2045
		bool changed = false;

2046
		if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
2047
			hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
2048 2049 2050 2051 2052 2053 2054 2055 2056 2057
			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);

2058 2059 2060 2061
		goto failed;
	}

	if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
2062 2063
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
				      MGMT_STATUS_BUSY);
2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090
		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;
}

2091
static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2092 2093
{
	struct mgmt_mode *cp = data;
2094
	struct mgmt_pending_cmd *cmd;
2095
	u8 status;
2096 2097
	int err;

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

2100 2101
	status = mgmt_bredr_support(hdev);
	if (status)
2102
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
2103

2104
	if (!lmp_ssp_capable(hdev))
2105 2106
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				       MGMT_STATUS_NOT_SUPPORTED);
2107

2108
	if (cp->val != 0x00 && cp->val != 0x01)
2109 2110
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				       MGMT_STATUS_INVALID_PARAMS);
2111

2112
	hci_dev_lock(hdev);
2113

2114
	if (!hdev_is_powered(hdev)) {
2115
		bool changed;
2116

2117
		if (cp->val) {
2118 2119
			changed = !hci_dev_test_and_set_flag(hdev,
							     HCI_SSP_ENABLED);
2120
		} else {
2121 2122
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_SSP_ENABLED);
2123
			if (!changed)
2124 2125
				changed = hci_dev_test_and_clear_flag(hdev,
								      HCI_HS_ENABLED);
2126
			else
2127
				hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
2128 2129 2130 2131 2132 2133 2134 2135 2136
		}

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

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

2137 2138 2139
		goto failed;
	}

2140
	if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev)) {
2141 2142
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
				      MGMT_STATUS_BUSY);
2143 2144 2145
		goto failed;
	}

2146
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
2147 2148 2149 2150 2151 2152 2153 2154 2155 2156
		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;
	}

2157
	if (!cp->val && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
2158 2159 2160
		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
			     sizeof(cp->val), &cp->val);

2161
	err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
2162 2163 2164 2165 2166 2167 2168 2169 2170 2171
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

2172
static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2173 2174
{
	struct mgmt_mode *cp = data;
2175
	bool changed;
2176
	u8 status;
2177
	int err;
2178

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

2181 2182
	status = mgmt_bredr_support(hdev);
	if (status)
2183
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
2184

2185
	if (!lmp_ssp_capable(hdev))
2186 2187
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_NOT_SUPPORTED);
2188

2189
	if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
2190 2191
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_REJECTED);
2192

2193
	if (cp->val != 0x00 && cp->val != 0x01)
2194 2195
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
				       MGMT_STATUS_INVALID_PARAMS);
2196

2197 2198
	hci_dev_lock(hdev);

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

2205
	if (cp->val) {
2206
		changed = !hci_dev_test_and_set_flag(hdev, HCI_HS_ENABLED);
2207 2208
	} else {
		if (hdev_is_powered(hdev)) {
2209 2210
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
					      MGMT_STATUS_REJECTED);
2211 2212 2213
			goto unlock;
		}

2214
		changed = hci_dev_test_and_clear_flag(hdev, HCI_HS_ENABLED);
2215
	}
2216 2217 2218 2219 2220 2221 2222

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

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

2224 2225 2226
unlock:
	hci_dev_unlock(hdev);
	return err;
2227 2228
}

2229
static void le_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2230 2231 2232
{
	struct cmd_lookup match = { NULL, hdev };

2233 2234
	hci_dev_lock(hdev);

2235 2236 2237 2238 2239
	if (status) {
		u8 mgmt_err = mgmt_status(status);

		mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
				     &mgmt_err);
2240
		goto unlock;
2241 2242 2243 2244 2245 2246 2247 2248
	}

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

	new_settings(hdev, match.sk);

	if (match.sk)
		sock_put(match.sk);
2249 2250 2251 2252 2253 2254

	/* 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.
	 */
2255
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
2256 2257 2258
		struct hci_request req;

		hci_req_init(&req, hdev);
2259
		update_adv_data(&req);
2260
		update_scan_rsp_data(&req);
2261
		__hci_update_background_scan(&req);
2262 2263
		hci_req_run(&req, NULL);
	}
2264 2265 2266

unlock:
	hci_dev_unlock(hdev);
2267 2268
}

2269
static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2270 2271 2272
{
	struct mgmt_mode *cp = data;
	struct hci_cp_write_le_host_supported hci_cp;
2273
	struct mgmt_pending_cmd *cmd;
2274
	struct hci_request req;
2275
	int err;
2276
	u8 val, enabled;
2277

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

2280
	if (!lmp_le_capable(hdev))
2281 2282
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_NOT_SUPPORTED);
2283

2284
	if (cp->val != 0x00 && cp->val != 0x01)
2285 2286
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_INVALID_PARAMS);
2287

2288
	/* LE-only devices do not allow toggling LE on/off */
2289
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
2290 2291
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				       MGMT_STATUS_REJECTED);
2292

2293
	hci_dev_lock(hdev);
2294 2295

	val = !!cp->val;
2296
	enabled = lmp_host_le_capable(hdev);
2297

2298
	if (!hdev_is_powered(hdev) || val == enabled) {
2299 2300
		bool changed = false;

2301
		if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
2302
			hci_dev_change_flag(hdev, HCI_LE_ENABLED);
2303 2304 2305
			changed = true;
		}

2306
		if (!val && hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
2307
			hci_dev_clear_flag(hdev, HCI_ADVERTISING);
2308 2309 2310
			changed = true;
		}

2311 2312
		err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
		if (err < 0)
2313
			goto unlock;
2314 2315 2316 2317

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

2318
		goto unlock;
2319 2320
	}

2321 2322
	if (mgmt_pending_find(MGMT_OP_SET_LE, hdev) ||
	    mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
2323 2324
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
				      MGMT_STATUS_BUSY);
2325
		goto unlock;
2326 2327 2328 2329 2330
	}

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

2334 2335
	hci_req_init(&req, hdev);

2336 2337 2338 2339
	memset(&hci_cp, 0, sizeof(hci_cp));

	if (val) {
		hci_cp.le = val;
2340
		hci_cp.simul = 0x00;
2341
	} else {
2342
		if (hci_dev_test_flag(hdev, HCI_LE_ADV))
2343
			disable_advertising(&req);
2344 2345
	}

2346 2347 2348 2349
	hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
		    &hci_cp);

	err = hci_req_run(&req, le_enable_complete);
2350
	if (err < 0)
2351 2352
		mgmt_pending_remove(cmd);

2353 2354
unlock:
	hci_dev_unlock(hdev);
2355 2356 2357
	return err;
}

2358 2359 2360 2361 2362 2363 2364 2365
/* 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)
{
2366
	struct mgmt_pending_cmd *cmd;
2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380

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

2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399
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;
}

2400 2401
static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
{
2402
	struct mgmt_pending_cmd *cmd;
2403 2404 2405 2406 2407 2408 2409

	hci_dev_lock(hdev);

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

2410 2411
	mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
			  mgmt_status(status), hdev->dev_class, 3);
2412 2413 2414 2415 2416 2417 2418

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

2419
static void add_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2420 2421 2422 2423 2424 2425
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
}

2426
static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
2427
{
2428
	struct mgmt_cp_add_uuid *cp = data;
2429
	struct mgmt_pending_cmd *cmd;
2430
	struct hci_request req;
2431 2432 2433
	struct bt_uuid *uuid;
	int err;

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

2436
	hci_dev_lock(hdev);
2437

2438
	if (pending_eir_or_class(hdev)) {
2439 2440
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
				      MGMT_STATUS_BUSY);
2441 2442 2443
		goto failed;
	}

2444
	uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
2445 2446 2447 2448 2449 2450
	if (!uuid) {
		err = -ENOMEM;
		goto failed;
	}

	memcpy(uuid->uuid, cp->uuid, 16);
2451
	uuid->svc_hint = cp->svc_hint;
2452
	uuid->size = get_uuid_size(cp->uuid);
2453

2454
	list_add_tail(&uuid->list, &hdev->uuids);
2455

2456
	hci_req_init(&req, hdev);
2457

2458 2459 2460
	update_class(&req);
	update_eir(&req);

2461 2462 2463 2464
	err = hci_req_run(&req, add_uuid_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto failed;
2465

2466 2467
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
					hdev->dev_class, 3);
2468 2469 2470 2471
		goto failed;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
2472
	if (!cmd) {
2473
		err = -ENOMEM;
2474 2475 2476 2477
		goto failed;
	}

	err = 0;
2478 2479

failed:
2480
	hci_dev_unlock(hdev);
2481 2482 2483
	return err;
}

2484 2485 2486 2487 2488
static bool enable_service_cache(struct hci_dev *hdev)
{
	if (!hdev_is_powered(hdev))
		return false;

2489
	if (!hci_dev_test_and_set_flag(hdev, HCI_SERVICE_CACHE)) {
2490 2491
		queue_delayed_work(hdev->workqueue, &hdev->service_cache,
				   CACHE_TIMEOUT);
2492 2493 2494 2495 2496 2497
		return true;
	}

	return false;
}

2498
static void remove_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2499 2500 2501 2502 2503 2504
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
}

2505
static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
2506
		       u16 len)
2507
{
2508
	struct mgmt_cp_remove_uuid *cp = data;
2509
	struct mgmt_pending_cmd *cmd;
2510
	struct bt_uuid *match, *tmp;
2511
	u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2512
	struct hci_request req;
2513 2514
	int err, found;

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

2517
	hci_dev_lock(hdev);
2518

2519
	if (pending_eir_or_class(hdev)) {
2520 2521
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
				      MGMT_STATUS_BUSY);
2522 2523 2524
		goto unlock;
	}

2525
	if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
2526
		hci_uuids_clear(hdev);
2527

2528
		if (enable_service_cache(hdev)) {
2529 2530 2531
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_REMOVE_UUID,
						0, hdev->dev_class, 3);
2532 2533
			goto unlock;
		}
2534

2535
		goto update_class;
2536 2537 2538 2539
	}

	found = 0;

2540
	list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
2541 2542 2543 2544
		if (memcmp(match->uuid, cp->uuid, 16) != 0)
			continue;

		list_del(&match->list);
2545
		kfree(match);
2546 2547 2548 2549
		found++;
	}

	if (found == 0) {
2550 2551
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
				      MGMT_STATUS_INVALID_PARAMS);
2552 2553 2554
		goto unlock;
	}

2555
update_class:
2556
	hci_req_init(&req, hdev);
2557

2558 2559 2560
	update_class(&req);
	update_eir(&req);

2561 2562 2563 2564
	err = hci_req_run(&req, remove_uuid_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto unlock;
2565

2566 2567
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
					hdev->dev_class, 3);
2568 2569 2570 2571
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
2572
	if (!cmd) {
2573
		err = -ENOMEM;
2574 2575 2576 2577
		goto unlock;
	}

	err = 0;
2578 2579

unlock:
2580
	hci_dev_unlock(hdev);
2581 2582 2583
	return err;
}

2584
static void set_class_complete(struct hci_dev *hdev, u8 status, u16 opcode)
2585 2586 2587 2588 2589 2590
{
	BT_DBG("status 0x%02x", status);

	mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
}

2591
static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
2592
			 u16 len)
2593
{
2594
	struct mgmt_cp_set_dev_class *cp = data;
2595
	struct mgmt_pending_cmd *cmd;
2596
	struct hci_request req;
2597 2598
	int err;

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

2601
	if (!lmp_bredr_capable(hdev))
2602 2603
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				       MGMT_STATUS_NOT_SUPPORTED);
2604

2605
	hci_dev_lock(hdev);
2606

2607
	if (pending_eir_or_class(hdev)) {
2608 2609
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				      MGMT_STATUS_BUSY);
2610 2611
		goto unlock;
	}
2612

2613
	if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
2614 2615
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
				      MGMT_STATUS_INVALID_PARAMS);
2616 2617
		goto unlock;
	}
2618

2619 2620 2621
	hdev->major_class = cp->major;
	hdev->minor_class = cp->minor;

2622
	if (!hdev_is_powered(hdev)) {
2623 2624
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
					hdev->dev_class, 3);
2625 2626 2627
		goto unlock;
	}

2628 2629
	hci_req_init(&req, hdev);

2630
	if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) {
2631 2632 2633
		hci_dev_unlock(hdev);
		cancel_delayed_work_sync(&hdev->service_cache);
		hci_dev_lock(hdev);
2634
		update_eir(&req);
2635
	}
2636

2637 2638
	update_class(&req);

2639 2640 2641 2642
	err = hci_req_run(&req, set_class_complete);
	if (err < 0) {
		if (err != -ENODATA)
			goto unlock;
2643

2644 2645
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
					hdev->dev_class, 3);
2646 2647 2648 2649
		goto unlock;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
2650
	if (!cmd) {
2651
		err = -ENOMEM;
2652 2653 2654 2655
		goto unlock;
	}

	err = 0;
2656

2657
unlock:
2658
	hci_dev_unlock(hdev);
2659 2660 2661
	return err;
}

2662
static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
2663
			  u16 len)
2664
{
2665
	struct mgmt_cp_load_link_keys *cp = data;
2666 2667
	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_link_key_info));
2668
	u16 key_count, expected_len;
2669
	bool changed;
2670
	int i;
2671

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

	if (!lmp_bredr_capable(hdev))
2675 2676
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_NOT_SUPPORTED);
2677

2678
	key_count = __le16_to_cpu(cp->key_count);
2679 2680 2681
	if (key_count > max_key_count) {
		BT_ERR("load_link_keys: too big key_count value %u",
		       key_count);
2682 2683
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2684
	}
2685

2686 2687
	expected_len = sizeof(*cp) + key_count *
					sizeof(struct mgmt_link_key_info);
2688
	if (expected_len != len) {
2689
		BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
2690
		       expected_len, len);
2691 2692
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2693 2694
	}

2695
	if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
2696 2697
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
2698

2699
	BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
2700
	       key_count);
2701

2702 2703 2704
	for (i = 0; i < key_count; i++) {
		struct mgmt_link_key_info *key = &cp->keys[i];

2705
		if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
2706 2707 2708
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_LINK_KEYS,
					       MGMT_STATUS_INVALID_PARAMS);
2709 2710
	}

2711
	hci_dev_lock(hdev);
2712 2713 2714 2715

	hci_link_keys_clear(hdev);

	if (cp->debug_keys)
2716
		changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
2717
	else
2718 2719
		changed = hci_dev_test_and_clear_flag(hdev,
						      HCI_KEEP_DEBUG_KEYS);
2720 2721 2722

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

2724
	for (i = 0; i < key_count; i++) {
2725
		struct mgmt_link_key_info *key = &cp->keys[i];
2726

2727 2728 2729 2730 2731 2732
		/* Always ignore debug keys and require a new pairing if
		 * the user wants to use them.
		 */
		if (key->type == HCI_LK_DEBUG_COMBINATION)
			continue;

2733 2734
		hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
				 key->type, key->pin_len, NULL);
2735 2736
	}

2737
	mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
2738

2739
	hci_dev_unlock(hdev);
2740

2741
	return 0;
2742 2743
}

2744
static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
2745
			   u8 addr_type, struct sock *skip_sk)
2746 2747 2748 2749 2750 2751 2752
{
	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),
2753
			  skip_sk);
2754 2755
}

2756
static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2757
			 u16 len)
2758
{
2759 2760
	struct mgmt_cp_unpair_device *cp = data;
	struct mgmt_rp_unpair_device rp;
2761
	struct hci_cp_disconnect dc;
2762
	struct mgmt_pending_cmd *cmd;
2763 2764 2765
	struct hci_conn *conn;
	int err;

2766
	memset(&rp, 0, sizeof(rp));
2767 2768
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;
2769

2770
	if (!bdaddr_type_is_valid(cp->addr.type))
2771 2772 2773
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2774

2775
	if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
2776 2777 2778
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2779

2780 2781
	hci_dev_lock(hdev);

2782
	if (!hdev_is_powered(hdev)) {
2783 2784 2785
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
2786 2787 2788
		goto unlock;
	}

2789
	if (cp->addr.type == BDADDR_BREDR) {
2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802
		/* 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;

2803
		err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
2804 2805 2806
	} else {
		u8 addr_type;

2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
					       &cp->addr.bdaddr);
		if (conn) {
			/* Defer clearing up the connection parameters
			 * until closing to give a chance of keeping
			 * them if a repairing happens.
			 */
			set_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);

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

2824 2825 2826 2827 2828
		if (cp->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;

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

2831 2832
		err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
	}
2833

2834
	if (err < 0) {
2835 2836 2837
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
					MGMT_STATUS_NOT_PAIRED, &rp,
					sizeof(rp));
2838 2839 2840
		goto unlock;
	}

2841 2842 2843
	/* If the connection variable is set, then termination of the
	 * link is requested.
	 */
2844
	if (!conn) {
2845 2846
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
					&rp, sizeof(rp));
2847
		device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
2848 2849
		goto unlock;
	}
2850

2851
	cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
2852
			       sizeof(*cp));
2853 2854 2855
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
2856 2857
	}

2858 2859
	cmd->cmd_complete = addr_cmd_complete;

2860
	dc.handle = cpu_to_le16(conn->handle);
2861 2862 2863 2864 2865
	dc.reason = 0x13; /* Remote User Terminated Connection */
	err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
	if (err < 0)
		mgmt_pending_remove(cmd);

2866
unlock:
2867
	hci_dev_unlock(hdev);
2868 2869 2870
	return err;
}

2871
static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
2872
		      u16 len)
2873
{
2874
	struct mgmt_cp_disconnect *cp = data;
2875
	struct mgmt_rp_disconnect rp;
2876
	struct mgmt_pending_cmd *cmd;
2877 2878 2879 2880 2881
	struct hci_conn *conn;
	int err;

	BT_DBG("");

2882 2883 2884 2885
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

2886
	if (!bdaddr_type_is_valid(cp->addr.type))
2887 2888 2889
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
2890

2891
	hci_dev_lock(hdev);
2892 2893

	if (!test_bit(HCI_UP, &hdev->flags)) {
2894 2895 2896
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
2897 2898 2899
		goto failed;
	}

2900
	if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) {
2901 2902
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
2903 2904 2905
		goto failed;
	}

2906
	if (cp->addr.type == BDADDR_BREDR)
2907 2908
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
					       &cp->addr.bdaddr);
2909 2910
	else
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
2911

2912
	if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
2913 2914 2915
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
					MGMT_STATUS_NOT_CONNECTED, &rp,
					sizeof(rp));
2916 2917 2918
		goto failed;
	}

2919
	cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
2920 2921
	if (!cmd) {
		err = -ENOMEM;
2922
		goto failed;
2923
	}
2924

2925 2926
	cmd->cmd_complete = generic_cmd_complete;

2927
	err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
2928
	if (err < 0)
2929
		mgmt_pending_remove(cmd);
2930 2931

failed:
2932
	hci_dev_unlock(hdev);
2933 2934 2935
	return err;
}

2936
static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
2937 2938 2939
{
	switch (link_type) {
	case LE_LINK:
2940 2941
		switch (addr_type) {
		case ADDR_LE_DEV_PUBLIC:
2942
			return BDADDR_LE_PUBLIC;
2943

2944
		default:
2945
			/* Fallback to LE Random address type */
2946
			return BDADDR_LE_RANDOM;
2947
		}
2948

2949
	default:
2950
		/* Fallback to BR/EDR type */
2951
		return BDADDR_BREDR;
2952 2953 2954
	}
}

2955 2956
static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 data_len)
2957 2958
{
	struct mgmt_rp_get_connections *rp;
2959
	struct hci_conn *c;
2960
	size_t rp_len;
2961 2962
	int err;
	u16 i;
2963 2964 2965

	BT_DBG("");

2966
	hci_dev_lock(hdev);
2967

2968
	if (!hdev_is_powered(hdev)) {
2969 2970
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
				      MGMT_STATUS_NOT_POWERED);
2971 2972 2973
		goto unlock;
	}

2974
	i = 0;
2975 2976
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
		if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
2977
			i++;
2978 2979
	}

2980
	rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
2981
	rp = kmalloc(rp_len, GFP_KERNEL);
2982
	if (!rp) {
2983 2984 2985 2986 2987
		err = -ENOMEM;
		goto unlock;
	}

	i = 0;
2988
	list_for_each_entry(c, &hdev->conn_hash.list, list) {
2989 2990
		if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
			continue;
2991
		bacpy(&rp->addr[i].bdaddr, &c->dst);
2992
		rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
2993
		if (c->type == SCO_LINK || c->type == ESCO_LINK)
2994 2995 2996 2997
			continue;
		i++;
	}

2998
	rp->conn_count = cpu_to_le16(i);
2999

3000 3001
	/* Recalculate length in case of filtered SCO connections, etc */
	rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
3002

3003 3004
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
				rp_len);
3005

3006
	kfree(rp);
3007 3008

unlock:
3009
	hci_dev_unlock(hdev);
3010 3011 3012
	return err;
}

3013
static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3014
				   struct mgmt_cp_pin_code_neg_reply *cp)
3015
{
3016
	struct mgmt_pending_cmd *cmd;
3017 3018
	int err;

3019
	cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
3020
			       sizeof(*cp));
3021 3022 3023
	if (!cmd)
		return -ENOMEM;

3024
	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
3025
			   sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
3026 3027 3028 3029 3030 3031
	if (err < 0)
		mgmt_pending_remove(cmd);

	return err;
}

3032
static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3033
			  u16 len)
3034
{
3035
	struct hci_conn *conn;
3036
	struct mgmt_cp_pin_code_reply *cp = data;
3037
	struct hci_cp_pin_code_reply reply;
3038
	struct mgmt_pending_cmd *cmd;
3039 3040 3041 3042
	int err;

	BT_DBG("");

3043
	hci_dev_lock(hdev);
3044

3045
	if (!hdev_is_powered(hdev)) {
3046 3047
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
				      MGMT_STATUS_NOT_POWERED);
3048 3049 3050
		goto failed;
	}

3051
	conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
3052
	if (!conn) {
3053 3054
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
				      MGMT_STATUS_NOT_CONNECTED);
3055 3056 3057 3058
		goto failed;
	}

	if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
3059 3060 3061
		struct mgmt_cp_pin_code_neg_reply ncp;

		memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
3062 3063 3064

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

3065
		err = send_pin_code_neg_reply(sk, hdev, &ncp);
3066
		if (err >= 0)
3067 3068
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
					      MGMT_STATUS_INVALID_PARAMS);
3069 3070 3071 3072

		goto failed;
	}

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

3079 3080
	cmd->cmd_complete = addr_cmd_complete;

3081
	bacpy(&reply.bdaddr, &cp->addr.bdaddr);
3082
	reply.pin_len = cp->pin_len;
3083
	memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
3084 3085 3086

	err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
	if (err < 0)
3087
		mgmt_pending_remove(cmd);
3088 3089

failed:
3090
	hci_dev_unlock(hdev);
3091 3092 3093
	return err;
}

3094 3095
static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
			     u16 len)
3096
{
3097
	struct mgmt_cp_set_io_capability *cp = data;
3098 3099 3100

	BT_DBG("");

3101
	if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
3102 3103
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
					 MGMT_STATUS_INVALID_PARAMS, NULL, 0);
3104

3105
	hci_dev_lock(hdev);
3106 3107 3108 3109

	hdev->io_capability = cp->io_capability;

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

3112
	hci_dev_unlock(hdev);
3113

3114 3115
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0,
				 NULL, 0);
3116 3117
}

3118
static struct mgmt_pending_cmd *find_pairing(struct hci_conn *conn)
3119 3120
{
	struct hci_dev *hdev = conn->hdev;
3121
	struct mgmt_pending_cmd *cmd;
3122

3123
	list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135
		if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
			continue;

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

		return cmd;
	}

	return NULL;
}

3136
static int pairing_complete(struct mgmt_pending_cmd *cmd, u8 status)
3137 3138 3139
{
	struct mgmt_rp_pair_device rp;
	struct hci_conn *conn = cmd->user_data;
3140
	int err;
3141

3142 3143
	bacpy(&rp.addr.bdaddr, &conn->dst);
	rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
3144

3145 3146
	err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE,
				status, &rp, sizeof(rp));
3147 3148 3149 3150 3151 3152

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

3153
	hci_conn_drop(conn);
3154 3155 3156 3157 3158

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

	hci_conn_put(conn);
3161 3162

	return err;
3163 3164
}

3165 3166 3167
void mgmt_smp_complete(struct hci_conn *conn, bool complete)
{
	u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
3168
	struct mgmt_pending_cmd *cmd;
3169 3170

	cmd = find_pairing(conn);
3171
	if (cmd) {
3172
		cmd->cmd_complete(cmd, status);
3173 3174
		mgmt_pending_remove(cmd);
	}
3175 3176
}

3177 3178
static void pairing_complete_cb(struct hci_conn *conn, u8 status)
{
3179
	struct mgmt_pending_cmd *cmd;
3180 3181 3182 3183

	BT_DBG("status %u", status);

	cmd = find_pairing(conn);
3184
	if (!cmd) {
3185
		BT_DBG("Unable to find a pending command");
3186 3187 3188 3189 3190
		return;
	}

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);
3191 3192
}

3193
static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
3194
{
3195
	struct mgmt_pending_cmd *cmd;
3196 3197 3198 3199 3200 3201 3202

	BT_DBG("status %u", status);

	if (!status)
		return;

	cmd = find_pairing(conn);
3203
	if (!cmd) {
3204
		BT_DBG("Unable to find a pending command");
3205 3206 3207 3208 3209
		return;
	}

	cmd->cmd_complete(cmd, mgmt_status(status));
	mgmt_pending_remove(cmd);
3210 3211
}

3212
static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3213
		       u16 len)
3214
{
3215
	struct mgmt_cp_pair_device *cp = data;
3216
	struct mgmt_rp_pair_device rp;
3217
	struct mgmt_pending_cmd *cmd;
3218 3219 3220 3221 3222 3223
	u8 sec_level, auth_type;
	struct hci_conn *conn;
	int err;

	BT_DBG("");

3224 3225 3226 3227
	memset(&rp, 0, sizeof(rp));
	bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
	rp.addr.type = cp->addr.type;

3228
	if (!bdaddr_type_is_valid(cp->addr.type))
3229 3230 3231
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3232

3233
	if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
3234 3235 3236
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
3237

3238
	hci_dev_lock(hdev);
3239

3240
	if (!hdev_is_powered(hdev)) {
3241 3242 3243
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
3244 3245 3246
		goto unlock;
	}

3247 3248 3249 3250 3251 3252 3253
	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;
	}

3254
	sec_level = BT_SECURITY_MEDIUM;
3255
	auth_type = HCI_AT_DEDICATED_BONDING;
3256

3257
	if (cp->addr.type == BDADDR_BREDR) {
3258 3259
		conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
				       auth_type);
3260 3261 3262 3263 3264 3265 3266 3267 3268 3269
	} else {
		u8 addr_type;

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

3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280
		/* When pairing a new device, it is expected to remember
		 * this device for future connections. Adding the connection
		 * parameter information ahead of time allows tracking
		 * of the slave preferred values and will speed up any
		 * further connection establishment.
		 *
		 * If connection parameters already exist, then they
		 * will be kept and this function does nothing.
		 */
		hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);

3281
		conn = hci_connect_le(hdev, &cp->addr.bdaddr, addr_type,
3282 3283
				      sec_level, HCI_LE_CONN_TIMEOUT,
				      HCI_ROLE_MASTER);
3284
	}
3285

3286
	if (IS_ERR(conn)) {
3287 3288 3289 3290
		int status;

		if (PTR_ERR(conn) == -EBUSY)
			status = MGMT_STATUS_BUSY;
3291 3292 3293 3294
		else if (PTR_ERR(conn) == -EOPNOTSUPP)
			status = MGMT_STATUS_NOT_SUPPORTED;
		else if (PTR_ERR(conn) == -ECONNREFUSED)
			status = MGMT_STATUS_REJECTED;
3295 3296 3297
		else
			status = MGMT_STATUS_CONNECT_FAILED;

3298 3299
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					status, &rp, sizeof(rp));
3300 3301 3302 3303
		goto unlock;
	}

	if (conn->connect_cfm_cb) {
3304
		hci_conn_drop(conn);
3305 3306
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
3307 3308 3309
		goto unlock;
	}

3310
	cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
3311 3312
	if (!cmd) {
		err = -ENOMEM;
3313
		hci_conn_drop(conn);
3314 3315 3316
		goto unlock;
	}

3317 3318
	cmd->cmd_complete = pairing_complete;

3319
	/* For LE, just connecting isn't a proof that the pairing finished */
3320
	if (cp->addr.type == BDADDR_BREDR) {
3321
		conn->connect_cfm_cb = pairing_complete_cb;
3322 3323 3324 3325 3326 3327 3328
		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;
	}
3329

3330
	conn->io_capability = cp->io_cap;
3331
	cmd->user_data = hci_conn_get(conn);
3332

3333
	if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
3334 3335 3336 3337
	    hci_conn_security(conn, sec_level, auth_type, true)) {
		cmd->cmd_complete(cmd, 0);
		mgmt_pending_remove(cmd);
	}
3338 3339 3340 3341

	err = 0;

unlock:
3342
	hci_dev_unlock(hdev);
3343 3344 3345
	return err;
}

3346 3347
static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3348
{
3349
	struct mgmt_addr_info *addr = data;
3350
	struct mgmt_pending_cmd *cmd;
3351 3352 3353 3354 3355 3356 3357
	struct hci_conn *conn;
	int err;

	BT_DBG("");

	hci_dev_lock(hdev);

3358
	if (!hdev_is_powered(hdev)) {
3359 3360
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_NOT_POWERED);
3361 3362 3363
		goto unlock;
	}

3364 3365
	cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
	if (!cmd) {
3366 3367
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_INVALID_PARAMS);
3368 3369 3370 3371 3372 3373
		goto unlock;
	}

	conn = cmd->user_data;

	if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
3374 3375
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
				      MGMT_STATUS_INVALID_PARAMS);
3376 3377 3378
		goto unlock;
	}

3379 3380
	cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
	mgmt_pending_remove(cmd);
3381

3382 3383
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
				addr, sizeof(*addr));
3384 3385 3386 3387 3388
unlock:
	hci_dev_unlock(hdev);
	return err;
}

3389
static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
3390
			     struct mgmt_addr_info *addr, u16 mgmt_op,
3391
			     u16 hci_op, __le32 passkey)
3392
{
3393
	struct mgmt_pending_cmd *cmd;
3394
	struct hci_conn *conn;
3395 3396
	int err;

3397
	hci_dev_lock(hdev);
3398

3399
	if (!hdev_is_powered(hdev)) {
3400 3401 3402
		err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
					MGMT_STATUS_NOT_POWERED, addr,
					sizeof(*addr));
3403
		goto done;
3404 3405
	}

3406 3407
	if (addr->type == BDADDR_BREDR)
		conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
3408
	else
3409
		conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr);
3410 3411

	if (!conn) {
3412 3413 3414
		err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
					MGMT_STATUS_NOT_CONNECTED, addr,
					sizeof(*addr));
3415 3416
		goto done;
	}
3417

3418
	if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
3419 3420
		err = smp_user_confirm_reply(conn, mgmt_op, passkey);
		if (!err)
3421 3422 3423
			err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
						MGMT_STATUS_SUCCESS, addr,
						sizeof(*addr));
3424
		else
3425 3426 3427
			err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
						MGMT_STATUS_FAILED, addr,
						sizeof(*addr));
3428 3429 3430 3431

		goto done;
	}

3432
	cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
3433 3434
	if (!cmd) {
		err = -ENOMEM;
3435
		goto done;
3436 3437
	}

3438 3439
	cmd->cmd_complete = addr_cmd_complete;

3440
	/* Continue with pairing via HCI */
3441 3442 3443
	if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
		struct hci_cp_user_passkey_reply cp;

3444
		bacpy(&cp.bdaddr, &addr->bdaddr);
3445 3446 3447
		cp.passkey = passkey;
		err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
	} else
3448 3449
		err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
				   &addr->bdaddr);
3450

3451 3452
	if (err < 0)
		mgmt_pending_remove(cmd);
3453

3454
done:
3455
	hci_dev_unlock(hdev);
3456 3457 3458
	return err;
}

3459 3460 3461 3462 3463 3464 3465
static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
			      void *data, u16 len)
{
	struct mgmt_cp_pin_code_neg_reply *cp = data;

	BT_DBG("");

3466
	return user_pairing_resp(sk, hdev, &cp->addr,
3467 3468 3469 3470
				MGMT_OP_PIN_CODE_NEG_REPLY,
				HCI_OP_PIN_CODE_NEG_REPLY, 0);
}

3471 3472
static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3473
{
3474
	struct mgmt_cp_user_confirm_reply *cp = data;
3475 3476 3477 3478

	BT_DBG("");

	if (len != sizeof(*cp))
3479 3480
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
				       MGMT_STATUS_INVALID_PARAMS);
3481

3482
	return user_pairing_resp(sk, hdev, &cp->addr,
3483 3484
				 MGMT_OP_USER_CONFIRM_REPLY,
				 HCI_OP_USER_CONFIRM_REPLY, 0);
3485 3486
}

3487
static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
3488
				  void *data, u16 len)
3489
{
3490
	struct mgmt_cp_user_confirm_neg_reply *cp = data;
3491 3492 3493

	BT_DBG("");

3494
	return user_pairing_resp(sk, hdev, &cp->addr,
3495 3496
				 MGMT_OP_USER_CONFIRM_NEG_REPLY,
				 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
3497 3498
}

3499 3500
static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
			      u16 len)
3501
{
3502
	struct mgmt_cp_user_passkey_reply *cp = data;
3503 3504 3505

	BT_DBG("");

3506
	return user_pairing_resp(sk, hdev, &cp->addr,
3507 3508
				 MGMT_OP_USER_PASSKEY_REPLY,
				 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
3509 3510
}

3511
static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
3512
				  void *data, u16 len)
3513
{
3514
	struct mgmt_cp_user_passkey_neg_reply *cp = data;
3515 3516 3517

	BT_DBG("");

3518
	return user_pairing_resp(sk, hdev, &cp->addr,
3519 3520
				 MGMT_OP_USER_PASSKEY_NEG_REPLY,
				 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
3521 3522
}

3523
static void update_name(struct hci_request *req)
3524
{
3525
	struct hci_dev *hdev = req->hdev;
3526 3527
	struct hci_cp_write_local_name cp;

3528
	memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
3529

3530
	hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
3531 3532
}

3533
static void set_name_complete(struct hci_dev *hdev, u8 status, u16 opcode)
3534 3535
{
	struct mgmt_cp_set_local_name *cp;
3536
	struct mgmt_pending_cmd *cmd;
3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548

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

	hci_dev_lock(hdev);

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

	cp = cmd->param;

	if (status)
3549 3550
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
			        mgmt_status(status));
3551
	else
3552 3553
		mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
				  cp, sizeof(*cp));
3554 3555 3556 3557 3558 3559 3560

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

3561
static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
3562
			  u16 len)
3563
{
3564
	struct mgmt_cp_set_local_name *cp = data;
3565
	struct mgmt_pending_cmd *cmd;
3566
	struct hci_request req;
3567 3568 3569 3570
	int err;

	BT_DBG("");

3571
	hci_dev_lock(hdev);
3572

3573 3574 3575 3576 3577 3578
	/* 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))) {
3579 3580
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
					data, len);
3581 3582 3583
		goto failed;
	}

3584
	memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
3585

3586
	if (!hdev_is_powered(hdev)) {
3587
		memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3588

3589 3590
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
					data, len);
3591 3592 3593 3594
		if (err < 0)
			goto failed;

		err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
3595
				 sk);
3596

3597 3598 3599
		goto failed;
	}

3600
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
3601 3602 3603 3604 3605
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

3606 3607
	memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));

3608
	hci_req_init(&req, hdev);
3609 3610 3611 3612 3613 3614

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

3615 3616 3617
	/* The name is stored in the scan response data and so
	 * no need to udpate the advertising data here.
	 */
3618
	if (lmp_le_capable(hdev))
3619
		update_scan_rsp_data(&req);
3620

3621
	err = hci_req_run(&req, set_name_complete);
3622 3623 3624 3625
	if (err < 0)
		mgmt_pending_remove(cmd);

failed:
3626
	hci_dev_unlock(hdev);
3627 3628 3629
	return err;
}

3630
static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
3631
			       void *data, u16 data_len)
3632
{
3633
	struct mgmt_pending_cmd *cmd;
3634 3635
	int err;

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

3638
	hci_dev_lock(hdev);
3639

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

3646
	if (!lmp_ssp_capable(hdev)) {
3647 3648
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_NOT_SUPPORTED);
3649 3650 3651
		goto unlock;
	}

3652
	if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
3653 3654
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
				      MGMT_STATUS_BUSY);
3655 3656 3657
		goto unlock;
	}

3658
	cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
3659 3660 3661 3662 3663
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

3664
	if (bredr_sc_enabled(hdev))
3665 3666 3667 3668 3669
		err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_EXT_DATA,
				   0, NULL);
	else
		err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);

3670 3671 3672 3673
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
3674
	hci_dev_unlock(hdev);
3675 3676 3677
	return err;
}

3678
static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
3679
			       void *data, u16 len)
3680
{
3681
	struct mgmt_addr_info *addr = data;
3682 3683
	int err;

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

3686
	if (!bdaddr_type_is_valid(addr->type))
3687 3688 3689 3690
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_ADD_REMOTE_OOB_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 addr, sizeof(*addr));
3691

3692
	hci_dev_lock(hdev);
3693

3694 3695 3696
	if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
		struct mgmt_cp_add_remote_oob_data *cp = data;
		u8 status;
3697

3698
		if (cp->addr.type != BDADDR_BREDR) {
3699 3700 3701 3702
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_ADD_REMOTE_OOB_DATA,
						MGMT_STATUS_INVALID_PARAMS,
						&cp->addr, sizeof(cp->addr));
3703 3704 3705
			goto unlock;
		}

3706
		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
3707 3708
					      cp->addr.type, cp->hash,
					      cp->rand, NULL, NULL);
3709 3710 3711 3712 3713
		if (err < 0)
			status = MGMT_STATUS_FAILED;
		else
			status = MGMT_STATUS_SUCCESS;

3714 3715 3716
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_REMOTE_OOB_DATA, status,
					&cp->addr, sizeof(cp->addr));
3717 3718
	} else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
		struct mgmt_cp_add_remote_oob_ext_data *cp = data;
3719
		u8 *rand192, *hash192, *rand256, *hash256;
3720 3721
		u8 status;

3722
		if (bdaddr_type_is_le(cp->addr.type)) {
3723 3724 3725 3726 3727
			/* 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)) {
3728 3729 3730 3731
				err = mgmt_cmd_complete(sk, hdev->id,
							MGMT_OP_ADD_REMOTE_OOB_DATA,
							MGMT_STATUS_INVALID_PARAMS,
							addr, sizeof(*addr));
3732 3733 3734
				goto unlock;
			}

3735 3736 3737
			rand192 = NULL;
			hash192 = NULL;
		} else {
3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760
			/* 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;
3761 3762
		}

3763
		err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
3764
					      cp->addr.type, hash192, rand192,
3765
					      hash256, rand256);
3766 3767 3768 3769 3770
		if (err < 0)
			status = MGMT_STATUS_FAILED;
		else
			status = MGMT_STATUS_SUCCESS;

3771 3772 3773
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_ADD_REMOTE_OOB_DATA,
					status, &cp->addr, sizeof(cp->addr));
3774 3775
	} else {
		BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
3776 3777
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
				      MGMT_STATUS_INVALID_PARAMS);
3778
	}
3779

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

3785
static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
3786
				  void *data, u16 len)
3787
{
3788
	struct mgmt_cp_remove_remote_oob_data *cp = data;
3789
	u8 status;
3790 3791
	int err;

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

3794
	if (cp->addr.type != BDADDR_BREDR)
3795 3796 3797 3798
		return mgmt_cmd_complete(sk, hdev->id,
					 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
3799

3800
	hci_dev_lock(hdev);
3801

3802 3803 3804 3805 3806 3807
	if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
		hci_remote_oob_data_clear(hdev);
		status = MGMT_STATUS_SUCCESS;
		goto done;
	}

3808
	err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
3809
	if (err < 0)
3810
		status = MGMT_STATUS_INVALID_PARAMS;
3811
	else
3812
		status = MGMT_STATUS_SUCCESS;
3813

3814
done:
3815 3816
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
				status, &cp->addr, sizeof(cp->addr));
3817

3818
	hci_dev_unlock(hdev);
3819 3820 3821
	return err;
}

3822
static bool trigger_discovery(struct hci_request *req, u8 *status)
3823
{
3824 3825 3826 3827 3828 3829 3830
	struct hci_dev *hdev = req->hdev;
	struct hci_cp_le_set_scan_param param_cp;
	struct hci_cp_le_set_scan_enable enable_cp;
	struct hci_cp_inquiry inq_cp;
	/* General inquiry access code (GIAC) */
	u8 lap[3] = { 0x33, 0x8b, 0x9e };
	u8 own_addr_type;
3831 3832
	int err;

3833 3834 3835 3836 3837
	switch (hdev->discovery.type) {
	case DISCOV_TYPE_BREDR:
		*status = mgmt_bredr_support(hdev);
		if (*status)
			return false;
3838

3839 3840 3841 3842
		if (test_bit(HCI_INQUIRY, &hdev->flags)) {
			*status = MGMT_STATUS_BUSY;
			return false;
		}
3843

3844
		hci_inquiry_cache_flush(hdev);
3845

3846 3847 3848 3849 3850
		memset(&inq_cp, 0, sizeof(inq_cp));
		memcpy(&inq_cp.lap, lap, sizeof(inq_cp.lap));
		inq_cp.length = DISCOV_BREDR_INQUIRY_LEN;
		hci_req_add(req, HCI_OP_INQUIRY, sizeof(inq_cp), &inq_cp);
		break;
3851

3852 3853 3854 3855 3856 3857 3858
	case DISCOV_TYPE_LE:
	case DISCOV_TYPE_INTERLEAVED:
		*status = mgmt_le_support(hdev);
		if (*status)
			return false;

		if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
3859
		    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
3860 3861 3862 3863
			*status = MGMT_STATUS_NOT_SUPPORTED;
			return false;
		}

3864
		if (hci_dev_test_flag(hdev, HCI_LE_ADV)) {
3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881
			/* Don't let discovery abort an outgoing
			 * connection attempt that's using directed
			 * advertising.
			 */
			if (hci_conn_hash_lookup_state(hdev, LE_LINK,
						       BT_CONNECT)) {
				*status = MGMT_STATUS_REJECTED;
				return false;
			}

			disable_advertising(req);
		}

		/* If controller is scanning, it means the background scanning
		 * is running. Thus, we should temporarily stop it in order to
		 * set the discovery scanning parameters.
		 */
3882
		if (hci_dev_test_flag(hdev, HCI_LE_SCAN))
3883 3884 3885 3886 3887 3888
			hci_req_add_le_scan_disable(req);

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

		/* All active scans will be done with either a resolvable
		 * private address (when privacy feature has been enabled)
3889
		 * or non-resolvable private address.
3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916
		 */
		err = hci_update_random_address(req, true, &own_addr_type);
		if (err < 0) {
			*status = MGMT_STATUS_FAILED;
			return false;
		}

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

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

	default:
		*status = MGMT_STATUS_INVALID_PARAMS;
		return false;
	}

	return true;
3917 3918
}

3919 3920
static void start_discovery_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
3921
{
3922
	struct mgmt_pending_cmd *cmd;
3923
	unsigned long timeout;
3924

3925 3926
	BT_DBG("status %d", status);

3927
	hci_dev_lock(hdev);
3928

3929
	cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
3930 3931 3932
	if (!cmd)
		cmd = mgmt_pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);

3933
	if (cmd) {
3934
		cmd->cmd_complete(cmd, mgmt_status(status));
3935 3936
		mgmt_pending_remove(cmd);
	}
3937 3938

	if (status) {
3939 3940
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
		goto unlock;
3941 3942 3943 3944
	}

	hci_discovery_set_state(hdev, DISCOVERY_FINDING);

3945 3946 3947
	/* If the scan involves LE scan, pick proper timeout to schedule
	 * hdev->le_scan_disable that will stop it.
	 */
3948 3949
	switch (hdev->discovery.type) {
	case DISCOV_TYPE_LE:
3950
		timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
3951 3952
		break;
	case DISCOV_TYPE_INTERLEAVED:
3953
		timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
3954 3955
		break;
	case DISCOV_TYPE_BREDR:
3956
		timeout = 0;
3957 3958 3959
		break;
	default:
		BT_ERR("Invalid discovery type %d", hdev->discovery.type);
3960 3961
		timeout = 0;
		break;
3962
	}
3963

3964 3965 3966 3967 3968 3969 3970 3971
	if (timeout) {
		/* When service discovery is used and the controller has
		 * a strict duplicate filter, it is important to remember
		 * the start and duration of the scan. This is required
		 * for restarting scanning during the discovery phase.
		 */
		if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER,
			     &hdev->quirks) &&
3972
		    hdev->discovery.result_filtering) {
3973 3974 3975 3976
			hdev->discovery.scan_start = jiffies;
			hdev->discovery.scan_duration = timeout;
		}

3977 3978
		queue_delayed_work(hdev->workqueue,
				   &hdev->le_scan_disable, timeout);
3979
	}
3980

3981 3982
unlock:
	hci_dev_unlock(hdev);
3983 3984
}

3985
static int start_discovery(struct sock *sk, struct hci_dev *hdev,
3986
			   void *data, u16 len)
3987
{
3988
	struct mgmt_cp_start_discovery *cp = data;
3989
	struct mgmt_pending_cmd *cmd;
3990
	struct hci_request req;
3991
	u8 status;
3992 3993
	int err;

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

3996
	hci_dev_lock(hdev);
3997

3998
	if (!hdev_is_powered(hdev)) {
3999 4000 4001
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					MGMT_STATUS_NOT_POWERED,
					&cp->type, sizeof(cp->type));
4002 4003 4004
		goto failed;
	}

4005
	if (hdev->discovery.state != DISCOVERY_STOPPED ||
4006
	    hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
4007 4008 4009
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					MGMT_STATUS_BUSY, &cp->type,
					sizeof(cp->type));
4010 4011 4012
		goto failed;
	}

4013
	cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, data, len);
4014 4015 4016 4017 4018
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

4019 4020
	cmd->cmd_complete = generic_cmd_complete;

4021 4022 4023 4024 4025
	/* Clear the discovery filter first to free any previously
	 * allocated memory for the UUID list.
	 */
	hci_discovery_filter_clear(hdev);

A
Andre Guedes 已提交
4026
	hdev->discovery.type = cp->type;
4027
	hdev->discovery.report_invalid_rssi = false;
A
Andre Guedes 已提交
4028

4029 4030
	hci_req_init(&req, hdev);

4031
	if (!trigger_discovery(&req, &status)) {
4032 4033
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
					status, &cp->type, sizeof(cp->type));
4034 4035
		mgmt_pending_remove(cmd);
		goto failed;
4036
	}
4037

4038
	err = hci_req_run(&req, start_discovery_complete);
4039
	if (err < 0) {
4040
		mgmt_pending_remove(cmd);
4041 4042
		goto failed;
	}
4043

4044
	hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4045

4046
failed:
4047
	hci_dev_unlock(hdev);
4048 4049
	return err;
}
4050

4051 4052
static int service_discovery_cmd_complete(struct mgmt_pending_cmd *cmd,
					  u8 status)
4053
{
4054 4055
	return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
				 cmd->param, 1);
4056
}
4057

4058 4059 4060 4061
static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
				   void *data, u16 len)
{
	struct mgmt_cp_start_service_discovery *cp = data;
4062
	struct mgmt_pending_cmd *cmd;
4063 4064 4065 4066 4067
	struct hci_request req;
	const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
	u16 uuid_count, expected_len;
	u8 status;
	int err;
4068

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

4071
	hci_dev_lock(hdev);
4072

4073
	if (!hdev_is_powered(hdev)) {
4074 4075 4076 4077
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_NOT_POWERED,
					&cp->type, sizeof(cp->type));
4078 4079
		goto failed;
	}
4080

4081
	if (hdev->discovery.state != DISCOVERY_STOPPED ||
4082
	    hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
4083 4084 4085 4086
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_BUSY, &cp->type,
					sizeof(cp->type));
4087 4088
		goto failed;
	}
4089

4090 4091 4092 4093
	uuid_count = __le16_to_cpu(cp->uuid_count);
	if (uuid_count > max_uuid_count) {
		BT_ERR("service_discovery: too big uuid_count value %u",
		       uuid_count);
4094 4095 4096 4097
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS, &cp->type,
					sizeof(cp->type));
4098 4099 4100 4101 4102 4103 4104
		goto failed;
	}

	expected_len = sizeof(*cp) + uuid_count * 16;
	if (expected_len != len) {
		BT_ERR("service_discovery: expected %u bytes, got %u bytes",
		       expected_len, len);
4105 4106 4107 4108
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS, &cp->type,
					sizeof(cp->type));
4109 4110 4111 4112
		goto failed;
	}

	cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
4113
			       hdev, data, len);
4114 4115 4116 4117 4118
	if (!cmd) {
		err = -ENOMEM;
		goto failed;
	}

4119 4120
	cmd->cmd_complete = service_discovery_cmd_complete;

4121 4122 4123 4124 4125
	/* Clear the discovery filter first to free any previously
	 * allocated memory for the UUID list.
	 */
	hci_discovery_filter_clear(hdev);

4126
	hdev->discovery.result_filtering = true;
4127 4128 4129 4130 4131 4132 4133 4134
	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) {
4135 4136 4137 4138
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_START_SERVICE_DISCOVERY,
						MGMT_STATUS_FAILED,
						&cp->type, sizeof(cp->type));
4139 4140 4141
			mgmt_pending_remove(cmd);
			goto failed;
		}
4142
	}
4143

4144
	hci_req_init(&req, hdev);
4145

4146
	if (!trigger_discovery(&req, &status)) {
4147 4148 4149
		err = mgmt_cmd_complete(sk, hdev->id,
					MGMT_OP_START_SERVICE_DISCOVERY,
					status, &cp->type, sizeof(cp->type));
4150 4151
		mgmt_pending_remove(cmd);
		goto failed;
4152
	}
4153

4154
	err = hci_req_run(&req, start_discovery_complete);
4155
	if (err < 0) {
4156
		mgmt_pending_remove(cmd);
4157 4158 4159 4160
		goto failed;
	}

	hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4161 4162

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

4167
static void stop_discovery_complete(struct hci_dev *hdev, u8 status, u16 opcode)
4168
{
4169
	struct mgmt_pending_cmd *cmd;
4170

4171 4172 4173 4174
	BT_DBG("status %d", status);

	hci_dev_lock(hdev);

4175 4176
	cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
	if (cmd) {
4177
		cmd->cmd_complete(cmd, mgmt_status(status));
4178
		mgmt_pending_remove(cmd);
4179 4180
	}

4181 4182
	if (!status)
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4183 4184 4185 4186

	hci_dev_unlock(hdev);
}

4187
static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
4188
			  u16 len)
4189
{
4190
	struct mgmt_cp_stop_discovery *mgmt_cp = data;
4191
	struct mgmt_pending_cmd *cmd;
4192
	struct hci_request req;
4193 4194
	int err;

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

4197
	hci_dev_lock(hdev);
4198

4199
	if (!hci_discovery_active(hdev)) {
4200 4201 4202
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
					MGMT_STATUS_REJECTED, &mgmt_cp->type,
					sizeof(mgmt_cp->type));
4203 4204 4205 4206
		goto unlock;
	}

	if (hdev->discovery.type != mgmt_cp->type) {
4207 4208 4209
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
					MGMT_STATUS_INVALID_PARAMS,
					&mgmt_cp->type, sizeof(mgmt_cp->type));
4210
		goto unlock;
4211 4212
	}

4213
	cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
4214 4215
	if (!cmd) {
		err = -ENOMEM;
4216 4217 4218
		goto unlock;
	}

4219 4220
	cmd->cmd_complete = generic_cmd_complete;

4221 4222
	hci_req_init(&req, hdev);

4223
	hci_stop_discovery(&req);
4224

4225 4226 4227
	err = hci_req_run(&req, stop_discovery_complete);
	if (!err) {
		hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
4228
		goto unlock;
4229 4230
	}

4231 4232 4233 4234
	mgmt_pending_remove(cmd);

	/* If no HCI commands were sent we're done */
	if (err == -ENODATA) {
4235 4236
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
					&mgmt_cp->type, sizeof(mgmt_cp->type));
4237 4238
		hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
	}
4239

4240
unlock:
4241
	hci_dev_unlock(hdev);
4242 4243 4244
	return err;
}

4245
static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
4246
			u16 len)
4247
{
4248
	struct mgmt_cp_confirm_name *cp = data;
4249 4250 4251
	struct inquiry_entry *e;
	int err;

4252
	BT_DBG("%s", hdev->name);
4253 4254 4255

	hci_dev_lock(hdev);

4256
	if (!hci_discovery_active(hdev)) {
4257 4258 4259
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
					MGMT_STATUS_FAILED, &cp->addr,
					sizeof(cp->addr));
4260 4261 4262
		goto failed;
	}

4263
	e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
4264
	if (!e) {
4265 4266 4267
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
					MGMT_STATUS_INVALID_PARAMS, &cp->addr,
					sizeof(cp->addr));
4268 4269 4270 4271 4272 4273 4274 4275
		goto failed;
	}

	if (cp->name_known) {
		e->name_state = NAME_KNOWN;
		list_del(&e->list);
	} else {
		e->name_state = NAME_NEEDED;
4276
		hci_inquiry_cache_update_resolve(hdev, e);
4277 4278
	}

4279 4280
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
				&cp->addr, sizeof(cp->addr));
4281 4282 4283 4284 4285 4286

failed:
	hci_dev_unlock(hdev);
	return err;
}

4287
static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
4288
			u16 len)
4289
{
4290
	struct mgmt_cp_block_device *cp = data;
4291
	u8 status;
4292 4293
	int err;

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

4296
	if (!bdaddr_type_is_valid(cp->addr.type))
4297 4298 4299
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
4300

4301
	hci_dev_lock(hdev);
4302

4303 4304
	err = hci_bdaddr_list_add(&hdev->blacklist, &cp->addr.bdaddr,
				  cp->addr.type);
4305
	if (err < 0) {
4306
		status = MGMT_STATUS_FAILED;
4307 4308 4309 4310 4311 4312
		goto done;
	}

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

4314
done:
4315 4316
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
				&cp->addr, sizeof(cp->addr));
4317

4318
	hci_dev_unlock(hdev);
4319 4320 4321 4322

	return err;
}

4323
static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
4324
			  u16 len)
4325
{
4326
	struct mgmt_cp_unblock_device *cp = data;
4327
	u8 status;
4328 4329
	int err;

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

4332
	if (!bdaddr_type_is_valid(cp->addr.type))
4333 4334 4335
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
4336

4337
	hci_dev_lock(hdev);
4338

4339 4340
	err = hci_bdaddr_list_del(&hdev->blacklist, &cp->addr.bdaddr,
				  cp->addr.type);
4341
	if (err < 0) {
4342
		status = MGMT_STATUS_INVALID_PARAMS;
4343 4344 4345 4346 4347 4348
		goto done;
	}

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

4350
done:
4351 4352
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
				&cp->addr, sizeof(cp->addr));
4353

4354
	hci_dev_unlock(hdev);
4355 4356 4357 4358

	return err;
}

4359 4360 4361 4362
static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 len)
{
	struct mgmt_cp_set_device_id *cp = data;
4363
	struct hci_request req;
4364
	int err;
4365
	__u16 source;
4366 4367 4368

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

4369 4370 4371
	source = __le16_to_cpu(cp->source);

	if (source > 0x0002)
4372 4373
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
				       MGMT_STATUS_INVALID_PARAMS);
4374

4375 4376
	hci_dev_lock(hdev);

4377
	hdev->devid_source = source;
4378 4379 4380 4381
	hdev->devid_vendor = __le16_to_cpu(cp->vendor);
	hdev->devid_product = __le16_to_cpu(cp->product);
	hdev->devid_version = __le16_to_cpu(cp->version);

4382 4383
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
				NULL, 0);
4384

4385 4386 4387
	hci_req_init(&req, hdev);
	update_eir(&req);
	hci_req_run(&req, NULL);
4388 4389 4390 4391 4392 4393

	hci_dev_unlock(hdev);

	return err;
}

4394 4395
static void set_advertising_complete(struct hci_dev *hdev, u8 status,
				     u16 opcode)
4396 4397 4398
{
	struct cmd_lookup match = { NULL, hdev };

4399 4400
	hci_dev_lock(hdev);

4401 4402 4403 4404 4405
	if (status) {
		u8 mgmt_err = mgmt_status(status);

		mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
				     cmd_status_rsp, &mgmt_err);
4406
		goto unlock;
4407 4408
	}

4409
	if (hci_dev_test_flag(hdev, HCI_LE_ADV))
4410
		hci_dev_set_flag(hdev, HCI_ADVERTISING);
4411
	else
4412
		hci_dev_clear_flag(hdev, HCI_ADVERTISING);
4413

4414 4415 4416 4417 4418 4419 4420
	mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
			     &match);

	new_settings(hdev, match.sk);

	if (match.sk)
		sock_put(match.sk);
4421 4422 4423

unlock:
	hci_dev_unlock(hdev);
4424 4425
}

4426 4427
static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 len)
4428 4429
{
	struct mgmt_mode *cp = data;
4430
	struct mgmt_pending_cmd *cmd;
4431
	struct hci_request req;
4432
	u8 val, status;
4433 4434 4435 4436
	int err;

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

4437 4438
	status = mgmt_le_support(hdev);
	if (status)
4439 4440
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				       status);
4441

4442
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
4443 4444
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				       MGMT_STATUS_INVALID_PARAMS);
4445 4446 4447 4448 4449

	hci_dev_lock(hdev);

	val = !!cp->val;

4450 4451 4452 4453 4454
	/* 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).
	 */
4455
	if (!hdev_is_powered(hdev) ||
4456 4457
	    (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
	     (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
4458
	    hci_conn_num(hdev, LE_LINK) > 0 ||
4459
	    (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
4460
	     hdev->le_scan_type == LE_SCAN_ACTIVE)) {
4461
		bool changed;
4462

4463
		if (cp->val) {
4464
			changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
4465
			if (cp->val == 0x02)
4466
				hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4467
			else
4468
				hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4469
		} else {
4470
			changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
4471
			hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485
		}

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

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

		goto unlock;
	}

	if (mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
	    mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
4486 4487
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
				      MGMT_STATUS_BUSY);
4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498
		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);

4499
	if (cp->val == 0x02)
4500
		hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4501
	else
4502
		hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
4503

4504 4505 4506 4507
	if (val)
		enable_advertising(&req);
	else
		disable_advertising(&req);
4508 4509 4510 4511 4512 4513 4514 4515 4516 4517

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

unlock:
	hci_dev_unlock(hdev);
	return err;
}

4518 4519 4520 4521 4522 4523 4524 4525
static int set_static_address(struct sock *sk, struct hci_dev *hdev,
			      void *data, u16 len)
{
	struct mgmt_cp_set_static_address *cp = data;
	int err;

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

4526
	if (!lmp_le_capable(hdev))
4527 4528
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
				       MGMT_STATUS_NOT_SUPPORTED);
4529 4530

	if (hdev_is_powered(hdev))
4531 4532
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
				       MGMT_STATUS_REJECTED);
4533 4534 4535

	if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
		if (!bacmp(&cp->bdaddr, BDADDR_NONE))
4536 4537 4538
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_SET_STATIC_ADDRESS,
					       MGMT_STATUS_INVALID_PARAMS);
4539 4540 4541

		/* Two most significant bits shall be set */
		if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
4542 4543 4544
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_SET_STATIC_ADDRESS,
					       MGMT_STATUS_INVALID_PARAMS);
4545 4546 4547 4548 4549 4550
	}

	hci_dev_lock(hdev);

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

4551 4552 4553 4554 4555
	err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
	if (err < 0)
		goto unlock;

	err = new_settings(hdev, sk);
4556

4557
unlock:
4558 4559 4560 4561
	hci_dev_unlock(hdev);
	return err;
}

4562 4563 4564 4565 4566 4567 4568 4569 4570 4571
static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
			   void *data, u16 len)
{
	struct mgmt_cp_set_scan_params *cp = data;
	__u16 interval, window;
	int err;

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

	if (!lmp_le_capable(hdev))
4572 4573
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_NOT_SUPPORTED);
4574 4575 4576 4577

	interval = __le16_to_cpu(cp->interval);

	if (interval < 0x0004 || interval > 0x4000)
4578 4579
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
4580 4581 4582 4583

	window = __le16_to_cpu(cp->window);

	if (window < 0x0004 || window > 0x4000)
4584 4585
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
4586

4587
	if (window > interval)
4588 4589
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
				       MGMT_STATUS_INVALID_PARAMS);
4590

4591 4592 4593 4594 4595
	hci_dev_lock(hdev);

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

4596 4597
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
				NULL, 0);
4598

4599 4600 4601
	/* If background scan is running, restart it so new parameters are
	 * loaded.
	 */
4602
	if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613
	    hdev->discovery.state == DISCOVERY_STOPPED) {
		struct hci_request req;

		hci_req_init(&req, hdev);

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

		hci_req_run(&req, NULL);
	}

4614 4615 4616 4617 4618
	hci_dev_unlock(hdev);

	return err;
}

4619 4620
static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
				      u16 opcode)
4621
{
4622
	struct mgmt_pending_cmd *cmd;
4623 4624 4625 4626 4627 4628 4629 4630 4631 4632

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

	hci_dev_lock(hdev);

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

	if (status) {
4633 4634
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
			        mgmt_status(status));
4635
	} else {
4636 4637 4638
		struct mgmt_mode *cp = cmd->param;

		if (cp->val)
4639
			hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
4640
		else
4641
			hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
4642

4643 4644 4645 4646 4647 4648 4649 4650 4651 4652
		send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
		new_settings(hdev, cmd->sk);
	}

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

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

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

4663
	if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
4664
	    hdev->hci_ver < BLUETOOTH_VER_1_2)
4665 4666
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				       MGMT_STATUS_NOT_SUPPORTED);
4667

4668
	if (cp->val != 0x00 && cp->val != 0x01)
4669 4670
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				       MGMT_STATUS_INVALID_PARAMS);
4671

4672 4673
	hci_dev_lock(hdev);

4674
	if (mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
4675 4676
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				      MGMT_STATUS_BUSY);
4677 4678 4679
		goto unlock;
	}

4680
	if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
4681 4682 4683 4684 4685
		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
					hdev);
		goto unlock;
	}

4686
	if (!hdev_is_powered(hdev)) {
4687
		hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
4688 4689 4690 4691 4692 4693
		err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
					hdev);
		new_settings(hdev, sk);
		goto unlock;
	}

4694 4695 4696 4697 4698
	cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
			       data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
4699 4700
	}

4701 4702
	hci_req_init(&req, hdev);

4703
	write_fast_connectable(&req, cp->val);
4704 4705

	err = hci_req_run(&req, fast_connectable_complete);
4706
	if (err < 0) {
4707 4708
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
				      MGMT_STATUS_FAILED);
4709
		mgmt_pending_remove(cmd);
4710 4711
	}

4712
unlock:
4713
	hci_dev_unlock(hdev);
4714

4715 4716 4717
	return err;
}

4718
static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
4719
{
4720
	struct mgmt_pending_cmd *cmd;
4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735

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

	hci_dev_lock(hdev);

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

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

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

4738
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752
	} else {
		send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
		new_settings(hdev, cmd->sk);
	}

	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
{
	struct mgmt_mode *cp = data;
4753
	struct mgmt_pending_cmd *cmd;
4754 4755 4756 4757 4758 4759
	struct hci_request req;
	int err;

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

	if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
4760 4761
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_NOT_SUPPORTED);
4762

4763
	if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
4764 4765
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_REJECTED);
4766 4767

	if (cp->val != 0x00 && cp->val != 0x01)
4768 4769
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				       MGMT_STATUS_INVALID_PARAMS);
4770 4771 4772

	hci_dev_lock(hdev);

4773
	if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
4774 4775 4776 4777 4778 4779
		err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
		goto unlock;
	}

	if (!hdev_is_powered(hdev)) {
		if (!cp->val) {
4780 4781 4782 4783 4784
			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);
4785 4786
		}

4787
		hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798

		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) {
4799 4800
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				      MGMT_STATUS_REJECTED);
4801
		goto unlock;
4802 4803 4804 4805 4806 4807 4808 4809
	} 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.
4810 4811 4812 4813 4814 4815
		 *
		 * 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.
4816
		 */
4817
		if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
4818
		    (bacmp(&hdev->static_addr, BDADDR_ANY) ||
4819
		     hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
4820 4821
			err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
					      MGMT_STATUS_REJECTED);
4822 4823
			goto unlock;
		}
4824 4825 4826
	}

	if (mgmt_pending_find(MGMT_OP_SET_BREDR, hdev)) {
4827 4828
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
				      MGMT_STATUS_BUSY);
4829 4830 4831 4832 4833 4834 4835 4836 4837
		goto unlock;
	}

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

4838
	/* We need to flip the bit already here so that update_adv_data
4839 4840
	 * generates the correct flags.
	 */
4841
	hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
4842 4843

	hci_req_init(&req, hdev);
4844

4845
	write_fast_connectable(&req, false);
4846
	__hci_update_page_scan(&req);
4847

4848 4849 4850
	/* Since only the advertising data flags will change, there
	 * is no need to update the scan response data.
	 */
4851
	update_adv_data(&req);
4852

4853 4854 4855 4856 4857 4858 4859 4860 4861
	err = hci_req_run(&req, set_bredr_complete);
	if (err < 0)
		mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
	return err;
}

4862 4863
static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
{
4864
	struct mgmt_pending_cmd *cmd;
4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875
	struct mgmt_mode *cp;

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

	hci_dev_lock(hdev);

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

	if (status) {
4876 4877
		mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
			        mgmt_status(status));
4878 4879 4880 4881 4882 4883 4884
		goto remove;
	}

	cp = cmd->param;

	switch (cp->val) {
	case 0x00:
4885 4886
		hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
		hci_dev_clear_flag(hdev, HCI_SC_ONLY);
4887 4888
		break;
	case 0x01:
4889
		hci_dev_set_flag(hdev, HCI_SC_ENABLED);
4890
		hci_dev_clear_flag(hdev, HCI_SC_ONLY);
4891 4892
		break;
	case 0x02:
4893 4894
		hci_dev_set_flag(hdev, HCI_SC_ENABLED);
		hci_dev_set_flag(hdev, HCI_SC_ONLY);
4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906
		break;
	}

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

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

4907 4908 4909 4910
static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
			   void *data, u16 len)
{
	struct mgmt_mode *cp = data;
4911
	struct mgmt_pending_cmd *cmd;
4912
	struct hci_request req;
4913
	u8 val;
4914 4915 4916 4917
	int err;

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

4918
	if (!lmp_sc_capable(hdev) &&
4919
	    !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
4920 4921
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				       MGMT_STATUS_NOT_SUPPORTED);
4922

4923
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
4924
	    lmp_sc_capable(hdev) &&
4925
	    !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
4926 4927
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				       MGMT_STATUS_REJECTED);
4928

4929
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
4930
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4931 4932 4933 4934
				  MGMT_STATUS_INVALID_PARAMS);

	hci_dev_lock(hdev);

4935
	if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
4936
	    !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
4937 4938
		bool changed;

4939
		if (cp->val) {
4940 4941
			changed = !hci_dev_test_and_set_flag(hdev,
							     HCI_SC_ENABLED);
4942
			if (cp->val == 0x02)
4943
				hci_dev_set_flag(hdev, HCI_SC_ONLY);
4944
			else
4945
				hci_dev_clear_flag(hdev, HCI_SC_ONLY);
4946
		} else {
4947 4948
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_SC_ENABLED);
4949
			hci_dev_clear_flag(hdev, HCI_SC_ONLY);
4950
		}
4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962

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

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

		goto failed;
	}

	if (mgmt_pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
4963 4964
		err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
				      MGMT_STATUS_BUSY);
4965 4966 4967
		goto failed;
	}

4968 4969
	val = !!cp->val;

4970 4971
	if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
	    (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
4972 4973 4974 4975 4976 4977 4978 4979 4980 4981
		err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
		goto failed;
	}

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

4982 4983 4984
	hci_req_init(&req, hdev);
	hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
	err = hci_req_run(&req, sc_enable_complete);
4985 4986 4987 4988 4989 4990 4991 4992 4993 4994
	if (err < 0) {
		mgmt_pending_remove(cmd);
		goto failed;
	}

failed:
	hci_dev_unlock(hdev);
	return err;
}

4995 4996 4997 4998
static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
			  void *data, u16 len)
{
	struct mgmt_mode *cp = data;
4999
	bool changed, use_changed;
5000 5001 5002 5003
	int err;

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

5004
	if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
5005 5006
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5007 5008 5009 5010

	hci_dev_lock(hdev);

	if (cp->val)
5011
		changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
5012
	else
5013 5014
		changed = hci_dev_test_and_clear_flag(hdev,
						      HCI_KEEP_DEBUG_KEYS);
5015

5016
	if (cp->val == 0x02)
5017 5018
		use_changed = !hci_dev_test_and_set_flag(hdev,
							 HCI_USE_DEBUG_KEYS);
5019
	else
5020 5021
		use_changed = hci_dev_test_and_clear_flag(hdev,
							  HCI_USE_DEBUG_KEYS);
5022 5023

	if (hdev_is_powered(hdev) && use_changed &&
5024
	    hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
5025 5026 5027 5028 5029
		u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
		hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
			     sizeof(mode), &mode);
	}

5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041
	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;
}

5042 5043 5044 5045 5046 5047 5048 5049 5050 5051
static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
		       u16 len)
{
	struct mgmt_cp_set_privacy *cp = cp_data;
	bool changed;
	int err;

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

	if (!lmp_le_capable(hdev))
5052 5053
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_NOT_SUPPORTED);
5054 5055

	if (cp->privacy != 0x00 && cp->privacy != 0x01)
5056 5057
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_INVALID_PARAMS);
5058 5059

	if (hdev_is_powered(hdev))
5060 5061
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
				       MGMT_STATUS_REJECTED);
5062 5063 5064

	hci_dev_lock(hdev);

5065 5066 5067
	/* If user space supports this command it is also expected to
	 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
	 */
5068
	hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
5069

5070
	if (cp->privacy) {
5071
		changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
5072
		memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
5073
		hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
5074
	} else {
5075
		changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
5076
		memset(hdev->irk, 0, sizeof(hdev->irk));
5077
		hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091
	}

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

5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111
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;
5112 5113
	const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_irk_info));
5114 5115 5116 5117 5118 5119
	u16 irk_count, expected_len;
	int i, err;

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

	if (!lmp_le_capable(hdev))
5120 5121
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_NOT_SUPPORTED);
5122 5123

	irk_count = __le16_to_cpu(cp->irk_count);
5124 5125
	if (irk_count > max_irk_count) {
		BT_ERR("load_irks: too big irk_count value %u", irk_count);
5126 5127
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_INVALID_PARAMS);
5128
	}
5129 5130 5131 5132

	expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
	if (expected_len != len) {
		BT_ERR("load_irks: expected %u bytes, got %u bytes",
5133
		       expected_len, len);
5134 5135
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
				       MGMT_STATUS_INVALID_PARAMS);
5136 5137 5138 5139 5140 5141 5142 5143
	}

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

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

		if (!irk_is_valid(key))
5144 5145 5146
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_IRKS,
					       MGMT_STATUS_INVALID_PARAMS);
5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165
	}

	hci_dev_lock(hdev);

	hci_smp_irks_clear(hdev);

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

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

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

5166
	hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
5167

5168
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
5169 5170 5171 5172 5173 5174

	hci_dev_unlock(hdev);

	return err;
}

5175 5176 5177 5178
static bool ltk_is_valid(struct mgmt_ltk_info *key)
{
	if (key->master != 0x00 && key->master != 0x01)
		return false;
5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191

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

5194
static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
5195
			       void *cp_data, u16 len)
5196 5197
{
	struct mgmt_cp_load_long_term_keys *cp = cp_data;
5198 5199
	const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
				   sizeof(struct mgmt_ltk_info));
5200
	u16 key_count, expected_len;
5201
	int i, err;
5202

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

	if (!lmp_le_capable(hdev))
5206 5207
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_NOT_SUPPORTED);
5208

5209
	key_count = __le16_to_cpu(cp->key_count);
5210 5211
	if (key_count > max_key_count) {
		BT_ERR("load_ltks: too big key_count value %u", key_count);
5212 5213
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5214
	}
5215 5216 5217 5218 5219

	expected_len = sizeof(*cp) + key_count *
					sizeof(struct mgmt_ltk_info);
	if (expected_len != len) {
		BT_ERR("load_keys: expected %u bytes, got %u bytes",
5220
		       expected_len, len);
5221 5222
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
				       MGMT_STATUS_INVALID_PARAMS);
5223 5224
	}

5225
	BT_DBG("%s key_count %u", hdev->name, key_count);
5226

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

5230
		if (!ltk_is_valid(key))
5231 5232 5233
			return mgmt_cmd_status(sk, hdev->id,
					       MGMT_OP_LOAD_LONG_TERM_KEYS,
					       MGMT_STATUS_INVALID_PARAMS);
5234 5235
	}

5236 5237 5238 5239 5240 5241
	hci_dev_lock(hdev);

	hci_smp_ltks_clear(hdev);

	for (i = 0; i < key_count; i++) {
		struct mgmt_ltk_info *key = &cp->keys[i];
5242
		u8 type, addr_type, authenticated;
5243 5244 5245 5246 5247

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

5249 5250
		switch (key->type) {
		case MGMT_LTK_UNAUTHENTICATED:
5251
			authenticated = 0x00;
5252
			type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
5253 5254
			break;
		case MGMT_LTK_AUTHENTICATED:
5255
			authenticated = 0x01;
5256 5257 5258 5259 5260
			type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
			break;
		case MGMT_LTK_P256_UNAUTH:
			authenticated = 0x00;
			type = SMP_LTK_P256;
5261
			break;
5262 5263 5264
		case MGMT_LTK_P256_AUTH:
			authenticated = 0x01;
			type = SMP_LTK_P256;
5265
			break;
5266 5267 5268
		case MGMT_LTK_P256_DEBUG:
			authenticated = 0x00;
			type = SMP_LTK_P256_DEBUG;
5269 5270 5271
		default:
			continue;
		}
5272

5273
		hci_add_ltk(hdev, &key->addr.bdaddr, addr_type, type,
5274
			    authenticated, key->val, key->enc_size, key->ediv,
5275
			    key->rand);
5276 5277
	}

5278
	err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
5279 5280
			   NULL, 0);

5281 5282
	hci_dev_unlock(hdev);

5283
	return err;
5284 5285
}

5286
static int conn_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
5287 5288
{
	struct hci_conn *conn = cmd->user_data;
5289
	struct mgmt_rp_get_conn_info rp;
5290
	int err;
5291

5292
	memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
5293

5294
	if (status == MGMT_STATUS_SUCCESS) {
5295
		rp.rssi = conn->rssi;
5296 5297 5298 5299 5300 5301
		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;
5302 5303
	}

5304 5305
	err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
				status, &rp, sizeof(rp));
5306 5307

	hci_conn_drop(conn);
5308
	hci_conn_put(conn);
5309 5310

	return err;
5311 5312
}

5313 5314
static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
				       u16 opcode)
5315 5316
{
	struct hci_cp_read_rssi *cp;
5317
	struct mgmt_pending_cmd *cmd;
5318 5319
	struct hci_conn *conn;
	u16 handle;
5320
	u8 status;
5321

5322
	BT_DBG("status 0x%02x", hci_status);
5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337

	hci_dev_lock(hdev);

	/* Commands sent in request are either Read RSSI or Read Transmit Power
	 * Level so we check which one was last sent to retrieve connection
	 * handle.  Both commands have handle as first parameter so it's safe to
	 * cast data on the same command struct.
	 *
	 * First command sent is always Read RSSI and we fail only if it fails.
	 * In other case we simply override error to indicate success as we
	 * already remembered if TX power value is actually valid.
	 */
	cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI);
	if (!cp) {
		cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
5338 5339 5340
		status = MGMT_STATUS_SUCCESS;
	} else {
		status = mgmt_status(hci_status);
5341 5342 5343
	}

	if (!cp) {
5344
		BT_ERR("invalid sent_cmd in conn_info response");
5345 5346 5347 5348 5349 5350
		goto unlock;
	}

	handle = __le16_to_cpu(cp->handle);
	conn = hci_conn_hash_lookup_handle(hdev, handle);
	if (!conn) {
5351
		BT_ERR("unknown handle (%d) in conn_info response", handle);
5352 5353 5354
		goto unlock;
	}

5355 5356 5357
	cmd = mgmt_pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
	if (!cmd)
		goto unlock;
5358

5359 5360
	cmd->cmd_complete(cmd, status);
	mgmt_pending_remove(cmd);
5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381

unlock:
	hci_dev_unlock(hdev);
}

static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 len)
{
	struct mgmt_cp_get_conn_info *cp = data;
	struct mgmt_rp_get_conn_info rp;
	struct hci_conn *conn;
	unsigned long conn_info_age;
	int err = 0;

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

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

	if (!bdaddr_type_is_valid(cp->addr.type))
5382 5383 5384
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
5385 5386 5387 5388

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
5389 5390 5391
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
5392 5393 5394 5395 5396 5397 5398 5399 5400 5401
		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) {
5402 5403 5404
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_NOT_CONNECTED, &rp,
					sizeof(rp));
5405 5406 5407
		goto unlock;
	}

5408
	if (mgmt_pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
5409 5410
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_BUSY, &rp, sizeof(rp));
5411 5412 5413
		goto unlock;
	}

5414 5415 5416 5417 5418 5419 5420 5421 5422 5423
	/* 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.
	 */
5424 5425
	if (time_after(jiffies, conn->conn_info_timestamp +
		       msecs_to_jiffies(conn_info_age)) ||
5426 5427 5428 5429
	    !conn->conn_info_timestamp) {
		struct hci_request req;
		struct hci_cp_read_tx_power req_txp_cp;
		struct hci_cp_read_rssi req_rssi_cp;
5430
		struct mgmt_pending_cmd *cmd;
5431 5432 5433 5434 5435 5436

		hci_req_init(&req, hdev);
		req_rssi_cp.handle = cpu_to_le16(conn->handle);
		hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp),
			    &req_rssi_cp);

5437 5438 5439 5440 5441 5442 5443 5444 5445 5446
		/* For LE links TX power does not change thus we don't need to
		 * query for it once value is known.
		 */
		if (!bdaddr_type_is_le(cp->addr.type) ||
		    conn->tx_power == HCI_TX_POWER_INVALID) {
			req_txp_cp.handle = cpu_to_le16(conn->handle);
			req_txp_cp.type = 0x00;
			hci_req_add(&req, HCI_OP_READ_TX_POWER,
				    sizeof(req_txp_cp), &req_txp_cp);
		}
5447

5448 5449 5450 5451 5452 5453 5454 5455
		/* Max TX power needs to be read only once per connection */
		if (conn->max_tx_power == HCI_TX_POWER_INVALID) {
			req_txp_cp.handle = cpu_to_le16(conn->handle);
			req_txp_cp.type = 0x01;
			hci_req_add(&req, HCI_OP_READ_TX_POWER,
				    sizeof(req_txp_cp), &req_txp_cp);
		}

5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467
		err = hci_req_run(&req, conn_info_refresh_complete);
		if (err < 0)
			goto unlock;

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

		hci_conn_hold(conn);
5468
		cmd->user_data = hci_conn_get(conn);
5469
		cmd->cmd_complete = conn_info_cmd_complete;
5470 5471 5472 5473 5474 5475

		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;
5476
		rp.max_tx_power = conn->max_tx_power;
5477

5478 5479
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
					MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
5480 5481 5482 5483 5484 5485 5486
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5487
static int clock_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
5488
{
5489
	struct hci_conn *conn = cmd->user_data;
5490
	struct mgmt_rp_get_clock_info rp;
5491
	struct hci_dev *hdev;
5492
	int err;
5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511

	memset(&rp, 0, sizeof(rp));
	memcpy(&rp.addr, &cmd->param, sizeof(rp.addr));

	if (status)
		goto complete;

	hdev = hci_dev_get(cmd->index);
	if (hdev) {
		rp.local_clock = cpu_to_le32(hdev->clock);
		hci_dev_put(hdev);
	}

	if (conn) {
		rp.piconet_clock = cpu_to_le32(conn->clock);
		rp.accuracy = cpu_to_le16(conn->clock_accuracy);
	}

complete:
5512 5513
	err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
				sizeof(rp));
5514 5515 5516 5517 5518

	if (conn) {
		hci_conn_drop(conn);
		hci_conn_put(conn);
	}
5519 5520

	return err;
5521 5522
}

5523
static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5524
{
5525
	struct hci_cp_read_clock *hci_cp;
5526
	struct mgmt_pending_cmd *cmd;
5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547
	struct hci_conn *conn;

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

	hci_dev_lock(hdev);

	hci_cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
	if (!hci_cp)
		goto unlock;

	if (hci_cp->which) {
		u16 handle = __le16_to_cpu(hci_cp->handle);
		conn = hci_conn_hash_lookup_handle(hdev, handle);
	} else {
		conn = NULL;
	}

	cmd = mgmt_pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
	if (!cmd)
		goto unlock;

5548
	cmd->cmd_complete(cmd, mgmt_status(status));
5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560
	mgmt_pending_remove(cmd);

unlock:
	hci_dev_unlock(hdev);
}

static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data,
			 u16 len)
{
	struct mgmt_cp_get_clock_info *cp = data;
	struct mgmt_rp_get_clock_info rp;
	struct hci_cp_read_clock hci_cp;
5561
	struct mgmt_pending_cmd *cmd;
5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572
	struct hci_request req;
	struct hci_conn *conn;
	int err;

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

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

	if (cp->addr.type != BDADDR_BREDR)
5573 5574 5575
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					 MGMT_STATUS_INVALID_PARAMS,
					 &rp, sizeof(rp));
5576 5577 5578 5579

	hci_dev_lock(hdev);

	if (!hdev_is_powered(hdev)) {
5580 5581 5582
		err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
					MGMT_STATUS_NOT_POWERED, &rp,
					sizeof(rp));
5583 5584 5585 5586 5587 5588 5589
		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) {
5590 5591 5592 5593
			err = mgmt_cmd_complete(sk, hdev->id,
						MGMT_OP_GET_CLOCK_INFO,
						MGMT_STATUS_NOT_CONNECTED,
						&rp, sizeof(rp));
5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605
			goto unlock;
		}
	} else {
		conn = NULL;
	}

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

5606 5607
	cmd->cmd_complete = clock_info_cmd_complete;

5608 5609 5610 5611 5612 5613 5614
	hci_req_init(&req, hdev);

	memset(&hci_cp, 0, sizeof(hci_cp));
	hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);

	if (conn) {
		hci_conn_hold(conn);
5615
		cmd->user_data = hci_conn_get(conn);
5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630

		hci_cp.handle = cpu_to_le16(conn->handle);
		hci_cp.which = 0x01; /* Piconet clock */
		hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
	}

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

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689
static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
{
	struct hci_conn *conn;

	conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
	if (!conn)
		return false;

	if (conn->dst_type != type)
		return false;

	if (conn->state != BT_CONNECTED)
		return false;

	return true;
}

/* This function requires the caller holds hdev->lock */
static int hci_conn_params_set(struct hci_request *req, bdaddr_t *addr,
			       u8 addr_type, u8 auto_connect)
{
	struct hci_dev *hdev = req->hdev;
	struct hci_conn_params *params;

	params = hci_conn_params_add(hdev, addr, addr_type);
	if (!params)
		return -EIO;

	if (params->auto_connect == auto_connect)
		return 0;

	list_del_init(&params->action);

	switch (auto_connect) {
	case HCI_AUTO_CONN_DISABLED:
	case HCI_AUTO_CONN_LINK_LOSS:
		__hci_update_background_scan(req);
		break;
	case HCI_AUTO_CONN_REPORT:
		list_add(&params->action, &hdev->pend_le_reports);
		__hci_update_background_scan(req);
		break;
	case HCI_AUTO_CONN_DIRECT:
	case HCI_AUTO_CONN_ALWAYS:
		if (!is_connected(hdev, addr, addr_type)) {
			list_add(&params->action, &hdev->pend_le_conns);
			__hci_update_background_scan(req);
		}
		break;
	}

	params->auto_connect = auto_connect;

	BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
	       auto_connect);

	return 0;
}

5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701
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);
}

5702
static void add_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5703
{
5704
	struct mgmt_pending_cmd *cmd;
5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720

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

	hci_dev_lock(hdev);

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

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

unlock:
	hci_dev_unlock(hdev);
}

5721 5722 5723 5724
static int add_device(struct sock *sk, struct hci_dev *hdev,
		      void *data, u16 len)
{
	struct mgmt_cp_add_device *cp = data;
5725
	struct mgmt_pending_cmd *cmd;
5726
	struct hci_request req;
5727 5728 5729 5730 5731
	u8 auto_conn, addr_type;
	int err;

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

5732
	if (!bdaddr_type_is_valid(cp->addr.type) ||
5733
	    !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
5734 5735 5736
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
5737

5738
	if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
5739 5740 5741
		return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
					 MGMT_STATUS_INVALID_PARAMS,
					 &cp->addr, sizeof(cp->addr));
5742

5743 5744
	hci_req_init(&req, hdev);

5745 5746
	hci_dev_lock(hdev);

5747 5748 5749 5750 5751 5752 5753 5754
	cmd = mgmt_pending_add(sk, MGMT_OP_ADD_DEVICE, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

	cmd->cmd_complete = addr_cmd_complete;

5755
	if (cp->addr.type == BDADDR_BREDR) {
5756
		/* Only incoming connections action is supported for now */
5757
		if (cp->action != 0x01) {
5758 5759
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
5760
			mgmt_pending_remove(cmd);
5761 5762 5763 5764 5765 5766 5767
			goto unlock;
		}

		err = hci_bdaddr_list_add(&hdev->whitelist, &cp->addr.bdaddr,
					  cp->addr.type);
		if (err)
			goto unlock;
5768

5769
		__hci_update_page_scan(&req);
5770

5771 5772 5773
		goto added;
	}

5774 5775 5776 5777 5778
	if (cp->addr.type == BDADDR_LE_PUBLIC)
		addr_type = ADDR_LE_DEV_PUBLIC;
	else
		addr_type = ADDR_LE_DEV_RANDOM;

5779
	if (cp->action == 0x02)
5780
		auto_conn = HCI_AUTO_CONN_ALWAYS;
5781 5782
	else if (cp->action == 0x01)
		auto_conn = HCI_AUTO_CONN_DIRECT;
5783
	else
5784
		auto_conn = HCI_AUTO_CONN_REPORT;
5785

5786 5787 5788
	/* If the connection parameters don't exist for this device,
	 * they will be created and configured with defaults.
	 */
5789
	if (hci_conn_params_set(&req, &cp->addr.bdaddr, addr_type,
5790
				auto_conn) < 0) {
5791
		err = cmd->cmd_complete(cmd, MGMT_STATUS_FAILED);
5792
		mgmt_pending_remove(cmd);
5793 5794 5795
		goto unlock;
	}

5796
added:
5797 5798
	device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);

5799 5800 5801 5802 5803
	err = hci_req_run(&req, add_device_complete);
	if (err < 0) {
		/* ENODATA means no HCI commands were needed (e.g. if
		 * the adapter is powered off).
		 */
5804 5805
		if (err == -ENODATA)
			err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
5806 5807
		mgmt_pending_remove(cmd);
	}
5808 5809 5810 5811 5812 5813

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824
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);
}

5825
static void remove_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5826
{
5827
	struct mgmt_pending_cmd *cmd;
5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843

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

	hci_dev_lock(hdev);

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

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

unlock:
	hci_dev_unlock(hdev);
}

5844 5845 5846 5847
static int remove_device(struct sock *sk, struct hci_dev *hdev,
			 void *data, u16 len)
{
	struct mgmt_cp_remove_device *cp = data;
5848
	struct mgmt_pending_cmd *cmd;
5849
	struct hci_request req;
5850 5851 5852 5853
	int err;

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

5854 5855
	hci_req_init(&req, hdev);

5856 5857
	hci_dev_lock(hdev);

5858 5859 5860 5861 5862 5863 5864 5865
	cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_DEVICE, hdev, data, len);
	if (!cmd) {
		err = -ENOMEM;
		goto unlock;
	}

	cmd->cmd_complete = addr_cmd_complete;

5866
	if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
5867
		struct hci_conn_params *params;
5868 5869
		u8 addr_type;

5870
		if (!bdaddr_type_is_valid(cp->addr.type)) {
5871 5872
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
5873
			mgmt_pending_remove(cmd);
5874 5875 5876
			goto unlock;
		}

5877 5878 5879 5880 5881
		if (cp->addr.type == BDADDR_BREDR) {
			err = hci_bdaddr_list_del(&hdev->whitelist,
						  &cp->addr.bdaddr,
						  cp->addr.type);
			if (err) {
5882 5883
				err = cmd->cmd_complete(cmd,
							MGMT_STATUS_INVALID_PARAMS);
5884
				mgmt_pending_remove(cmd);
5885 5886 5887
				goto unlock;
			}

5888
			__hci_update_page_scan(&req);
5889

5890 5891 5892 5893 5894
			device_removed(sk, hdev, &cp->addr.bdaddr,
				       cp->addr.type);
			goto complete;
		}

5895 5896 5897 5898 5899
		if (cp->addr.type == BDADDR_LE_PUBLIC)
			addr_type = ADDR_LE_DEV_PUBLIC;
		else
			addr_type = ADDR_LE_DEV_RANDOM;

5900 5901 5902
		params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
						addr_type);
		if (!params) {
5903 5904
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
5905
			mgmt_pending_remove(cmd);
5906 5907 5908 5909
			goto unlock;
		}

		if (params->auto_connect == HCI_AUTO_CONN_DISABLED) {
5910 5911
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
5912
			mgmt_pending_remove(cmd);
5913 5914 5915
			goto unlock;
		}

5916
		list_del(&params->action);
5917 5918
		list_del(&params->list);
		kfree(params);
5919
		__hci_update_background_scan(&req);
5920 5921

		device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
5922
	} else {
5923
		struct hci_conn_params *p, *tmp;
5924
		struct bdaddr_list *b, *btmp;
5925

5926
		if (cp->addr.type) {
5927 5928
			err = cmd->cmd_complete(cmd,
						MGMT_STATUS_INVALID_PARAMS);
5929
			mgmt_pending_remove(cmd);
5930 5931 5932
			goto unlock;
		}

5933 5934 5935 5936 5937 5938
		list_for_each_entry_safe(b, btmp, &hdev->whitelist, list) {
			device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type);
			list_del(&b->list);
			kfree(b);
		}

5939
		__hci_update_page_scan(&req);
5940

5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951
		list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) {
			if (p->auto_connect == HCI_AUTO_CONN_DISABLED)
				continue;
			device_removed(sk, hdev, &p->addr, p->addr_type);
			list_del(&p->action);
			list_del(&p->list);
			kfree(p);
		}

		BT_DBG("All LE connection parameters were removed");

5952
		__hci_update_background_scan(&req);
5953 5954
	}

5955
complete:
5956 5957 5958 5959 5960
	err = hci_req_run(&req, remove_device_complete);
	if (err < 0) {
		/* ENODATA means no HCI commands were needed (e.g. if
		 * the adapter is powered off).
		 */
5961 5962
		if (err == -ENODATA)
			err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
5963 5964
		mgmt_pending_remove(cmd);
	}
5965 5966 5967 5968 5969 5970

unlock:
	hci_dev_unlock(hdev);
	return err;
}

5971 5972 5973 5974
static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
			   u16 len)
{
	struct mgmt_cp_load_conn_param *cp = data;
5975 5976
	const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
				     sizeof(struct mgmt_conn_param));
5977 5978 5979 5980
	u16 param_count, expected_len;
	int i;

	if (!lmp_le_capable(hdev))
5981 5982
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_NOT_SUPPORTED);
5983 5984

	param_count = __le16_to_cpu(cp->param_count);
5985 5986 5987
	if (param_count > max_param_count) {
		BT_ERR("load_conn_param: too big param_count value %u",
		       param_count);
5988 5989
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_INVALID_PARAMS);
5990
	}
5991 5992 5993 5994 5995 5996

	expected_len = sizeof(*cp) + param_count *
					sizeof(struct mgmt_conn_param);
	if (expected_len != len) {
		BT_ERR("load_conn_param: expected %u bytes, got %u bytes",
		       expected_len, len);
5997 5998
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
				       MGMT_STATUS_INVALID_PARAMS);
5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052
	}

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

	hci_dev_lock(hdev);

	hci_conn_params_clear_disabled(hdev);

	for (i = 0; i < param_count; i++) {
		struct mgmt_conn_param *param = &cp->params[i];
		struct hci_conn_params *hci_param;
		u16 min, max, latency, timeout;
		u8 addr_type;

		BT_DBG("Adding %pMR (type %u)", &param->addr.bdaddr,
		       param->addr.type);

		if (param->addr.type == BDADDR_LE_PUBLIC) {
			addr_type = ADDR_LE_DEV_PUBLIC;
		} else if (param->addr.type == BDADDR_LE_RANDOM) {
			addr_type = ADDR_LE_DEV_RANDOM;
		} else {
			BT_ERR("Ignoring invalid connection parameters");
			continue;
		}

		min = le16_to_cpu(param->min_interval);
		max = le16_to_cpu(param->max_interval);
		latency = le16_to_cpu(param->latency);
		timeout = le16_to_cpu(param->timeout);

		BT_DBG("min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x",
		       min, max, latency, timeout);

		if (hci_check_conn_params(min, max, latency, timeout) < 0) {
			BT_ERR("Ignoring invalid connection parameters");
			continue;
		}

		hci_param = hci_conn_params_add(hdev, &param->addr.bdaddr,
						addr_type);
		if (!hci_param) {
			BT_ERR("Failed to add connection parameters");
			continue;
		}

		hci_param->conn_min_interval = min;
		hci_param->conn_max_interval = max;
		hci_param->conn_latency = latency;
		hci_param->supervision_timeout = timeout;
	}

	hci_dev_unlock(hdev);

6053 6054
	return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
				 NULL, 0);
6055 6056
}

6057 6058 6059 6060 6061 6062 6063 6064 6065 6066
static int set_external_config(struct sock *sk, struct hci_dev *hdev,
			       void *data, u16 len)
{
	struct mgmt_cp_set_external_config *cp = data;
	bool changed;
	int err;

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

	if (hdev_is_powered(hdev))
6067 6068
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				       MGMT_STATUS_REJECTED);
6069 6070

	if (cp->config != 0x00 && cp->config != 0x01)
6071 6072
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				         MGMT_STATUS_INVALID_PARAMS);
6073 6074

	if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
6075 6076
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
				       MGMT_STATUS_NOT_SUPPORTED);
6077 6078 6079 6080

	hci_dev_lock(hdev);

	if (cp->config)
6081
		changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
6082
	else
6083
		changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
6084 6085 6086 6087 6088 6089 6090 6091

	err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
	if (err < 0)
		goto unlock;

	if (!changed)
		goto unlock;

6092 6093
	err = new_options(hdev, sk);

6094
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
6095
		mgmt_index_removed(hdev);
6096

6097
		if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
6098 6099
			hci_dev_set_flag(hdev, HCI_CONFIG);
			hci_dev_set_flag(hdev, HCI_AUTO_OFF);
6100 6101 6102

			queue_work(hdev->req_workqueue, &hdev->power_on);
		} else {
6103
			set_bit(HCI_RAW, &hdev->flags);
6104 6105
			mgmt_index_added(hdev);
		}
6106 6107 6108 6109 6110 6111 6112
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6113 6114 6115 6116 6117 6118 6119 6120 6121 6122
static int set_public_address(struct sock *sk, struct hci_dev *hdev,
			      void *data, u16 len)
{
	struct mgmt_cp_set_public_address *cp = data;
	bool changed;
	int err;

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

	if (hdev_is_powered(hdev))
6123 6124
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_REJECTED);
6125 6126

	if (!bacmp(&cp->bdaddr, BDADDR_ANY))
6127 6128
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_INVALID_PARAMS);
6129 6130

	if (!hdev->set_bdaddr)
6131 6132
		return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
				       MGMT_STATUS_NOT_SUPPORTED);
6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145

	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;

6146
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
6147 6148 6149 6150 6151
		err = new_options(hdev, sk);

	if (is_configured(hdev)) {
		mgmt_index_removed(hdev);

6152
		hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
6153

6154 6155
		hci_dev_set_flag(hdev, HCI_CONFIG);
		hci_dev_set_flag(hdev, HCI_AUTO_OFF);
6156 6157 6158 6159 6160 6161 6162 6163 6164

		queue_work(hdev->req_workqueue, &hdev->power_on);
	}

unlock:
	hci_dev_unlock(hdev);
	return err;
}

6165
static const struct hci_mgmt_handler mgmt_handlers[] = {
6166
	{ NULL }, /* 0x0000 (no command) */
6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237
	{ read_version,            MGMT_READ_VERSION_SIZE,
						HCI_MGMT_NO_HDEV },
	{ read_commands,           MGMT_READ_COMMANDS_SIZE,
						HCI_MGMT_NO_HDEV },
	{ read_index_list,         MGMT_READ_INDEX_LIST_SIZE,
						HCI_MGMT_NO_HDEV },
	{ read_controller_info,    MGMT_READ_INFO_SIZE,                 0 },
	{ set_powered,             MGMT_SETTING_SIZE,                   0 },
	{ set_discoverable,        MGMT_SET_DISCOVERABLE_SIZE,          0 },
	{ set_connectable,         MGMT_SETTING_SIZE,                   0 },
	{ set_fast_connectable,    MGMT_SETTING_SIZE,                   0 },
	{ set_bondable,            MGMT_SETTING_SIZE,                   0 },
	{ set_link_security,       MGMT_SETTING_SIZE,                   0 },
	{ set_ssp,                 MGMT_SETTING_SIZE,                   0 },
	{ set_hs,                  MGMT_SETTING_SIZE,                   0 },
	{ set_le,                  MGMT_SETTING_SIZE,                   0 },
	{ set_dev_class,           MGMT_SET_DEV_CLASS_SIZE,             0 },
	{ set_local_name,          MGMT_SET_LOCAL_NAME_SIZE,            0 },
	{ add_uuid,                MGMT_ADD_UUID_SIZE,                  0 },
	{ remove_uuid,             MGMT_REMOVE_UUID_SIZE,               0 },
	{ load_link_keys,          MGMT_LOAD_LINK_KEYS_SIZE,
						HCI_MGMT_VAR_LEN },
	{ load_long_term_keys,     MGMT_LOAD_LONG_TERM_KEYS_SIZE,
						HCI_MGMT_VAR_LEN },
	{ disconnect,              MGMT_DISCONNECT_SIZE,                0 },
	{ get_connections,         MGMT_GET_CONNECTIONS_SIZE,           0 },
	{ pin_code_reply,          MGMT_PIN_CODE_REPLY_SIZE,            0 },
	{ pin_code_neg_reply,      MGMT_PIN_CODE_NEG_REPLY_SIZE,        0 },
	{ set_io_capability,       MGMT_SET_IO_CAPABILITY_SIZE,         0 },
	{ pair_device,             MGMT_PAIR_DEVICE_SIZE,               0 },
	{ cancel_pair_device,      MGMT_CANCEL_PAIR_DEVICE_SIZE,        0 },
	{ unpair_device,           MGMT_UNPAIR_DEVICE_SIZE,             0 },
	{ user_confirm_reply,      MGMT_USER_CONFIRM_REPLY_SIZE,        0 },
	{ user_confirm_neg_reply,  MGMT_USER_CONFIRM_NEG_REPLY_SIZE,    0 },
	{ user_passkey_reply,      MGMT_USER_PASSKEY_REPLY_SIZE,        0 },
	{ user_passkey_neg_reply,  MGMT_USER_PASSKEY_NEG_REPLY_SIZE,    0 },
	{ read_local_oob_data,     MGMT_READ_LOCAL_OOB_DATA_SIZE },
	{ add_remote_oob_data,     MGMT_ADD_REMOTE_OOB_DATA_SIZE,
						HCI_MGMT_VAR_LEN },
	{ remove_remote_oob_data,  MGMT_REMOVE_REMOTE_OOB_DATA_SIZE,    0 },
	{ start_discovery,         MGMT_START_DISCOVERY_SIZE,           0 },
	{ stop_discovery,          MGMT_STOP_DISCOVERY_SIZE,            0 },
	{ confirm_name,            MGMT_CONFIRM_NAME_SIZE,              0 },
	{ block_device,            MGMT_BLOCK_DEVICE_SIZE,              0 },
	{ unblock_device,          MGMT_UNBLOCK_DEVICE_SIZE,            0 },
	{ set_device_id,           MGMT_SET_DEVICE_ID_SIZE,             0 },
	{ set_advertising,         MGMT_SETTING_SIZE,                   0 },
	{ set_bredr,               MGMT_SETTING_SIZE,                   0 },
	{ set_static_address,      MGMT_SET_STATIC_ADDRESS_SIZE,        0 },
	{ set_scan_params,         MGMT_SET_SCAN_PARAMS_SIZE,           0 },
	{ set_secure_conn,         MGMT_SETTING_SIZE,                   0 },
	{ set_debug_keys,          MGMT_SETTING_SIZE,                   0 },
	{ set_privacy,             MGMT_SET_PRIVACY_SIZE,               0 },
	{ load_irks,               MGMT_LOAD_IRKS_SIZE,
						HCI_MGMT_VAR_LEN },
	{ get_conn_info,           MGMT_GET_CONN_INFO_SIZE,             0 },
	{ get_clock_info,          MGMT_GET_CLOCK_INFO_SIZE,            0 },
	{ add_device,              MGMT_ADD_DEVICE_SIZE,                0 },
	{ remove_device,           MGMT_REMOVE_DEVICE_SIZE,             0 },
	{ load_conn_param,         MGMT_LOAD_CONN_PARAM_SIZE,
						HCI_MGMT_VAR_LEN },
	{ read_unconf_index_list,  MGMT_READ_UNCONF_INDEX_LIST_SIZE,
						HCI_MGMT_NO_HDEV },
	{ read_config_info,        MGMT_READ_CONFIG_INFO_SIZE,
						HCI_MGMT_UNCONFIGURED },
	{ set_external_config,     MGMT_SET_EXTERNAL_CONFIG_SIZE,
						HCI_MGMT_UNCONFIGURED },
	{ set_public_address,      MGMT_SET_PUBLIC_ADDRESS_SIZE,
						HCI_MGMT_UNCONFIGURED },
	{ start_service_discovery, MGMT_START_SERVICE_DISCOVERY_SIZE,
						HCI_MGMT_VAR_LEN },
6238 6239
};

6240 6241
int mgmt_control(struct hci_mgmt_chan *chan, struct sock *sk,
		 struct msghdr *msg, size_t msglen)
6242
{
6243 6244
	void *buf;
	u8 *cp;
6245
	struct mgmt_hdr *hdr;
6246
	u16 opcode, index, len;
6247
	struct hci_dev *hdev = NULL;
6248
	const struct hci_mgmt_handler *handler;
6249
	bool var_len, no_hdev;
6250 6251 6252 6253 6254 6255 6256
	int err;

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

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

6257
	buf = kmalloc(msglen, GFP_KERNEL);
6258 6259 6260
	if (!buf)
		return -ENOMEM;

A
Al Viro 已提交
6261
	if (memcpy_from_msg(buf, msg, msglen)) {
6262 6263 6264 6265
		err = -EFAULT;
		goto done;
	}

6266
	hdr = buf;
6267 6268 6269
	opcode = __le16_to_cpu(hdr->opcode);
	index = __le16_to_cpu(hdr->index);
	len = __le16_to_cpu(hdr->len);
6270 6271 6272 6273 6274 6275

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

6276 6277 6278
	if (opcode >= chan->handler_count ||
	    chan->handlers[opcode].func == NULL) {
		BT_DBG("Unknown op %u", opcode);
6279 6280
		err = mgmt_cmd_status(sk, index, opcode,
				      MGMT_STATUS_UNKNOWN_COMMAND);
6281 6282 6283 6284 6285
		goto done;
	}

	handler = &chan->handlers[opcode];

6286
	if (index != MGMT_INDEX_NONE) {
6287 6288
		hdev = hci_dev_get(index);
		if (!hdev) {
6289 6290
			err = mgmt_cmd_status(sk, index, opcode,
					      MGMT_STATUS_INVALID_INDEX);
6291 6292
			goto done;
		}
6293

6294 6295 6296
		if (hci_dev_test_flag(hdev, HCI_SETUP) ||
		    hci_dev_test_flag(hdev, HCI_CONFIG) ||
		    hci_dev_test_flag(hdev, HCI_USER_CHANNEL)) {
6297 6298
			err = mgmt_cmd_status(sk, index, opcode,
					      MGMT_STATUS_INVALID_INDEX);
6299 6300
			goto done;
		}
6301

6302
		if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) &&
6303
		    !(handler->flags & HCI_MGMT_UNCONFIGURED)) {
6304 6305
			err = mgmt_cmd_status(sk, index, opcode,
					      MGMT_STATUS_INVALID_INDEX);
6306 6307
			goto done;
		}
6308 6309
	}

6310 6311
	no_hdev = (handler->flags & HCI_MGMT_NO_HDEV);
	if (no_hdev != !hdev) {
6312 6313
		err = mgmt_cmd_status(sk, index, opcode,
				      MGMT_STATUS_INVALID_INDEX);
6314
		goto done;
6315 6316
	}

6317 6318 6319
	var_len = (handler->flags & HCI_MGMT_VAR_LEN);
	if ((var_len && len < handler->data_len) ||
	    (!var_len && len != handler->data_len)) {
6320 6321
		err = mgmt_cmd_status(sk, index, opcode,
				      MGMT_STATUS_INVALID_PARAMS);
6322 6323 6324
		goto done;
	}

6325 6326 6327 6328 6329
	if (hdev)
		mgmt_init_hdev(sk, hdev);

	cp = buf + sizeof(*hdr);

6330
	err = handler->func(sk, hdev, cp, len);
6331 6332 6333
	if (err < 0)
		goto done;

6334 6335 6336
	err = msglen;

done:
6337 6338 6339
	if (hdev)
		hci_dev_put(hdev);

6340 6341 6342
	kfree(buf);
	return err;
}
6343

6344
void mgmt_index_added(struct hci_dev *hdev)
6345
{
6346
	if (hdev->dev_type != HCI_BREDR)
6347
		return;
6348

6349 6350 6351
	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		return;

6352
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
6353 6354 6355
		mgmt_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev, NULL, 0, NULL);
	else
		mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
6356 6357
}

6358
void mgmt_index_removed(struct hci_dev *hdev)
6359
{
6360
	u8 status = MGMT_STATUS_INVALID_INDEX;
6361

6362
	if (hdev->dev_type != HCI_BREDR)
6363
		return;
6364

6365 6366 6367
	if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
		return;

6368
	mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
6369

6370
	if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
6371 6372 6373
		mgmt_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev, NULL, 0, NULL);
	else
		mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
6374 6375
}

6376
/* This function requires the caller holds hdev->lock */
6377
static void restart_le_actions(struct hci_request *req)
6378
{
6379
	struct hci_dev *hdev = req->hdev;
6380 6381 6382
	struct hci_conn_params *p;

	list_for_each_entry(p, &hdev->le_conn_params, list) {
6383 6384 6385 6386 6387 6388
		/* Needed for AUTO_OFF case where might not "really"
		 * have been powered off.
		 */
		list_del_init(&p->action);

		switch (p->auto_connect) {
6389
		case HCI_AUTO_CONN_DIRECT:
6390 6391 6392 6393 6394 6395 6396 6397
		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;
6398
		}
6399
	}
6400

6401
	__hci_update_background_scan(req);
6402 6403
}

6404
static void powered_complete(struct hci_dev *hdev, u8 status, u16 opcode)
6405 6406 6407 6408 6409
{
	struct cmd_lookup match = { NULL, hdev };

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

6410 6411 6412 6413 6414 6415 6416 6417 6418
	if (!status) {
		/* Register the available SMP channels (BR/EDR and LE) only
		 * when successfully powering on the controller. This late
		 * registration is required so that LE SMP can clearly
		 * decide if the public address or static address is used.
		 */
		smp_register(hdev);
	}

6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430
	hci_dev_lock(hdev);

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

	new_settings(hdev, match.sk);

	hci_dev_unlock(hdev);

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

6431
static int powered_update_hci(struct hci_dev *hdev)
6432
{
6433
	struct hci_request req;
6434
	u8 link_sec;
6435

6436 6437
	hci_req_init(&req, hdev);

6438
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED) &&
6439
	    !lmp_host_ssp_capable(hdev)) {
6440
		u8 mode = 0x01;
6441

6442 6443 6444 6445
		hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);

		if (bredr_sc_enabled(hdev) && !lmp_host_sc_capable(hdev)) {
			u8 support = 0x01;
6446

6447 6448 6449
			hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT,
				    sizeof(support), &support);
		}
6450 6451
	}

6452
	if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
6453
	    lmp_bredr_capable(hdev)) {
6454
		struct hci_cp_write_le_host_supported cp;
6455

6456 6457
		cp.le = 0x01;
		cp.simul = 0x00;
6458

6459 6460 6461 6462 6463
		/* Check first if we already have the right
		 * host state (host features set)
		 */
		if (cp.le != lmp_host_le_capable(hdev) ||
		    cp.simul != lmp_host_le_br_capable(hdev))
6464 6465
			hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
				    sizeof(cp), &cp);
6466
	}
6467

6468
	if (lmp_le_capable(hdev)) {
6469 6470 6471 6472
		/* Make sure the controller has a good default for
		 * advertising data. This also applies to the case
		 * where BR/EDR was toggled during the AUTO_OFF phase.
		 */
6473
		if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
6474
			update_adv_data(&req);
6475 6476
			update_scan_rsp_data(&req);
		}
6477

6478
		if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
6479
			enable_advertising(&req);
6480 6481

		restart_le_actions(&req);
6482 6483
	}

6484
	link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY);
6485
	if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
6486 6487
		hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
			    sizeof(link_sec), &link_sec);
6488

6489
	if (lmp_bredr_capable(hdev)) {
6490
		if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
6491 6492 6493
			write_fast_connectable(&req, true);
		else
			write_fast_connectable(&req, false);
6494
		__hci_update_page_scan(&req);
6495
		update_class(&req);
6496
		update_name(&req);
6497
		update_eir(&req);
6498
	}
6499

6500
	return hci_req_run(&req, powered_complete);
6501
}
6502

6503 6504 6505
int mgmt_powered(struct hci_dev *hdev, u8 powered)
{
	struct cmd_lookup match = { NULL, hdev };
6506
	u8 status, zero_cod[] = { 0, 0, 0 };
6507
	int err;
6508

6509
	if (!hci_dev_test_flag(hdev, HCI_MGMT))
6510 6511 6512
		return 0;

	if (powered) {
6513 6514
		if (powered_update_hci(hdev) == 0)
			return 0;
6515

6516 6517 6518
		mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
				     &match);
		goto new_settings;
6519 6520
	}

6521
	mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
6522 6523 6524 6525 6526 6527 6528 6529

	/* 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.
	 */
6530
	if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
6531 6532 6533 6534 6535
		status = MGMT_STATUS_INVALID_INDEX;
	else
		status = MGMT_STATUS_NOT_POWERED;

	mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
6536 6537 6538 6539 6540 6541

	if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
		mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
			   zero_cod, sizeof(zero_cod), NULL);

new_settings:
6542
	err = new_settings(hdev, match.sk);
6543 6544 6545 6546

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

6547
	return err;
6548
}
6549

6550
void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
6551
{
6552
	struct mgmt_pending_cmd *cmd;
6553 6554 6555 6556
	u8 status;

	cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
	if (!cmd)
6557
		return;
6558 6559 6560 6561 6562 6563

	if (err == -ERFKILL)
		status = MGMT_STATUS_RFKILLED;
	else
		status = MGMT_STATUS_FAILED;

6564
	mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
6565 6566 6567 6568

	mgmt_pending_remove(cmd);
}

6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579
void mgmt_discoverable_timeout(struct hci_dev *hdev)
{
	struct hci_request req;

	hci_dev_lock(hdev);

	/* When discoverable timeout triggers, then just make sure
	 * the limited discoverable flag is cleared. Even in the case
	 * of a timeout triggered from general discoverable, it is
	 * safe to unconditionally clear the flag.
	 */
6580 6581
	hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
	hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
6582 6583

	hci_req_init(&req, hdev);
6584
	if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
6585 6586 6587 6588
		u8 scan = SCAN_PAGE;
		hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
			    sizeof(scan), &scan);
	}
6589
	update_class(&req);
6590
	update_adv_data(&req);
6591 6592 6593 6594
	hci_req_run(&req, NULL);

	hdev->discov_timeout = 0;

6595 6596
	new_settings(hdev, NULL);

6597 6598 6599
	hci_dev_unlock(hdev);
}

6600 6601
void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
		       bool persistent)
6602
{
6603
	struct mgmt_ev_new_link_key ev;
6604

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

6607
	ev.store_hint = persistent;
6608
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
6609
	ev.key.addr.type = BDADDR_BREDR;
6610
	ev.key.type = key->type;
6611
	memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
6612
	ev.key.pin_len = key->pin_len;
6613

6614
	mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
6615
}
6616

6617 6618
static u8 mgmt_ltk_type(struct smp_ltk *ltk)
{
6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631
	switch (ltk->type) {
	case SMP_LTK:
	case SMP_LTK_SLAVE:
		if (ltk->authenticated)
			return MGMT_LTK_AUTHENTICATED;
		return MGMT_LTK_UNAUTHENTICATED;
	case SMP_LTK_P256:
		if (ltk->authenticated)
			return MGMT_LTK_P256_AUTH;
		return MGMT_LTK_P256_UNAUTH;
	case SMP_LTK_P256_DEBUG:
		return MGMT_LTK_P256_DEBUG;
	}
6632 6633 6634 6635

	return MGMT_LTK_UNAUTHENTICATED;
}

6636
void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
6637 6638 6639 6640 6641
{
	struct mgmt_ev_new_long_term_key ev;

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

6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652
	/* Devices using resolvable or non-resolvable random addresses
	 * without providing an indentity resolving key don't require
	 * to store long term keys. Their addresses will change the
	 * next time around.
	 *
	 * Only when a remote device provides an identity address
	 * make sure the long term key is stored. If the remote
	 * identity is known, the long term keys are internally
	 * mapped to the identity address. So allow static random
	 * and public addresses here.
	 */
6653 6654 6655 6656
	if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
	    (key->bdaddr.b[5] & 0xc0) != 0xc0)
		ev.store_hint = 0x00;
	else
6657
		ev.store_hint = persistent;
6658

6659
	bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
6660
	ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
6661
	ev.key.type = mgmt_ltk_type(key);
6662 6663
	ev.key.enc_size = key->enc_size;
	ev.key.ediv = key->ediv;
6664
	ev.key.rand = key->rand;
6665

6666
	if (key->type == SMP_LTK)
6667 6668 6669 6670
		ev.key.master = 1;

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

6671
	mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
6672 6673
}

6674 6675 6676 6677 6678 6679
void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk)
{
	struct mgmt_ev_new_irk ev;

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

6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695
	/* For identity resolving keys from devices that are already
	 * using a public address or static random address, do not
	 * ask for storing this key. The identity resolving key really
	 * is only mandatory for devices using resovlable random
	 * addresses.
	 *
	 * Storing all identity resolving keys has the downside that
	 * they will be also loaded on next boot of they system. More
	 * identity resolving keys, means more time during scanning is
	 * needed to actually resolve these addresses.
	 */
	if (bacmp(&irk->rpa, BDADDR_ANY))
		ev.store_hint = 0x01;
	else
		ev.store_hint = 0x00;

6696 6697 6698 6699 6700 6701 6702 6703
	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);
}

6704 6705
void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
		   bool persistent)
6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723
{
	struct mgmt_ev_new_csrk ev;

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

	/* Devices using resolvable or non-resolvable random addresses
	 * without providing an indentity resolving key don't require
	 * to store signature resolving keys. Their addresses will change
	 * the next time around.
	 *
	 * Only when a remote device provides an identity address
	 * make sure the signature resolving key is stored. So allow
	 * static random and public addresses here.
	 */
	if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
	    (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
		ev.store_hint = 0x00;
	else
6724
		ev.store_hint = persistent;
6725 6726 6727

	bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
	ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
6728
	ev.key.type = csrk->type;
6729 6730 6731 6732 6733
	memcpy(ev.key.val, csrk->val, sizeof(csrk->val));

	mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
}

6734
void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
6735 6736
			 u8 bdaddr_type, u8 store_hint, u16 min_interval,
			 u16 max_interval, u16 latency, u16 timeout)
6737 6738 6739
{
	struct mgmt_ev_new_conn_param ev;

6740 6741 6742
	if (!hci_is_identity_address(bdaddr, bdaddr_type))
		return;

6743 6744 6745
	memset(&ev, 0, sizeof(ev));
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
6746
	ev.store_hint = store_hint;
6747 6748 6749 6750 6751 6752 6753 6754
	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);
}

6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765
static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
				  u8 data_len)
{
	eir[eir_len++] = sizeof(type) + data_len;
	eir[eir_len++] = type;
	memcpy(&eir[eir_len], data, data_len);
	eir_len += data_len;

	return eir_len;
}

6766 6767
void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
			   u32 flags, u8 *name, u8 name_len)
6768
{
6769 6770 6771
	char buf[512];
	struct mgmt_ev_device_connected *ev = (void *) buf;
	u16 eir_len = 0;
6772

6773 6774
	bacpy(&ev->addr.bdaddr, &conn->dst);
	ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
6775

6776
	ev->flags = __cpu_to_le32(flags);
6777

6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789
	/* 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);
6790

6791
		if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
6792 6793 6794 6795
			eir_len = eir_append_data(ev->eir, eir_len,
						  EIR_CLASS_OF_DEV,
						  conn->dev_class, 3);
	}
6796

6797
	ev->eir_len = cpu_to_le16(eir_len);
6798

6799 6800
	mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
		    sizeof(*ev) + eir_len, NULL);
6801 6802
}

6803
static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
6804 6805 6806
{
	struct sock **sk = data;

6807
	cmd->cmd_complete(cmd, 0);
6808 6809 6810 6811

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

6812
	mgmt_pending_remove(cmd);
6813 6814
}

6815
static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
6816
{
6817
	struct hci_dev *hdev = data;
6818
	struct mgmt_cp_unpair_device *cp = cmd->param;
6819

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

6822
	cmd->cmd_complete(cmd, 0);
6823 6824 6825
	mgmt_pending_remove(cmd);
}

6826 6827
bool mgmt_powering_down(struct hci_dev *hdev)
{
6828
	struct mgmt_pending_cmd *cmd;
6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841
	struct mgmt_mode *cp;

	cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
	if (!cmd)
		return false;

	cp = cmd->param;
	if (!cp->val)
		return true;

	return false;
}

6842
void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
6843 6844
			      u8 link_type, u8 addr_type, u8 reason,
			      bool mgmt_connected)
6845
{
6846
	struct mgmt_ev_device_disconnected ev;
6847 6848
	struct sock *sk = NULL;

6849 6850 6851 6852 6853 6854
	/* 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);
6855 6856
	}

6857 6858 6859
	if (!mgmt_connected)
		return;

6860 6861 6862
	if (link_type != ACL_LINK && link_type != LE_LINK)
		return;

6863
	mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
6864

6865 6866 6867
	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
	ev.reason = reason;
6868

6869
	mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
6870 6871

	if (sk)
6872
		sock_put(sk);
6873

6874
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
6875
			     hdev);
6876 6877
}

6878 6879
void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
			    u8 link_type, u8 addr_type, u8 status)
6880
{
6881 6882
	u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
	struct mgmt_cp_disconnect *cp;
6883
	struct mgmt_pending_cmd *cmd;
6884

6885 6886 6887
	mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
			     hdev);

6888
	cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
6889
	if (!cmd)
6890
		return;
6891

6892 6893 6894 6895 6896 6897 6898 6899
	cp = cmd->param;

	if (bacmp(bdaddr, &cp->addr.bdaddr))
		return;

	if (cp->addr.type != bdaddr_type)
		return;

6900
	cmd->cmd_complete(cmd, mgmt_status(status));
6901
	mgmt_pending_remove(cmd);
6902
}
6903

6904 6905
void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
			 u8 addr_type, u8 status)
6906 6907
{
	struct mgmt_ev_connect_failed ev;
6908

6909 6910 6911 6912 6913 6914
	/* 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);
6915
	}
6916

6917
	bacpy(&ev.addr.bdaddr, bdaddr);
6918
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
6919
	ev.status = mgmt_status(status);
6920

6921
	mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
6922
}
6923

6924
void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
6925 6926 6927
{
	struct mgmt_ev_pin_code_request ev;

6928
	bacpy(&ev.addr.bdaddr, bdaddr);
6929
	ev.addr.type = BDADDR_BREDR;
6930
	ev.secure = secure;
6931

6932
	mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
6933 6934
}

6935 6936
void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
				  u8 status)
6937
{
6938
	struct mgmt_pending_cmd *cmd;
6939

6940
	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
6941
	if (!cmd)
6942
		return;
6943

6944
	cmd->cmd_complete(cmd, mgmt_status(status));
6945
	mgmt_pending_remove(cmd);
6946 6947
}

6948 6949
void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
				      u8 status)
6950
{
6951
	struct mgmt_pending_cmd *cmd;
6952

6953
	cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
6954
	if (!cmd)
6955
		return;
6956

6957
	cmd->cmd_complete(cmd, mgmt_status(status));
6958
	mgmt_pending_remove(cmd);
6959
}
6960

6961
int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
6962
			      u8 link_type, u8 addr_type, u32 value,
6963
			      u8 confirm_hint)
6964 6965 6966
{
	struct mgmt_ev_user_confirm_request ev;

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

6969
	bacpy(&ev.addr.bdaddr, bdaddr);
6970
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
6971
	ev.confirm_hint = confirm_hint;
6972
	ev.value = cpu_to_le32(value);
6973

6974
	return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
6975
			  NULL);
6976 6977
}

6978
int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
6979
			      u8 link_type, u8 addr_type)
6980 6981 6982 6983 6984
{
	struct mgmt_ev_user_passkey_request ev;

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

6985
	bacpy(&ev.addr.bdaddr, bdaddr);
6986
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
6987 6988

	return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
6989
			  NULL);
6990 6991
}

6992
static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
6993 6994
				      u8 link_type, u8 addr_type, u8 status,
				      u8 opcode)
6995
{
6996
	struct mgmt_pending_cmd *cmd;
6997

6998
	cmd = mgmt_pending_find(opcode, hdev);
6999 7000 7001
	if (!cmd)
		return -ENOENT;

7002
	cmd->cmd_complete(cmd, mgmt_status(status));
7003
	mgmt_pending_remove(cmd);
7004

7005
	return 0;
7006 7007
}

7008
int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7009
				     u8 link_type, u8 addr_type, u8 status)
7010
{
7011
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7012
					  status, MGMT_OP_USER_CONFIRM_REPLY);
7013 7014
}

7015
int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7016
					 u8 link_type, u8 addr_type, u8 status)
7017
{
7018
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7019 7020
					  status,
					  MGMT_OP_USER_CONFIRM_NEG_REPLY);
7021
}
7022

7023
int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7024
				     u8 link_type, u8 addr_type, u8 status)
7025
{
7026
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7027
					  status, MGMT_OP_USER_PASSKEY_REPLY);
7028 7029
}

7030
int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7031
					 u8 link_type, u8 addr_type, u8 status)
7032
{
7033
	return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
7034 7035
					  status,
					  MGMT_OP_USER_PASSKEY_NEG_REPLY);
7036 7037
}

7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053
int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
			     u8 link_type, u8 addr_type, u32 passkey,
			     u8 entered)
{
	struct mgmt_ev_passkey_notify ev;

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

	bacpy(&ev.addr.bdaddr, bdaddr);
	ev.addr.type = link_to_bdaddr(link_type, addr_type);
	ev.passkey = __cpu_to_le32(passkey);
	ev.entered = entered;

	return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
}

7054
void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
7055 7056
{
	struct mgmt_ev_auth_failed ev;
7057
	struct mgmt_pending_cmd *cmd;
7058
	u8 status = mgmt_status(hci_status);
7059

7060 7061 7062
	bacpy(&ev.addr.bdaddr, &conn->dst);
	ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
	ev.status = status;
7063

7064 7065 7066 7067 7068
	cmd = find_pairing(conn);

	mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
		    cmd ? cmd->sk : NULL);

7069 7070 7071 7072
	if (cmd) {
		cmd->cmd_complete(cmd, status);
		mgmt_pending_remove(cmd);
	}
7073
}
7074

7075
void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
7076 7077
{
	struct cmd_lookup match = { NULL, hdev };
7078
	bool changed;
7079 7080 7081 7082

	if (status) {
		u8 mgmt_err = mgmt_status(status);
		mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
7083
				     cmd_status_rsp, &mgmt_err);
7084
		return;
7085 7086
	}

7087
	if (test_bit(HCI_AUTH, &hdev->flags))
7088
		changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
7089
	else
7090
		changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
7091

7092
	mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
7093
			     &match);
7094

7095
	if (changed)
7096
		new_settings(hdev, match.sk);
7097 7098 7099 7100 7101

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

7102
static void clear_eir(struct hci_request *req)
7103
{
7104
	struct hci_dev *hdev = req->hdev;
7105 7106
	struct hci_cp_write_eir cp;

7107
	if (!lmp_ext_inq_capable(hdev))
7108
		return;
7109

7110 7111
	memset(hdev->eir, 0, sizeof(hdev->eir));

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

7114
	hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
7115 7116
}

7117
void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
7118 7119
{
	struct cmd_lookup match = { NULL, hdev };
7120
	struct hci_request req;
7121
	bool changed = false;
7122 7123 7124

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

7126 7127
		if (enable && hci_dev_test_and_clear_flag(hdev,
							  HCI_SSP_ENABLED)) {
7128
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
7129
			new_settings(hdev, NULL);
7130
		}
7131

7132 7133
		mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
				     &mgmt_err);
7134
		return;
7135 7136 7137
	}

	if (enable) {
7138
		changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
7139
	} else {
7140
		changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
7141
		if (!changed)
7142 7143
			changed = hci_dev_test_and_clear_flag(hdev,
							      HCI_HS_ENABLED);
7144
		else
7145
			hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
7146 7147 7148 7149
	}

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

7150
	if (changed)
7151
		new_settings(hdev, match.sk);
7152

7153
	if (match.sk)
7154 7155
		sock_put(match.sk);

7156 7157
	hci_req_init(&req, hdev);

7158 7159
	if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
		if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
7160 7161
			hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
				    sizeof(enable), &enable);
7162
		update_eir(&req);
7163
	} else {
7164
		clear_eir(&req);
7165
	}
7166 7167

	hci_req_run(&req, NULL);
7168 7169
}

7170
static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
7171 7172 7173 7174 7175 7176 7177 7178 7179
{
	struct cmd_lookup *match = data;

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

7180 7181
void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
				    u8 status)
7182
{
7183
	struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
7184

7185 7186 7187
	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);
7188 7189

	if (!status)
7190 7191
		mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class, 3,
			   NULL);
7192 7193 7194

	if (match.sk)
		sock_put(match.sk);
7195 7196
}

7197
void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
7198 7199
{
	struct mgmt_cp_set_local_name ev;
7200
	struct mgmt_pending_cmd *cmd;
7201

7202
	if (status)
7203
		return;
7204 7205 7206

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

7209
	cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
7210 7211
	if (!cmd) {
		memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
7212

7213 7214 7215 7216
		/* If this is a HCI command related to powering on the
		 * HCI dev don't send any mgmt signals.
		 */
		if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
7217
			return;
7218
	}
7219

7220 7221
	mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
		   cmd ? cmd->sk : NULL);
7222
}
7223

7224
void mgmt_read_local_oob_data_complete(struct hci_dev *hdev, u8 *hash192,
7225 7226
				       u8 *rand192, u8 *hash256, u8 *rand256,
				       u8 status)
7227
{
7228
	struct mgmt_pending_cmd *cmd;
7229

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

7232
	cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
7233
	if (!cmd)
7234
		return;
7235 7236

	if (status) {
7237 7238
		mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
			        mgmt_status(status));
7239
	} else {
7240 7241
		struct mgmt_rp_read_local_oob_data rp;
		size_t rp_size = sizeof(rp);
7242

7243 7244
		memcpy(rp.hash192, hash192, sizeof(rp.hash192));
		memcpy(rp.rand192, rand192, sizeof(rp.rand192));
7245

7246
		if (bredr_sc_enabled(hdev) && hash256 && rand256) {
7247
			memcpy(rp.hash256, hash256, sizeof(rp.hash256));
7248
			memcpy(rp.rand256, rand256, sizeof(rp.rand256));
7249
		} else {
7250
			rp_size -= sizeof(rp.hash256) + sizeof(rp.rand256);
7251
		}
7252

7253 7254 7255
		mgmt_cmd_complete(cmd->sk, hdev->id,
				  MGMT_OP_READ_LOCAL_OOB_DATA, 0,
				  &rp, rp_size);
7256 7257 7258 7259
	}

	mgmt_pending_remove(cmd);
}
7260

7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272
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;
}

7273 7274
static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
{
7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291
	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) {
7292
				memcpy(uuid, bluetooth_base_uuid, 16);
7293 7294 7295 7296 7297 7298 7299 7300 7301
				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) {
7302
				memcpy(uuid, bluetooth_base_uuid, 16);
7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324
				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;
	}

7325 7326 7327
	return false;
}

7328 7329 7330
static void restart_le_scan(struct hci_dev *hdev)
{
	/* If controller is not scanning we are done. */
7331
	if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342
		return;

	if (time_after(jiffies + DISCOV_LE_RESTART_DELAY,
		       hdev->discovery.scan_start +
		       hdev->discovery.scan_duration))
		return;

	queue_delayed_work(hdev->workqueue, &hdev->le_scan_restart,
			   DISCOV_LE_RESTART_DELAY);
}

7343 7344
static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
			    u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
7345
{
7346 7347 7348 7349 7350
	/* 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.
7351 7352 7353
	 *
	 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
	 * the results are also dropped.
7354 7355
	 */
	if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
7356 7357 7358
	    (rssi == HCI_RSSI_INVALID ||
	    (rssi < hdev->discovery.rssi &&
	     !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
7359
		return  false;
7360

7361 7362 7363
	if (hdev->discovery.uuid_count != 0) {
		/* If a list of UUIDs is provided in filter, results with no
		 * matching UUID should be dropped.
7364
		 */
7365 7366 7367 7368 7369 7370
		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;
7371
	}
7372

7373 7374
	/* If duplicate filtering does not report RSSI changes, then restart
	 * scanning to ensure updated result with updated RSSI values.
7375
	 */
7376 7377 7378 7379 7380 7381 7382 7383
	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;
	}
7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406

	return true;
}

void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
		       u8 addr_type, u8 *dev_class, s8 rssi, u32 flags,
		       u8 *eir, u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
{
	char buf[512];
	struct mgmt_ev_device_found *ev = (void *)buf;
	size_t ev_size;

	/* Don't send events for a non-kernel initiated discovery. With
	 * LE one exception is if we have pend_le_reports > 0 in which
	 * case we're doing passive scanning and want these events.
	 */
	if (!hci_discovery_active(hdev)) {
		if (link_type == ACL_LINK)
			return;
		if (link_type == LE_LINK && list_empty(&hdev->pend_le_reports))
			return;
	}

7407
	if (hdev->discovery.result_filtering) {
7408 7409 7410 7411 7412 7413 7414 7415 7416 7417
		/* We are using service discovery */
		if (!is_filter_match(hdev, rssi, eir, eir_len, scan_rsp,
				     scan_rsp_len))
			return;
	}

	/* Make sure that the buffer is big enough. The 5 extra bytes
	 * are for the potential CoD field.
	 */
	if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
7418 7419
		return;

7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450
	memset(buf, 0, sizeof(buf));

	/* In case of device discovery with BR/EDR devices (pre 1.2), the
	 * RSSI value was reported as 0 when not available. This behavior
	 * is kept when using device discovery. This is required for full
	 * backwards compatibility with the API.
	 *
	 * However when using service discovery, the value 127 will be
	 * returned when the RSSI is not available.
	 */
	if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi &&
	    link_type == ACL_LINK)
		rssi = 0;

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

	if (eir_len > 0)
		/* Copy EIR or advertising data into event */
		memcpy(ev->eir, eir, eir_len);

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

	if (scan_rsp_len > 0)
		/* Append scan response data to event */
		memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);

7451 7452
	ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
	ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
7453

7454
	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
7455
}
7456

7457 7458
void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
		      u8 addr_type, s8 rssi, u8 *name, u8 name_len)
7459
{
7460 7461 7462
	struct mgmt_ev_device_found *ev;
	char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
	u16 eir_len;
7463

7464
	ev = (struct mgmt_ev_device_found *) buf;
7465

7466 7467 7468
	memset(buf, 0, sizeof(buf));

	bacpy(&ev->addr.bdaddr, bdaddr);
7469
	ev->addr.type = link_to_bdaddr(link_type, addr_type);
7470 7471 7472
	ev->rssi = rssi;

	eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
7473
				  name_len);
7474

7475
	ev->eir_len = cpu_to_le16(eir_len);
7476

7477
	mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
7478
}
7479

7480
void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
7481
{
7482
	struct mgmt_ev_discovering ev;
7483

7484 7485
	BT_DBG("%s discovering %u", hdev->name, discovering);

7486 7487 7488 7489
	memset(&ev, 0, sizeof(ev));
	ev.type = hdev->discovery.type;
	ev.discovering = discovering;

7490
	mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
7491
}
7492

7493
static void adv_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
7494 7495 7496 7497 7498 7499 7500 7501
{
	BT_DBG("%s status %u", hdev->name, status);
}

void mgmt_reenable_advertising(struct hci_dev *hdev)
{
	struct hci_request req;

7502
	if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
7503 7504 7505 7506
		return;

	hci_req_init(&req, hdev);
	enable_advertising(&req);
7507
	hci_req_run(&req, adv_enable_complete);
7508
}
7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524

static struct hci_mgmt_chan chan = {
	.channel	= HCI_CHANNEL_CONTROL,
	.handler_count	= ARRAY_SIZE(mgmt_handlers),
	.handlers	= mgmt_handlers,
};

int mgmt_init(void)
{
	return hci_mgmt_chan_register(&chan);
}

void mgmt_exit(void)
{
	hci_mgmt_chan_unregister(&chan);
}