2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License version 2 as
7 published by the Free Software Foundation;
9 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
10 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
11 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
12 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
13 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
14 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
19 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
20 SOFTWARE IS DISCLAIMED.
23 #include <linux/debugfs.h>
24 #include <linux/scatterlist.h>
25 #include <linux/crypto.h>
26 #include <crypto/aes.h>
27 #include <crypto/algapi.h>
28 #include <crypto/hash.h>
29 #include <crypto/kpp.h>
31 #include <net/bluetooth/bluetooth.h>
32 #include <net/bluetooth/hci_core.h>
33 #include <net/bluetooth/l2cap.h>
34 #include <net/bluetooth/mgmt.h>
36 #include "ecdh_helper.h"
39 #define SMP_DEV(hdev) \
40 ((struct smp_dev *)((struct l2cap_chan *)((hdev)->smp_data))->data)
42 /* Low-level debug macros to be used for stuff that we don't want
43 * accidentally in dmesg, i.e. the values of the various crypto keys
44 * and the inputs & outputs of crypto functions.
47 #define SMP_DBG(fmt, ...) printk(KERN_DEBUG "%s: " fmt, __func__, \
50 #define SMP_DBG(fmt, ...) no_printk(KERN_DEBUG "%s: " fmt, __func__, \
54 #define SMP_ALLOW_CMD(smp, code) set_bit(code, &smp->allow_cmd)
56 /* Keys which are not distributed with Secure Connections */
57 #define SMP_SC_NO_DIST (SMP_DIST_ENC_KEY | SMP_DIST_LINK_KEY)
59 #define SMP_TIMEOUT msecs_to_jiffies(30000)
61 #define ID_ADDR_TIMEOUT msecs_to_jiffies(200)
63 #define AUTH_REQ_MASK(dev) (hci_dev_test_flag(dev, HCI_SC_ENABLED) ? \
65 #define KEY_DIST_MASK 0x07
67 /* Maximum message length that can be passed to aes_cmac */
68 #define CMAC_MSG_MAX 80
80 SMP_FLAG_DHKEY_PENDING,
87 /* Secure Connections OOB data */
93 struct crypto_shash *tfm_cmac;
94 struct crypto_kpp *tfm_ecdh;
98 struct l2cap_conn *conn;
99 struct delayed_work security_timer;
100 unsigned long allow_cmd; /* Bitmask of allowed commands */
102 u8 preq[7]; /* SMP Pairing Request */
103 u8 prsp[7]; /* SMP Pairing Response */
104 u8 prnd[16]; /* SMP Pairing Random (local) */
105 u8 rrnd[16]; /* SMP Pairing Random (remote) */
106 u8 pcnf[16]; /* SMP Pairing Confirm */
107 u8 tk[16]; /* SMP Temporary Key */
108 u8 rr[16]; /* Remote OOB ra/rb value */
109 u8 lr[16]; /* Local OOB ra/rb value */
115 struct smp_csrk *csrk;
116 struct smp_csrk *responder_csrk;
118 struct smp_ltk *responder_ltk;
119 struct smp_irk *remote_irk;
125 /* Secure Connections variables */
131 struct crypto_shash *tfm_cmac;
132 struct crypto_kpp *tfm_ecdh;
135 /* These debug key values are defined in the SMP section of the core
136 * specification. debug_pk is the public debug key and debug_sk the
139 static const u8 debug_pk[64] = {
140 0xe6, 0x9d, 0x35, 0x0e, 0x48, 0x01, 0x03, 0xcc,
141 0xdb, 0xfd, 0xf4, 0xac, 0x11, 0x91, 0xf4, 0xef,
142 0xb9, 0xa5, 0xf9, 0xe9, 0xa7, 0x83, 0x2c, 0x5e,
143 0x2c, 0xbe, 0x97, 0xf2, 0xd2, 0x03, 0xb0, 0x20,
145 0x8b, 0xd2, 0x89, 0x15, 0xd0, 0x8e, 0x1c, 0x74,
146 0x24, 0x30, 0xed, 0x8f, 0xc2, 0x45, 0x63, 0x76,
147 0x5c, 0x15, 0x52, 0x5a, 0xbf, 0x9a, 0x32, 0x63,
148 0x6d, 0xeb, 0x2a, 0x65, 0x49, 0x9c, 0x80, 0xdc,
151 static const u8 debug_sk[32] = {
152 0xbd, 0x1a, 0x3c, 0xcd, 0xa6, 0xb8, 0x99, 0x58,
153 0x99, 0xb7, 0x40, 0xeb, 0x7b, 0x60, 0xff, 0x4a,
154 0x50, 0x3f, 0x10, 0xd2, 0xe3, 0xb3, 0xc9, 0x74,
155 0x38, 0x5f, 0xc5, 0xa3, 0xd4, 0xf6, 0x49, 0x3f,
158 static inline void swap_buf(const u8 *src, u8 *dst, size_t len)
162 for (i = 0; i < len; i++)
163 dst[len - 1 - i] = src[i];
166 /* The following functions map to the LE SC SMP crypto functions
167 * AES-CMAC, f4, f5, f6, g2 and h6.
170 static int aes_cmac(struct crypto_shash *tfm, const u8 k[16], const u8 *m,
171 size_t len, u8 mac[16])
173 uint8_t tmp[16], mac_msb[16], msg_msb[CMAC_MSG_MAX];
176 if (len > CMAC_MSG_MAX)
180 BT_ERR("tfm %p", tfm);
184 /* Swap key and message from LSB to MSB */
185 swap_buf(k, tmp, 16);
186 swap_buf(m, msg_msb, len);
188 SMP_DBG("msg (len %zu) %*phN", len, (int) len, m);
189 SMP_DBG("key %16phN", k);
191 err = crypto_shash_setkey(tfm, tmp, 16);
193 BT_ERR("cipher setkey failed: %d", err);
197 err = crypto_shash_tfm_digest(tfm, msg_msb, len, mac_msb);
199 BT_ERR("Hash computation error %d", err);
203 swap_buf(mac_msb, mac, 16);
205 SMP_DBG("mac %16phN", mac);
210 static int smp_f4(struct crypto_shash *tfm_cmac, const u8 u[32],
211 const u8 v[32], const u8 x[16], u8 z, u8 res[16])
216 SMP_DBG("u %32phN", u);
217 SMP_DBG("v %32phN", v);
218 SMP_DBG("x %16phN z %02x", x, z);
221 memcpy(m + 1, v, 32);
222 memcpy(m + 33, u, 32);
224 err = aes_cmac(tfm_cmac, x, m, sizeof(m), res);
228 SMP_DBG("res %16phN", res);
233 static int smp_f5(struct crypto_shash *tfm_cmac, const u8 w[32],
234 const u8 n1[16], const u8 n2[16], const u8 a1[7],
235 const u8 a2[7], u8 mackey[16], u8 ltk[16])
237 /* The btle, salt and length "magic" values are as defined in
238 * the SMP section of the Bluetooth core specification. In ASCII
239 * the btle value ends up being 'btle'. The salt is just a
240 * random number whereas length is the value 256 in little
243 const u8 btle[4] = { 0x65, 0x6c, 0x74, 0x62 };
244 const u8 salt[16] = { 0xbe, 0x83, 0x60, 0x5a, 0xdb, 0x0b, 0x37, 0x60,
245 0x38, 0xa5, 0xf5, 0xaa, 0x91, 0x83, 0x88, 0x6c };
246 const u8 length[2] = { 0x00, 0x01 };
250 SMP_DBG("w %32phN", w);
251 SMP_DBG("n1 %16phN n2 %16phN", n1, n2);
252 SMP_DBG("a1 %7phN a2 %7phN", a1, a2);
254 err = aes_cmac(tfm_cmac, salt, w, 32, t);
258 SMP_DBG("t %16phN", t);
260 memcpy(m, length, 2);
261 memcpy(m + 2, a2, 7);
262 memcpy(m + 9, a1, 7);
263 memcpy(m + 16, n2, 16);
264 memcpy(m + 32, n1, 16);
265 memcpy(m + 48, btle, 4);
267 m[52] = 0; /* Counter */
269 err = aes_cmac(tfm_cmac, t, m, sizeof(m), mackey);
273 SMP_DBG("mackey %16phN", mackey);
275 m[52] = 1; /* Counter */
277 err = aes_cmac(tfm_cmac, t, m, sizeof(m), ltk);
281 SMP_DBG("ltk %16phN", ltk);
286 static int smp_f6(struct crypto_shash *tfm_cmac, const u8 w[16],
287 const u8 n1[16], const u8 n2[16], const u8 r[16],
288 const u8 io_cap[3], const u8 a1[7], const u8 a2[7],
294 SMP_DBG("w %16phN", w);
295 SMP_DBG("n1 %16phN n2 %16phN", n1, n2);
296 SMP_DBG("r %16phN io_cap %3phN a1 %7phN a2 %7phN", r, io_cap, a1, a2);
299 memcpy(m + 7, a1, 7);
300 memcpy(m + 14, io_cap, 3);
301 memcpy(m + 17, r, 16);
302 memcpy(m + 33, n2, 16);
303 memcpy(m + 49, n1, 16);
305 err = aes_cmac(tfm_cmac, w, m, sizeof(m), res);
309 SMP_DBG("res %16phN", res);
314 static int smp_g2(struct crypto_shash *tfm_cmac, const u8 u[32], const u8 v[32],
315 const u8 x[16], const u8 y[16], u32 *val)
320 SMP_DBG("u %32phN", u);
321 SMP_DBG("v %32phN", v);
322 SMP_DBG("x %16phN y %16phN", x, y);
325 memcpy(m + 16, v, 32);
326 memcpy(m + 48, u, 32);
328 err = aes_cmac(tfm_cmac, x, m, sizeof(m), tmp);
332 *val = get_unaligned_le32(tmp);
335 SMP_DBG("val %06u", *val);
340 static int smp_h6(struct crypto_shash *tfm_cmac, const u8 w[16],
341 const u8 key_id[4], u8 res[16])
345 SMP_DBG("w %16phN key_id %4phN", w, key_id);
347 err = aes_cmac(tfm_cmac, w, key_id, 4, res);
351 SMP_DBG("res %16phN", res);
356 static int smp_h7(struct crypto_shash *tfm_cmac, const u8 w[16],
357 const u8 salt[16], u8 res[16])
361 SMP_DBG("w %16phN salt %16phN", w, salt);
363 err = aes_cmac(tfm_cmac, salt, w, 16, res);
367 SMP_DBG("res %16phN", res);
372 /* The following functions map to the legacy SMP crypto functions e, c1,
376 static int smp_e(const u8 *k, u8 *r)
378 struct crypto_aes_ctx ctx;
379 uint8_t tmp[16], data[16];
382 SMP_DBG("k %16phN r %16phN", k, r);
384 /* The most significant octet of key corresponds to k[0] */
385 swap_buf(k, tmp, 16);
387 err = aes_expandkey(&ctx, tmp, 16);
389 BT_ERR("cipher setkey failed: %d", err);
393 /* Most significant octet of plaintextData corresponds to data[0] */
394 swap_buf(r, data, 16);
396 aes_encrypt(&ctx, data, data);
398 /* Most significant octet of encryptedData corresponds to data[0] */
399 swap_buf(data, r, 16);
401 SMP_DBG("r %16phN", r);
403 memzero_explicit(&ctx, sizeof(ctx));
407 static int smp_c1(const u8 k[16],
408 const u8 r[16], const u8 preq[7], const u8 pres[7], u8 _iat,
409 const bdaddr_t *ia, u8 _rat, const bdaddr_t *ra, u8 res[16])
414 SMP_DBG("k %16phN r %16phN", k, r);
415 SMP_DBG("iat %u ia %6phN rat %u ra %6phN", _iat, ia, _rat, ra);
416 SMP_DBG("preq %7phN pres %7phN", preq, pres);
420 /* p1 = pres || preq || _rat || _iat */
423 memcpy(p1 + 2, preq, 7);
424 memcpy(p1 + 9, pres, 7);
426 SMP_DBG("p1 %16phN", p1);
429 crypto_xor_cpy(res, r, p1, sizeof(p1));
431 /* res = e(k, res) */
434 BT_ERR("Encrypt data error");
438 /* p2 = padding || ia || ra */
440 memcpy(p2 + 6, ia, 6);
441 memset(p2 + 12, 0, 4);
443 SMP_DBG("p2 %16phN", p2);
445 /* res = res XOR p2 */
446 crypto_xor(res, p2, sizeof(p2));
448 /* res = e(k, res) */
451 BT_ERR("Encrypt data error");
456 static int smp_s1(const u8 k[16],
457 const u8 r1[16], const u8 r2[16], u8 _r[16])
461 /* Just least significant octets from r1 and r2 are considered */
463 memcpy(_r + 8, r1, 8);
467 BT_ERR("Encrypt data error");
472 static int smp_ah(const u8 irk[16], const u8 r[3], u8 res[3])
477 /* r' = padding || r */
479 memset(_res + 3, 0, 13);
481 err = smp_e(irk, _res);
483 BT_ERR("Encrypt error");
487 /* The output of the random address function ah is:
488 * ah(k, r) = e(k, r') mod 2^24
489 * The output of the security function e is then truncated to 24 bits
490 * by taking the least significant 24 bits of the output of e as the
493 memcpy(res, _res, 3);
498 bool smp_irk_matches(struct hci_dev *hdev, const u8 irk[16],
499 const bdaddr_t *bdaddr)
501 struct l2cap_chan *chan = hdev->smp_data;
505 if (!chan || !chan->data)
508 bt_dev_dbg(hdev, "RPA %pMR IRK %*phN", bdaddr, 16, irk);
510 err = smp_ah(irk, &bdaddr->b[3], hash);
514 return !crypto_memneq(bdaddr->b, hash, 3);
517 int smp_generate_rpa(struct hci_dev *hdev, const u8 irk[16], bdaddr_t *rpa)
519 struct l2cap_chan *chan = hdev->smp_data;
522 if (!chan || !chan->data)
525 get_random_bytes(&rpa->b[3], 3);
527 rpa->b[5] &= 0x3f; /* Clear two most significant bits */
528 rpa->b[5] |= 0x40; /* Set second most significant bit */
530 err = smp_ah(irk, &rpa->b[3], rpa->b);
534 bt_dev_dbg(hdev, "RPA %pMR", rpa);
539 int smp_generate_oob(struct hci_dev *hdev, u8 hash[16], u8 rand[16])
541 struct l2cap_chan *chan = hdev->smp_data;
545 if (!chan || !chan->data)
550 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS)) {
551 bt_dev_dbg(hdev, "Using debug keys");
552 err = set_ecdh_privkey(smp->tfm_ecdh, debug_sk);
555 memcpy(smp->local_pk, debug_pk, 64);
556 smp->debug_key = true;
559 /* Generate key pair for Secure Connections */
560 err = generate_ecdh_keys(smp->tfm_ecdh, smp->local_pk);
564 /* This is unlikely, but we need to check that
565 * we didn't accidentally generate a debug key.
567 if (crypto_memneq(smp->local_pk, debug_pk, 64))
570 smp->debug_key = false;
573 SMP_DBG("OOB Public Key X: %32phN", smp->local_pk);
574 SMP_DBG("OOB Public Key Y: %32phN", smp->local_pk + 32);
576 get_random_bytes(smp->local_rand, 16);
578 err = smp_f4(smp->tfm_cmac, smp->local_pk, smp->local_pk,
579 smp->local_rand, 0, hash);
583 memcpy(rand, smp->local_rand, 16);
585 smp->local_oob = true;
590 static void smp_send_cmd(struct l2cap_conn *conn, u8 code, u16 len, void *data)
592 struct l2cap_chan *chan = conn->smp;
593 struct smp_chan *smp;
600 bt_dev_dbg(conn->hcon->hdev, "code 0x%2.2x", code);
602 iv[0].iov_base = &code;
605 iv[1].iov_base = data;
608 memset(&msg, 0, sizeof(msg));
610 iov_iter_kvec(&msg.msg_iter, ITER_SOURCE, iv, 2, 1 + len);
612 l2cap_chan_send(chan, &msg, 1 + len);
619 cancel_delayed_work_sync(&smp->security_timer);
620 schedule_delayed_work(&smp->security_timer, SMP_TIMEOUT);
623 static u8 authreq_to_seclevel(u8 authreq)
625 if (authreq & SMP_AUTH_MITM) {
626 if (authreq & SMP_AUTH_SC)
627 return BT_SECURITY_FIPS;
629 return BT_SECURITY_HIGH;
631 return BT_SECURITY_MEDIUM;
635 static __u8 seclevel_to_authreq(__u8 sec_level)
638 case BT_SECURITY_FIPS:
639 case BT_SECURITY_HIGH:
640 return SMP_AUTH_MITM | SMP_AUTH_BONDING;
641 case BT_SECURITY_MEDIUM:
642 return SMP_AUTH_BONDING;
644 return SMP_AUTH_NONE;
648 static void build_pairing_cmd(struct l2cap_conn *conn,
649 struct smp_cmd_pairing *req,
650 struct smp_cmd_pairing *rsp, __u8 authreq)
652 struct l2cap_chan *chan = conn->smp;
653 struct smp_chan *smp = chan->data;
654 struct hci_conn *hcon = conn->hcon;
655 struct hci_dev *hdev = hcon->hdev;
656 u8 local_dist = 0, remote_dist = 0, oob_flag = SMP_OOB_NOT_PRESENT;
658 if (hci_dev_test_flag(hdev, HCI_BONDABLE)) {
659 local_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
660 remote_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
661 authreq |= SMP_AUTH_BONDING;
663 authreq &= ~SMP_AUTH_BONDING;
666 if (hci_dev_test_flag(hdev, HCI_RPA_RESOLVING))
667 remote_dist |= SMP_DIST_ID_KEY;
669 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
670 local_dist |= SMP_DIST_ID_KEY;
672 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
673 (authreq & SMP_AUTH_SC)) {
674 struct oob_data *oob_data;
677 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
678 local_dist |= SMP_DIST_LINK_KEY;
679 remote_dist |= SMP_DIST_LINK_KEY;
682 if (hcon->dst_type == ADDR_LE_DEV_PUBLIC)
683 bdaddr_type = BDADDR_LE_PUBLIC;
685 bdaddr_type = BDADDR_LE_RANDOM;
687 oob_data = hci_find_remote_oob_data(hdev, &hcon->dst,
689 if (oob_data && oob_data->present) {
690 set_bit(SMP_FLAG_REMOTE_OOB, &smp->flags);
691 oob_flag = SMP_OOB_PRESENT;
692 memcpy(smp->rr, oob_data->rand256, 16);
693 memcpy(smp->pcnf, oob_data->hash256, 16);
694 SMP_DBG("OOB Remote Confirmation: %16phN", smp->pcnf);
695 SMP_DBG("OOB Remote Random: %16phN", smp->rr);
699 authreq &= ~SMP_AUTH_SC;
703 req->io_capability = conn->hcon->io_capability;
704 req->oob_flag = oob_flag;
705 req->max_key_size = hdev->le_max_key_size;
706 req->init_key_dist = local_dist;
707 req->resp_key_dist = remote_dist;
708 req->auth_req = (authreq & AUTH_REQ_MASK(hdev));
710 smp->remote_key_dist = remote_dist;
714 rsp->io_capability = conn->hcon->io_capability;
715 rsp->oob_flag = oob_flag;
716 rsp->max_key_size = hdev->le_max_key_size;
717 rsp->init_key_dist = req->init_key_dist & remote_dist;
718 rsp->resp_key_dist = req->resp_key_dist & local_dist;
719 rsp->auth_req = (authreq & AUTH_REQ_MASK(hdev));
721 smp->remote_key_dist = rsp->init_key_dist;
724 static u8 check_enc_key_size(struct l2cap_conn *conn, __u8 max_key_size)
726 struct l2cap_chan *chan = conn->smp;
727 struct hci_dev *hdev = conn->hcon->hdev;
728 struct smp_chan *smp = chan->data;
730 if (conn->hcon->pending_sec_level == BT_SECURITY_FIPS &&
731 max_key_size != SMP_MAX_ENC_KEY_SIZE)
732 return SMP_ENC_KEY_SIZE;
734 if (max_key_size > hdev->le_max_key_size ||
735 max_key_size < SMP_MIN_ENC_KEY_SIZE)
736 return SMP_ENC_KEY_SIZE;
738 smp->enc_key_size = max_key_size;
743 static void smp_chan_destroy(struct l2cap_conn *conn)
745 struct l2cap_chan *chan = conn->smp;
746 struct smp_chan *smp = chan->data;
747 struct hci_conn *hcon = conn->hcon;
752 cancel_delayed_work_sync(&smp->security_timer);
754 complete = test_bit(SMP_FLAG_COMPLETE, &smp->flags);
755 mgmt_smp_complete(hcon, complete);
757 kfree_sensitive(smp->csrk);
758 kfree_sensitive(smp->responder_csrk);
759 kfree_sensitive(smp->link_key);
761 crypto_free_shash(smp->tfm_cmac);
762 crypto_free_kpp(smp->tfm_ecdh);
764 /* Ensure that we don't leave any debug key around if debug key
765 * support hasn't been explicitly enabled.
767 if (smp->ltk && smp->ltk->type == SMP_LTK_P256_DEBUG &&
768 !hci_dev_test_flag(hcon->hdev, HCI_KEEP_DEBUG_KEYS)) {
769 list_del_rcu(&smp->ltk->list);
770 kfree_rcu(smp->ltk, rcu);
774 /* If pairing failed clean up any keys we might have */
777 list_del_rcu(&smp->ltk->list);
778 kfree_rcu(smp->ltk, rcu);
781 if (smp->responder_ltk) {
782 list_del_rcu(&smp->responder_ltk->list);
783 kfree_rcu(smp->responder_ltk, rcu);
786 if (smp->remote_irk) {
787 list_del_rcu(&smp->remote_irk->list);
788 kfree_rcu(smp->remote_irk, rcu);
793 kfree_sensitive(smp);
797 static void smp_failure(struct l2cap_conn *conn, u8 reason)
799 struct hci_conn *hcon = conn->hcon;
800 struct l2cap_chan *chan = conn->smp;
803 smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason),
806 mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);
809 smp_chan_destroy(conn);
812 #define JUST_WORKS 0x00
813 #define JUST_CFM 0x01
814 #define REQ_PASSKEY 0x02
815 #define CFM_PASSKEY 0x03
817 #define DSP_PASSKEY 0x05
820 static const u8 gen_method[5][5] = {
821 { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
822 { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
823 { CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY },
824 { JUST_WORKS, JUST_CFM, JUST_WORKS, JUST_WORKS, JUST_CFM },
825 { CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, OVERLAP },
828 static const u8 sc_method[5][5] = {
829 { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
830 { JUST_WORKS, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY },
831 { DSP_PASSKEY, DSP_PASSKEY, REQ_PASSKEY, JUST_WORKS, DSP_PASSKEY },
832 { JUST_WORKS, JUST_CFM, JUST_WORKS, JUST_WORKS, JUST_CFM },
833 { DSP_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY },
836 static u8 get_auth_method(struct smp_chan *smp, u8 local_io, u8 remote_io)
838 /* If either side has unknown io_caps, use JUST_CFM (which gets
839 * converted later to JUST_WORKS if we're initiators.
841 if (local_io > SMP_IO_KEYBOARD_DISPLAY ||
842 remote_io > SMP_IO_KEYBOARD_DISPLAY)
845 if (test_bit(SMP_FLAG_SC, &smp->flags))
846 return sc_method[remote_io][local_io];
848 return gen_method[remote_io][local_io];
851 static int tk_request(struct l2cap_conn *conn, u8 remote_oob, u8 auth,
852 u8 local_io, u8 remote_io)
854 struct hci_conn *hcon = conn->hcon;
855 struct l2cap_chan *chan = conn->smp;
856 struct smp_chan *smp = chan->data;
860 /* Initialize key for JUST WORKS */
861 memset(smp->tk, 0, sizeof(smp->tk));
862 clear_bit(SMP_FLAG_TK_VALID, &smp->flags);
864 bt_dev_dbg(hcon->hdev, "auth:%u lcl:%u rem:%u", auth, local_io,
867 /* If neither side wants MITM, either "just" confirm an incoming
868 * request or use just-works for outgoing ones. The JUST_CFM
869 * will be converted to JUST_WORKS if necessary later in this
870 * function. If either side has MITM look up the method from the
873 if (!(auth & SMP_AUTH_MITM))
874 smp->method = JUST_CFM;
876 smp->method = get_auth_method(smp, local_io, remote_io);
878 /* Don't confirm locally initiated pairing attempts */
879 if (smp->method == JUST_CFM && test_bit(SMP_FLAG_INITIATOR,
881 smp->method = JUST_WORKS;
883 /* Don't bother user space with no IO capabilities */
884 if (smp->method == JUST_CFM &&
885 hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
886 smp->method = JUST_WORKS;
888 /* If Just Works, Continue with Zero TK */
889 if (smp->method == JUST_WORKS) {
890 set_bit(SMP_FLAG_TK_VALID, &smp->flags);
894 /* If this function is used for SC -> legacy fallback we
895 * can only recover the just-works case.
897 if (test_bit(SMP_FLAG_SC, &smp->flags))
900 /* Not Just Works/Confirm results in MITM Authentication */
901 if (smp->method != JUST_CFM) {
902 set_bit(SMP_FLAG_MITM_AUTH, &smp->flags);
903 if (hcon->pending_sec_level < BT_SECURITY_HIGH)
904 hcon->pending_sec_level = BT_SECURITY_HIGH;
907 /* If both devices have Keyboard-Display I/O, the initiator
908 * Confirms and the responder Enters the passkey.
910 if (smp->method == OVERLAP) {
911 if (hcon->role == HCI_ROLE_MASTER)
912 smp->method = CFM_PASSKEY;
914 smp->method = REQ_PASSKEY;
917 /* Generate random passkey. */
918 if (smp->method == CFM_PASSKEY) {
919 memset(smp->tk, 0, sizeof(smp->tk));
920 get_random_bytes(&passkey, sizeof(passkey));
922 put_unaligned_le32(passkey, smp->tk);
923 bt_dev_dbg(hcon->hdev, "PassKey: %u", passkey);
924 set_bit(SMP_FLAG_TK_VALID, &smp->flags);
927 if (smp->method == REQ_PASSKEY)
928 ret = mgmt_user_passkey_request(hcon->hdev, &hcon->dst,
929 hcon->type, hcon->dst_type);
930 else if (smp->method == JUST_CFM)
931 ret = mgmt_user_confirm_request(hcon->hdev, &hcon->dst,
932 hcon->type, hcon->dst_type,
935 ret = mgmt_user_passkey_notify(hcon->hdev, &hcon->dst,
936 hcon->type, hcon->dst_type,
942 static u8 smp_confirm(struct smp_chan *smp)
944 struct l2cap_conn *conn = smp->conn;
945 struct smp_cmd_pairing_confirm cp;
948 bt_dev_dbg(conn->hcon->hdev, "conn %p", conn);
950 ret = smp_c1(smp->tk, smp->prnd, smp->preq, smp->prsp,
951 conn->hcon->init_addr_type, &conn->hcon->init_addr,
952 conn->hcon->resp_addr_type, &conn->hcon->resp_addr,
955 return SMP_UNSPECIFIED;
957 clear_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
959 smp_send_cmd(smp->conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cp), &cp);
962 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
964 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
969 static u8 smp_random(struct smp_chan *smp)
971 struct l2cap_conn *conn = smp->conn;
972 struct hci_conn *hcon = conn->hcon;
976 bt_dev_dbg(conn->hcon->hdev, "conn %p %s", conn,
977 conn->hcon->out ? "initiator" : "responder");
979 ret = smp_c1(smp->tk, smp->rrnd, smp->preq, smp->prsp,
980 hcon->init_addr_type, &hcon->init_addr,
981 hcon->resp_addr_type, &hcon->resp_addr, confirm);
983 return SMP_UNSPECIFIED;
985 if (crypto_memneq(smp->pcnf, confirm, sizeof(smp->pcnf))) {
986 bt_dev_err(hcon->hdev, "pairing failed "
987 "(confirmation values mismatch)");
988 return SMP_CONFIRM_FAILED;
996 smp_s1(smp->tk, smp->rrnd, smp->prnd, stk);
998 if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags))
999 return SMP_UNSPECIFIED;
1001 hci_le_start_enc(hcon, ediv, rand, stk, smp->enc_key_size);
1002 hcon->enc_key_size = smp->enc_key_size;
1003 set_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags);
1009 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
1012 smp_s1(smp->tk, smp->prnd, smp->rrnd, stk);
1014 if (hcon->pending_sec_level == BT_SECURITY_HIGH)
1019 /* Even though there's no _RESPONDER suffix this is the
1020 * responder STK we're adding for later lookup (the initiator
1021 * STK never needs to be stored).
1023 hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type,
1024 SMP_STK, auth, stk, smp->enc_key_size, ediv, rand);
1030 static void smp_notify_keys(struct l2cap_conn *conn)
1032 struct l2cap_chan *chan = conn->smp;
1033 struct smp_chan *smp = chan->data;
1034 struct hci_conn *hcon = conn->hcon;
1035 struct hci_dev *hdev = hcon->hdev;
1036 struct smp_cmd_pairing *req = (void *) &smp->preq[1];
1037 struct smp_cmd_pairing *rsp = (void *) &smp->prsp[1];
1040 if (hcon->type == ACL_LINK) {
1041 if (hcon->key_type == HCI_LK_DEBUG_COMBINATION)
1044 persistent = !test_bit(HCI_CONN_FLUSH_KEY,
1047 /* The LTKs, IRKs and CSRKs should be persistent only if
1048 * both sides had the bonding bit set in their
1049 * authentication requests.
1051 persistent = !!((req->auth_req & rsp->auth_req) &
1055 if (smp->remote_irk) {
1056 smp->remote_irk->link_type = hcon->type;
1057 mgmt_new_irk(hdev, smp->remote_irk, persistent);
1059 /* Now that user space can be considered to know the
1060 * identity address track the connection based on it
1061 * from now on (assuming this is an LE link).
1063 if (hcon->type == LE_LINK) {
1064 bacpy(&hcon->dst, &smp->remote_irk->bdaddr);
1065 hcon->dst_type = smp->remote_irk->addr_type;
1066 /* Use a short delay to make sure the new address is
1067 * propagated _before_ the channels.
1069 queue_delayed_work(hdev->workqueue,
1070 &conn->id_addr_timer,
1076 smp->csrk->link_type = hcon->type;
1077 smp->csrk->bdaddr_type = hcon->dst_type;
1078 bacpy(&smp->csrk->bdaddr, &hcon->dst);
1079 mgmt_new_csrk(hdev, smp->csrk, persistent);
1082 if (smp->responder_csrk) {
1083 smp->responder_csrk->link_type = hcon->type;
1084 smp->responder_csrk->bdaddr_type = hcon->dst_type;
1085 bacpy(&smp->responder_csrk->bdaddr, &hcon->dst);
1086 mgmt_new_csrk(hdev, smp->responder_csrk, persistent);
1090 smp->ltk->link_type = hcon->type;
1091 smp->ltk->bdaddr_type = hcon->dst_type;
1092 bacpy(&smp->ltk->bdaddr, &hcon->dst);
1093 mgmt_new_ltk(hdev, smp->ltk, persistent);
1096 if (smp->responder_ltk) {
1097 smp->responder_ltk->link_type = hcon->type;
1098 smp->responder_ltk->bdaddr_type = hcon->dst_type;
1099 bacpy(&smp->responder_ltk->bdaddr, &hcon->dst);
1100 mgmt_new_ltk(hdev, smp->responder_ltk, persistent);
1103 if (smp->link_key) {
1104 struct link_key *key;
1107 if (test_bit(SMP_FLAG_DEBUG_KEY, &smp->flags))
1108 type = HCI_LK_DEBUG_COMBINATION;
1109 else if (hcon->sec_level == BT_SECURITY_FIPS)
1110 type = HCI_LK_AUTH_COMBINATION_P256;
1112 type = HCI_LK_UNAUTH_COMBINATION_P256;
1114 key = hci_add_link_key(hdev, smp->conn->hcon, &hcon->dst,
1115 smp->link_key, type, 0, &persistent);
1117 key->link_type = hcon->type;
1118 key->bdaddr_type = hcon->dst_type;
1119 mgmt_new_link_key(hdev, key, persistent);
1121 /* Don't keep debug keys around if the relevant
1124 if (!hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS) &&
1125 key->type == HCI_LK_DEBUG_COMBINATION) {
1126 list_del_rcu(&key->list);
1127 kfree_rcu(key, rcu);
1133 static void sc_add_ltk(struct smp_chan *smp)
1135 struct hci_conn *hcon = smp->conn->hcon;
1138 if (test_bit(SMP_FLAG_DEBUG_KEY, &smp->flags))
1139 key_type = SMP_LTK_P256_DEBUG;
1141 key_type = SMP_LTK_P256;
1143 if (hcon->pending_sec_level == BT_SECURITY_FIPS)
1148 smp->ltk = hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type,
1149 key_type, auth, smp->tk, smp->enc_key_size,
1153 static void sc_generate_link_key(struct smp_chan *smp)
1155 /* From core spec. Spells out in ASCII as 'lebr'. */
1156 const u8 lebr[4] = { 0x72, 0x62, 0x65, 0x6c };
1158 smp->link_key = kzalloc(16, GFP_KERNEL);
1162 if (test_bit(SMP_FLAG_CT2, &smp->flags)) {
1163 /* SALT = 0x000000000000000000000000746D7031 */
1164 const u8 salt[16] = { 0x31, 0x70, 0x6d, 0x74 };
1166 if (smp_h7(smp->tfm_cmac, smp->tk, salt, smp->link_key)) {
1167 kfree_sensitive(smp->link_key);
1168 smp->link_key = NULL;
1172 /* From core spec. Spells out in ASCII as 'tmp1'. */
1173 const u8 tmp1[4] = { 0x31, 0x70, 0x6d, 0x74 };
1175 if (smp_h6(smp->tfm_cmac, smp->tk, tmp1, smp->link_key)) {
1176 kfree_sensitive(smp->link_key);
1177 smp->link_key = NULL;
1182 if (smp_h6(smp->tfm_cmac, smp->link_key, lebr, smp->link_key)) {
1183 kfree_sensitive(smp->link_key);
1184 smp->link_key = NULL;
1189 static void smp_allow_key_dist(struct smp_chan *smp)
1191 /* Allow the first expected phase 3 PDU. The rest of the PDUs
1192 * will be allowed in each PDU handler to ensure we receive
1193 * them in the correct order.
1195 if (smp->remote_key_dist & SMP_DIST_ENC_KEY)
1196 SMP_ALLOW_CMD(smp, SMP_CMD_ENCRYPT_INFO);
1197 else if (smp->remote_key_dist & SMP_DIST_ID_KEY)
1198 SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_INFO);
1199 else if (smp->remote_key_dist & SMP_DIST_SIGN)
1200 SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO);
1203 static void sc_generate_ltk(struct smp_chan *smp)
1205 /* From core spec. Spells out in ASCII as 'brle'. */
1206 const u8 brle[4] = { 0x65, 0x6c, 0x72, 0x62 };
1207 struct hci_conn *hcon = smp->conn->hcon;
1208 struct hci_dev *hdev = hcon->hdev;
1209 struct link_key *key;
1211 key = hci_find_link_key(hdev, &hcon->dst);
1213 bt_dev_err(hdev, "no Link Key found to generate LTK");
1217 if (key->type == HCI_LK_DEBUG_COMBINATION)
1218 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
1220 if (test_bit(SMP_FLAG_CT2, &smp->flags)) {
1221 /* SALT = 0x000000000000000000000000746D7032 */
1222 const u8 salt[16] = { 0x32, 0x70, 0x6d, 0x74 };
1224 if (smp_h7(smp->tfm_cmac, key->val, salt, smp->tk))
1227 /* From core spec. Spells out in ASCII as 'tmp2'. */
1228 const u8 tmp2[4] = { 0x32, 0x70, 0x6d, 0x74 };
1230 if (smp_h6(smp->tfm_cmac, key->val, tmp2, smp->tk))
1234 if (smp_h6(smp->tfm_cmac, smp->tk, brle, smp->tk))
1240 static void smp_distribute_keys(struct smp_chan *smp)
1242 struct smp_cmd_pairing *req, *rsp;
1243 struct l2cap_conn *conn = smp->conn;
1244 struct hci_conn *hcon = conn->hcon;
1245 struct hci_dev *hdev = hcon->hdev;
1248 bt_dev_dbg(hdev, "conn %p", conn);
1250 rsp = (void *) &smp->prsp[1];
1252 /* The responder sends its keys first */
1253 if (hcon->out && (smp->remote_key_dist & KEY_DIST_MASK)) {
1254 smp_allow_key_dist(smp);
1258 req = (void *) &smp->preq[1];
1261 keydist = &rsp->init_key_dist;
1262 *keydist &= req->init_key_dist;
1264 keydist = &rsp->resp_key_dist;
1265 *keydist &= req->resp_key_dist;
1268 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
1269 if (hcon->type == LE_LINK && (*keydist & SMP_DIST_LINK_KEY))
1270 sc_generate_link_key(smp);
1271 if (hcon->type == ACL_LINK && (*keydist & SMP_DIST_ENC_KEY))
1272 sc_generate_ltk(smp);
1274 /* Clear the keys which are generated but not distributed */
1275 *keydist &= ~SMP_SC_NO_DIST;
1278 bt_dev_dbg(hdev, "keydist 0x%x", *keydist);
1280 if (*keydist & SMP_DIST_ENC_KEY) {
1281 struct smp_cmd_encrypt_info enc;
1282 struct smp_cmd_initiator_ident ident;
1283 struct smp_ltk *ltk;
1288 /* Make sure we generate only the significant amount of
1289 * bytes based on the encryption key size, and set the rest
1290 * of the value to zeroes.
1292 get_random_bytes(enc.ltk, smp->enc_key_size);
1293 memset(enc.ltk + smp->enc_key_size, 0,
1294 sizeof(enc.ltk) - smp->enc_key_size);
1296 get_random_bytes(&ediv, sizeof(ediv));
1297 get_random_bytes(&rand, sizeof(rand));
1299 smp_send_cmd(conn, SMP_CMD_ENCRYPT_INFO, sizeof(enc), &enc);
1301 authenticated = hcon->sec_level == BT_SECURITY_HIGH;
1302 ltk = hci_add_ltk(hdev, &hcon->dst, hcon->dst_type,
1303 SMP_LTK_RESPONDER, authenticated, enc.ltk,
1304 smp->enc_key_size, ediv, rand);
1305 smp->responder_ltk = ltk;
1310 smp_send_cmd(conn, SMP_CMD_INITIATOR_IDENT, sizeof(ident),
1313 *keydist &= ~SMP_DIST_ENC_KEY;
1316 if (*keydist & SMP_DIST_ID_KEY) {
1317 struct smp_cmd_ident_addr_info addrinfo;
1318 struct smp_cmd_ident_info idinfo;
1320 memcpy(idinfo.irk, hdev->irk, sizeof(idinfo.irk));
1322 smp_send_cmd(conn, SMP_CMD_IDENT_INFO, sizeof(idinfo), &idinfo);
1324 /* The hci_conn contains the local identity address
1325 * after the connection has been established.
1327 * This is true even when the connection has been
1328 * established using a resolvable random address.
1330 bacpy(&addrinfo.bdaddr, &hcon->src);
1331 addrinfo.addr_type = hcon->src_type;
1333 smp_send_cmd(conn, SMP_CMD_IDENT_ADDR_INFO, sizeof(addrinfo),
1336 *keydist &= ~SMP_DIST_ID_KEY;
1339 if (*keydist & SMP_DIST_SIGN) {
1340 struct smp_cmd_sign_info sign;
1341 struct smp_csrk *csrk;
1343 /* Generate a new random key */
1344 get_random_bytes(sign.csrk, sizeof(sign.csrk));
1346 csrk = kzalloc(sizeof(*csrk), GFP_KERNEL);
1348 if (hcon->sec_level > BT_SECURITY_MEDIUM)
1349 csrk->type = MGMT_CSRK_LOCAL_AUTHENTICATED;
1351 csrk->type = MGMT_CSRK_LOCAL_UNAUTHENTICATED;
1352 memcpy(csrk->val, sign.csrk, sizeof(csrk->val));
1354 smp->responder_csrk = csrk;
1356 smp_send_cmd(conn, SMP_CMD_SIGN_INFO, sizeof(sign), &sign);
1358 *keydist &= ~SMP_DIST_SIGN;
1361 /* If there are still keys to be received wait for them */
1362 if (smp->remote_key_dist & KEY_DIST_MASK) {
1363 smp_allow_key_dist(smp);
1367 set_bit(SMP_FLAG_COMPLETE, &smp->flags);
1368 smp_notify_keys(conn);
1370 smp_chan_destroy(conn);
1373 static void smp_timeout(struct work_struct *work)
1375 struct smp_chan *smp = container_of(work, struct smp_chan,
1376 security_timer.work);
1377 struct l2cap_conn *conn = smp->conn;
1379 bt_dev_dbg(conn->hcon->hdev, "conn %p", conn);
1381 hci_disconnect(conn->hcon, HCI_ERROR_REMOTE_USER_TERM);
1384 static struct smp_chan *smp_chan_create(struct l2cap_conn *conn)
1386 struct hci_conn *hcon = conn->hcon;
1387 struct l2cap_chan *chan = conn->smp;
1388 struct smp_chan *smp;
1390 smp = kzalloc(sizeof(*smp), GFP_ATOMIC);
1394 smp->tfm_cmac = crypto_alloc_shash("cmac(aes)", 0, 0);
1395 if (IS_ERR(smp->tfm_cmac)) {
1396 bt_dev_err(hcon->hdev, "Unable to create CMAC crypto context");
1400 smp->tfm_ecdh = crypto_alloc_kpp("ecdh-nist-p256", 0, 0);
1401 if (IS_ERR(smp->tfm_ecdh)) {
1402 bt_dev_err(hcon->hdev, "Unable to create ECDH crypto context");
1409 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_FAIL);
1411 INIT_DELAYED_WORK(&smp->security_timer, smp_timeout);
1413 hci_conn_hold(hcon);
1418 crypto_free_shash(smp->tfm_cmac);
1420 kfree_sensitive(smp);
1424 static int sc_mackey_and_ltk(struct smp_chan *smp, u8 mackey[16], u8 ltk[16])
1426 struct hci_conn *hcon = smp->conn->hcon;
1427 u8 *na, *nb, a[7], b[7];
1437 memcpy(a, &hcon->init_addr, 6);
1438 memcpy(b, &hcon->resp_addr, 6);
1439 a[6] = hcon->init_addr_type;
1440 b[6] = hcon->resp_addr_type;
1442 return smp_f5(smp->tfm_cmac, smp->dhkey, na, nb, a, b, mackey, ltk);
1445 static void sc_dhkey_check(struct smp_chan *smp)
1447 struct hci_conn *hcon = smp->conn->hcon;
1448 struct smp_cmd_dhkey_check check;
1449 u8 a[7], b[7], *local_addr, *remote_addr;
1450 u8 io_cap[3], r[16];
1452 memcpy(a, &hcon->init_addr, 6);
1453 memcpy(b, &hcon->resp_addr, 6);
1454 a[6] = hcon->init_addr_type;
1455 b[6] = hcon->resp_addr_type;
1460 memcpy(io_cap, &smp->preq[1], 3);
1464 memcpy(io_cap, &smp->prsp[1], 3);
1467 memset(r, 0, sizeof(r));
1469 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
1470 put_unaligned_le32(hcon->passkey_notify, r);
1472 if (smp->method == REQ_OOB)
1473 memcpy(r, smp->rr, 16);
1475 smp_f6(smp->tfm_cmac, smp->mackey, smp->prnd, smp->rrnd, r, io_cap,
1476 local_addr, remote_addr, check.e);
1478 smp_send_cmd(smp->conn, SMP_CMD_DHKEY_CHECK, sizeof(check), &check);
1481 static u8 sc_passkey_send_confirm(struct smp_chan *smp)
1483 struct l2cap_conn *conn = smp->conn;
1484 struct hci_conn *hcon = conn->hcon;
1485 struct smp_cmd_pairing_confirm cfm;
1488 r = ((hcon->passkey_notify >> smp->passkey_round) & 0x01);
1491 get_random_bytes(smp->prnd, sizeof(smp->prnd));
1493 if (smp_f4(smp->tfm_cmac, smp->local_pk, smp->remote_pk, smp->prnd, r,
1495 return SMP_UNSPECIFIED;
1497 smp_send_cmd(conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cfm), &cfm);
1502 static u8 sc_passkey_round(struct smp_chan *smp, u8 smp_op)
1504 struct l2cap_conn *conn = smp->conn;
1505 struct hci_conn *hcon = conn->hcon;
1506 struct hci_dev *hdev = hcon->hdev;
1509 /* Ignore the PDU if we've already done 20 rounds (0 - 19) */
1510 if (smp->passkey_round >= 20)
1514 case SMP_CMD_PAIRING_RANDOM:
1515 r = ((hcon->passkey_notify >> smp->passkey_round) & 0x01);
1518 if (smp_f4(smp->tfm_cmac, smp->remote_pk, smp->local_pk,
1520 return SMP_UNSPECIFIED;
1522 if (crypto_memneq(smp->pcnf, cfm, 16))
1523 return SMP_CONFIRM_FAILED;
1525 smp->passkey_round++;
1527 if (smp->passkey_round == 20) {
1528 /* Generate MacKey and LTK */
1529 if (sc_mackey_and_ltk(smp, smp->mackey, smp->tk))
1530 return SMP_UNSPECIFIED;
1533 /* The round is only complete when the initiator
1534 * receives pairing random.
1537 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
1538 sizeof(smp->prnd), smp->prnd);
1539 if (smp->passkey_round == 20)
1540 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
1542 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
1546 /* Start the next round */
1547 if (smp->passkey_round != 20)
1548 return sc_passkey_round(smp, 0);
1550 /* Passkey rounds are complete - start DHKey Check */
1551 sc_dhkey_check(smp);
1552 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
1556 case SMP_CMD_PAIRING_CONFIRM:
1557 if (test_bit(SMP_FLAG_WAIT_USER, &smp->flags)) {
1558 set_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
1562 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
1565 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
1566 sizeof(smp->prnd), smp->prnd);
1570 return sc_passkey_send_confirm(smp);
1572 case SMP_CMD_PUBLIC_KEY:
1574 /* Initiating device starts the round */
1578 bt_dev_dbg(hdev, "Starting passkey round %u",
1579 smp->passkey_round + 1);
1581 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
1583 return sc_passkey_send_confirm(smp);
1589 static int sc_user_reply(struct smp_chan *smp, u16 mgmt_op, __le32 passkey)
1591 struct l2cap_conn *conn = smp->conn;
1592 struct hci_conn *hcon = conn->hcon;
1595 clear_bit(SMP_FLAG_WAIT_USER, &smp->flags);
1598 case MGMT_OP_USER_PASSKEY_NEG_REPLY:
1599 smp_failure(smp->conn, SMP_PASSKEY_ENTRY_FAILED);
1601 case MGMT_OP_USER_CONFIRM_NEG_REPLY:
1602 smp_failure(smp->conn, SMP_NUMERIC_COMP_FAILED);
1604 case MGMT_OP_USER_PASSKEY_REPLY:
1605 hcon->passkey_notify = le32_to_cpu(passkey);
1606 smp->passkey_round = 0;
1608 if (test_and_clear_bit(SMP_FLAG_CFM_PENDING, &smp->flags))
1609 smp_op = SMP_CMD_PAIRING_CONFIRM;
1613 if (sc_passkey_round(smp, smp_op))
1619 /* Initiator sends DHKey check first */
1621 sc_dhkey_check(smp);
1622 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
1623 } else if (test_and_clear_bit(SMP_FLAG_DHKEY_PENDING, &smp->flags)) {
1624 sc_dhkey_check(smp);
1631 int smp_user_confirm_reply(struct hci_conn *hcon, u16 mgmt_op, __le32 passkey)
1633 struct l2cap_conn *conn = hcon->l2cap_data;
1634 struct l2cap_chan *chan;
1635 struct smp_chan *smp;
1642 bt_dev_dbg(conn->hcon->hdev, "");
1648 l2cap_chan_lock(chan);
1656 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
1657 err = sc_user_reply(smp, mgmt_op, passkey);
1662 case MGMT_OP_USER_PASSKEY_REPLY:
1663 value = le32_to_cpu(passkey);
1664 memset(smp->tk, 0, sizeof(smp->tk));
1665 bt_dev_dbg(conn->hcon->hdev, "PassKey: %u", value);
1666 put_unaligned_le32(value, smp->tk);
1668 case MGMT_OP_USER_CONFIRM_REPLY:
1669 set_bit(SMP_FLAG_TK_VALID, &smp->flags);
1671 case MGMT_OP_USER_PASSKEY_NEG_REPLY:
1672 case MGMT_OP_USER_CONFIRM_NEG_REPLY:
1673 smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED);
1677 smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED);
1684 /* If it is our turn to send Pairing Confirm, do so now */
1685 if (test_bit(SMP_FLAG_CFM_PENDING, &smp->flags)) {
1686 u8 rsp = smp_confirm(smp);
1688 smp_failure(conn, rsp);
1692 l2cap_chan_unlock(chan);
1696 static void build_bredr_pairing_cmd(struct smp_chan *smp,
1697 struct smp_cmd_pairing *req,
1698 struct smp_cmd_pairing *rsp)
1700 struct l2cap_conn *conn = smp->conn;
1701 struct hci_dev *hdev = conn->hcon->hdev;
1702 u8 local_dist = 0, remote_dist = 0;
1704 if (hci_dev_test_flag(hdev, HCI_BONDABLE)) {
1705 local_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
1706 remote_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
1709 if (hci_dev_test_flag(hdev, HCI_RPA_RESOLVING))
1710 remote_dist |= SMP_DIST_ID_KEY;
1712 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
1713 local_dist |= SMP_DIST_ID_KEY;
1716 memset(req, 0, sizeof(*req));
1718 req->auth_req = SMP_AUTH_CT2;
1719 req->init_key_dist = local_dist;
1720 req->resp_key_dist = remote_dist;
1721 req->max_key_size = conn->hcon->enc_key_size;
1723 smp->remote_key_dist = remote_dist;
1728 memset(rsp, 0, sizeof(*rsp));
1730 rsp->auth_req = SMP_AUTH_CT2;
1731 rsp->max_key_size = conn->hcon->enc_key_size;
1732 rsp->init_key_dist = req->init_key_dist & remote_dist;
1733 rsp->resp_key_dist = req->resp_key_dist & local_dist;
1735 smp->remote_key_dist = rsp->init_key_dist;
1738 static u8 smp_cmd_pairing_req(struct l2cap_conn *conn, struct sk_buff *skb)
1740 struct smp_cmd_pairing rsp, *req = (void *) skb->data;
1741 struct l2cap_chan *chan = conn->smp;
1742 struct hci_dev *hdev = conn->hcon->hdev;
1743 struct smp_chan *smp;
1744 u8 key_size, auth, sec_level;
1747 bt_dev_dbg(hdev, "conn %p", conn);
1749 if (skb->len < sizeof(*req))
1750 return SMP_INVALID_PARAMS;
1752 if (conn->hcon->role != HCI_ROLE_SLAVE)
1753 return SMP_CMD_NOTSUPP;
1756 smp = smp_chan_create(conn);
1761 return SMP_UNSPECIFIED;
1763 /* We didn't start the pairing, so match remote */
1764 auth = req->auth_req & AUTH_REQ_MASK(hdev);
1766 if (!hci_dev_test_flag(hdev, HCI_BONDABLE) &&
1767 (auth & SMP_AUTH_BONDING))
1768 return SMP_PAIRING_NOTSUPP;
1770 if (hci_dev_test_flag(hdev, HCI_SC_ONLY) && !(auth & SMP_AUTH_SC))
1771 return SMP_AUTH_REQUIREMENTS;
1773 smp->preq[0] = SMP_CMD_PAIRING_REQ;
1774 memcpy(&smp->preq[1], req, sizeof(*req));
1775 skb_pull(skb, sizeof(*req));
1777 /* If the remote side's OOB flag is set it means it has
1778 * successfully received our local OOB data - therefore set the
1779 * flag to indicate that local OOB is in use.
1781 if (req->oob_flag == SMP_OOB_PRESENT && SMP_DEV(hdev)->local_oob)
1782 set_bit(SMP_FLAG_LOCAL_OOB, &smp->flags);
1784 /* SMP over BR/EDR requires special treatment */
1785 if (conn->hcon->type == ACL_LINK) {
1786 /* We must have a BR/EDR SC link */
1787 if (!test_bit(HCI_CONN_AES_CCM, &conn->hcon->flags) &&
1788 !hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP))
1789 return SMP_CROSS_TRANSP_NOT_ALLOWED;
1791 set_bit(SMP_FLAG_SC, &smp->flags);
1793 build_bredr_pairing_cmd(smp, req, &rsp);
1795 if (req->auth_req & SMP_AUTH_CT2)
1796 set_bit(SMP_FLAG_CT2, &smp->flags);
1798 key_size = min(req->max_key_size, rsp.max_key_size);
1799 if (check_enc_key_size(conn, key_size))
1800 return SMP_ENC_KEY_SIZE;
1802 /* Clear bits which are generated but not distributed */
1803 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1805 smp->prsp[0] = SMP_CMD_PAIRING_RSP;
1806 memcpy(&smp->prsp[1], &rsp, sizeof(rsp));
1807 smp_send_cmd(conn, SMP_CMD_PAIRING_RSP, sizeof(rsp), &rsp);
1809 smp_distribute_keys(smp);
1813 build_pairing_cmd(conn, req, &rsp, auth);
1815 if (rsp.auth_req & SMP_AUTH_SC) {
1816 set_bit(SMP_FLAG_SC, &smp->flags);
1818 if (rsp.auth_req & SMP_AUTH_CT2)
1819 set_bit(SMP_FLAG_CT2, &smp->flags);
1822 if (conn->hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
1823 sec_level = BT_SECURITY_MEDIUM;
1825 sec_level = authreq_to_seclevel(auth);
1827 if (sec_level > conn->hcon->pending_sec_level)
1828 conn->hcon->pending_sec_level = sec_level;
1830 /* If we need MITM check that it can be achieved */
1831 if (conn->hcon->pending_sec_level >= BT_SECURITY_HIGH) {
1834 method = get_auth_method(smp, conn->hcon->io_capability,
1835 req->io_capability);
1836 if (method == JUST_WORKS || method == JUST_CFM)
1837 return SMP_AUTH_REQUIREMENTS;
1840 key_size = min(req->max_key_size, rsp.max_key_size);
1841 if (check_enc_key_size(conn, key_size))
1842 return SMP_ENC_KEY_SIZE;
1844 get_random_bytes(smp->prnd, sizeof(smp->prnd));
1846 smp->prsp[0] = SMP_CMD_PAIRING_RSP;
1847 memcpy(&smp->prsp[1], &rsp, sizeof(rsp));
1849 smp_send_cmd(conn, SMP_CMD_PAIRING_RSP, sizeof(rsp), &rsp);
1851 clear_bit(SMP_FLAG_INITIATOR, &smp->flags);
1853 /* Strictly speaking we shouldn't allow Pairing Confirm for the
1854 * SC case, however some implementations incorrectly copy RFU auth
1855 * req bits from our security request, which may create a false
1856 * positive SC enablement.
1858 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
1860 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
1861 SMP_ALLOW_CMD(smp, SMP_CMD_PUBLIC_KEY);
1862 /* Clear bits which are generated but not distributed */
1863 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1864 /* Wait for Public Key from Initiating Device */
1868 /* Request setup of TK */
1869 ret = tk_request(conn, 0, auth, rsp.io_capability, req->io_capability);
1871 return SMP_UNSPECIFIED;
1876 static u8 sc_send_public_key(struct smp_chan *smp)
1878 struct hci_dev *hdev = smp->conn->hcon->hdev;
1880 bt_dev_dbg(hdev, "");
1882 if (test_bit(SMP_FLAG_LOCAL_OOB, &smp->flags)) {
1883 struct l2cap_chan *chan = hdev->smp_data;
1884 struct smp_dev *smp_dev;
1886 if (!chan || !chan->data)
1887 return SMP_UNSPECIFIED;
1889 smp_dev = chan->data;
1891 memcpy(smp->local_pk, smp_dev->local_pk, 64);
1892 memcpy(smp->lr, smp_dev->local_rand, 16);
1894 if (smp_dev->debug_key)
1895 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
1900 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS)) {
1901 bt_dev_dbg(hdev, "Using debug keys");
1902 if (set_ecdh_privkey(smp->tfm_ecdh, debug_sk))
1903 return SMP_UNSPECIFIED;
1904 memcpy(smp->local_pk, debug_pk, 64);
1905 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
1908 /* Generate key pair for Secure Connections */
1909 if (generate_ecdh_keys(smp->tfm_ecdh, smp->local_pk))
1910 return SMP_UNSPECIFIED;
1912 /* This is unlikely, but we need to check that
1913 * we didn't accidentally generate a debug key.
1915 if (crypto_memneq(smp->local_pk, debug_pk, 64))
1921 SMP_DBG("Local Public Key X: %32phN", smp->local_pk);
1922 SMP_DBG("Local Public Key Y: %32phN", smp->local_pk + 32);
1924 smp_send_cmd(smp->conn, SMP_CMD_PUBLIC_KEY, 64, smp->local_pk);
1929 static u8 smp_cmd_pairing_rsp(struct l2cap_conn *conn, struct sk_buff *skb)
1931 struct smp_cmd_pairing *req, *rsp = (void *) skb->data;
1932 struct l2cap_chan *chan = conn->smp;
1933 struct smp_chan *smp = chan->data;
1934 struct hci_dev *hdev = conn->hcon->hdev;
1938 bt_dev_dbg(hdev, "conn %p", conn);
1940 if (skb->len < sizeof(*rsp))
1941 return SMP_INVALID_PARAMS;
1943 if (conn->hcon->role != HCI_ROLE_MASTER)
1944 return SMP_CMD_NOTSUPP;
1946 skb_pull(skb, sizeof(*rsp));
1948 req = (void *) &smp->preq[1];
1950 key_size = min(req->max_key_size, rsp->max_key_size);
1951 if (check_enc_key_size(conn, key_size))
1952 return SMP_ENC_KEY_SIZE;
1954 auth = rsp->auth_req & AUTH_REQ_MASK(hdev);
1956 if (hci_dev_test_flag(hdev, HCI_SC_ONLY) && !(auth & SMP_AUTH_SC))
1957 return SMP_AUTH_REQUIREMENTS;
1959 /* If the remote side's OOB flag is set it means it has
1960 * successfully received our local OOB data - therefore set the
1961 * flag to indicate that local OOB is in use.
1963 if (rsp->oob_flag == SMP_OOB_PRESENT && SMP_DEV(hdev)->local_oob)
1964 set_bit(SMP_FLAG_LOCAL_OOB, &smp->flags);
1966 smp->prsp[0] = SMP_CMD_PAIRING_RSP;
1967 memcpy(&smp->prsp[1], rsp, sizeof(*rsp));
1969 /* Update remote key distribution in case the remote cleared
1970 * some bits that we had enabled in our request.
1972 smp->remote_key_dist &= rsp->resp_key_dist;
1974 if ((req->auth_req & SMP_AUTH_CT2) && (auth & SMP_AUTH_CT2))
1975 set_bit(SMP_FLAG_CT2, &smp->flags);
1977 /* For BR/EDR this means we're done and can start phase 3 */
1978 if (conn->hcon->type == ACL_LINK) {
1979 /* Clear bits which are generated but not distributed */
1980 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1981 smp_distribute_keys(smp);
1985 if ((req->auth_req & SMP_AUTH_SC) && (auth & SMP_AUTH_SC))
1986 set_bit(SMP_FLAG_SC, &smp->flags);
1987 else if (conn->hcon->pending_sec_level > BT_SECURITY_HIGH)
1988 conn->hcon->pending_sec_level = BT_SECURITY_HIGH;
1990 /* If we need MITM check that it can be achieved */
1991 if (conn->hcon->pending_sec_level >= BT_SECURITY_HIGH) {
1994 method = get_auth_method(smp, req->io_capability,
1995 rsp->io_capability);
1996 if (method == JUST_WORKS || method == JUST_CFM)
1997 return SMP_AUTH_REQUIREMENTS;
2000 get_random_bytes(smp->prnd, sizeof(smp->prnd));
2002 /* Update remote key distribution in case the remote cleared
2003 * some bits that we had enabled in our request.
2005 smp->remote_key_dist &= rsp->resp_key_dist;
2007 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
2008 /* Clear bits which are generated but not distributed */
2009 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
2010 SMP_ALLOW_CMD(smp, SMP_CMD_PUBLIC_KEY);
2011 return sc_send_public_key(smp);
2014 auth |= req->auth_req;
2016 ret = tk_request(conn, 0, auth, req->io_capability, rsp->io_capability);
2018 return SMP_UNSPECIFIED;
2020 set_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
2022 /* Can't compose response until we have been confirmed */
2023 if (test_bit(SMP_FLAG_TK_VALID, &smp->flags))
2024 return smp_confirm(smp);
2029 static u8 sc_check_confirm(struct smp_chan *smp)
2031 struct l2cap_conn *conn = smp->conn;
2033 bt_dev_dbg(conn->hcon->hdev, "");
2035 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
2036 return sc_passkey_round(smp, SMP_CMD_PAIRING_CONFIRM);
2038 if (conn->hcon->out) {
2039 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
2041 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2047 /* Work-around for some implementations that incorrectly copy RFU bits
2048 * from our security request and thereby create the impression that
2049 * we're doing SC when in fact the remote doesn't support it.
2051 static int fixup_sc_false_positive(struct smp_chan *smp)
2053 struct l2cap_conn *conn = smp->conn;
2054 struct hci_conn *hcon = conn->hcon;
2055 struct hci_dev *hdev = hcon->hdev;
2056 struct smp_cmd_pairing *req, *rsp;
2059 /* The issue is only observed when we're in responder role */
2061 return SMP_UNSPECIFIED;
2063 if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
2064 bt_dev_err(hdev, "refusing legacy fallback in SC-only mode");
2065 return SMP_UNSPECIFIED;
2068 bt_dev_err(hdev, "trying to fall back to legacy SMP");
2070 req = (void *) &smp->preq[1];
2071 rsp = (void *) &smp->prsp[1];
2073 /* Rebuild key dist flags which may have been cleared for SC */
2074 smp->remote_key_dist = (req->init_key_dist & rsp->resp_key_dist);
2076 auth = req->auth_req & AUTH_REQ_MASK(hdev);
2078 if (tk_request(conn, 0, auth, rsp->io_capability, req->io_capability)) {
2079 bt_dev_err(hdev, "failed to fall back to legacy SMP");
2080 return SMP_UNSPECIFIED;
2083 clear_bit(SMP_FLAG_SC, &smp->flags);
2088 static u8 smp_cmd_pairing_confirm(struct l2cap_conn *conn, struct sk_buff *skb)
2090 struct l2cap_chan *chan = conn->smp;
2091 struct smp_chan *smp = chan->data;
2092 struct hci_conn *hcon = conn->hcon;
2093 struct hci_dev *hdev = hcon->hdev;
2095 bt_dev_dbg(hdev, "conn %p %s", conn,
2096 hcon->out ? "initiator" : "responder");
2098 if (skb->len < sizeof(smp->pcnf))
2099 return SMP_INVALID_PARAMS;
2101 memcpy(smp->pcnf, skb->data, sizeof(smp->pcnf));
2102 skb_pull(skb, sizeof(smp->pcnf));
2104 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
2107 /* Public Key exchange must happen before any other steps */
2108 if (test_bit(SMP_FLAG_REMOTE_PK, &smp->flags))
2109 return sc_check_confirm(smp);
2111 bt_dev_err(hdev, "Unexpected SMP Pairing Confirm");
2113 ret = fixup_sc_false_positive(smp);
2118 if (conn->hcon->out) {
2119 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
2121 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2125 if (test_bit(SMP_FLAG_TK_VALID, &smp->flags))
2126 return smp_confirm(smp);
2128 set_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
2133 static u8 smp_cmd_pairing_random(struct l2cap_conn *conn, struct sk_buff *skb)
2135 struct l2cap_chan *chan = conn->smp;
2136 struct smp_chan *smp = chan->data;
2137 struct hci_conn *hcon = conn->hcon;
2138 u8 *pkax, *pkbx, *na, *nb, confirm_hint;
2142 bt_dev_dbg(hcon->hdev, "conn %p", conn);
2144 if (skb->len < sizeof(smp->rrnd))
2145 return SMP_INVALID_PARAMS;
2147 memcpy(smp->rrnd, skb->data, sizeof(smp->rrnd));
2148 skb_pull(skb, sizeof(smp->rrnd));
2150 if (!test_bit(SMP_FLAG_SC, &smp->flags))
2151 return smp_random(smp);
2154 pkax = smp->local_pk;
2155 pkbx = smp->remote_pk;
2159 pkax = smp->remote_pk;
2160 pkbx = smp->local_pk;
2165 if (smp->method == REQ_OOB) {
2167 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
2168 sizeof(smp->prnd), smp->prnd);
2169 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
2170 goto mackey_and_ltk;
2173 /* Passkey entry has special treatment */
2174 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
2175 return sc_passkey_round(smp, SMP_CMD_PAIRING_RANDOM);
2180 err = smp_f4(smp->tfm_cmac, smp->remote_pk, smp->local_pk,
2183 return SMP_UNSPECIFIED;
2185 if (crypto_memneq(smp->pcnf, cfm, 16))
2186 return SMP_CONFIRM_FAILED;
2188 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
2190 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
2192 /* Only Just-Works pairing requires extra checks */
2193 if (smp->method != JUST_WORKS)
2194 goto mackey_and_ltk;
2196 /* If there already exists long term key in local host, leave
2197 * the decision to user space since the remote device could
2198 * be legitimate or malicious.
2200 if (hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type,
2202 /* Set passkey to 0. The value can be any number since
2203 * it'll be ignored anyway.
2212 /* Generate MacKey and LTK */
2213 err = sc_mackey_and_ltk(smp, smp->mackey, smp->tk);
2215 return SMP_UNSPECIFIED;
2217 if (smp->method == JUST_WORKS || smp->method == REQ_OOB) {
2219 sc_dhkey_check(smp);
2220 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
2225 err = smp_g2(smp->tfm_cmac, pkax, pkbx, na, nb, &passkey);
2227 return SMP_UNSPECIFIED;
2232 err = mgmt_user_confirm_request(hcon->hdev, &hcon->dst, hcon->type,
2233 hcon->dst_type, passkey, confirm_hint);
2235 return SMP_UNSPECIFIED;
2237 set_bit(SMP_FLAG_WAIT_USER, &smp->flags);
2242 static bool smp_ltk_encrypt(struct l2cap_conn *conn, u8 sec_level)
2244 struct smp_ltk *key;
2245 struct hci_conn *hcon = conn->hcon;
2247 key = hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, hcon->role);
2251 if (smp_ltk_sec_level(key) < sec_level)
2254 if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags))
2257 hci_le_start_enc(hcon, key->ediv, key->rand, key->val, key->enc_size);
2258 hcon->enc_key_size = key->enc_size;
2260 /* We never store STKs for initiator role, so clear this flag */
2261 clear_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags);
2266 bool smp_sufficient_security(struct hci_conn *hcon, u8 sec_level,
2267 enum smp_key_pref key_pref)
2269 if (sec_level == BT_SECURITY_LOW)
2272 /* If we're encrypted with an STK but the caller prefers using
2273 * LTK claim insufficient security. This way we allow the
2274 * connection to be re-encrypted with an LTK, even if the LTK
2275 * provides the same level of security. Only exception is if we
2276 * don't have an LTK (e.g. because of key distribution bits).
2278 if (key_pref == SMP_USE_LTK &&
2279 test_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags) &&
2280 hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, hcon->role))
2283 if (hcon->sec_level >= sec_level)
2289 static u8 smp_cmd_security_req(struct l2cap_conn *conn, struct sk_buff *skb)
2291 struct smp_cmd_security_req *rp = (void *) skb->data;
2292 struct smp_cmd_pairing cp;
2293 struct hci_conn *hcon = conn->hcon;
2294 struct hci_dev *hdev = hcon->hdev;
2295 struct smp_chan *smp;
2298 bt_dev_dbg(hdev, "conn %p", conn);
2300 if (skb->len < sizeof(*rp))
2301 return SMP_INVALID_PARAMS;
2303 if (hcon->role != HCI_ROLE_MASTER)
2304 return SMP_CMD_NOTSUPP;
2306 auth = rp->auth_req & AUTH_REQ_MASK(hdev);
2308 if (hci_dev_test_flag(hdev, HCI_SC_ONLY) && !(auth & SMP_AUTH_SC))
2309 return SMP_AUTH_REQUIREMENTS;
2311 if (hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
2312 sec_level = BT_SECURITY_MEDIUM;
2314 sec_level = authreq_to_seclevel(auth);
2316 if (smp_sufficient_security(hcon, sec_level, SMP_USE_LTK)) {
2317 /* If link is already encrypted with sufficient security we
2318 * still need refresh encryption as per Core Spec 5.0 Vol 3,
2321 smp_ltk_encrypt(conn, hcon->sec_level);
2325 if (sec_level > hcon->pending_sec_level)
2326 hcon->pending_sec_level = sec_level;
2328 if (smp_ltk_encrypt(conn, hcon->pending_sec_level))
2331 smp = smp_chan_create(conn);
2333 return SMP_UNSPECIFIED;
2335 if (!hci_dev_test_flag(hdev, HCI_BONDABLE) &&
2336 (auth & SMP_AUTH_BONDING))
2337 return SMP_PAIRING_NOTSUPP;
2339 skb_pull(skb, sizeof(*rp));
2341 memset(&cp, 0, sizeof(cp));
2342 build_pairing_cmd(conn, &cp, NULL, auth);
2344 smp->preq[0] = SMP_CMD_PAIRING_REQ;
2345 memcpy(&smp->preq[1], &cp, sizeof(cp));
2347 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp);
2348 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP);
2353 int smp_conn_security(struct hci_conn *hcon, __u8 sec_level)
2355 struct l2cap_conn *conn = hcon->l2cap_data;
2356 struct l2cap_chan *chan;
2357 struct smp_chan *smp;
2361 bt_dev_dbg(hcon->hdev, "conn %p hcon %p level 0x%2.2x", conn, hcon,
2364 /* This may be NULL if there's an unexpected disconnection */
2368 if (!hci_dev_test_flag(hcon->hdev, HCI_LE_ENABLED))
2371 if (smp_sufficient_security(hcon, sec_level, SMP_USE_LTK))
2374 if (sec_level > hcon->pending_sec_level)
2375 hcon->pending_sec_level = sec_level;
2377 if (hcon->role == HCI_ROLE_MASTER)
2378 if (smp_ltk_encrypt(conn, hcon->pending_sec_level))
2383 bt_dev_err(hcon->hdev, "security requested but not available");
2387 l2cap_chan_lock(chan);
2389 /* If SMP is already in progress ignore this request */
2395 smp = smp_chan_create(conn);
2401 authreq = seclevel_to_authreq(sec_level);
2403 if (hci_dev_test_flag(hcon->hdev, HCI_SC_ENABLED)) {
2404 authreq |= SMP_AUTH_SC;
2405 if (hci_dev_test_flag(hcon->hdev, HCI_SSP_ENABLED))
2406 authreq |= SMP_AUTH_CT2;
2409 /* Don't attempt to set MITM if setting is overridden by debugfs
2410 * Needed to pass certification test SM/MAS/PKE/BV-01-C
2412 if (!hci_dev_test_flag(hcon->hdev, HCI_FORCE_NO_MITM)) {
2413 /* Require MITM if IO Capability allows or the security level
2416 if (hcon->io_capability != HCI_IO_NO_INPUT_OUTPUT ||
2417 hcon->pending_sec_level > BT_SECURITY_MEDIUM)
2418 authreq |= SMP_AUTH_MITM;
2421 if (hcon->role == HCI_ROLE_MASTER) {
2422 struct smp_cmd_pairing cp;
2424 build_pairing_cmd(conn, &cp, NULL, authreq);
2425 smp->preq[0] = SMP_CMD_PAIRING_REQ;
2426 memcpy(&smp->preq[1], &cp, sizeof(cp));
2428 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp);
2429 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP);
2431 struct smp_cmd_security_req cp;
2432 cp.auth_req = authreq;
2433 smp_send_cmd(conn, SMP_CMD_SECURITY_REQ, sizeof(cp), &cp);
2434 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_REQ);
2437 set_bit(SMP_FLAG_INITIATOR, &smp->flags);
2441 l2cap_chan_unlock(chan);
2445 int smp_cancel_and_remove_pairing(struct hci_dev *hdev, bdaddr_t *bdaddr,
2448 struct hci_conn *hcon;
2449 struct l2cap_conn *conn;
2450 struct l2cap_chan *chan;
2451 struct smp_chan *smp;
2454 err = hci_remove_ltk(hdev, bdaddr, addr_type);
2455 hci_remove_irk(hdev, bdaddr, addr_type);
2457 hcon = hci_conn_hash_lookup_le(hdev, bdaddr, addr_type);
2461 conn = hcon->l2cap_data;
2469 l2cap_chan_lock(chan);
2473 /* Set keys to NULL to make sure smp_failure() does not try to
2474 * remove and free already invalidated rcu list entries. */
2476 smp->responder_ltk = NULL;
2477 smp->remote_irk = NULL;
2479 if (test_bit(SMP_FLAG_COMPLETE, &smp->flags))
2480 smp_failure(conn, 0);
2482 smp_failure(conn, SMP_UNSPECIFIED);
2486 l2cap_chan_unlock(chan);
2492 static int smp_cmd_encrypt_info(struct l2cap_conn *conn, struct sk_buff *skb)
2494 struct smp_cmd_encrypt_info *rp = (void *) skb->data;
2495 struct l2cap_chan *chan = conn->smp;
2496 struct smp_chan *smp = chan->data;
2498 bt_dev_dbg(conn->hcon->hdev, "conn %p", conn);
2500 if (skb->len < sizeof(*rp))
2501 return SMP_INVALID_PARAMS;
2503 /* Pairing is aborted if any blocked keys are distributed */
2504 if (hci_is_blocked_key(conn->hcon->hdev, HCI_BLOCKED_KEY_TYPE_LTK,
2506 bt_dev_warn_ratelimited(conn->hcon->hdev,
2507 "LTK blocked for %pMR",
2509 return SMP_INVALID_PARAMS;
2512 SMP_ALLOW_CMD(smp, SMP_CMD_INITIATOR_IDENT);
2514 skb_pull(skb, sizeof(*rp));
2516 memcpy(smp->tk, rp->ltk, sizeof(smp->tk));
2521 static int smp_cmd_initiator_ident(struct l2cap_conn *conn, struct sk_buff *skb)
2523 struct smp_cmd_initiator_ident *rp = (void *)skb->data;
2524 struct l2cap_chan *chan = conn->smp;
2525 struct smp_chan *smp = chan->data;
2526 struct hci_dev *hdev = conn->hcon->hdev;
2527 struct hci_conn *hcon = conn->hcon;
2528 struct smp_ltk *ltk;
2531 bt_dev_dbg(hdev, "conn %p", conn);
2533 if (skb->len < sizeof(*rp))
2534 return SMP_INVALID_PARAMS;
2536 /* Mark the information as received */
2537 smp->remote_key_dist &= ~SMP_DIST_ENC_KEY;
2539 if (smp->remote_key_dist & SMP_DIST_ID_KEY)
2540 SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_INFO);
2541 else if (smp->remote_key_dist & SMP_DIST_SIGN)
2542 SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO);
2544 skb_pull(skb, sizeof(*rp));
2546 authenticated = (hcon->sec_level == BT_SECURITY_HIGH);
2547 ltk = hci_add_ltk(hdev, &hcon->dst, hcon->dst_type, SMP_LTK,
2548 authenticated, smp->tk, smp->enc_key_size,
2549 rp->ediv, rp->rand);
2551 if (!(smp->remote_key_dist & KEY_DIST_MASK))
2552 smp_distribute_keys(smp);
2557 static int smp_cmd_ident_info(struct l2cap_conn *conn, struct sk_buff *skb)
2559 struct smp_cmd_ident_info *info = (void *) skb->data;
2560 struct l2cap_chan *chan = conn->smp;
2561 struct smp_chan *smp = chan->data;
2563 bt_dev_dbg(conn->hcon->hdev, "");
2565 if (skb->len < sizeof(*info))
2566 return SMP_INVALID_PARAMS;
2568 /* Pairing is aborted if any blocked keys are distributed */
2569 if (hci_is_blocked_key(conn->hcon->hdev, HCI_BLOCKED_KEY_TYPE_IRK,
2571 bt_dev_warn_ratelimited(conn->hcon->hdev,
2572 "Identity key blocked for %pMR",
2574 return SMP_INVALID_PARAMS;
2577 SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_ADDR_INFO);
2579 skb_pull(skb, sizeof(*info));
2581 memcpy(smp->irk, info->irk, 16);
2586 static int smp_cmd_ident_addr_info(struct l2cap_conn *conn,
2587 struct sk_buff *skb)
2589 struct smp_cmd_ident_addr_info *info = (void *) skb->data;
2590 struct l2cap_chan *chan = conn->smp;
2591 struct smp_chan *smp = chan->data;
2592 struct hci_conn *hcon = conn->hcon;
2595 bt_dev_dbg(hcon->hdev, "");
2597 if (skb->len < sizeof(*info))
2598 return SMP_INVALID_PARAMS;
2600 /* Mark the information as received */
2601 smp->remote_key_dist &= ~SMP_DIST_ID_KEY;
2603 if (smp->remote_key_dist & SMP_DIST_SIGN)
2604 SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO);
2606 skb_pull(skb, sizeof(*info));
2608 /* Strictly speaking the Core Specification (4.1) allows sending
2609 * an empty address which would force us to rely on just the IRK
2610 * as "identity information". However, since such
2611 * implementations are not known of and in order to not over
2612 * complicate our implementation, simply pretend that we never
2613 * received an IRK for such a device.
2615 * The Identity Address must also be a Static Random or Public
2616 * Address, which hci_is_identity_address() checks for.
2618 if (!bacmp(&info->bdaddr, BDADDR_ANY) ||
2619 !hci_is_identity_address(&info->bdaddr, info->addr_type)) {
2620 bt_dev_err(hcon->hdev, "ignoring IRK with no identity address");
2624 /* Drop IRK if peer is using identity address during pairing but is
2625 * providing different address as identity information.
2627 * Microsoft Surface Precision Mouse is known to have this bug.
2629 if (hci_is_identity_address(&hcon->dst, hcon->dst_type) &&
2630 (bacmp(&info->bdaddr, &hcon->dst) ||
2631 info->addr_type != hcon->dst_type)) {
2632 bt_dev_err(hcon->hdev,
2633 "ignoring IRK with invalid identity address");
2637 bacpy(&smp->id_addr, &info->bdaddr);
2638 smp->id_addr_type = info->addr_type;
2640 if (hci_bdaddr_is_rpa(&hcon->dst, hcon->dst_type))
2641 bacpy(&rpa, &hcon->dst);
2643 bacpy(&rpa, BDADDR_ANY);
2645 smp->remote_irk = hci_add_irk(conn->hcon->hdev, &smp->id_addr,
2646 smp->id_addr_type, smp->irk, &rpa);
2649 if (!(smp->remote_key_dist & KEY_DIST_MASK))
2650 smp_distribute_keys(smp);
2655 static int smp_cmd_sign_info(struct l2cap_conn *conn, struct sk_buff *skb)
2657 struct smp_cmd_sign_info *rp = (void *) skb->data;
2658 struct l2cap_chan *chan = conn->smp;
2659 struct smp_chan *smp = chan->data;
2660 struct smp_csrk *csrk;
2662 bt_dev_dbg(conn->hcon->hdev, "conn %p", conn);
2664 if (skb->len < sizeof(*rp))
2665 return SMP_INVALID_PARAMS;
2667 /* Mark the information as received */
2668 smp->remote_key_dist &= ~SMP_DIST_SIGN;
2670 skb_pull(skb, sizeof(*rp));
2672 csrk = kzalloc(sizeof(*csrk), GFP_KERNEL);
2674 if (conn->hcon->sec_level > BT_SECURITY_MEDIUM)
2675 csrk->type = MGMT_CSRK_REMOTE_AUTHENTICATED;
2677 csrk->type = MGMT_CSRK_REMOTE_UNAUTHENTICATED;
2678 memcpy(csrk->val, rp->csrk, sizeof(csrk->val));
2681 smp_distribute_keys(smp);
2686 static u8 sc_select_method(struct smp_chan *smp)
2688 struct l2cap_conn *conn = smp->conn;
2689 struct hci_conn *hcon = conn->hcon;
2690 struct smp_cmd_pairing *local, *remote;
2691 u8 local_mitm, remote_mitm, local_io, remote_io, method;
2693 if (test_bit(SMP_FLAG_REMOTE_OOB, &smp->flags) ||
2694 test_bit(SMP_FLAG_LOCAL_OOB, &smp->flags))
2697 /* The preq/prsp contain the raw Pairing Request/Response PDUs
2698 * which are needed as inputs to some crypto functions. To get
2699 * the "struct smp_cmd_pairing" from them we need to skip the
2700 * first byte which contains the opcode.
2703 local = (void *) &smp->preq[1];
2704 remote = (void *) &smp->prsp[1];
2706 local = (void *) &smp->prsp[1];
2707 remote = (void *) &smp->preq[1];
2710 local_io = local->io_capability;
2711 remote_io = remote->io_capability;
2713 local_mitm = (local->auth_req & SMP_AUTH_MITM);
2714 remote_mitm = (remote->auth_req & SMP_AUTH_MITM);
2716 /* If either side wants MITM, look up the method from the table,
2717 * otherwise use JUST WORKS.
2719 if (local_mitm || remote_mitm)
2720 method = get_auth_method(smp, local_io, remote_io);
2722 method = JUST_WORKS;
2724 /* Don't confirm locally initiated pairing attempts */
2725 if (method == JUST_CFM && test_bit(SMP_FLAG_INITIATOR, &smp->flags))
2726 method = JUST_WORKS;
2731 static int smp_cmd_public_key(struct l2cap_conn *conn, struct sk_buff *skb)
2733 struct smp_cmd_public_key *key = (void *) skb->data;
2734 struct hci_conn *hcon = conn->hcon;
2735 struct l2cap_chan *chan = conn->smp;
2736 struct smp_chan *smp = chan->data;
2737 struct hci_dev *hdev = hcon->hdev;
2738 struct crypto_kpp *tfm_ecdh;
2739 struct smp_cmd_pairing_confirm cfm;
2742 bt_dev_dbg(hdev, "conn %p", conn);
2744 if (skb->len < sizeof(*key))
2745 return SMP_INVALID_PARAMS;
2747 /* Check if remote and local public keys are the same and debug key is
2750 if (!test_bit(SMP_FLAG_DEBUG_KEY, &smp->flags) &&
2751 !crypto_memneq(key, smp->local_pk, 64)) {
2752 bt_dev_err(hdev, "Remote and local public keys are identical");
2753 return SMP_UNSPECIFIED;
2756 memcpy(smp->remote_pk, key, 64);
2758 if (test_bit(SMP_FLAG_REMOTE_OOB, &smp->flags)) {
2759 err = smp_f4(smp->tfm_cmac, smp->remote_pk, smp->remote_pk,
2760 smp->rr, 0, cfm.confirm_val);
2762 return SMP_UNSPECIFIED;
2764 if (crypto_memneq(cfm.confirm_val, smp->pcnf, 16))
2765 return SMP_CONFIRM_FAILED;
2768 /* Non-initiating device sends its public key after receiving
2769 * the key from the initiating device.
2772 err = sc_send_public_key(smp);
2777 SMP_DBG("Remote Public Key X: %32phN", smp->remote_pk);
2778 SMP_DBG("Remote Public Key Y: %32phN", smp->remote_pk + 32);
2780 /* Compute the shared secret on the same crypto tfm on which the private
2781 * key was set/generated.
2783 if (test_bit(SMP_FLAG_LOCAL_OOB, &smp->flags)) {
2784 struct l2cap_chan *hchan = hdev->smp_data;
2785 struct smp_dev *smp_dev;
2787 if (!hchan || !hchan->data)
2788 return SMP_UNSPECIFIED;
2790 smp_dev = hchan->data;
2792 tfm_ecdh = smp_dev->tfm_ecdh;
2794 tfm_ecdh = smp->tfm_ecdh;
2797 if (compute_ecdh_secret(tfm_ecdh, smp->remote_pk, smp->dhkey))
2798 return SMP_UNSPECIFIED;
2800 SMP_DBG("DHKey %32phN", smp->dhkey);
2802 set_bit(SMP_FLAG_REMOTE_PK, &smp->flags);
2804 smp->method = sc_select_method(smp);
2806 bt_dev_dbg(hdev, "selected method 0x%02x", smp->method);
2808 /* JUST_WORKS and JUST_CFM result in an unauthenticated key */
2809 if (smp->method == JUST_WORKS || smp->method == JUST_CFM)
2810 hcon->pending_sec_level = BT_SECURITY_MEDIUM;
2812 hcon->pending_sec_level = BT_SECURITY_FIPS;
2814 if (!crypto_memneq(debug_pk, smp->remote_pk, 64))
2815 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
2817 if (smp->method == DSP_PASSKEY) {
2818 get_random_bytes(&hcon->passkey_notify,
2819 sizeof(hcon->passkey_notify));
2820 hcon->passkey_notify %= 1000000;
2821 hcon->passkey_entered = 0;
2822 smp->passkey_round = 0;
2823 if (mgmt_user_passkey_notify(hdev, &hcon->dst, hcon->type,
2825 hcon->passkey_notify,
2826 hcon->passkey_entered))
2827 return SMP_UNSPECIFIED;
2828 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
2829 return sc_passkey_round(smp, SMP_CMD_PUBLIC_KEY);
2832 if (smp->method == REQ_OOB) {
2834 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
2835 sizeof(smp->prnd), smp->prnd);
2837 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2843 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
2845 if (smp->method == REQ_PASSKEY) {
2846 if (mgmt_user_passkey_request(hdev, &hcon->dst, hcon->type,
2848 return SMP_UNSPECIFIED;
2849 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
2850 set_bit(SMP_FLAG_WAIT_USER, &smp->flags);
2854 /* The Initiating device waits for the non-initiating device to
2855 * send the confirm value.
2857 if (conn->hcon->out)
2860 err = smp_f4(smp->tfm_cmac, smp->local_pk, smp->remote_pk, smp->prnd,
2861 0, cfm.confirm_val);
2863 return SMP_UNSPECIFIED;
2865 smp_send_cmd(conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cfm), &cfm);
2866 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2871 static int smp_cmd_dhkey_check(struct l2cap_conn *conn, struct sk_buff *skb)
2873 struct smp_cmd_dhkey_check *check = (void *) skb->data;
2874 struct l2cap_chan *chan = conn->smp;
2875 struct hci_conn *hcon = conn->hcon;
2876 struct smp_chan *smp = chan->data;
2877 u8 a[7], b[7], *local_addr, *remote_addr;
2878 u8 io_cap[3], r[16], e[16];
2881 bt_dev_dbg(hcon->hdev, "conn %p", conn);
2883 if (skb->len < sizeof(*check))
2884 return SMP_INVALID_PARAMS;
2886 memcpy(a, &hcon->init_addr, 6);
2887 memcpy(b, &hcon->resp_addr, 6);
2888 a[6] = hcon->init_addr_type;
2889 b[6] = hcon->resp_addr_type;
2894 memcpy(io_cap, &smp->prsp[1], 3);
2898 memcpy(io_cap, &smp->preq[1], 3);
2901 memset(r, 0, sizeof(r));
2903 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
2904 put_unaligned_le32(hcon->passkey_notify, r);
2905 else if (smp->method == REQ_OOB)
2906 memcpy(r, smp->lr, 16);
2908 err = smp_f6(smp->tfm_cmac, smp->mackey, smp->rrnd, smp->prnd, r,
2909 io_cap, remote_addr, local_addr, e);
2911 return SMP_UNSPECIFIED;
2913 if (crypto_memneq(check->e, e, 16))
2914 return SMP_DHKEY_CHECK_FAILED;
2917 if (test_bit(SMP_FLAG_WAIT_USER, &smp->flags)) {
2918 set_bit(SMP_FLAG_DHKEY_PENDING, &smp->flags);
2922 /* Responder sends DHKey check as response to initiator */
2923 sc_dhkey_check(smp);
2929 hci_le_start_enc(hcon, 0, 0, smp->tk, smp->enc_key_size);
2930 hcon->enc_key_size = smp->enc_key_size;
2936 static int smp_cmd_keypress_notify(struct l2cap_conn *conn,
2937 struct sk_buff *skb)
2939 struct smp_cmd_keypress_notify *kp = (void *) skb->data;
2941 bt_dev_dbg(conn->hcon->hdev, "value 0x%02x", kp->value);
2946 static int smp_sig_channel(struct l2cap_chan *chan, struct sk_buff *skb)
2948 struct l2cap_conn *conn = chan->conn;
2949 struct hci_conn *hcon = conn->hcon;
2950 struct smp_chan *smp;
2957 if (!hci_dev_test_flag(hcon->hdev, HCI_LE_ENABLED)) {
2958 reason = SMP_PAIRING_NOTSUPP;
2962 code = skb->data[0];
2963 skb_pull(skb, sizeof(code));
2967 if (code > SMP_CMD_MAX)
2970 if (smp && !test_and_clear_bit(code, &smp->allow_cmd))
2973 /* If we don't have a context the only allowed commands are
2974 * pairing request and security request.
2976 if (!smp && code != SMP_CMD_PAIRING_REQ && code != SMP_CMD_SECURITY_REQ)
2980 case SMP_CMD_PAIRING_REQ:
2981 reason = smp_cmd_pairing_req(conn, skb);
2984 case SMP_CMD_PAIRING_FAIL:
2985 smp_failure(conn, 0);
2989 case SMP_CMD_PAIRING_RSP:
2990 reason = smp_cmd_pairing_rsp(conn, skb);
2993 case SMP_CMD_SECURITY_REQ:
2994 reason = smp_cmd_security_req(conn, skb);
2997 case SMP_CMD_PAIRING_CONFIRM:
2998 reason = smp_cmd_pairing_confirm(conn, skb);
3001 case SMP_CMD_PAIRING_RANDOM:
3002 reason = smp_cmd_pairing_random(conn, skb);
3005 case SMP_CMD_ENCRYPT_INFO:
3006 reason = smp_cmd_encrypt_info(conn, skb);
3009 case SMP_CMD_INITIATOR_IDENT:
3010 reason = smp_cmd_initiator_ident(conn, skb);
3013 case SMP_CMD_IDENT_INFO:
3014 reason = smp_cmd_ident_info(conn, skb);
3017 case SMP_CMD_IDENT_ADDR_INFO:
3018 reason = smp_cmd_ident_addr_info(conn, skb);
3021 case SMP_CMD_SIGN_INFO:
3022 reason = smp_cmd_sign_info(conn, skb);
3025 case SMP_CMD_PUBLIC_KEY:
3026 reason = smp_cmd_public_key(conn, skb);
3029 case SMP_CMD_DHKEY_CHECK:
3030 reason = smp_cmd_dhkey_check(conn, skb);
3033 case SMP_CMD_KEYPRESS_NOTIFY:
3034 reason = smp_cmd_keypress_notify(conn, skb);
3038 bt_dev_dbg(hcon->hdev, "Unknown command code 0x%2.2x", code);
3039 reason = SMP_CMD_NOTSUPP;
3046 smp_failure(conn, reason);
3053 bt_dev_err(hcon->hdev, "unexpected SMP command 0x%02x from %pMR",
3059 static void smp_teardown_cb(struct l2cap_chan *chan, int err)
3061 struct l2cap_conn *conn = chan->conn;
3063 bt_dev_dbg(conn->hcon->hdev, "chan %p", chan);
3066 smp_chan_destroy(conn);
3069 l2cap_chan_put(chan);
3072 static void bredr_pairing(struct l2cap_chan *chan)
3074 struct l2cap_conn *conn = chan->conn;
3075 struct hci_conn *hcon = conn->hcon;
3076 struct hci_dev *hdev = hcon->hdev;
3077 struct smp_cmd_pairing req;
3078 struct smp_chan *smp;
3080 bt_dev_dbg(hdev, "chan %p", chan);
3082 /* Only new pairings are interesting */
3083 if (!test_bit(HCI_CONN_NEW_LINK_KEY, &hcon->flags))
3086 /* Don't bother if we're not encrypted */
3087 if (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags))
3090 /* Only initiator may initiate SMP over BR/EDR */
3091 if (hcon->role != HCI_ROLE_MASTER)
3094 /* Secure Connections support must be enabled */
3095 if (!hci_dev_test_flag(hdev, HCI_SC_ENABLED))
3098 /* BR/EDR must use Secure Connections for SMP */
3099 if (!test_bit(HCI_CONN_AES_CCM, &hcon->flags) &&
3100 !hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP))
3103 /* If our LE support is not enabled don't do anything */
3104 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
3107 /* Don't bother if remote LE support is not enabled */
3108 if (!lmp_host_le_capable(hcon))
3111 /* Remote must support SMP fixed chan for BR/EDR */
3112 if (!(conn->remote_fixed_chan & L2CAP_FC_SMP_BREDR))
3115 /* Don't bother if SMP is already ongoing */
3119 smp = smp_chan_create(conn);
3121 bt_dev_err(hdev, "unable to create SMP context for BR/EDR");
3125 set_bit(SMP_FLAG_SC, &smp->flags);
3127 bt_dev_dbg(hdev, "starting SMP over BR/EDR");
3129 /* Prepare and send the BR/EDR SMP Pairing Request */
3130 build_bredr_pairing_cmd(smp, &req, NULL);
3132 smp->preq[0] = SMP_CMD_PAIRING_REQ;
3133 memcpy(&smp->preq[1], &req, sizeof(req));
3135 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(req), &req);
3136 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP);
3139 static void smp_resume_cb(struct l2cap_chan *chan)
3141 struct smp_chan *smp = chan->data;
3142 struct l2cap_conn *conn = chan->conn;
3143 struct hci_conn *hcon = conn->hcon;
3145 bt_dev_dbg(hcon->hdev, "chan %p", chan);
3147 if (hcon->type == ACL_LINK) {
3148 bredr_pairing(chan);
3155 if (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags))
3158 cancel_delayed_work(&smp->security_timer);
3160 smp_distribute_keys(smp);
3163 static void smp_ready_cb(struct l2cap_chan *chan)
3165 struct l2cap_conn *conn = chan->conn;
3166 struct hci_conn *hcon = conn->hcon;
3168 bt_dev_dbg(hcon->hdev, "chan %p", chan);
3170 /* No need to call l2cap_chan_hold() here since we already own
3171 * the reference taken in smp_new_conn_cb(). This is just the
3172 * first time that we tie it to a specific pointer. The code in
3173 * l2cap_core.c ensures that there's no risk this function wont
3174 * get called if smp_new_conn_cb was previously called.
3178 if (hcon->type == ACL_LINK && test_bit(HCI_CONN_ENCRYPT, &hcon->flags))
3179 bredr_pairing(chan);
3182 static int smp_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
3186 bt_dev_dbg(chan->conn->hcon->hdev, "chan %p", chan);
3188 err = smp_sig_channel(chan, skb);
3190 struct smp_chan *smp = chan->data;
3193 cancel_delayed_work_sync(&smp->security_timer);
3195 hci_disconnect(chan->conn->hcon, HCI_ERROR_AUTH_FAILURE);
3201 static struct sk_buff *smp_alloc_skb_cb(struct l2cap_chan *chan,
3202 unsigned long hdr_len,
3203 unsigned long len, int nb)
3205 struct sk_buff *skb;
3207 skb = bt_skb_alloc(hdr_len + len, GFP_KERNEL);
3209 return ERR_PTR(-ENOMEM);
3211 skb->priority = HCI_PRIO_MAX;
3212 bt_cb(skb)->l2cap.chan = chan;
3217 static const struct l2cap_ops smp_chan_ops = {
3218 .name = "Security Manager",
3219 .ready = smp_ready_cb,
3220 .recv = smp_recv_cb,
3221 .alloc_skb = smp_alloc_skb_cb,
3222 .teardown = smp_teardown_cb,
3223 .resume = smp_resume_cb,
3225 .new_connection = l2cap_chan_no_new_connection,
3226 .state_change = l2cap_chan_no_state_change,
3227 .close = l2cap_chan_no_close,
3228 .defer = l2cap_chan_no_defer,
3229 .suspend = l2cap_chan_no_suspend,
3230 .set_shutdown = l2cap_chan_no_set_shutdown,
3231 .get_sndtimeo = l2cap_chan_no_get_sndtimeo,
3234 static inline struct l2cap_chan *smp_new_conn_cb(struct l2cap_chan *pchan)
3236 struct l2cap_chan *chan;
3238 BT_DBG("pchan %p", pchan);
3240 chan = l2cap_chan_create();
3244 chan->chan_type = pchan->chan_type;
3245 chan->ops = &smp_chan_ops;
3246 chan->scid = pchan->scid;
3247 chan->dcid = chan->scid;
3248 chan->imtu = pchan->imtu;
3249 chan->omtu = pchan->omtu;
3250 chan->mode = pchan->mode;
3252 /* Other L2CAP channels may request SMP routines in order to
3253 * change the security level. This means that the SMP channel
3254 * lock must be considered in its own category to avoid lockdep
3257 atomic_set(&chan->nesting, L2CAP_NESTING_SMP);
3259 BT_DBG("created chan %p", chan);
3264 static const struct l2cap_ops smp_root_chan_ops = {
3265 .name = "Security Manager Root",
3266 .new_connection = smp_new_conn_cb,
3268 /* None of these are implemented for the root channel */
3269 .close = l2cap_chan_no_close,
3270 .alloc_skb = l2cap_chan_no_alloc_skb,
3271 .recv = l2cap_chan_no_recv,
3272 .state_change = l2cap_chan_no_state_change,
3273 .teardown = l2cap_chan_no_teardown,
3274 .ready = l2cap_chan_no_ready,
3275 .defer = l2cap_chan_no_defer,
3276 .suspend = l2cap_chan_no_suspend,
3277 .resume = l2cap_chan_no_resume,
3278 .set_shutdown = l2cap_chan_no_set_shutdown,
3279 .get_sndtimeo = l2cap_chan_no_get_sndtimeo,
3282 static struct l2cap_chan *smp_add_cid(struct hci_dev *hdev, u16 cid)
3284 struct l2cap_chan *chan;
3285 struct smp_dev *smp;
3286 struct crypto_shash *tfm_cmac;
3287 struct crypto_kpp *tfm_ecdh;
3289 if (cid == L2CAP_CID_SMP_BREDR) {
3294 smp = kzalloc(sizeof(*smp), GFP_KERNEL);
3296 return ERR_PTR(-ENOMEM);
3298 tfm_cmac = crypto_alloc_shash("cmac(aes)", 0, 0);
3299 if (IS_ERR(tfm_cmac)) {
3300 bt_dev_err(hdev, "Unable to create CMAC crypto context");
3301 kfree_sensitive(smp);
3302 return ERR_CAST(tfm_cmac);
3305 tfm_ecdh = crypto_alloc_kpp("ecdh-nist-p256", 0, 0);
3306 if (IS_ERR(tfm_ecdh)) {
3307 bt_dev_err(hdev, "Unable to create ECDH crypto context");
3308 crypto_free_shash(tfm_cmac);
3309 kfree_sensitive(smp);
3310 return ERR_CAST(tfm_ecdh);
3313 smp->local_oob = false;
3314 smp->tfm_cmac = tfm_cmac;
3315 smp->tfm_ecdh = tfm_ecdh;
3318 chan = l2cap_chan_create();
3321 crypto_free_shash(smp->tfm_cmac);
3322 crypto_free_kpp(smp->tfm_ecdh);
3323 kfree_sensitive(smp);
3325 return ERR_PTR(-ENOMEM);
3330 l2cap_add_scid(chan, cid);
3332 l2cap_chan_set_defaults(chan);
3334 if (cid == L2CAP_CID_SMP) {
3337 hci_copy_identity_address(hdev, &chan->src, &bdaddr_type);
3339 if (bdaddr_type == ADDR_LE_DEV_PUBLIC)
3340 chan->src_type = BDADDR_LE_PUBLIC;
3342 chan->src_type = BDADDR_LE_RANDOM;
3344 bacpy(&chan->src, &hdev->bdaddr);
3345 chan->src_type = BDADDR_BREDR;
3348 chan->state = BT_LISTEN;
3349 chan->mode = L2CAP_MODE_BASIC;
3350 chan->imtu = L2CAP_DEFAULT_MTU;
3351 chan->ops = &smp_root_chan_ops;
3353 /* Set correct nesting level for a parent/listening channel */
3354 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
3359 static void smp_del_chan(struct l2cap_chan *chan)
3361 struct smp_dev *smp;
3363 BT_DBG("chan %p", chan);
3368 crypto_free_shash(smp->tfm_cmac);
3369 crypto_free_kpp(smp->tfm_ecdh);
3370 kfree_sensitive(smp);
3373 l2cap_chan_put(chan);
3376 int smp_force_bredr(struct hci_dev *hdev, bool enable)
3378 if (enable == hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP))
3382 struct l2cap_chan *chan;
3384 chan = smp_add_cid(hdev, L2CAP_CID_SMP_BREDR);
3386 return PTR_ERR(chan);
3388 hdev->smp_bredr_data = chan;
3390 struct l2cap_chan *chan;
3392 chan = hdev->smp_bredr_data;
3393 hdev->smp_bredr_data = NULL;
3397 hci_dev_change_flag(hdev, HCI_FORCE_BREDR_SMP);
3402 int smp_register(struct hci_dev *hdev)
3404 struct l2cap_chan *chan;
3406 bt_dev_dbg(hdev, "");
3408 /* If the controller does not support Low Energy operation, then
3409 * there is also no need to register any SMP channel.
3411 if (!lmp_le_capable(hdev))
3414 if (WARN_ON(hdev->smp_data)) {
3415 chan = hdev->smp_data;
3416 hdev->smp_data = NULL;
3420 chan = smp_add_cid(hdev, L2CAP_CID_SMP);
3422 return PTR_ERR(chan);
3424 hdev->smp_data = chan;
3426 if (!lmp_sc_capable(hdev)) {
3427 /* Flag can be already set here (due to power toggle) */
3428 if (!hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP))
3432 if (WARN_ON(hdev->smp_bredr_data)) {
3433 chan = hdev->smp_bredr_data;
3434 hdev->smp_bredr_data = NULL;
3438 chan = smp_add_cid(hdev, L2CAP_CID_SMP_BREDR);
3440 int err = PTR_ERR(chan);
3441 chan = hdev->smp_data;
3442 hdev->smp_data = NULL;
3447 hdev->smp_bredr_data = chan;
3452 void smp_unregister(struct hci_dev *hdev)
3454 struct l2cap_chan *chan;
3456 if (hdev->smp_bredr_data) {
3457 chan = hdev->smp_bredr_data;
3458 hdev->smp_bredr_data = NULL;
3462 if (hdev->smp_data) {
3463 chan = hdev->smp_data;
3464 hdev->smp_data = NULL;
3469 #if IS_ENABLED(CONFIG_BT_SELFTEST_SMP)
3471 static int __init test_debug_key(struct crypto_kpp *tfm_ecdh)
3476 err = set_ecdh_privkey(tfm_ecdh, debug_sk);
3480 err = generate_ecdh_public_key(tfm_ecdh, pk);
3484 if (crypto_memneq(pk, debug_pk, 64))
3490 static int __init test_ah(void)
3492 const u8 irk[16] = {
3493 0x9b, 0x7d, 0x39, 0x0a, 0xa6, 0x10, 0x10, 0x34,
3494 0x05, 0xad, 0xc8, 0x57, 0xa3, 0x34, 0x02, 0xec };
3495 const u8 r[3] = { 0x94, 0x81, 0x70 };
3496 const u8 exp[3] = { 0xaa, 0xfb, 0x0d };
3500 err = smp_ah(irk, r, res);
3504 if (crypto_memneq(res, exp, 3))
3510 static int __init test_c1(void)
3513 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3514 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
3516 0xe0, 0x2e, 0x70, 0xc6, 0x4e, 0x27, 0x88, 0x63,
3517 0x0e, 0x6f, 0xad, 0x56, 0x21, 0xd5, 0x83, 0x57 };
3518 const u8 preq[7] = { 0x01, 0x01, 0x00, 0x00, 0x10, 0x07, 0x07 };
3519 const u8 pres[7] = { 0x02, 0x03, 0x00, 0x00, 0x08, 0x00, 0x05 };
3520 const u8 _iat = 0x01;
3521 const u8 _rat = 0x00;
3522 const bdaddr_t ra = { { 0xb6, 0xb5, 0xb4, 0xb3, 0xb2, 0xb1 } };
3523 const bdaddr_t ia = { { 0xa6, 0xa5, 0xa4, 0xa3, 0xa2, 0xa1 } };
3524 const u8 exp[16] = {
3525 0x86, 0x3b, 0xf1, 0xbe, 0xc5, 0x4d, 0xa7, 0xd2,
3526 0xea, 0x88, 0x89, 0x87, 0xef, 0x3f, 0x1e, 0x1e };
3530 err = smp_c1(k, r, preq, pres, _iat, &ia, _rat, &ra, res);
3534 if (crypto_memneq(res, exp, 16))
3540 static int __init test_s1(void)
3543 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3544 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
3546 0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11 };
3548 0x00, 0xff, 0xee, 0xdd, 0xcc, 0xbb, 0xaa, 0x99 };
3549 const u8 exp[16] = {
3550 0x62, 0xa0, 0x6d, 0x79, 0xae, 0x16, 0x42, 0x5b,
3551 0x9b, 0xf4, 0xb0, 0xe8, 0xf0, 0xe1, 0x1f, 0x9a };
3555 err = smp_s1(k, r1, r2, res);
3559 if (crypto_memneq(res, exp, 16))
3565 static int __init test_f4(struct crypto_shash *tfm_cmac)
3568 0xe6, 0x9d, 0x35, 0x0e, 0x48, 0x01, 0x03, 0xcc,
3569 0xdb, 0xfd, 0xf4, 0xac, 0x11, 0x91, 0xf4, 0xef,
3570 0xb9, 0xa5, 0xf9, 0xe9, 0xa7, 0x83, 0x2c, 0x5e,
3571 0x2c, 0xbe, 0x97, 0xf2, 0xd2, 0x03, 0xb0, 0x20 };
3573 0xfd, 0xc5, 0x7f, 0xf4, 0x49, 0xdd, 0x4f, 0x6b,
3574 0xfb, 0x7c, 0x9d, 0xf1, 0xc2, 0x9a, 0xcb, 0x59,
3575 0x2a, 0xe7, 0xd4, 0xee, 0xfb, 0xfc, 0x0a, 0x90,
3576 0x9a, 0xbb, 0xf6, 0x32, 0x3d, 0x8b, 0x18, 0x55 };
3578 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3579 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3581 const u8 exp[16] = {
3582 0x2d, 0x87, 0x74, 0xa9, 0xbe, 0xa1, 0xed, 0xf1,
3583 0x1c, 0xbd, 0xa9, 0x07, 0xf1, 0x16, 0xc9, 0xf2 };
3587 err = smp_f4(tfm_cmac, u, v, x, z, res);
3591 if (crypto_memneq(res, exp, 16))
3597 static int __init test_f5(struct crypto_shash *tfm_cmac)
3600 0x98, 0xa6, 0xbf, 0x73, 0xf3, 0x34, 0x8d, 0x86,
3601 0xf1, 0x66, 0xf8, 0xb4, 0x13, 0x6b, 0x79, 0x99,
3602 0x9b, 0x7d, 0x39, 0x0a, 0xa6, 0x10, 0x10, 0x34,
3603 0x05, 0xad, 0xc8, 0x57, 0xa3, 0x34, 0x02, 0xec };
3605 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3606 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3608 0xcf, 0xc4, 0x3d, 0xff, 0xf7, 0x83, 0x65, 0x21,
3609 0x6e, 0x5f, 0xa7, 0x25, 0xcc, 0xe7, 0xe8, 0xa6 };
3610 const u8 a1[7] = { 0xce, 0xbf, 0x37, 0x37, 0x12, 0x56, 0x00 };
3611 const u8 a2[7] = { 0xc1, 0xcf, 0x2d, 0x70, 0x13, 0xa7, 0x00 };
3612 const u8 exp_ltk[16] = {
3613 0x38, 0x0a, 0x75, 0x94, 0xb5, 0x22, 0x05, 0x98,
3614 0x23, 0xcd, 0xd7, 0x69, 0x11, 0x79, 0x86, 0x69 };
3615 const u8 exp_mackey[16] = {
3616 0x20, 0x6e, 0x63, 0xce, 0x20, 0x6a, 0x3f, 0xfd,
3617 0x02, 0x4a, 0x08, 0xa1, 0x76, 0xf1, 0x65, 0x29 };
3618 u8 mackey[16], ltk[16];
3621 err = smp_f5(tfm_cmac, w, n1, n2, a1, a2, mackey, ltk);
3625 if (crypto_memneq(mackey, exp_mackey, 16))
3628 if (crypto_memneq(ltk, exp_ltk, 16))
3634 static int __init test_f6(struct crypto_shash *tfm_cmac)
3637 0x20, 0x6e, 0x63, 0xce, 0x20, 0x6a, 0x3f, 0xfd,
3638 0x02, 0x4a, 0x08, 0xa1, 0x76, 0xf1, 0x65, 0x29 };
3640 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3641 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3643 0xcf, 0xc4, 0x3d, 0xff, 0xf7, 0x83, 0x65, 0x21,
3644 0x6e, 0x5f, 0xa7, 0x25, 0xcc, 0xe7, 0xe8, 0xa6 };
3646 0xc8, 0x0f, 0x2d, 0x0c, 0xd2, 0x42, 0xda, 0x08,
3647 0x54, 0xbb, 0x53, 0xb4, 0x3b, 0x34, 0xa3, 0x12 };
3648 const u8 io_cap[3] = { 0x02, 0x01, 0x01 };
3649 const u8 a1[7] = { 0xce, 0xbf, 0x37, 0x37, 0x12, 0x56, 0x00 };
3650 const u8 a2[7] = { 0xc1, 0xcf, 0x2d, 0x70, 0x13, 0xa7, 0x00 };
3651 const u8 exp[16] = {
3652 0x61, 0x8f, 0x95, 0xda, 0x09, 0x0b, 0x6c, 0xd2,
3653 0xc5, 0xe8, 0xd0, 0x9c, 0x98, 0x73, 0xc4, 0xe3 };
3657 err = smp_f6(tfm_cmac, w, n1, n2, r, io_cap, a1, a2, res);
3661 if (crypto_memneq(res, exp, 16))
3667 static int __init test_g2(struct crypto_shash *tfm_cmac)
3670 0xe6, 0x9d, 0x35, 0x0e, 0x48, 0x01, 0x03, 0xcc,
3671 0xdb, 0xfd, 0xf4, 0xac, 0x11, 0x91, 0xf4, 0xef,
3672 0xb9, 0xa5, 0xf9, 0xe9, 0xa7, 0x83, 0x2c, 0x5e,
3673 0x2c, 0xbe, 0x97, 0xf2, 0xd2, 0x03, 0xb0, 0x20 };
3675 0xfd, 0xc5, 0x7f, 0xf4, 0x49, 0xdd, 0x4f, 0x6b,
3676 0xfb, 0x7c, 0x9d, 0xf1, 0xc2, 0x9a, 0xcb, 0x59,
3677 0x2a, 0xe7, 0xd4, 0xee, 0xfb, 0xfc, 0x0a, 0x90,
3678 0x9a, 0xbb, 0xf6, 0x32, 0x3d, 0x8b, 0x18, 0x55 };
3680 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3681 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3683 0xcf, 0xc4, 0x3d, 0xff, 0xf7, 0x83, 0x65, 0x21,
3684 0x6e, 0x5f, 0xa7, 0x25, 0xcc, 0xe7, 0xe8, 0xa6 };
3685 const u32 exp_val = 0x2f9ed5ba % 1000000;
3689 err = smp_g2(tfm_cmac, u, v, x, y, &val);
3699 static int __init test_h6(struct crypto_shash *tfm_cmac)
3702 0x9b, 0x7d, 0x39, 0x0a, 0xa6, 0x10, 0x10, 0x34,
3703 0x05, 0xad, 0xc8, 0x57, 0xa3, 0x34, 0x02, 0xec };
3704 const u8 key_id[4] = { 0x72, 0x62, 0x65, 0x6c };
3705 const u8 exp[16] = {
3706 0x99, 0x63, 0xb1, 0x80, 0xe2, 0xa9, 0xd3, 0xe8,
3707 0x1c, 0xc9, 0x6d, 0xe7, 0x02, 0xe1, 0x9a, 0x2d };
3711 err = smp_h6(tfm_cmac, w, key_id, res);
3715 if (crypto_memneq(res, exp, 16))
3721 static char test_smp_buffer[32];
3723 static ssize_t test_smp_read(struct file *file, char __user *user_buf,
3724 size_t count, loff_t *ppos)
3726 return simple_read_from_buffer(user_buf, count, ppos, test_smp_buffer,
3727 strlen(test_smp_buffer));
3730 static const struct file_operations test_smp_fops = {
3731 .open = simple_open,
3732 .read = test_smp_read,
3733 .llseek = default_llseek,
3736 static int __init run_selftests(struct crypto_shash *tfm_cmac,
3737 struct crypto_kpp *tfm_ecdh)
3739 ktime_t calltime, delta, rettime;
3740 unsigned long long duration;
3743 calltime = ktime_get();
3745 err = test_debug_key(tfm_ecdh);
3747 BT_ERR("debug_key test failed");
3753 BT_ERR("smp_ah test failed");
3759 BT_ERR("smp_c1 test failed");
3765 BT_ERR("smp_s1 test failed");
3769 err = test_f4(tfm_cmac);
3771 BT_ERR("smp_f4 test failed");
3775 err = test_f5(tfm_cmac);
3777 BT_ERR("smp_f5 test failed");
3781 err = test_f6(tfm_cmac);
3783 BT_ERR("smp_f6 test failed");
3787 err = test_g2(tfm_cmac);
3789 BT_ERR("smp_g2 test failed");
3793 err = test_h6(tfm_cmac);
3795 BT_ERR("smp_h6 test failed");
3799 rettime = ktime_get();
3800 delta = ktime_sub(rettime, calltime);
3801 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
3803 BT_INFO("SMP test passed in %llu usecs", duration);
3807 snprintf(test_smp_buffer, sizeof(test_smp_buffer),
3808 "PASS (%llu usecs)\n", duration);
3810 snprintf(test_smp_buffer, sizeof(test_smp_buffer), "FAIL\n");
3812 debugfs_create_file("selftest_smp", 0444, bt_debugfs, NULL,
3818 int __init bt_selftest_smp(void)
3820 struct crypto_shash *tfm_cmac;
3821 struct crypto_kpp *tfm_ecdh;
3824 tfm_cmac = crypto_alloc_shash("cmac(aes)", 0, 0);
3825 if (IS_ERR(tfm_cmac)) {
3826 BT_ERR("Unable to create CMAC crypto context");
3827 return PTR_ERR(tfm_cmac);
3830 tfm_ecdh = crypto_alloc_kpp("ecdh-nist-p256", 0, 0);
3831 if (IS_ERR(tfm_ecdh)) {
3832 BT_ERR("Unable to create ECDH crypto context");
3833 crypto_free_shash(tfm_cmac);
3834 return PTR_ERR(tfm_ecdh);
3837 err = run_selftests(tfm_cmac, tfm_ecdh);
3839 crypto_free_shash(tfm_cmac);
3840 crypto_free_kpp(tfm_ecdh);