smp.c 27.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
   BlueZ - Bluetooth protocol stack for Linux
   Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).

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

23 24 25 26
#include <linux/crypto.h>
#include <linux/scatterlist.h>
#include <crypto/b128ops.h>

27 28 29
#include <net/bluetooth/bluetooth.h>
#include <net/bluetooth/hci_core.h>
#include <net/bluetooth/l2cap.h>
30
#include <net/bluetooth/mgmt.h>
31 32

#include "smp.h"
33

34
#define SMP_TIMEOUT	msecs_to_jiffies(30000)
35

36 37
#define AUTH_REQ_MASK   0x07

38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55
static inline void swap128(u8 src[16], u8 dst[16])
{
	int i;
	for (i = 0; i < 16; i++)
		dst[15 - i] = src[i];
}

static inline void swap56(u8 src[7], u8 dst[7])
{
	int i;
	for (i = 0; i < 7; i++)
		dst[6 - i] = src[i];
}

static int smp_e(struct crypto_blkcipher *tfm, const u8 *k, u8 *r)
{
	struct blkcipher_desc desc;
	struct scatterlist sg;
56
	int err;
57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80

	if (tfm == NULL) {
		BT_ERR("tfm %p", tfm);
		return -EINVAL;
	}

	desc.tfm = tfm;
	desc.flags = 0;

	err = crypto_blkcipher_setkey(tfm, k, 16);
	if (err) {
		BT_ERR("cipher setkey failed: %d", err);
		return err;
	}

	sg_init_one(&sg, r, 16);

	err = crypto_blkcipher_encrypt(&desc, &sg, &sg, 16);
	if (err)
		BT_ERR("Encrypt data error %d", err);

	return err;
}

81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126
static int smp_ah(struct crypto_blkcipher *tfm, u8 irk[16], u8 r[3], u8 res[3])
{
	u8 _res[16], k[16];
	int err;

	/* r' = padding || r */
	memset(_res, 0, 13);
	_res[13] = r[2];
	_res[14] = r[1];
	_res[15] = r[0];

	swap128(irk, k);
	err = smp_e(tfm, k, _res);
	if (err) {
		BT_ERR("Encrypt error");
		return err;
	}

	/* The output of the random address function ah is:
	 *	ah(h, r) = e(k, r') mod 2^24
	 * The output of the security function e is then truncated to 24 bits
	 * by taking the least significant 24 bits of the output of e as the
	 * result of ah.
	 */
	res[0] = _res[15];
	res[1] = _res[14];
	res[2] = _res[13];

	return 0;
}

bool smp_irk_matches(struct crypto_blkcipher *tfm, u8 irk[16],
		     bdaddr_t *bdaddr)
{
	u8 hash[3];
	int err;

	BT_DBG("RPA %pMR IRK %*phN", bdaddr, 16, irk);

	err = smp_ah(tfm, irk, &bdaddr->b[3], hash);
	if (err)
		return false;

	return !memcmp(bdaddr->b, hash, 3);
}

127
static int smp_c1(struct crypto_blkcipher *tfm, u8 k[16], u8 r[16],
128 129
		  u8 preq[7], u8 pres[7], u8 _iat, bdaddr_t *ia,
		  u8 _rat, bdaddr_t *ra, u8 res[16])
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
{
	u8 p1[16], p2[16];
	int err;

	memset(p1, 0, 16);

	/* p1 = pres || preq || _rat || _iat */
	swap56(pres, p1);
	swap56(preq, p1 + 7);
	p1[14] = _rat;
	p1[15] = _iat;

	memset(p2, 0, 16);

	/* p2 = padding || ia || ra */
	baswap((bdaddr_t *) (p2 + 4), ia);
	baswap((bdaddr_t *) (p2 + 10), ra);

	/* res = r XOR p1 */
	u128_xor((u128 *) res, (u128 *) r, (u128 *) p1);

	/* res = e(k, res) */
	err = smp_e(tfm, k, res);
	if (err) {
		BT_ERR("Encrypt data error");
		return err;
	}

	/* res = res XOR p2 */
	u128_xor((u128 *) res, (u128 *) res, (u128 *) p2);

	/* res = e(k, res) */
	err = smp_e(tfm, k, res);
	if (err)
		BT_ERR("Encrypt data error");

	return err;
}

169 170
static int smp_s1(struct crypto_blkcipher *tfm, u8 k[16], u8 r1[16],
		  u8 r2[16], u8 _r[16])
171 172 173 174 175 176 177 178 179 180 181 182 183 184
{
	int err;

	/* Just least significant octets from r1 and r2 are considered */
	memcpy(_r, r1 + 8, 8);
	memcpy(_r + 8, r2 + 8, 8);

	err = smp_e(tfm, k, _r);
	if (err)
		BT_ERR("Encrypt data error");

	return err;
}

185
static struct sk_buff *smp_build_cmd(struct l2cap_conn *conn, u8 code,
186
				     u16 dlen, void *data)
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
{
	struct sk_buff *skb;
	struct l2cap_hdr *lh;
	int len;

	len = L2CAP_HDR_SIZE + sizeof(code) + dlen;

	if (len > conn->mtu)
		return NULL;

	skb = bt_skb_alloc(len, GFP_ATOMIC);
	if (!skb)
		return NULL;

	lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
	lh->len = cpu_to_le16(sizeof(code) + dlen);
203
	lh->cid = __constant_cpu_to_le16(L2CAP_CID_SMP);
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220

	memcpy(skb_put(skb, sizeof(code)), &code, sizeof(code));

	memcpy(skb_put(skb, dlen), data, dlen);

	return skb;
}

static void smp_send_cmd(struct l2cap_conn *conn, u8 code, u16 len, void *data)
{
	struct sk_buff *skb = smp_build_cmd(conn, code, len, data);

	BT_DBG("code 0x%2.2x", code);

	if (!skb)
		return;

221 222
	skb->priority = HCI_PRIO_MAX;
	hci_send_acl(conn->hchan, skb, 0);
223

224
	cancel_delayed_work_sync(&conn->security_timer);
225
	schedule_delayed_work(&conn->security_timer, SMP_TIMEOUT);
226 227
}

228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
static __u8 authreq_to_seclevel(__u8 authreq)
{
	if (authreq & SMP_AUTH_MITM)
		return BT_SECURITY_HIGH;
	else
		return BT_SECURITY_MEDIUM;
}

static __u8 seclevel_to_authreq(__u8 sec_level)
{
	switch (sec_level) {
	case BT_SECURITY_HIGH:
		return SMP_AUTH_MITM | SMP_AUTH_BONDING;
	case BT_SECURITY_MEDIUM:
		return SMP_AUTH_BONDING;
	default:
		return SMP_AUTH_NONE;
	}
}

248
static void build_pairing_cmd(struct l2cap_conn *conn,
249 250
			      struct smp_cmd_pairing *req,
			      struct smp_cmd_pairing *rsp, __u8 authreq)
251
{
252 253 254 255
	struct smp_chan *smp = conn->smp_chan;
	struct hci_conn *hcon = conn->hcon;
	struct hci_dev *hdev = hcon->hdev;
	u8 local_dist = 0, remote_dist = 0;
256

257
	if (test_bit(HCI_PAIRABLE, &conn->hcon->hdev->dev_flags)) {
258 259
		local_dist = SMP_DIST_ENC_KEY;
		remote_dist = SMP_DIST_ENC_KEY;
260
		authreq |= SMP_AUTH_BONDING;
261 262
	} else {
		authreq &= ~SMP_AUTH_BONDING;
263 264
	}

265 266 267
	if (test_bit(HCI_RPA_RESOLVING, &hdev->dev_flags))
		remote_dist |= SMP_DIST_ID_KEY;

268 269 270 271
	if (rsp == NULL) {
		req->io_capability = conn->hcon->io_capability;
		req->oob_flag = SMP_OOB_NOT_PRESENT;
		req->max_key_size = SMP_MAX_ENC_KEY_SIZE;
272 273
		req->init_key_dist = local_dist;
		req->resp_key_dist = remote_dist;
274
		req->auth_req = (authreq & AUTH_REQ_MASK);
275 276

		smp->remote_key_dist = remote_dist;
277 278 279 280 281 282
		return;
	}

	rsp->io_capability = conn->hcon->io_capability;
	rsp->oob_flag = SMP_OOB_NOT_PRESENT;
	rsp->max_key_size = SMP_MAX_ENC_KEY_SIZE;
283 284
	rsp->init_key_dist = req->init_key_dist & remote_dist;
	rsp->resp_key_dist = req->resp_key_dist & local_dist;
285
	rsp->auth_req = (authreq & AUTH_REQ_MASK);
286 287

	smp->remote_key_dist = rsp->init_key_dist;
288 289
}

290 291
static u8 check_enc_key_size(struct l2cap_conn *conn, __u8 max_key_size)
{
292 293
	struct smp_chan *smp = conn->smp_chan;

294
	if ((max_key_size > SMP_MAX_ENC_KEY_SIZE) ||
295
	    (max_key_size < SMP_MIN_ENC_KEY_SIZE))
296 297
		return SMP_ENC_KEY_SIZE;

298
	smp->enc_key_size = max_key_size;
299 300 301 302

	return 0;
}

303
static void smp_failure(struct l2cap_conn *conn, u8 reason)
304
{
305 306
	struct hci_conn *hcon = conn->hcon;

307
	if (reason)
308
		smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason),
309
			     &reason);
310

311 312 313
	clear_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags);
	mgmt_auth_failed(hcon->hdev, &hcon->dst, hcon->type, hcon->dst_type,
			 HCI_ERROR_AUTH_FAILURE);
314

315 316
	cancel_delayed_work_sync(&conn->security_timer);

317
	if (test_and_clear_bit(HCI_CONN_LE_SMP_PEND, &hcon->flags))
318
		smp_chan_destroy(conn);
319 320
}

321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
#define JUST_WORKS	0x00
#define JUST_CFM	0x01
#define REQ_PASSKEY	0x02
#define CFM_PASSKEY	0x03
#define REQ_OOB		0x04
#define OVERLAP		0xFF

static const u8 gen_method[5][5] = {
	{ JUST_WORKS,  JUST_CFM,    REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
	{ JUST_WORKS,  JUST_CFM,    REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
	{ CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY },
	{ JUST_WORKS,  JUST_CFM,    JUST_WORKS,  JUST_WORKS, JUST_CFM    },
	{ CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, OVERLAP     },
};

static int tk_request(struct l2cap_conn *conn, u8 remote_oob, u8 auth,
						u8 local_io, u8 remote_io)
{
	struct hci_conn *hcon = conn->hcon;
	struct smp_chan *smp = conn->smp_chan;
	u8 method;
	u32 passkey = 0;
	int ret = 0;

	/* Initialize key for JUST WORKS */
	memset(smp->tk, 0, sizeof(smp->tk));
	clear_bit(SMP_FLAG_TK_VALID, &smp->smp_flags);

	BT_DBG("tk_request: auth:%d lcl:%d rem:%d", auth, local_io, remote_io);

	/* If neither side wants MITM, use JUST WORKS */
	/* If either side has unknown io_caps, use JUST WORKS */
	/* Otherwise, look up method from the table */
	if (!(auth & SMP_AUTH_MITM) ||
355 356
	    local_io > SMP_IO_KEYBOARD_DISPLAY ||
	    remote_io > SMP_IO_KEYBOARD_DISPLAY)
357 358
		method = JUST_WORKS;
	else
359
		method = gen_method[remote_io][local_io];
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399

	/* If not bonding, don't ask user to confirm a Zero TK */
	if (!(auth & SMP_AUTH_BONDING) && method == JUST_CFM)
		method = JUST_WORKS;

	/* If Just Works, Continue with Zero TK */
	if (method == JUST_WORKS) {
		set_bit(SMP_FLAG_TK_VALID, &smp->smp_flags);
		return 0;
	}

	/* Not Just Works/Confirm results in MITM Authentication */
	if (method != JUST_CFM)
		set_bit(SMP_FLAG_MITM_AUTH, &smp->smp_flags);

	/* If both devices have Keyoard-Display I/O, the master
	 * Confirms and the slave Enters the passkey.
	 */
	if (method == OVERLAP) {
		if (hcon->link_mode & HCI_LM_MASTER)
			method = CFM_PASSKEY;
		else
			method = REQ_PASSKEY;
	}

	/* Generate random passkey. Not valid until confirmed. */
	if (method == CFM_PASSKEY) {
		u8 key[16];

		memset(key, 0, sizeof(key));
		get_random_bytes(&passkey, sizeof(passkey));
		passkey %= 1000000;
		put_unaligned_le32(passkey, key);
		swap128(key, smp->tk);
		BT_DBG("PassKey: %d", passkey);
	}

	hci_dev_lock(hcon->hdev);

	if (method == REQ_PASSKEY)
400
		ret = mgmt_user_passkey_request(hcon->hdev, &hcon->dst,
401
						hcon->type, hcon->dst_type);
402
	else
403
		ret = mgmt_user_confirm_request(hcon->hdev, &hcon->dst,
404
						hcon->type, hcon->dst_type,
405 406 407 408 409 410 411
						cpu_to_le32(passkey), 0);

	hci_dev_unlock(hcon->hdev);

	return ret;
}

412 413 414 415
static void confirm_work(struct work_struct *work)
{
	struct smp_chan *smp = container_of(work, struct smp_chan, confirm);
	struct l2cap_conn *conn = smp->conn;
416 417
	struct hci_dev *hdev = conn->hcon->hdev;
	struct crypto_blkcipher *tfm = hdev->tfm_aes;
418 419 420 421 422 423
	struct smp_cmd_pairing_confirm cp;
	int ret;
	u8 res[16], reason;

	BT_DBG("conn %p", conn);

424 425
	/* Prevent mutual access to hdev->tfm_aes */
	hci_dev_lock(hdev);
426 427

	if (conn->hcon->out)
428 429 430
		ret = smp_c1(tfm, smp->tk, smp->prnd, smp->preq, smp->prsp,
			     conn->hcon->src_type, &conn->hcon->src,
			     conn->hcon->dst_type, &conn->hcon->dst, res);
431 432
	else
		ret = smp_c1(tfm, smp->tk, smp->prnd, smp->preq, smp->prsp,
433 434
			     conn->hcon->dst_type, &conn->hcon->dst,
			     conn->hcon->src_type, &conn->hcon->src, res);
435 436 437

	hci_dev_unlock(hdev);

438 439 440 441 442
	if (ret) {
		reason = SMP_UNSPECIFIED;
		goto error;
	}

443 444
	clear_bit(SMP_FLAG_CFM_PENDING, &smp->smp_flags);

445 446 447 448 449 450
	swap128(res, cp.confirm_val);
	smp_send_cmd(smp->conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cp), &cp);

	return;

error:
451
	smp_failure(conn, reason);
452 453 454 455 456 457 458
}

static void random_work(struct work_struct *work)
{
	struct smp_chan *smp = container_of(work, struct smp_chan, random);
	struct l2cap_conn *conn = smp->conn;
	struct hci_conn *hcon = conn->hcon;
459 460
	struct hci_dev *hdev = hcon->hdev;
	struct crypto_blkcipher *tfm = hdev->tfm_aes;
461 462 463 464 465 466 467 468 469 470
	u8 reason, confirm[16], res[16], key[16];
	int ret;

	if (IS_ERR_OR_NULL(tfm)) {
		reason = SMP_UNSPECIFIED;
		goto error;
	}

	BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave");

471 472 473
	/* Prevent mutual access to hdev->tfm_aes */
	hci_dev_lock(hdev);

474
	if (hcon->out)
475 476 477
		ret = smp_c1(tfm, smp->tk, smp->rrnd, smp->preq, smp->prsp,
			     hcon->src_type, &hcon->src,
			     hcon->dst_type, &hcon->dst, res);
478 479
	else
		ret = smp_c1(tfm, smp->tk, smp->rrnd, smp->preq, smp->prsp,
480 481
			     hcon->dst_type, &hcon->dst,
			     hcon->src_type, &hcon->src, res);
482 483 484

	hci_dev_unlock(hdev);

485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
	if (ret) {
		reason = SMP_UNSPECIFIED;
		goto error;
	}

	swap128(res, confirm);

	if (memcmp(smp->pcnf, confirm, sizeof(smp->pcnf)) != 0) {
		BT_ERR("Pairing failed (confirmation values mismatch)");
		reason = SMP_CONFIRM_FAILED;
		goto error;
	}

	if (hcon->out) {
		u8 stk[16], rand[8];
		__le16 ediv;

		memset(rand, 0, sizeof(rand));
		ediv = 0;

		smp_s1(tfm, smp->tk, smp->rrnd, smp->prnd, key);
		swap128(key, stk);

508
		memset(stk + smp->enc_key_size, 0,
509
		       SMP_MAX_ENC_KEY_SIZE - smp->enc_key_size);
510

511
		if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags)) {
512 513 514 515 516
			reason = SMP_UNSPECIFIED;
			goto error;
		}

		hci_le_start_enc(hcon, ediv, rand, stk);
517
		hcon->enc_key_size = smp->enc_key_size;
518 519 520 521 522 523 524 525 526 527 528 529 530
	} else {
		u8 stk[16], r[16], rand[8];
		__le16 ediv;

		memset(rand, 0, sizeof(rand));
		ediv = 0;

		swap128(smp->prnd, r);
		smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(r), r);

		smp_s1(tfm, smp->tk, smp->prnd, smp->rrnd, key);
		swap128(key, stk);

531
		memset(stk + smp->enc_key_size, 0,
532
		       SMP_MAX_ENC_KEY_SIZE - smp->enc_key_size);
533

534
		hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type,
535 536
			    HCI_SMP_STK_SLAVE, 0, 0, stk, smp->enc_key_size,
			    ediv, rand);
537 538 539 540 541
	}

	return;

error:
542
	smp_failure(conn, reason);
543 544 545 546 547 548
}

static struct smp_chan *smp_chan_create(struct l2cap_conn *conn)
{
	struct smp_chan *smp;

549
	smp = kzalloc(sizeof(*smp), GFP_ATOMIC);
550 551 552 553 554 555 556 557
	if (!smp)
		return NULL;

	INIT_WORK(&smp->confirm, confirm_work);
	INIT_WORK(&smp->random, random_work);

	smp->conn = conn;
	conn->smp_chan = smp;
558
	conn->hcon->smp_conn = conn;
559 560 561 562 563 564 565 566

	hci_conn_hold(conn->hcon);

	return smp;
}

void smp_chan_destroy(struct l2cap_conn *conn)
{
567 568
	struct smp_chan *smp = conn->smp_chan;

569
	BUG_ON(!smp);
570 571 572

	kfree(smp);
	conn->smp_chan = NULL;
573
	conn->hcon->smp_conn = NULL;
574
	hci_conn_drop(conn->hcon);
575 576
}

577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603
int smp_user_confirm_reply(struct hci_conn *hcon, u16 mgmt_op, __le32 passkey)
{
	struct l2cap_conn *conn = hcon->smp_conn;
	struct smp_chan *smp;
	u32 value;
	u8 key[16];

	BT_DBG("");

	if (!conn)
		return -ENOTCONN;

	smp = conn->smp_chan;

	switch (mgmt_op) {
	case MGMT_OP_USER_PASSKEY_REPLY:
		value = le32_to_cpu(passkey);
		memset(key, 0, sizeof(key));
		BT_DBG("PassKey: %d", value);
		put_unaligned_le32(value, key);
		swap128(key, smp->tk);
		/* Fall Through */
	case MGMT_OP_USER_CONFIRM_REPLY:
		set_bit(SMP_FLAG_TK_VALID, &smp->smp_flags);
		break;
	case MGMT_OP_USER_PASSKEY_NEG_REPLY:
	case MGMT_OP_USER_CONFIRM_NEG_REPLY:
604
		smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED);
605 606
		return 0;
	default:
607
		smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED);
608 609 610 611 612 613 614 615 616 617
		return -EOPNOTSUPP;
	}

	/* If it is our turn to send Pairing Confirm, do so now */
	if (test_bit(SMP_FLAG_CFM_PENDING, &smp->smp_flags))
		queue_work(hcon->hdev->workqueue, &smp->confirm);

	return 0;
}

618
static u8 smp_cmd_pairing_req(struct l2cap_conn *conn, struct sk_buff *skb)
619
{
620
	struct smp_cmd_pairing rsp, *req = (void *) skb->data;
621
	struct smp_chan *smp;
622
	u8 key_size;
623
	u8 auth = SMP_AUTH_NONE;
624
	int ret;
625 626 627

	BT_DBG("conn %p", conn);

628 629 630
	if (skb->len < sizeof(*req))
		return SMP_UNSPECIFIED;

631 632 633
	if (conn->hcon->link_mode & HCI_LM_MASTER)
		return SMP_CMD_NOTSUPP;

634
	if (!test_and_set_bit(HCI_CONN_LE_SMP_PEND, &conn->hcon->flags))
635
		smp = smp_chan_create(conn);
636 637
	else
		smp = conn->smp_chan;
638

639 640
	if (!smp)
		return SMP_UNSPECIFIED;
641

642 643
	smp->preq[0] = SMP_CMD_PAIRING_REQ;
	memcpy(&smp->preq[1], req, sizeof(*req));
644
	skb_pull(skb, sizeof(*req));
645

646 647 648
	/* We didn't start the pairing, so match remote */
	if (req->auth_req & SMP_AUTH_BONDING)
		auth = req->auth_req;
649

650 651
	conn->hcon->pending_sec_level = authreq_to_seclevel(auth);

652
	build_pairing_cmd(conn, req, &rsp, auth);
653 654 655 656

	key_size = min(req->max_key_size, rsp.max_key_size);
	if (check_enc_key_size(conn, key_size))
		return SMP_ENC_KEY_SIZE;
657

658
	get_random_bytes(smp->prnd, sizeof(smp->prnd));
659

660 661
	smp->prsp[0] = SMP_CMD_PAIRING_RSP;
	memcpy(&smp->prsp[1], &rsp, sizeof(rsp));
662

663
	smp_send_cmd(conn, SMP_CMD_PAIRING_RSP, sizeof(rsp), &rsp);
664

665 666 667 668 669
	/* Request setup of TK */
	ret = tk_request(conn, 0, auth, rsp.io_capability, req->io_capability);
	if (ret)
		return SMP_UNSPECIFIED;

670
	return 0;
671 672
}

673
static u8 smp_cmd_pairing_rsp(struct l2cap_conn *conn, struct sk_buff *skb)
674
{
675
	struct smp_cmd_pairing *req, *rsp = (void *) skb->data;
676
	struct smp_chan *smp = conn->smp_chan;
677
	struct hci_dev *hdev = conn->hcon->hdev;
678
	u8 key_size, auth = SMP_AUTH_NONE;
679
	int ret;
680 681 682

	BT_DBG("conn %p", conn);

683 684 685
	if (skb->len < sizeof(*rsp))
		return SMP_UNSPECIFIED;

686 687 688
	if (!(conn->hcon->link_mode & HCI_LM_MASTER))
		return SMP_CMD_NOTSUPP;

689 690
	skb_pull(skb, sizeof(*rsp));

691
	req = (void *) &smp->preq[1];
692

693 694 695 696
	key_size = min(req->max_key_size, rsp->max_key_size);
	if (check_enc_key_size(conn, key_size))
		return SMP_ENC_KEY_SIZE;

697
	get_random_bytes(smp->prnd, sizeof(smp->prnd));
698

699 700
	smp->prsp[0] = SMP_CMD_PAIRING_RSP;
	memcpy(&smp->prsp[1], rsp, sizeof(*rsp));
701

702
	if ((req->auth_req & SMP_AUTH_BONDING) &&
703
	    (rsp->auth_req & SMP_AUTH_BONDING))
704 705 706 707
		auth = SMP_AUTH_BONDING;

	auth |= (req->auth_req | rsp->auth_req) & SMP_AUTH_MITM;

708
	ret = tk_request(conn, 0, auth, req->io_capability, rsp->io_capability);
709 710 711 712 713 714 715 716 717
	if (ret)
		return SMP_UNSPECIFIED;

	set_bit(SMP_FLAG_CFM_PENDING, &smp->smp_flags);

	/* Can't compose response until we have been confirmed */
	if (!test_bit(SMP_FLAG_TK_VALID, &smp->smp_flags))
		return 0;

718
	queue_work(hdev->workqueue, &smp->confirm);
719 720

	return 0;
721 722
}

723
static u8 smp_cmd_pairing_confirm(struct l2cap_conn *conn, struct sk_buff *skb)
724
{
725
	struct smp_chan *smp = conn->smp_chan;
726
	struct hci_dev *hdev = conn->hcon->hdev;
727

728 729
	BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave");

730 731 732
	if (skb->len < sizeof(smp->pcnf))
		return SMP_UNSPECIFIED;

733 734
	memcpy(smp->pcnf, skb->data, sizeof(smp->pcnf));
	skb_pull(skb, sizeof(smp->pcnf));
735

736 737
	if (conn->hcon->out) {
		u8 random[16];
738

739
		swap128(smp->prnd, random);
740
		smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(random),
741
			     random);
742
	} else if (test_bit(SMP_FLAG_TK_VALID, &smp->smp_flags)) {
743
		queue_work(hdev->workqueue, &smp->confirm);
744 745
	} else {
		set_bit(SMP_FLAG_CFM_PENDING, &smp->smp_flags);
746
	}
747 748

	return 0;
749 750
}

751
static u8 smp_cmd_pairing_random(struct l2cap_conn *conn, struct sk_buff *skb)
752
{
753
	struct smp_chan *smp = conn->smp_chan;
754
	struct hci_dev *hdev = conn->hcon->hdev;
755

756
	BT_DBG("conn %p", conn);
757

758 759 760
	if (skb->len < sizeof(smp->rrnd))
		return SMP_UNSPECIFIED;

761 762
	swap128(skb->data, smp->rrnd);
	skb_pull(skb, sizeof(smp->rrnd));
763

764
	queue_work(hdev->workqueue, &smp->random);
765 766

	return 0;
767 768
}

769
static u8 smp_ltk_encrypt(struct l2cap_conn *conn, u8 sec_level)
770
{
771
	struct smp_ltk *key;
772 773
	struct hci_conn *hcon = conn->hcon;

774 775
	key = hci_find_ltk_by_addr(hcon->hdev, &hcon->dst, hcon->dst_type,
				   hcon->out);
776 777 778
	if (!key)
		return 0;

779 780 781
	if (sec_level > BT_SECURITY_MEDIUM && !key->authenticated)
		return 0;

782
	if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags))
783 784
		return 1;

785 786
	hci_le_start_enc(hcon, key->ediv, key->rand, key->val);
	hcon->enc_key_size = key->enc_size;
787 788 789

	return 1;
}
790

791
static u8 smp_cmd_security_req(struct l2cap_conn *conn, struct sk_buff *skb)
792 793 794
{
	struct smp_cmd_security_req *rp = (void *) skb->data;
	struct smp_cmd_pairing cp;
795
	struct hci_conn *hcon = conn->hcon;
796
	struct smp_chan *smp;
797 798 799

	BT_DBG("conn %p", conn);

800 801 802
	if (skb->len < sizeof(*rp))
		return SMP_UNSPECIFIED;

803 804 805
	if (!(conn->hcon->link_mode & HCI_LM_MASTER))
		return SMP_CMD_NOTSUPP;

806
	hcon->pending_sec_level = authreq_to_seclevel(rp->auth_req);
807

808
	if (smp_ltk_encrypt(conn, hcon->pending_sec_level))
809 810
		return 0;

811
	if (test_and_set_bit(HCI_CONN_LE_SMP_PEND, &hcon->flags))
812
		return 0;
813

814
	smp = smp_chan_create(conn);
815

816 817
	skb_pull(skb, sizeof(*rp));

818
	memset(&cp, 0, sizeof(cp));
819
	build_pairing_cmd(conn, &cp, NULL, rp->auth_req);
820

821 822
	smp->preq[0] = SMP_CMD_PAIRING_REQ;
	memcpy(&smp->preq[1], &cp, sizeof(cp));
823

824
	smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp);
825

826
	return 0;
827 828
}

829 830 831 832 833 834 835 836 837 838 839
bool smp_sufficient_security(struct hci_conn *hcon, u8 sec_level)
{
	if (sec_level == BT_SECURITY_LOW)
		return true;

	if (hcon->sec_level >= sec_level)
		return true;

	return false;
}

840
int smp_conn_security(struct hci_conn *hcon, __u8 sec_level)
841
{
842
	struct l2cap_conn *conn = hcon->l2cap_data;
843
	struct smp_chan *smp = conn->smp_chan;
844
	__u8 authreq;
845

846 847
	BT_DBG("conn %p hcon %p level 0x%2.2x", conn, hcon, sec_level);

848
	if (!test_bit(HCI_LE_ENABLED, &hcon->hdev->dev_flags))
849 850
		return 1;

851
	if (smp_sufficient_security(hcon, sec_level))
852
		return 1;
853

854
	if (hcon->link_mode & HCI_LM_MASTER)
855
		if (smp_ltk_encrypt(conn, sec_level))
856
			goto done;
857

858
	if (test_and_set_bit(HCI_CONN_LE_SMP_PEND, &hcon->flags))
859 860
		return 0;

861
	smp = smp_chan_create(conn);
862 863 864 865
	if (!smp)
		return 1;

	authreq = seclevel_to_authreq(sec_level);
866 867 868

	if (hcon->link_mode & HCI_LM_MASTER) {
		struct smp_cmd_pairing cp;
869

870
		build_pairing_cmd(conn, &cp, NULL, authreq);
871 872
		smp->preq[0] = SMP_CMD_PAIRING_REQ;
		memcpy(&smp->preq[1], &cp, sizeof(cp));
873

874 875 876
		smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp);
	} else {
		struct smp_cmd_security_req cp;
877
		cp.auth_req = authreq;
878 879 880
		smp_send_cmd(conn, SMP_CMD_SECURITY_REQ, sizeof(cp), &cp);
	}

881
done:
882 883
	hcon->pending_sec_level = sec_level;

884 885 886
	return 0;
}

887 888
static int smp_cmd_encrypt_info(struct l2cap_conn *conn, struct sk_buff *skb)
{
889
	struct smp_cmd_encrypt_info *rp = (void *) skb->data;
890
	struct smp_chan *smp = conn->smp_chan;
891

892 893 894 895 896
	BT_DBG("conn %p", conn);

	if (skb->len < sizeof(*rp))
		return SMP_UNSPECIFIED;

897 898 899 900
	/* Ignore this PDU if it wasn't requested */
	if (!(smp->remote_key_dist & SMP_DIST_ENC_KEY))
		return 0;

901 902
	skb_pull(skb, sizeof(*rp));

903
	memcpy(smp->tk, rp->ltk, sizeof(smp->tk));
904

905 906 907 908 909
	return 0;
}

static int smp_cmd_master_ident(struct l2cap_conn *conn, struct sk_buff *skb)
{
910
	struct smp_cmd_master_ident *rp = (void *) skb->data;
911
	struct smp_chan *smp = conn->smp_chan;
912 913 914
	struct hci_dev *hdev = conn->hcon->hdev;
	struct hci_conn *hcon = conn->hcon;
	u8 authenticated;
915

916 917 918 919 920
	BT_DBG("conn %p", conn);

	if (skb->len < sizeof(*rp))
		return SMP_UNSPECIFIED;

921 922 923 924
	/* Ignore this PDU if it wasn't requested */
	if (!(smp->remote_key_dist & SMP_DIST_ENC_KEY))
		return 0;

925
	skb_pull(skb, sizeof(*rp));
926

927
	hci_dev_lock(hdev);
928 929 930
	authenticated = (hcon->sec_level == BT_SECURITY_HIGH);
	hci_add_ltk(hdev, &hcon->dst, hcon->dst_type, HCI_SMP_LTK, 1,
		    authenticated, smp->tk, smp->enc_key_size,
931
		    rp->ediv, rp->rand);
932 933
	if (!(smp->remote_key_dist & SMP_DIST_ID_KEY))
		smp_distribute_keys(conn, 1);
934
	hci_dev_unlock(hdev);
935 936 937 938

	return 0;
}

939 940 941 942 943 944 945 946 947 948
static int smp_cmd_ident_info(struct l2cap_conn *conn, struct sk_buff *skb)
{
	struct smp_cmd_ident_info *info = (void *) skb->data;
	struct smp_chan *smp = conn->smp_chan;

	BT_DBG("");

	if (skb->len < sizeof(*info))
		return SMP_UNSPECIFIED;

949 950 951 952
	/* Ignore this PDU if it wasn't requested */
	if (!(smp->remote_key_dist & SMP_DIST_ID_KEY))
		return 0;

953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972
	skb_pull(skb, sizeof(*info));

	memcpy(smp->irk, info->irk, 16);

	return 0;
}

static int smp_cmd_ident_addr_info(struct l2cap_conn *conn,
				   struct sk_buff *skb)
{
	struct smp_cmd_ident_addr_info *info = (void *) skb->data;
	struct smp_chan *smp = conn->smp_chan;
	struct hci_conn *hcon = conn->hcon;
	bdaddr_t rpa;

	BT_DBG("");

	if (skb->len < sizeof(*info))
		return SMP_UNSPECIFIED;

973 974 975 976
	/* Ignore this PDU if it wasn't requested */
	if (!(smp->remote_key_dist & SMP_DIST_ID_KEY))
		return 0;

977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994
	skb_pull(skb, sizeof(*info));

	bacpy(&smp->id_addr, &info->bdaddr);
	smp->id_addr_type = info->addr_type;

	if (hci_bdaddr_is_rpa(&hcon->dst, hcon->dst_type))
		bacpy(&rpa, &hcon->dst);
	else
		bacpy(&rpa, BDADDR_ANY);

	hci_add_irk(conn->hcon->hdev, &smp->id_addr, smp->id_addr_type,
		    smp->irk, &rpa);

	smp_distribute_keys(conn, 1);

	return 0;
}

995 996
int smp_sig_channel(struct l2cap_conn *conn, struct sk_buff *skb)
{
997
	struct hci_conn *hcon = conn->hcon;
998
	__u8 code, reason;
999 1000
	int err = 0;

1001 1002
	if (hcon->type != LE_LINK) {
		kfree_skb(skb);
1003
		return 0;
1004 1005
	}

1006 1007 1008 1009 1010
	if (skb->len < 1) {
		kfree_skb(skb);
		return -EILSEQ;
	}

1011
	if (!test_bit(HCI_LE_ENABLED, &hcon->hdev->dev_flags)) {
1012 1013 1014 1015 1016
		err = -ENOTSUPP;
		reason = SMP_PAIRING_NOTSUPP;
		goto done;
	}

1017
	code = skb->data[0];
1018 1019
	skb_pull(skb, sizeof(code));

1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032
	/*
	 * The SMP context must be initialized for all other PDUs except
	 * pairing and security requests. If we get any other PDU when
	 * not initialized simply disconnect (done if this function
	 * returns an error).
	 */
	if (code != SMP_CMD_PAIRING_REQ && code != SMP_CMD_SECURITY_REQ &&
	    !conn->smp_chan) {
		BT_ERR("Unexpected SMP command 0x%02x. Disconnecting.", code);
		kfree_skb(skb);
		return -ENOTSUPP;
	}

1033 1034
	switch (code) {
	case SMP_CMD_PAIRING_REQ:
1035
		reason = smp_cmd_pairing_req(conn, skb);
1036 1037 1038
		break;

	case SMP_CMD_PAIRING_FAIL:
1039
		smp_failure(conn, 0);
1040 1041
		reason = 0;
		err = -EPERM;
1042 1043 1044
		break;

	case SMP_CMD_PAIRING_RSP:
1045
		reason = smp_cmd_pairing_rsp(conn, skb);
1046 1047 1048
		break;

	case SMP_CMD_SECURITY_REQ:
1049
		reason = smp_cmd_security_req(conn, skb);
1050 1051
		break;

1052
	case SMP_CMD_PAIRING_CONFIRM:
1053
		reason = smp_cmd_pairing_confirm(conn, skb);
1054 1055
		break;

1056
	case SMP_CMD_PAIRING_RANDOM:
1057
		reason = smp_cmd_pairing_random(conn, skb);
1058 1059
		break;

1060
	case SMP_CMD_ENCRYPT_INFO:
1061 1062 1063
		reason = smp_cmd_encrypt_info(conn, skb);
		break;

1064
	case SMP_CMD_MASTER_IDENT:
1065 1066 1067
		reason = smp_cmd_master_ident(conn, skb);
		break;

1068
	case SMP_CMD_IDENT_INFO:
1069 1070 1071
		reason = smp_cmd_ident_info(conn, skb);
		break;

1072
	case SMP_CMD_IDENT_ADDR_INFO:
1073 1074 1075
		reason = smp_cmd_ident_addr_info(conn, skb);
		break;

1076
	case SMP_CMD_SIGN_INFO:
1077 1078 1079 1080
		/* Just ignored */
		reason = 0;
		break;

1081 1082 1083 1084 1085
	default:
		BT_DBG("Unknown command code 0x%2.2x", code);

		reason = SMP_CMD_NOTSUPP;
		err = -EOPNOTSUPP;
1086
		goto done;
1087 1088
	}

1089 1090
done:
	if (reason)
1091
		smp_failure(conn, reason);
1092

1093 1094 1095
	kfree_skb(skb);
	return err;
}
1096 1097 1098 1099

int smp_distribute_keys(struct l2cap_conn *conn, __u8 force)
{
	struct smp_cmd_pairing *req, *rsp;
1100
	struct smp_chan *smp = conn->smp_chan;
1101 1102 1103 1104
	__u8 *keydist;

	BT_DBG("conn %p force %d", conn, force);

1105
	if (!test_bit(HCI_CONN_LE_SMP_PEND, &conn->hcon->flags))
1106 1107
		return 0;

1108
	rsp = (void *) &smp->prsp[1];
1109 1110 1111 1112 1113

	/* The responder sends its keys first */
	if (!force && conn->hcon->out && (rsp->resp_key_dist & 0x07))
		return 0;

1114
	req = (void *) &smp->preq[1];
1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128

	if (conn->hcon->out) {
		keydist = &rsp->init_key_dist;
		*keydist &= req->init_key_dist;
	} else {
		keydist = &rsp->resp_key_dist;
		*keydist &= req->resp_key_dist;
	}

	BT_DBG("keydist 0x%x", *keydist);

	if (*keydist & SMP_DIST_ENC_KEY) {
		struct smp_cmd_encrypt_info enc;
		struct smp_cmd_master_ident ident;
1129 1130
		struct hci_conn *hcon = conn->hcon;
		u8 authenticated;
1131 1132 1133 1134 1135 1136 1137 1138
		__le16 ediv;

		get_random_bytes(enc.ltk, sizeof(enc.ltk));
		get_random_bytes(&ediv, sizeof(ediv));
		get_random_bytes(ident.rand, sizeof(ident.rand));

		smp_send_cmd(conn, SMP_CMD_ENCRYPT_INFO, sizeof(enc), &enc);

1139
		authenticated = hcon->sec_level == BT_SECURITY_HIGH;
1140
		hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type,
1141 1142
			    HCI_SMP_LTK_SLAVE, 1, authenticated,
			    enc.ltk, smp->enc_key_size, ediv, ident.rand);
1143

1144
		ident.ediv = ediv;
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161

		smp_send_cmd(conn, SMP_CMD_MASTER_IDENT, sizeof(ident), &ident);

		*keydist &= ~SMP_DIST_ENC_KEY;
	}

	if (*keydist & SMP_DIST_ID_KEY) {
		struct smp_cmd_ident_addr_info addrinfo;
		struct smp_cmd_ident_info idinfo;

		/* Send a dummy key */
		get_random_bytes(idinfo.irk, sizeof(idinfo.irk));

		smp_send_cmd(conn, SMP_CMD_IDENT_INFO, sizeof(idinfo), &idinfo);

		/* Just public address */
		memset(&addrinfo, 0, sizeof(addrinfo));
1162
		bacpy(&addrinfo.bdaddr, &conn->hcon->src);
1163 1164

		smp_send_cmd(conn, SMP_CMD_IDENT_ADDR_INFO, sizeof(addrinfo),
1165
			     &addrinfo);
1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180

		*keydist &= ~SMP_DIST_ID_KEY;
	}

	if (*keydist & SMP_DIST_SIGN) {
		struct smp_cmd_sign_info sign;

		/* Send a dummy key */
		get_random_bytes(sign.csrk, sizeof(sign.csrk));

		smp_send_cmd(conn, SMP_CMD_SIGN_INFO, sizeof(sign), &sign);

		*keydist &= ~SMP_DIST_SIGN;
	}

1181
	if (conn->hcon->out || force || !(rsp->init_key_dist & 0x07)) {
1182
		clear_bit(HCI_CONN_LE_SMP_PEND, &conn->hcon->flags);
1183
		cancel_delayed_work_sync(&conn->security_timer);
1184
		smp_chan_destroy(conn);
1185 1186
	}

1187 1188
	return 0;
}