blob: 50976a6481f3cd21e33e5ee75d74dacc06470584 [file] [log] [blame]
Anderson Brigliaeb492e02011-06-09 18:50:40 -03001/*
2 BlueZ - Bluetooth protocol stack for Linux
3 Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4
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;
8
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.
17
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.
21*/
22
Marcel Holtmann300acfde2014-12-31 14:43:16 -080023#include <linux/debugfs.h>
Gustavo Padovan8c520a52012-05-23 04:04:22 -030024#include <linux/scatterlist.h>
25#include <crypto/b128ops.h>
Herbert Xu71af2f62016-01-24 21:18:30 +080026#include <crypto/hash.h>
27#include <crypto/skcipher.h>
Gustavo Padovan8c520a52012-05-23 04:04:22 -030028
Anderson Brigliaeb492e02011-06-09 18:50:40 -030029#include <net/bluetooth/bluetooth.h>
30#include <net/bluetooth/hci_core.h>
31#include <net/bluetooth/l2cap.h>
Brian Gix2b64d152011-12-21 16:12:12 -080032#include <net/bluetooth/mgmt.h>
Marcel Holtmannac4b7232013-10-10 14:54:16 -070033
Johan Hedberg3b191462014-06-06 10:50:15 +030034#include "ecc.h"
Marcel Holtmannac4b7232013-10-10 14:54:16 -070035#include "smp.h"
Anderson Brigliad22ef0b2011-06-09 18:50:44 -030036
Johan Hedberg2fd36552015-06-11 13:52:26 +030037#define SMP_DEV(hdev) \
38 ((struct smp_dev *)((struct l2cap_chan *)((hdev)->smp_data))->data)
39
Johan Hedbergc7a3d572014-12-01 22:03:16 +020040/* Low-level debug macros to be used for stuff that we don't want
41 * accidentially in dmesg, i.e. the values of the various crypto keys
42 * and the inputs & outputs of crypto functions.
43 */
44#ifdef DEBUG
45#define SMP_DBG(fmt, ...) printk(KERN_DEBUG "%s: " fmt, __func__, \
46 ##__VA_ARGS__)
47#else
48#define SMP_DBG(fmt, ...) no_printk(KERN_DEBUG "%s: " fmt, __func__, \
49 ##__VA_ARGS__)
50#endif
51
Johan Hedbergb28b4942014-09-05 22:19:55 +030052#define SMP_ALLOW_CMD(smp, code) set_bit(code, &smp->allow_cmd)
Johan Hedbergb28b4942014-09-05 22:19:55 +030053
Johan Hedberg3b191462014-06-06 10:50:15 +030054/* Keys which are not distributed with Secure Connections */
55#define SMP_SC_NO_DIST (SMP_DIST_ENC_KEY | SMP_DIST_LINK_KEY);
56
Marcel Holtmann17b02e62012-03-01 14:32:37 -080057#define SMP_TIMEOUT msecs_to_jiffies(30000)
Vinicius Costa Gomes5d3de7d2011-06-14 13:37:41 -030058
Marcel Holtmannd7a5a112015-03-13 02:11:00 -070059#define AUTH_REQ_MASK(dev) (hci_dev_test_flag(dev, HCI_SC_ENABLED) ? \
Johan Hedberg0edb14d2014-05-26 13:29:28 +030060 0x1f : 0x07)
61#define KEY_DIST_MASK 0x07
Johan Hedberg065a13e2012-10-11 16:26:06 +020062
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +030063/* Maximum message length that can be passed to aes_cmac */
64#define CMAC_MSG_MAX 80
65
Johan Hedberg533e35d2014-06-16 19:25:18 +030066enum {
67 SMP_FLAG_TK_VALID,
68 SMP_FLAG_CFM_PENDING,
69 SMP_FLAG_MITM_AUTH,
70 SMP_FLAG_COMPLETE,
71 SMP_FLAG_INITIATOR,
Johan Hedberg65668772014-05-16 11:03:34 +030072 SMP_FLAG_SC,
Johan Hedbergd8f8edb2014-06-06 11:09:28 +030073 SMP_FLAG_REMOTE_PK,
Johan Hedbergaeb7d462014-05-31 18:52:28 +030074 SMP_FLAG_DEBUG_KEY,
Johan Hedberg38606f12014-06-25 11:10:28 +030075 SMP_FLAG_WAIT_USER,
Johan Hedbergd3e54a82014-06-04 11:07:40 +030076 SMP_FLAG_DHKEY_PENDING,
Johan Hedberg1a8bab42015-03-16 11:45:44 +020077 SMP_FLAG_REMOTE_OOB,
78 SMP_FLAG_LOCAL_OOB,
Johan Hedberg533e35d2014-06-16 19:25:18 +030079};
Johan Hedberg4bc58f52014-05-20 09:45:47 +030080
Marcel Holtmann88a479d2015-03-16 01:10:19 -070081struct smp_dev {
Marcel Holtmann60a27d62015-03-16 01:10:22 -070082 /* Secure Connections OOB data */
83 u8 local_pk[64];
84 u8 local_sk[32];
Marcel Holtmannfb334fe2015-03-16 12:34:57 -070085 u8 local_rand[16];
Marcel Holtmann60a27d62015-03-16 01:10:22 -070086 bool debug_key;
87
Johan Hedbergb1f663c2015-06-11 13:52:27 +030088 u8 min_key_size;
Johan Hedberg2fd36552015-06-11 13:52:26 +030089 u8 max_key_size;
90
Herbert Xu71af2f62016-01-24 21:18:30 +080091 struct crypto_skcipher *tfm_aes;
92 struct crypto_shash *tfm_cmac;
Marcel Holtmann88a479d2015-03-16 01:10:19 -070093};
94
Johan Hedberg4bc58f52014-05-20 09:45:47 +030095struct smp_chan {
Johan Hedbergb68fda62014-08-11 22:06:40 +030096 struct l2cap_conn *conn;
97 struct delayed_work security_timer;
Johan Hedbergb28b4942014-09-05 22:19:55 +030098 unsigned long allow_cmd; /* Bitmask of allowed commands */
Johan Hedbergb68fda62014-08-11 22:06:40 +030099
Johan Hedberg4bc58f52014-05-20 09:45:47 +0300100 u8 preq[7]; /* SMP Pairing Request */
101 u8 prsp[7]; /* SMP Pairing Response */
102 u8 prnd[16]; /* SMP Pairing Random (local) */
103 u8 rrnd[16]; /* SMP Pairing Random (remote) */
104 u8 pcnf[16]; /* SMP Pairing Confirm */
105 u8 tk[16]; /* SMP Temporary Key */
Johan Hedberg882fafa2015-03-16 11:45:43 +0200106 u8 rr[16]; /* Remote OOB ra/rb value */
107 u8 lr[16]; /* Local OOB ra/rb value */
Johan Hedberg4bc58f52014-05-20 09:45:47 +0300108 u8 enc_key_size;
109 u8 remote_key_dist;
110 bdaddr_t id_addr;
111 u8 id_addr_type;
112 u8 irk[16];
113 struct smp_csrk *csrk;
114 struct smp_csrk *slave_csrk;
115 struct smp_ltk *ltk;
116 struct smp_ltk *slave_ltk;
117 struct smp_irk *remote_irk;
Johan Hedberg6a770832014-06-06 11:54:04 +0300118 u8 *link_key;
Johan Hedberg4a74d652014-05-20 09:45:50 +0300119 unsigned long flags;
Johan Hedberg783e0572014-05-31 18:48:26 +0300120 u8 method;
Johan Hedberg38606f12014-06-25 11:10:28 +0300121 u8 passkey_round;
Johan Hedberg6a7bd102014-06-27 14:23:03 +0300122
Johan Hedberg3b191462014-06-06 10:50:15 +0300123 /* Secure Connections variables */
124 u8 local_pk[64];
125 u8 local_sk[32];
Johan Hedbergd8f8edb2014-06-06 11:09:28 +0300126 u8 remote_pk[64];
127 u8 dhkey[32];
Johan Hedberg760b0182014-06-06 11:44:05 +0300128 u8 mackey[16];
Johan Hedberg3b191462014-06-06 10:50:15 +0300129
Herbert Xu71af2f62016-01-24 21:18:30 +0800130 struct crypto_skcipher *tfm_aes;
131 struct crypto_shash *tfm_cmac;
Johan Hedberg4bc58f52014-05-20 09:45:47 +0300132};
133
Johan Hedbergaeb7d462014-05-31 18:52:28 +0300134/* These debug key values are defined in the SMP section of the core
135 * specification. debug_pk is the public debug key and debug_sk the
136 * private debug key.
137 */
138static const u8 debug_pk[64] = {
139 0xe6, 0x9d, 0x35, 0x0e, 0x48, 0x01, 0x03, 0xcc,
140 0xdb, 0xfd, 0xf4, 0xac, 0x11, 0x91, 0xf4, 0xef,
141 0xb9, 0xa5, 0xf9, 0xe9, 0xa7, 0x83, 0x2c, 0x5e,
142 0x2c, 0xbe, 0x97, 0xf2, 0xd2, 0x03, 0xb0, 0x20,
143
144 0x8b, 0xd2, 0x89, 0x15, 0xd0, 0x8e, 0x1c, 0x74,
145 0x24, 0x30, 0xed, 0x8f, 0xc2, 0x45, 0x63, 0x76,
146 0x5c, 0x15, 0x52, 0x5a, 0xbf, 0x9a, 0x32, 0x63,
147 0x6d, 0xeb, 0x2a, 0x65, 0x49, 0x9c, 0x80, 0xdc,
148};
149
150static const u8 debug_sk[32] = {
151 0xbd, 0x1a, 0x3c, 0xcd, 0xa6, 0xb8, 0x99, 0x58,
152 0x99, 0xb7, 0x40, 0xeb, 0x7b, 0x60, 0xff, 0x4a,
153 0x50, 0x3f, 0x10, 0xd2, 0xe3, 0xb3, 0xc9, 0x74,
154 0x38, 0x5f, 0xc5, 0xa3, 0xd4, 0xf6, 0x49, 0x3f,
155};
156
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300157static inline void swap_buf(const u8 *src, u8 *dst, size_t len)
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300158{
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300159 size_t i;
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300160
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300161 for (i = 0; i < len; i++)
162 dst[len - 1 - i] = src[i];
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300163}
164
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200165/* The following functions map to the LE SC SMP crypto functions
166 * AES-CMAC, f4, f5, f6, g2 and h6.
167 */
168
Herbert Xu71af2f62016-01-24 21:18:30 +0800169static int aes_cmac(struct crypto_shash *tfm, const u8 k[16], const u8 *m,
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300170 size_t len, u8 mac[16])
171{
172 uint8_t tmp[16], mac_msb[16], msg_msb[CMAC_MSG_MAX];
Herbert Xu71af2f62016-01-24 21:18:30 +0800173 SHASH_DESC_ON_STACK(desc, tfm);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300174 int err;
175
176 if (len > CMAC_MSG_MAX)
177 return -EFBIG;
178
179 if (!tfm) {
180 BT_ERR("tfm %p", tfm);
181 return -EINVAL;
182 }
183
Herbert Xu71af2f62016-01-24 21:18:30 +0800184 desc->tfm = tfm;
185 desc->flags = 0;
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300186
187 /* Swap key and message from LSB to MSB */
188 swap_buf(k, tmp, 16);
189 swap_buf(m, msg_msb, len);
190
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200191 SMP_DBG("msg (len %zu) %*phN", len, (int) len, m);
192 SMP_DBG("key %16phN", k);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300193
Herbert Xu71af2f62016-01-24 21:18:30 +0800194 err = crypto_shash_setkey(tfm, tmp, 16);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300195 if (err) {
196 BT_ERR("cipher setkey failed: %d", err);
197 return err;
198 }
199
Herbert Xu71af2f62016-01-24 21:18:30 +0800200 err = crypto_shash_digest(desc, msg_msb, len, mac_msb);
201 shash_desc_zero(desc);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300202 if (err) {
Herbert Xu71af2f62016-01-24 21:18:30 +0800203 BT_ERR("Hash computation error %d", err);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300204 return err;
205 }
206
207 swap_buf(mac_msb, mac, 16);
208
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200209 SMP_DBG("mac %16phN", mac);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300210
211 return 0;
212}
213
Herbert Xu71af2f62016-01-24 21:18:30 +0800214static int smp_f4(struct crypto_shash *tfm_cmac, const u8 u[32],
215 const u8 v[32], const u8 x[16], u8 z, u8 res[16])
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300216{
217 u8 m[65];
218 int err;
219
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200220 SMP_DBG("u %32phN", u);
221 SMP_DBG("v %32phN", v);
222 SMP_DBG("x %16phN z %02x", x, z);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300223
224 m[0] = z;
225 memcpy(m + 1, v, 32);
226 memcpy(m + 33, u, 32);
227
228 err = aes_cmac(tfm_cmac, x, m, sizeof(m), res);
229 if (err)
230 return err;
231
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200232 SMP_DBG("res %16phN", res);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300233
234 return err;
235}
236
Herbert Xu71af2f62016-01-24 21:18:30 +0800237static int smp_f5(struct crypto_shash *tfm_cmac, const u8 w[32],
Johan Hedberg4da50de2014-12-29 12:04:10 +0200238 const u8 n1[16], const u8 n2[16], const u8 a1[7],
239 const u8 a2[7], u8 mackey[16], u8 ltk[16])
Johan Hedberg760b0182014-06-06 11:44:05 +0300240{
241 /* The btle, salt and length "magic" values are as defined in
242 * the SMP section of the Bluetooth core specification. In ASCII
243 * the btle value ends up being 'btle'. The salt is just a
244 * random number whereas length is the value 256 in little
245 * endian format.
246 */
247 const u8 btle[4] = { 0x65, 0x6c, 0x74, 0x62 };
248 const u8 salt[16] = { 0xbe, 0x83, 0x60, 0x5a, 0xdb, 0x0b, 0x37, 0x60,
249 0x38, 0xa5, 0xf5, 0xaa, 0x91, 0x83, 0x88, 0x6c };
250 const u8 length[2] = { 0x00, 0x01 };
251 u8 m[53], t[16];
252 int err;
253
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200254 SMP_DBG("w %32phN", w);
255 SMP_DBG("n1 %16phN n2 %16phN", n1, n2);
256 SMP_DBG("a1 %7phN a2 %7phN", a1, a2);
Johan Hedberg760b0182014-06-06 11:44:05 +0300257
258 err = aes_cmac(tfm_cmac, salt, w, 32, t);
259 if (err)
260 return err;
261
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200262 SMP_DBG("t %16phN", t);
Johan Hedberg760b0182014-06-06 11:44:05 +0300263
264 memcpy(m, length, 2);
265 memcpy(m + 2, a2, 7);
266 memcpy(m + 9, a1, 7);
267 memcpy(m + 16, n2, 16);
268 memcpy(m + 32, n1, 16);
269 memcpy(m + 48, btle, 4);
270
271 m[52] = 0; /* Counter */
272
273 err = aes_cmac(tfm_cmac, t, m, sizeof(m), mackey);
274 if (err)
275 return err;
276
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200277 SMP_DBG("mackey %16phN", mackey);
Johan Hedberg760b0182014-06-06 11:44:05 +0300278
279 m[52] = 1; /* Counter */
280
281 err = aes_cmac(tfm_cmac, t, m, sizeof(m), ltk);
282 if (err)
283 return err;
284
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200285 SMP_DBG("ltk %16phN", ltk);
Johan Hedberg760b0182014-06-06 11:44:05 +0300286
287 return 0;
288}
289
Herbert Xu71af2f62016-01-24 21:18:30 +0800290static int smp_f6(struct crypto_shash *tfm_cmac, const u8 w[16],
Johan Hedberg4da50de2014-12-29 12:04:10 +0200291 const u8 n1[16], const u8 n2[16], const u8 r[16],
Johan Hedberg760b0182014-06-06 11:44:05 +0300292 const u8 io_cap[3], const u8 a1[7], const u8 a2[7],
293 u8 res[16])
294{
295 u8 m[65];
296 int err;
297
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200298 SMP_DBG("w %16phN", w);
299 SMP_DBG("n1 %16phN n2 %16phN", n1, n2);
300 SMP_DBG("r %16phN io_cap %3phN a1 %7phN a2 %7phN", r, io_cap, a1, a2);
Johan Hedberg760b0182014-06-06 11:44:05 +0300301
302 memcpy(m, a2, 7);
303 memcpy(m + 7, a1, 7);
304 memcpy(m + 14, io_cap, 3);
305 memcpy(m + 17, r, 16);
306 memcpy(m + 33, n2, 16);
307 memcpy(m + 49, n1, 16);
308
309 err = aes_cmac(tfm_cmac, w, m, sizeof(m), res);
310 if (err)
311 return err;
312
Marcel Holtmann203de212014-12-31 20:01:22 -0800313 SMP_DBG("res %16phN", res);
Johan Hedberg760b0182014-06-06 11:44:05 +0300314
315 return err;
316}
317
Herbert Xu71af2f62016-01-24 21:18:30 +0800318static int smp_g2(struct crypto_shash *tfm_cmac, const u8 u[32], const u8 v[32],
Johan Hedberg191dc7f2014-06-06 11:39:49 +0300319 const u8 x[16], const u8 y[16], u32 *val)
320{
321 u8 m[80], tmp[16];
322 int err;
323
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200324 SMP_DBG("u %32phN", u);
325 SMP_DBG("v %32phN", v);
326 SMP_DBG("x %16phN y %16phN", x, y);
Johan Hedberg191dc7f2014-06-06 11:39:49 +0300327
328 memcpy(m, y, 16);
329 memcpy(m + 16, v, 32);
330 memcpy(m + 48, u, 32);
331
332 err = aes_cmac(tfm_cmac, x, m, sizeof(m), tmp);
333 if (err)
334 return err;
335
336 *val = get_unaligned_le32(tmp);
337 *val %= 1000000;
338
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200339 SMP_DBG("val %06u", *val);
Johan Hedberg191dc7f2014-06-06 11:39:49 +0300340
341 return 0;
342}
343
Herbert Xu71af2f62016-01-24 21:18:30 +0800344static int smp_h6(struct crypto_shash *tfm_cmac, const u8 w[16],
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200345 const u8 key_id[4], u8 res[16])
346{
347 int err;
348
349 SMP_DBG("w %16phN key_id %4phN", w, key_id);
350
351 err = aes_cmac(tfm_cmac, w, key_id, 4, res);
352 if (err)
353 return err;
354
355 SMP_DBG("res %16phN", res);
356
357 return err;
358}
359
360/* The following functions map to the legacy SMP crypto functions e, c1,
361 * s1 and ah.
362 */
363
Herbert Xu71af2f62016-01-24 21:18:30 +0800364static int smp_e(struct crypto_skcipher *tfm, const u8 *k, u8 *r)
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300365{
Herbert Xu71af2f62016-01-24 21:18:30 +0800366 SKCIPHER_REQUEST_ON_STACK(req, tfm);
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300367 struct scatterlist sg;
Johan Hedberg943a7322014-03-18 12:58:24 +0200368 uint8_t tmp[16], data[16];
Johan Hedberg201a5922013-12-02 10:49:04 +0200369 int err;
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300370
Johan Hedberg011c3912015-05-19 21:06:04 +0300371 SMP_DBG("k %16phN r %16phN", k, r);
372
Johan Hedberg7f376cd2014-12-03 16:07:13 +0200373 if (!tfm) {
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300374 BT_ERR("tfm %p", tfm);
375 return -EINVAL;
376 }
377
Johan Hedberg943a7322014-03-18 12:58:24 +0200378 /* The most significant octet of key corresponds to k[0] */
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300379 swap_buf(k, tmp, 16);
Johan Hedberg943a7322014-03-18 12:58:24 +0200380
Herbert Xu71af2f62016-01-24 21:18:30 +0800381 err = crypto_skcipher_setkey(tfm, tmp, 16);
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300382 if (err) {
383 BT_ERR("cipher setkey failed: %d", err);
384 return err;
385 }
386
Johan Hedberg943a7322014-03-18 12:58:24 +0200387 /* Most significant octet of plaintextData corresponds to data[0] */
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300388 swap_buf(r, data, 16);
Johan Hedberg943a7322014-03-18 12:58:24 +0200389
390 sg_init_one(&sg, data, 16);
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300391
Herbert Xu71af2f62016-01-24 21:18:30 +0800392 skcipher_request_set_tfm(req, tfm);
393 skcipher_request_set_callback(req, 0, NULL, NULL);
394 skcipher_request_set_crypt(req, &sg, &sg, 16, NULL);
395
396 err = crypto_skcipher_encrypt(req);
397 skcipher_request_zero(req);
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300398 if (err)
399 BT_ERR("Encrypt data error %d", err);
400
Johan Hedberg943a7322014-03-18 12:58:24 +0200401 /* Most significant octet of encryptedData corresponds to data[0] */
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300402 swap_buf(data, r, 16);
Johan Hedberg943a7322014-03-18 12:58:24 +0200403
Johan Hedberg011c3912015-05-19 21:06:04 +0300404 SMP_DBG("r %16phN", r);
405
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300406 return err;
407}
408
Herbert Xu71af2f62016-01-24 21:18:30 +0800409static int smp_c1(struct crypto_skcipher *tfm_aes, const u8 k[16],
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200410 const u8 r[16], const u8 preq[7], const u8 pres[7], u8 _iat,
411 const bdaddr_t *ia, u8 _rat, const bdaddr_t *ra, u8 res[16])
412{
413 u8 p1[16], p2[16];
414 int err;
415
Johan Hedberg011c3912015-05-19 21:06:04 +0300416 SMP_DBG("k %16phN r %16phN", k, r);
417 SMP_DBG("iat %u ia %6phN rat %u ra %6phN", _iat, ia, _rat, ra);
418 SMP_DBG("preq %7phN pres %7phN", preq, pres);
419
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200420 memset(p1, 0, 16);
421
422 /* p1 = pres || preq || _rat || _iat */
423 p1[0] = _iat;
424 p1[1] = _rat;
425 memcpy(p1 + 2, preq, 7);
426 memcpy(p1 + 9, pres, 7);
427
Johan Hedberg011c3912015-05-19 21:06:04 +0300428 SMP_DBG("p1 %16phN", p1);
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200429
430 /* res = r XOR p1 */
431 u128_xor((u128 *) res, (u128 *) r, (u128 *) p1);
432
433 /* res = e(k, res) */
434 err = smp_e(tfm_aes, k, res);
435 if (err) {
436 BT_ERR("Encrypt data error");
437 return err;
438 }
439
Johan Hedberg011c3912015-05-19 21:06:04 +0300440 /* p2 = padding || ia || ra */
441 memcpy(p2, ra, 6);
442 memcpy(p2 + 6, ia, 6);
443 memset(p2 + 12, 0, 4);
444
445 SMP_DBG("p2 %16phN", p2);
446
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200447 /* res = res XOR p2 */
448 u128_xor((u128 *) res, (u128 *) res, (u128 *) p2);
449
450 /* res = e(k, res) */
451 err = smp_e(tfm_aes, k, res);
452 if (err)
453 BT_ERR("Encrypt data error");
454
455 return err;
456}
457
Herbert Xu71af2f62016-01-24 21:18:30 +0800458static int smp_s1(struct crypto_skcipher *tfm_aes, const u8 k[16],
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200459 const u8 r1[16], const u8 r2[16], u8 _r[16])
Johan Hedberg6a770832014-06-06 11:54:04 +0300460{
461 int err;
462
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200463 /* Just least significant octets from r1 and r2 are considered */
464 memcpy(_r, r2, 8);
465 memcpy(_r + 8, r1, 8);
Johan Hedberg6a770832014-06-06 11:54:04 +0300466
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200467 err = smp_e(tfm_aes, k, _r);
Johan Hedberg6a770832014-06-06 11:54:04 +0300468 if (err)
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200469 BT_ERR("Encrypt data error");
Johan Hedberg6a770832014-06-06 11:54:04 +0300470
471 return err;
472}
473
Herbert Xu71af2f62016-01-24 21:18:30 +0800474static int smp_ah(struct crypto_skcipher *tfm, const u8 irk[16],
Johan Hedbergcd082792014-12-02 13:37:41 +0200475 const u8 r[3], u8 res[3])
Johan Hedberg60478052014-02-18 10:19:31 +0200476{
Johan Hedberg943a7322014-03-18 12:58:24 +0200477 u8 _res[16];
Johan Hedberg60478052014-02-18 10:19:31 +0200478 int err;
479
480 /* r' = padding || r */
Johan Hedberg943a7322014-03-18 12:58:24 +0200481 memcpy(_res, r, 3);
482 memset(_res + 3, 0, 13);
Johan Hedberg60478052014-02-18 10:19:31 +0200483
Johan Hedberg943a7322014-03-18 12:58:24 +0200484 err = smp_e(tfm, irk, _res);
Johan Hedberg60478052014-02-18 10:19:31 +0200485 if (err) {
486 BT_ERR("Encrypt error");
487 return err;
488 }
489
490 /* The output of the random address function ah is:
Marcel Holtmannc5080d42015-09-04 17:08:18 +0200491 * ah(k, r) = e(k, r') mod 2^24
Johan Hedberg60478052014-02-18 10:19:31 +0200492 * The output of the security function e is then truncated to 24 bits
493 * by taking the least significant 24 bits of the output of e as the
494 * result of ah.
495 */
Johan Hedberg943a7322014-03-18 12:58:24 +0200496 memcpy(res, _res, 3);
Johan Hedberg60478052014-02-18 10:19:31 +0200497
498 return 0;
499}
500
Johan Hedbergcd082792014-12-02 13:37:41 +0200501bool smp_irk_matches(struct hci_dev *hdev, const u8 irk[16],
502 const bdaddr_t *bdaddr)
Johan Hedberg60478052014-02-18 10:19:31 +0200503{
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300504 struct l2cap_chan *chan = hdev->smp_data;
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700505 struct smp_dev *smp;
Johan Hedberg60478052014-02-18 10:19:31 +0200506 u8 hash[3];
507 int err;
508
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300509 if (!chan || !chan->data)
510 return false;
511
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700512 smp = chan->data;
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300513
Johan Hedberg60478052014-02-18 10:19:31 +0200514 BT_DBG("RPA %pMR IRK %*phN", bdaddr, 16, irk);
515
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700516 err = smp_ah(smp->tfm_aes, irk, &bdaddr->b[3], hash);
Johan Hedberg60478052014-02-18 10:19:31 +0200517 if (err)
518 return false;
519
520 return !memcmp(bdaddr->b, hash, 3);
521}
522
Johan Hedbergcd082792014-12-02 13:37:41 +0200523int smp_generate_rpa(struct hci_dev *hdev, const u8 irk[16], bdaddr_t *rpa)
Johan Hedbergb1e2b3a2014-02-23 19:42:19 +0200524{
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300525 struct l2cap_chan *chan = hdev->smp_data;
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700526 struct smp_dev *smp;
Johan Hedbergb1e2b3a2014-02-23 19:42:19 +0200527 int err;
528
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300529 if (!chan || !chan->data)
530 return -EOPNOTSUPP;
531
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700532 smp = chan->data;
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300533
Johan Hedbergb1e2b3a2014-02-23 19:42:19 +0200534 get_random_bytes(&rpa->b[3], 3);
535
536 rpa->b[5] &= 0x3f; /* Clear two most significant bits */
537 rpa->b[5] |= 0x40; /* Set second most significant bit */
538
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700539 err = smp_ah(smp->tfm_aes, irk, &rpa->b[3], rpa->b);
Johan Hedbergb1e2b3a2014-02-23 19:42:19 +0200540 if (err < 0)
541 return err;
542
543 BT_DBG("RPA %pMR", rpa);
544
545 return 0;
546}
547
Marcel Holtmann60a27d62015-03-16 01:10:22 -0700548int smp_generate_oob(struct hci_dev *hdev, u8 hash[16], u8 rand[16])
549{
550 struct l2cap_chan *chan = hdev->smp_data;
551 struct smp_dev *smp;
552 int err;
553
554 if (!chan || !chan->data)
555 return -EOPNOTSUPP;
556
557 smp = chan->data;
558
559 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS)) {
560 BT_DBG("Using debug keys");
561 memcpy(smp->local_pk, debug_pk, 64);
562 memcpy(smp->local_sk, debug_sk, 32);
563 smp->debug_key = true;
564 } else {
565 while (true) {
566 /* Generate local key pair for Secure Connections */
567 if (!ecc_make_key(smp->local_pk, smp->local_sk))
568 return -EIO;
569
570 /* This is unlikely, but we need to check that
571 * we didn't accidentially generate a debug key.
572 */
573 if (memcmp(smp->local_sk, debug_sk, 32))
574 break;
575 }
576 smp->debug_key = false;
577 }
578
579 SMP_DBG("OOB Public Key X: %32phN", smp->local_pk);
580 SMP_DBG("OOB Public Key Y: %32phN", smp->local_pk + 32);
581 SMP_DBG("OOB Private Key: %32phN", smp->local_sk);
582
Marcel Holtmannfb334fe2015-03-16 12:34:57 -0700583 get_random_bytes(smp->local_rand, 16);
Marcel Holtmann60a27d62015-03-16 01:10:22 -0700584
585 err = smp_f4(smp->tfm_cmac, smp->local_pk, smp->local_pk,
Marcel Holtmannfb334fe2015-03-16 12:34:57 -0700586 smp->local_rand, 0, hash);
Marcel Holtmann60a27d62015-03-16 01:10:22 -0700587 if (err < 0)
588 return err;
589
Marcel Holtmannfb334fe2015-03-16 12:34:57 -0700590 memcpy(rand, smp->local_rand, 16);
Marcel Holtmann60a27d62015-03-16 01:10:22 -0700591
592 return 0;
593}
594
Anderson Brigliaeb492e02011-06-09 18:50:40 -0300595static void smp_send_cmd(struct l2cap_conn *conn, u8 code, u16 len, void *data)
596{
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300597 struct l2cap_chan *chan = conn->smp;
Johan Hedbergb68fda62014-08-11 22:06:40 +0300598 struct smp_chan *smp;
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300599 struct kvec iv[2];
600 struct msghdr msg;
601
602 if (!chan)
603 return;
Anderson Brigliaeb492e02011-06-09 18:50:40 -0300604
605 BT_DBG("code 0x%2.2x", code);
606
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300607 iv[0].iov_base = &code;
608 iv[0].iov_len = 1;
Anderson Brigliaeb492e02011-06-09 18:50:40 -0300609
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300610 iv[1].iov_base = data;
611 iv[1].iov_len = len;
612
613 memset(&msg, 0, sizeof(msg));
614
Al Viro17836392014-11-24 17:07:38 -0500615 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, iv, 2, 1 + len);
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300616
617 l2cap_chan_send(chan, &msg, 1 + len);
Vinicius Costa Gomese2dcd112011-08-19 21:06:50 -0300618
Johan Hedbergb68fda62014-08-11 22:06:40 +0300619 if (!chan->data)
620 return;
621
622 smp = chan->data;
623
624 cancel_delayed_work_sync(&smp->security_timer);
Johan Hedberg1b0921d2014-09-05 22:19:48 +0300625 schedule_delayed_work(&smp->security_timer, SMP_TIMEOUT);
Anderson Brigliaeb492e02011-06-09 18:50:40 -0300626}
627
Johan Hedbergd2eb9e12014-05-16 10:59:06 +0300628static u8 authreq_to_seclevel(u8 authreq)
Brian Gix2b64d152011-12-21 16:12:12 -0800629{
Johan Hedbergd2eb9e12014-05-16 10:59:06 +0300630 if (authreq & SMP_AUTH_MITM) {
631 if (authreq & SMP_AUTH_SC)
632 return BT_SECURITY_FIPS;
633 else
634 return BT_SECURITY_HIGH;
635 } else {
Brian Gix2b64d152011-12-21 16:12:12 -0800636 return BT_SECURITY_MEDIUM;
Johan Hedbergd2eb9e12014-05-16 10:59:06 +0300637 }
Brian Gix2b64d152011-12-21 16:12:12 -0800638}
639
640static __u8 seclevel_to_authreq(__u8 sec_level)
641{
642 switch (sec_level) {
Johan Hedbergd2eb9e12014-05-16 10:59:06 +0300643 case BT_SECURITY_FIPS:
Brian Gix2b64d152011-12-21 16:12:12 -0800644 case BT_SECURITY_HIGH:
645 return SMP_AUTH_MITM | SMP_AUTH_BONDING;
646 case BT_SECURITY_MEDIUM:
647 return SMP_AUTH_BONDING;
648 default:
649 return SMP_AUTH_NONE;
650 }
651}
652
Vinicius Costa Gomesb8e66ea2011-06-09 18:50:52 -0300653static void build_pairing_cmd(struct l2cap_conn *conn,
Marcel Holtmannf1560462013-10-13 05:43:25 -0700654 struct smp_cmd_pairing *req,
655 struct smp_cmd_pairing *rsp, __u8 authreq)
Vinicius Costa Gomesb8e66ea2011-06-09 18:50:52 -0300656{
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300657 struct l2cap_chan *chan = conn->smp;
658 struct smp_chan *smp = chan->data;
Johan Hedbergfd349c02014-02-18 10:19:36 +0200659 struct hci_conn *hcon = conn->hcon;
660 struct hci_dev *hdev = hcon->hdev;
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100661 u8 local_dist = 0, remote_dist = 0, oob_flag = SMP_OOB_NOT_PRESENT;
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300662
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700663 if (hci_dev_test_flag(hdev, HCI_BONDABLE)) {
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -0700664 local_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
665 remote_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300666 authreq |= SMP_AUTH_BONDING;
Brian Gix2b64d152011-12-21 16:12:12 -0800667 } else {
668 authreq &= ~SMP_AUTH_BONDING;
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300669 }
670
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700671 if (hci_dev_test_flag(hdev, HCI_RPA_RESOLVING))
Johan Hedbergfd349c02014-02-18 10:19:36 +0200672 remote_dist |= SMP_DIST_ID_KEY;
673
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700674 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
Johan Hedberg863efaf2014-02-22 19:06:32 +0200675 local_dist |= SMP_DIST_ID_KEY;
676
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700677 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100678 (authreq & SMP_AUTH_SC)) {
679 struct oob_data *oob_data;
680 u8 bdaddr_type;
681
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700682 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedbergdf8e1a42014-06-06 10:39:56 +0300683 local_dist |= SMP_DIST_LINK_KEY;
684 remote_dist |= SMP_DIST_LINK_KEY;
685 }
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100686
687 if (hcon->dst_type == ADDR_LE_DEV_PUBLIC)
688 bdaddr_type = BDADDR_LE_PUBLIC;
689 else
690 bdaddr_type = BDADDR_LE_RANDOM;
691
692 oob_data = hci_find_remote_oob_data(hdev, &hcon->dst,
693 bdaddr_type);
Marcel Holtmann4775a4e2015-01-31 00:15:52 -0800694 if (oob_data && oob_data->present) {
Johan Hedberg1a8bab42015-03-16 11:45:44 +0200695 set_bit(SMP_FLAG_REMOTE_OOB, &smp->flags);
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100696 oob_flag = SMP_OOB_PRESENT;
Johan Hedberga29b0732014-10-28 15:17:05 +0100697 memcpy(smp->rr, oob_data->rand256, 16);
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100698 memcpy(smp->pcnf, oob_data->hash256, 16);
Marcel Holtmannbc07cd62015-03-16 12:34:56 -0700699 SMP_DBG("OOB Remote Confirmation: %16phN", smp->pcnf);
700 SMP_DBG("OOB Remote Random: %16phN", smp->rr);
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100701 }
702
Johan Hedbergdf8e1a42014-06-06 10:39:56 +0300703 } else {
704 authreq &= ~SMP_AUTH_SC;
705 }
706
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300707 if (rsp == NULL) {
708 req->io_capability = conn->hcon->io_capability;
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100709 req->oob_flag = oob_flag;
Johan Hedberg2fd36552015-06-11 13:52:26 +0300710 req->max_key_size = SMP_DEV(hdev)->max_key_size;
Johan Hedbergfd349c02014-02-18 10:19:36 +0200711 req->init_key_dist = local_dist;
712 req->resp_key_dist = remote_dist;
Johan Hedberg0edb14d2014-05-26 13:29:28 +0300713 req->auth_req = (authreq & AUTH_REQ_MASK(hdev));
Johan Hedbergfd349c02014-02-18 10:19:36 +0200714
715 smp->remote_key_dist = remote_dist;
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300716 return;
717 }
718
719 rsp->io_capability = conn->hcon->io_capability;
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100720 rsp->oob_flag = oob_flag;
Johan Hedberg2fd36552015-06-11 13:52:26 +0300721 rsp->max_key_size = SMP_DEV(hdev)->max_key_size;
Johan Hedbergfd349c02014-02-18 10:19:36 +0200722 rsp->init_key_dist = req->init_key_dist & remote_dist;
723 rsp->resp_key_dist = req->resp_key_dist & local_dist;
Johan Hedberg0edb14d2014-05-26 13:29:28 +0300724 rsp->auth_req = (authreq & AUTH_REQ_MASK(hdev));
Johan Hedbergfd349c02014-02-18 10:19:36 +0200725
726 smp->remote_key_dist = rsp->init_key_dist;
Vinicius Costa Gomesb8e66ea2011-06-09 18:50:52 -0300727}
728
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -0300729static u8 check_enc_key_size(struct l2cap_conn *conn, __u8 max_key_size)
730{
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300731 struct l2cap_chan *chan = conn->smp;
Johan Hedberg2fd36552015-06-11 13:52:26 +0300732 struct hci_dev *hdev = conn->hcon->hdev;
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300733 struct smp_chan *smp = chan->data;
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -0300734
Johan Hedberg2fd36552015-06-11 13:52:26 +0300735 if (max_key_size > SMP_DEV(hdev)->max_key_size ||
736 max_key_size < SMP_MIN_ENC_KEY_SIZE)
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -0300737 return SMP_ENC_KEY_SIZE;
738
Vinicius Costa Gomesf7aa6112012-01-30 19:29:12 -0300739 smp->enc_key_size = max_key_size;
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -0300740
741 return 0;
742}
743
Johan Hedberg6f48e262014-08-11 22:06:44 +0300744static void smp_chan_destroy(struct l2cap_conn *conn)
745{
746 struct l2cap_chan *chan = conn->smp;
747 struct smp_chan *smp = chan->data;
Johan Hedberg923e2412014-12-03 12:43:39 +0200748 struct hci_conn *hcon = conn->hcon;
Johan Hedberg6f48e262014-08-11 22:06:44 +0300749 bool complete;
750
751 BUG_ON(!smp);
752
753 cancel_delayed_work_sync(&smp->security_timer);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300754
Johan Hedberg6f48e262014-08-11 22:06:44 +0300755 complete = test_bit(SMP_FLAG_COMPLETE, &smp->flags);
Johan Hedberg923e2412014-12-03 12:43:39 +0200756 mgmt_smp_complete(hcon, complete);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300757
Marcel Holtmann276812e2015-03-16 01:10:18 -0700758 kzfree(smp->csrk);
759 kzfree(smp->slave_csrk);
760 kzfree(smp->link_key);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300761
Herbert Xu71af2f62016-01-24 21:18:30 +0800762 crypto_free_skcipher(smp->tfm_aes);
763 crypto_free_shash(smp->tfm_cmac);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300764
Johan Hedberg923e2412014-12-03 12:43:39 +0200765 /* Ensure that we don't leave any debug key around if debug key
766 * support hasn't been explicitly enabled.
767 */
768 if (smp->ltk && smp->ltk->type == SMP_LTK_P256_DEBUG &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700769 !hci_dev_test_flag(hcon->hdev, HCI_KEEP_DEBUG_KEYS)) {
Johan Hedberg923e2412014-12-03 12:43:39 +0200770 list_del_rcu(&smp->ltk->list);
771 kfree_rcu(smp->ltk, rcu);
772 smp->ltk = NULL;
773 }
774
Johan Hedberg6f48e262014-08-11 22:06:44 +0300775 /* If pairing failed clean up any keys we might have */
776 if (!complete) {
777 if (smp->ltk) {
Johan Hedberg970d0f12014-11-13 14:37:47 +0200778 list_del_rcu(&smp->ltk->list);
779 kfree_rcu(smp->ltk, rcu);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300780 }
781
782 if (smp->slave_ltk) {
Johan Hedberg970d0f12014-11-13 14:37:47 +0200783 list_del_rcu(&smp->slave_ltk->list);
784 kfree_rcu(smp->slave_ltk, rcu);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300785 }
786
787 if (smp->remote_irk) {
Johan Hedbergadae20c2014-11-13 14:37:48 +0200788 list_del_rcu(&smp->remote_irk->list);
789 kfree_rcu(smp->remote_irk, rcu);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300790 }
791 }
792
793 chan->data = NULL;
Marcel Holtmann276812e2015-03-16 01:10:18 -0700794 kzfree(smp);
Johan Hedberg923e2412014-12-03 12:43:39 +0200795 hci_conn_drop(hcon);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300796}
797
Johan Hedberg84794e12013-11-06 11:24:57 +0200798static void smp_failure(struct l2cap_conn *conn, u8 reason)
Brian Gix4f957a72011-11-23 08:28:36 -0800799{
Johan Hedbergbab73cb2012-02-09 16:07:29 +0200800 struct hci_conn *hcon = conn->hcon;
Johan Hedbergb68fda62014-08-11 22:06:40 +0300801 struct l2cap_chan *chan = conn->smp;
Johan Hedbergbab73cb2012-02-09 16:07:29 +0200802
Johan Hedberg84794e12013-11-06 11:24:57 +0200803 if (reason)
Brian Gix4f957a72011-11-23 08:28:36 -0800804 smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason),
Marcel Holtmannf1560462013-10-13 05:43:25 -0700805 &reason);
Brian Gix4f957a72011-11-23 08:28:36 -0800806
Johan Hedberge1e930f2014-09-08 17:09:49 -0700807 mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);
Vinicius Costa Gomesf1c09c02012-02-01 18:27:56 -0300808
Johan Hedbergfc75cc82014-09-05 22:19:52 +0300809 if (chan->data)
Vinicius Costa Gomesf1c09c02012-02-01 18:27:56 -0300810 smp_chan_destroy(conn);
Brian Gix4f957a72011-11-23 08:28:36 -0800811}
812
Brian Gix2b64d152011-12-21 16:12:12 -0800813#define JUST_WORKS 0x00
814#define JUST_CFM 0x01
815#define REQ_PASSKEY 0x02
816#define CFM_PASSKEY 0x03
817#define REQ_OOB 0x04
Johan Hedberg5e3d3d92014-05-31 18:51:02 +0300818#define DSP_PASSKEY 0x05
Brian Gix2b64d152011-12-21 16:12:12 -0800819#define OVERLAP 0xFF
820
821static const u8 gen_method[5][5] = {
822 { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
823 { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
824 { CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY },
825 { JUST_WORKS, JUST_CFM, JUST_WORKS, JUST_WORKS, JUST_CFM },
826 { CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, OVERLAP },
827};
828
Johan Hedberg5e3d3d92014-05-31 18:51:02 +0300829static const u8 sc_method[5][5] = {
830 { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
831 { JUST_WORKS, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY },
832 { DSP_PASSKEY, DSP_PASSKEY, REQ_PASSKEY, JUST_WORKS, DSP_PASSKEY },
833 { JUST_WORKS, JUST_CFM, JUST_WORKS, JUST_WORKS, JUST_CFM },
834 { DSP_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY },
835};
836
Johan Hedberg581370c2014-06-17 13:07:38 +0300837static u8 get_auth_method(struct smp_chan *smp, u8 local_io, u8 remote_io)
838{
Johan Hedberg2bcd4002014-07-09 19:18:09 +0300839 /* If either side has unknown io_caps, use JUST_CFM (which gets
840 * converted later to JUST_WORKS if we're initiators.
841 */
Johan Hedberg581370c2014-06-17 13:07:38 +0300842 if (local_io > SMP_IO_KEYBOARD_DISPLAY ||
843 remote_io > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2bcd4002014-07-09 19:18:09 +0300844 return JUST_CFM;
Johan Hedberg581370c2014-06-17 13:07:38 +0300845
Johan Hedberg5e3d3d92014-05-31 18:51:02 +0300846 if (test_bit(SMP_FLAG_SC, &smp->flags))
847 return sc_method[remote_io][local_io];
848
Johan Hedberg581370c2014-06-17 13:07:38 +0300849 return gen_method[remote_io][local_io];
850}
851
Brian Gix2b64d152011-12-21 16:12:12 -0800852static int tk_request(struct l2cap_conn *conn, u8 remote_oob, u8 auth,
853 u8 local_io, u8 remote_io)
854{
855 struct hci_conn *hcon = conn->hcon;
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300856 struct l2cap_chan *chan = conn->smp;
857 struct smp_chan *smp = chan->data;
Brian Gix2b64d152011-12-21 16:12:12 -0800858 u32 passkey = 0;
859 int ret = 0;
860
861 /* Initialize key for JUST WORKS */
862 memset(smp->tk, 0, sizeof(smp->tk));
Johan Hedberg4a74d652014-05-20 09:45:50 +0300863 clear_bit(SMP_FLAG_TK_VALID, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -0800864
865 BT_DBG("tk_request: auth:%d lcl:%d rem:%d", auth, local_io, remote_io);
866
Johan Hedberg2bcd4002014-07-09 19:18:09 +0300867 /* 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
871 * table.
872 */
Johan Hedberg581370c2014-06-17 13:07:38 +0300873 if (!(auth & SMP_AUTH_MITM))
Johan Hedberg783e0572014-05-31 18:48:26 +0300874 smp->method = JUST_CFM;
Brian Gix2b64d152011-12-21 16:12:12 -0800875 else
Johan Hedberg783e0572014-05-31 18:48:26 +0300876 smp->method = get_auth_method(smp, local_io, remote_io);
Brian Gix2b64d152011-12-21 16:12:12 -0800877
Johan Hedberga82505c2014-03-24 14:39:07 +0200878 /* Don't confirm locally initiated pairing attempts */
Johan Hedberg783e0572014-05-31 18:48:26 +0300879 if (smp->method == JUST_CFM && test_bit(SMP_FLAG_INITIATOR,
880 &smp->flags))
881 smp->method = JUST_WORKS;
Johan Hedberga82505c2014-03-24 14:39:07 +0200882
Johan Hedberg02f3e252014-07-16 15:09:13 +0300883 /* Don't bother user space with no IO capabilities */
Johan Hedberg783e0572014-05-31 18:48:26 +0300884 if (smp->method == JUST_CFM &&
885 hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
886 smp->method = JUST_WORKS;
Johan Hedberg02f3e252014-07-16 15:09:13 +0300887
Brian Gix2b64d152011-12-21 16:12:12 -0800888 /* If Just Works, Continue with Zero TK */
Johan Hedberg783e0572014-05-31 18:48:26 +0300889 if (smp->method == JUST_WORKS) {
Johan Hedberg4a74d652014-05-20 09:45:50 +0300890 set_bit(SMP_FLAG_TK_VALID, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -0800891 return 0;
892 }
893
Johan Hedberg19c5ce92015-03-15 19:34:04 +0200894 /* If this function is used for SC -> legacy fallback we
895 * can only recover the just-works case.
896 */
897 if (test_bit(SMP_FLAG_SC, &smp->flags))
898 return -EINVAL;
899
Brian Gix2b64d152011-12-21 16:12:12 -0800900 /* Not Just Works/Confirm results in MITM Authentication */
Johan Hedberg783e0572014-05-31 18:48:26 +0300901 if (smp->method != JUST_CFM) {
Johan Hedberg4a74d652014-05-20 09:45:50 +0300902 set_bit(SMP_FLAG_MITM_AUTH, &smp->flags);
Johan Hedberg5eb596f2014-09-18 11:26:32 +0300903 if (hcon->pending_sec_level < BT_SECURITY_HIGH)
904 hcon->pending_sec_level = BT_SECURITY_HIGH;
905 }
Brian Gix2b64d152011-12-21 16:12:12 -0800906
907 /* If both devices have Keyoard-Display I/O, the master
908 * Confirms and the slave Enters the passkey.
909 */
Johan Hedberg783e0572014-05-31 18:48:26 +0300910 if (smp->method == OVERLAP) {
Johan Hedberg40bef302014-07-16 11:42:27 +0300911 if (hcon->role == HCI_ROLE_MASTER)
Johan Hedberg783e0572014-05-31 18:48:26 +0300912 smp->method = CFM_PASSKEY;
Brian Gix2b64d152011-12-21 16:12:12 -0800913 else
Johan Hedberg783e0572014-05-31 18:48:26 +0300914 smp->method = REQ_PASSKEY;
Brian Gix2b64d152011-12-21 16:12:12 -0800915 }
916
Johan Hedberg01ad34d2014-03-19 14:14:53 +0200917 /* Generate random passkey. */
Johan Hedberg783e0572014-05-31 18:48:26 +0300918 if (smp->method == CFM_PASSKEY) {
Johan Hedberg943a7322014-03-18 12:58:24 +0200919 memset(smp->tk, 0, sizeof(smp->tk));
Brian Gix2b64d152011-12-21 16:12:12 -0800920 get_random_bytes(&passkey, sizeof(passkey));
921 passkey %= 1000000;
Johan Hedberg943a7322014-03-18 12:58:24 +0200922 put_unaligned_le32(passkey, smp->tk);
Brian Gix2b64d152011-12-21 16:12:12 -0800923 BT_DBG("PassKey: %d", passkey);
Johan Hedberg4a74d652014-05-20 09:45:50 +0300924 set_bit(SMP_FLAG_TK_VALID, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -0800925 }
926
Johan Hedberg783e0572014-05-31 18:48:26 +0300927 if (smp->method == REQ_PASSKEY)
Marcel Holtmannce39fb42013-10-13 02:23:39 -0700928 ret = mgmt_user_passkey_request(hcon->hdev, &hcon->dst,
Johan Hedberg272d90d2012-02-09 15:26:12 +0200929 hcon->type, hcon->dst_type);
Johan Hedberg783e0572014-05-31 18:48:26 +0300930 else if (smp->method == JUST_CFM)
Johan Hedberg4eb65e62014-03-24 14:39:05 +0200931 ret = mgmt_user_confirm_request(hcon->hdev, &hcon->dst,
932 hcon->type, hcon->dst_type,
933 passkey, 1);
Brian Gix2b64d152011-12-21 16:12:12 -0800934 else
Johan Hedberg01ad34d2014-03-19 14:14:53 +0200935 ret = mgmt_user_passkey_notify(hcon->hdev, &hcon->dst,
Johan Hedberg272d90d2012-02-09 15:26:12 +0200936 hcon->type, hcon->dst_type,
Johan Hedberg39adbff2014-03-20 08:18:14 +0200937 passkey, 0);
Brian Gix2b64d152011-12-21 16:12:12 -0800938
Brian Gix2b64d152011-12-21 16:12:12 -0800939 return ret;
940}
941
Johan Hedberg1cc61142014-05-20 09:45:52 +0300942static u8 smp_confirm(struct smp_chan *smp)
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300943{
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300944 struct l2cap_conn *conn = smp->conn;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300945 struct smp_cmd_pairing_confirm cp;
946 int ret;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300947
948 BT_DBG("conn %p", conn);
949
Johan Hedberge491eaf2014-10-25 21:15:37 +0200950 ret = smp_c1(smp->tfm_aes, smp->tk, smp->prnd, smp->preq, smp->prsp,
Johan Hedbergb1cd5fd2014-02-28 12:54:17 +0200951 conn->hcon->init_addr_type, &conn->hcon->init_addr,
Johan Hedberg943a7322014-03-18 12:58:24 +0200952 conn->hcon->resp_addr_type, &conn->hcon->resp_addr,
953 cp.confirm_val);
Johan Hedberg1cc61142014-05-20 09:45:52 +0300954 if (ret)
955 return SMP_UNSPECIFIED;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300956
Johan Hedberg4a74d652014-05-20 09:45:50 +0300957 clear_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -0800958
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300959 smp_send_cmd(smp->conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cp), &cp);
960
Johan Hedbergb28b4942014-09-05 22:19:55 +0300961 if (conn->hcon->out)
962 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
963 else
964 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
965
Johan Hedberg1cc61142014-05-20 09:45:52 +0300966 return 0;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300967}
968
Johan Hedberg861580a2014-05-20 09:45:51 +0300969static u8 smp_random(struct smp_chan *smp)
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300970{
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300971 struct l2cap_conn *conn = smp->conn;
972 struct hci_conn *hcon = conn->hcon;
Johan Hedberg861580a2014-05-20 09:45:51 +0300973 u8 confirm[16];
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300974 int ret;
975
Johan Hedbergec70f362014-06-27 14:23:04 +0300976 if (IS_ERR_OR_NULL(smp->tfm_aes))
Johan Hedberg861580a2014-05-20 09:45:51 +0300977 return SMP_UNSPECIFIED;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300978
979 BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave");
980
Johan Hedberge491eaf2014-10-25 21:15:37 +0200981 ret = smp_c1(smp->tfm_aes, smp->tk, smp->rrnd, smp->preq, smp->prsp,
Johan Hedbergb1cd5fd2014-02-28 12:54:17 +0200982 hcon->init_addr_type, &hcon->init_addr,
Johan Hedberg943a7322014-03-18 12:58:24 +0200983 hcon->resp_addr_type, &hcon->resp_addr, confirm);
Johan Hedberg861580a2014-05-20 09:45:51 +0300984 if (ret)
985 return SMP_UNSPECIFIED;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300986
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300987 if (memcmp(smp->pcnf, confirm, sizeof(smp->pcnf)) != 0) {
988 BT_ERR("Pairing failed (confirmation values mismatch)");
Johan Hedberg861580a2014-05-20 09:45:51 +0300989 return SMP_CONFIRM_FAILED;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300990 }
991
992 if (hcon->out) {
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -0800993 u8 stk[16];
994 __le64 rand = 0;
995 __le16 ediv = 0;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300996
Johan Hedberge491eaf2014-10-25 21:15:37 +0200997 smp_s1(smp->tfm_aes, smp->tk, smp->rrnd, smp->prnd, stk);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300998
Johan Hedberg861580a2014-05-20 09:45:51 +0300999 if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags))
1000 return SMP_UNSPECIFIED;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001001
Johan Hedberg8b76ce32015-06-08 18:14:39 +03001002 hci_le_start_enc(hcon, ediv, rand, stk, smp->enc_key_size);
Vinicius Costa Gomesf7aa6112012-01-30 19:29:12 -03001003 hcon->enc_key_size = smp->enc_key_size;
Johan Hedbergfe59a052014-07-01 19:14:12 +03001004 set_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001005 } else {
Johan Hedbergfff34902014-06-10 15:19:50 +03001006 u8 stk[16], auth;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08001007 __le64 rand = 0;
1008 __le16 ediv = 0;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001009
Johan Hedberg943a7322014-03-18 12:58:24 +02001010 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
1011 smp->prnd);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001012
Johan Hedberge491eaf2014-10-25 21:15:37 +02001013 smp_s1(smp->tfm_aes, smp->tk, smp->prnd, smp->rrnd, stk);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001014
Johan Hedbergfff34902014-06-10 15:19:50 +03001015 if (hcon->pending_sec_level == BT_SECURITY_HIGH)
1016 auth = 1;
1017 else
1018 auth = 0;
1019
Johan Hedberg7d5843b2014-06-16 19:25:15 +03001020 /* Even though there's no _SLAVE suffix this is the
1021 * slave STK we're adding for later lookup (the master
1022 * STK never needs to be stored).
1023 */
Marcel Holtmannce39fb42013-10-13 02:23:39 -07001024 hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type,
Johan Hedberg2ceba532014-06-16 19:25:16 +03001025 SMP_STK, auth, stk, smp->enc_key_size, ediv, rand);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001026 }
1027
Johan Hedberg861580a2014-05-20 09:45:51 +03001028 return 0;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001029}
1030
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001031static void smp_notify_keys(struct l2cap_conn *conn)
1032{
1033 struct l2cap_chan *chan = conn->smp;
1034 struct smp_chan *smp = chan->data;
1035 struct hci_conn *hcon = conn->hcon;
1036 struct hci_dev *hdev = hcon->hdev;
1037 struct smp_cmd_pairing *req = (void *) &smp->preq[1];
1038 struct smp_cmd_pairing *rsp = (void *) &smp->prsp[1];
1039 bool persistent;
1040
Johan Hedbergcad20c22015-10-12 13:36:19 +02001041 if (hcon->type == ACL_LINK) {
1042 if (hcon->key_type == HCI_LK_DEBUG_COMBINATION)
1043 persistent = false;
1044 else
1045 persistent = !test_bit(HCI_CONN_FLUSH_KEY,
1046 &hcon->flags);
1047 } else {
1048 /* The LTKs, IRKs and CSRKs should be persistent only if
1049 * both sides had the bonding bit set in their
1050 * authentication requests.
1051 */
1052 persistent = !!((req->auth_req & rsp->auth_req) &
1053 SMP_AUTH_BONDING);
1054 }
1055
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001056 if (smp->remote_irk) {
Johan Hedbergcad20c22015-10-12 13:36:19 +02001057 mgmt_new_irk(hdev, smp->remote_irk, persistent);
1058
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001059 /* Now that user space can be considered to know the
1060 * identity address track the connection based on it
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001061 * from now on (assuming this is an LE link).
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001062 */
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001063 if (hcon->type == LE_LINK) {
1064 bacpy(&hcon->dst, &smp->remote_irk->bdaddr);
1065 hcon->dst_type = smp->remote_irk->addr_type;
1066 queue_work(hdev->workqueue, &conn->id_addr_update_work);
1067 }
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001068 }
1069
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001070 if (smp->csrk) {
1071 smp->csrk->bdaddr_type = hcon->dst_type;
1072 bacpy(&smp->csrk->bdaddr, &hcon->dst);
1073 mgmt_new_csrk(hdev, smp->csrk, persistent);
1074 }
1075
1076 if (smp->slave_csrk) {
1077 smp->slave_csrk->bdaddr_type = hcon->dst_type;
1078 bacpy(&smp->slave_csrk->bdaddr, &hcon->dst);
1079 mgmt_new_csrk(hdev, smp->slave_csrk, persistent);
1080 }
1081
1082 if (smp->ltk) {
1083 smp->ltk->bdaddr_type = hcon->dst_type;
1084 bacpy(&smp->ltk->bdaddr, &hcon->dst);
1085 mgmt_new_ltk(hdev, smp->ltk, persistent);
1086 }
1087
1088 if (smp->slave_ltk) {
1089 smp->slave_ltk->bdaddr_type = hcon->dst_type;
1090 bacpy(&smp->slave_ltk->bdaddr, &hcon->dst);
1091 mgmt_new_ltk(hdev, smp->slave_ltk, persistent);
1092 }
Johan Hedberg6a770832014-06-06 11:54:04 +03001093
1094 if (smp->link_key) {
Johan Hedberge3befab2014-06-01 16:33:39 +03001095 struct link_key *key;
1096 u8 type;
1097
1098 if (test_bit(SMP_FLAG_DEBUG_KEY, &smp->flags))
1099 type = HCI_LK_DEBUG_COMBINATION;
1100 else if (hcon->sec_level == BT_SECURITY_FIPS)
1101 type = HCI_LK_AUTH_COMBINATION_P256;
1102 else
1103 type = HCI_LK_UNAUTH_COMBINATION_P256;
1104
1105 key = hci_add_link_key(hdev, smp->conn->hcon, &hcon->dst,
1106 smp->link_key, type, 0, &persistent);
1107 if (key) {
1108 mgmt_new_link_key(hdev, key, persistent);
1109
1110 /* Don't keep debug keys around if the relevant
1111 * flag is not set.
1112 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001113 if (!hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS) &&
Johan Hedberge3befab2014-06-01 16:33:39 +03001114 key->type == HCI_LK_DEBUG_COMBINATION) {
1115 list_del_rcu(&key->list);
1116 kfree_rcu(key, rcu);
1117 }
1118 }
Johan Hedberg6a770832014-06-06 11:54:04 +03001119 }
1120}
1121
Johan Hedbergd3e54a82014-06-04 11:07:40 +03001122static void sc_add_ltk(struct smp_chan *smp)
1123{
1124 struct hci_conn *hcon = smp->conn->hcon;
1125 u8 key_type, auth;
1126
1127 if (test_bit(SMP_FLAG_DEBUG_KEY, &smp->flags))
1128 key_type = SMP_LTK_P256_DEBUG;
1129 else
1130 key_type = SMP_LTK_P256;
1131
1132 if (hcon->pending_sec_level == BT_SECURITY_FIPS)
1133 auth = 1;
1134 else
1135 auth = 0;
1136
Johan Hedbergd3e54a82014-06-04 11:07:40 +03001137 smp->ltk = hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type,
1138 key_type, auth, smp->tk, smp->enc_key_size,
1139 0, 0);
1140}
1141
Johan Hedberg6a770832014-06-06 11:54:04 +03001142static void sc_generate_link_key(struct smp_chan *smp)
1143{
1144 /* These constants are as specified in the core specification.
1145 * In ASCII they spell out to 'tmp1' and 'lebr'.
1146 */
1147 const u8 tmp1[4] = { 0x31, 0x70, 0x6d, 0x74 };
1148 const u8 lebr[4] = { 0x72, 0x62, 0x65, 0x6c };
1149
1150 smp->link_key = kzalloc(16, GFP_KERNEL);
1151 if (!smp->link_key)
1152 return;
1153
1154 if (smp_h6(smp->tfm_cmac, smp->tk, tmp1, smp->link_key)) {
Marcel Holtmann276812e2015-03-16 01:10:18 -07001155 kzfree(smp->link_key);
Johan Hedberg6a770832014-06-06 11:54:04 +03001156 smp->link_key = NULL;
1157 return;
1158 }
1159
1160 if (smp_h6(smp->tfm_cmac, smp->link_key, lebr, smp->link_key)) {
Marcel Holtmann276812e2015-03-16 01:10:18 -07001161 kzfree(smp->link_key);
Johan Hedberg6a770832014-06-06 11:54:04 +03001162 smp->link_key = NULL;
1163 return;
1164 }
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001165}
1166
Johan Hedbergb28b4942014-09-05 22:19:55 +03001167static void smp_allow_key_dist(struct smp_chan *smp)
1168{
1169 /* Allow the first expected phase 3 PDU. The rest of the PDUs
1170 * will be allowed in each PDU handler to ensure we receive
1171 * them in the correct order.
1172 */
1173 if (smp->remote_key_dist & SMP_DIST_ENC_KEY)
1174 SMP_ALLOW_CMD(smp, SMP_CMD_ENCRYPT_INFO);
1175 else if (smp->remote_key_dist & SMP_DIST_ID_KEY)
1176 SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_INFO);
1177 else if (smp->remote_key_dist & SMP_DIST_SIGN)
1178 SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO);
1179}
1180
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001181static void sc_generate_ltk(struct smp_chan *smp)
1182{
1183 /* These constants are as specified in the core specification.
1184 * In ASCII they spell out to 'tmp2' and 'brle'.
1185 */
1186 const u8 tmp2[4] = { 0x32, 0x70, 0x6d, 0x74 };
1187 const u8 brle[4] = { 0x65, 0x6c, 0x72, 0x62 };
1188 struct hci_conn *hcon = smp->conn->hcon;
1189 struct hci_dev *hdev = hcon->hdev;
1190 struct link_key *key;
1191
1192 key = hci_find_link_key(hdev, &hcon->dst);
1193 if (!key) {
1194 BT_ERR("%s No Link Key found to generate LTK", hdev->name);
1195 return;
1196 }
1197
1198 if (key->type == HCI_LK_DEBUG_COMBINATION)
1199 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
1200
1201 if (smp_h6(smp->tfm_cmac, key->val, tmp2, smp->tk))
1202 return;
1203
1204 if (smp_h6(smp->tfm_cmac, smp->tk, brle, smp->tk))
1205 return;
1206
1207 sc_add_ltk(smp);
1208}
1209
Johan Hedbergd6268e82014-09-05 22:19:51 +03001210static void smp_distribute_keys(struct smp_chan *smp)
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001211{
1212 struct smp_cmd_pairing *req, *rsp;
Johan Hedberg86d14072014-08-11 22:06:43 +03001213 struct l2cap_conn *conn = smp->conn;
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001214 struct hci_conn *hcon = conn->hcon;
1215 struct hci_dev *hdev = hcon->hdev;
1216 __u8 *keydist;
1217
1218 BT_DBG("conn %p", conn);
1219
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001220 rsp = (void *) &smp->prsp[1];
1221
1222 /* The responder sends its keys first */
Johan Hedbergb28b4942014-09-05 22:19:55 +03001223 if (hcon->out && (smp->remote_key_dist & KEY_DIST_MASK)) {
1224 smp_allow_key_dist(smp);
Johan Hedberg86d14072014-08-11 22:06:43 +03001225 return;
Johan Hedbergb28b4942014-09-05 22:19:55 +03001226 }
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001227
1228 req = (void *) &smp->preq[1];
1229
1230 if (hcon->out) {
1231 keydist = &rsp->init_key_dist;
1232 *keydist &= req->init_key_dist;
1233 } else {
1234 keydist = &rsp->resp_key_dist;
1235 *keydist &= req->resp_key_dist;
1236 }
1237
Johan Hedberg6a770832014-06-06 11:54:04 +03001238 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001239 if (hcon->type == LE_LINK && (*keydist & SMP_DIST_LINK_KEY))
Johan Hedberg6a770832014-06-06 11:54:04 +03001240 sc_generate_link_key(smp);
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001241 if (hcon->type == ACL_LINK && (*keydist & SMP_DIST_ENC_KEY))
1242 sc_generate_ltk(smp);
Johan Hedberg6a770832014-06-06 11:54:04 +03001243
1244 /* Clear the keys which are generated but not distributed */
1245 *keydist &= ~SMP_SC_NO_DIST;
1246 }
1247
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001248 BT_DBG("keydist 0x%x", *keydist);
1249
1250 if (*keydist & SMP_DIST_ENC_KEY) {
1251 struct smp_cmd_encrypt_info enc;
1252 struct smp_cmd_master_ident ident;
1253 struct smp_ltk *ltk;
1254 u8 authenticated;
1255 __le16 ediv;
1256 __le64 rand;
1257
Johan Hedberg1fc62c52015-06-10 11:11:20 +03001258 /* Make sure we generate only the significant amount of
1259 * bytes based on the encryption key size, and set the rest
1260 * of the value to zeroes.
1261 */
1262 get_random_bytes(enc.ltk, smp->enc_key_size);
1263 memset(enc.ltk + smp->enc_key_size, 0,
1264 sizeof(enc.ltk) - smp->enc_key_size);
1265
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001266 get_random_bytes(&ediv, sizeof(ediv));
1267 get_random_bytes(&rand, sizeof(rand));
1268
1269 smp_send_cmd(conn, SMP_CMD_ENCRYPT_INFO, sizeof(enc), &enc);
1270
1271 authenticated = hcon->sec_level == BT_SECURITY_HIGH;
1272 ltk = hci_add_ltk(hdev, &hcon->dst, hcon->dst_type,
1273 SMP_LTK_SLAVE, authenticated, enc.ltk,
1274 smp->enc_key_size, ediv, rand);
1275 smp->slave_ltk = ltk;
1276
1277 ident.ediv = ediv;
1278 ident.rand = rand;
1279
1280 smp_send_cmd(conn, SMP_CMD_MASTER_IDENT, sizeof(ident), &ident);
1281
1282 *keydist &= ~SMP_DIST_ENC_KEY;
1283 }
1284
1285 if (*keydist & SMP_DIST_ID_KEY) {
1286 struct smp_cmd_ident_addr_info addrinfo;
1287 struct smp_cmd_ident_info idinfo;
1288
1289 memcpy(idinfo.irk, hdev->irk, sizeof(idinfo.irk));
1290
1291 smp_send_cmd(conn, SMP_CMD_IDENT_INFO, sizeof(idinfo), &idinfo);
1292
1293 /* The hci_conn contains the local identity address
1294 * after the connection has been established.
1295 *
1296 * This is true even when the connection has been
1297 * established using a resolvable random address.
1298 */
1299 bacpy(&addrinfo.bdaddr, &hcon->src);
1300 addrinfo.addr_type = hcon->src_type;
1301
1302 smp_send_cmd(conn, SMP_CMD_IDENT_ADDR_INFO, sizeof(addrinfo),
1303 &addrinfo);
1304
1305 *keydist &= ~SMP_DIST_ID_KEY;
1306 }
1307
1308 if (*keydist & SMP_DIST_SIGN) {
1309 struct smp_cmd_sign_info sign;
1310 struct smp_csrk *csrk;
1311
1312 /* Generate a new random key */
1313 get_random_bytes(sign.csrk, sizeof(sign.csrk));
1314
1315 csrk = kzalloc(sizeof(*csrk), GFP_KERNEL);
1316 if (csrk) {
Johan Hedberg4cd39282015-02-27 10:11:13 +02001317 if (hcon->sec_level > BT_SECURITY_MEDIUM)
1318 csrk->type = MGMT_CSRK_LOCAL_AUTHENTICATED;
1319 else
1320 csrk->type = MGMT_CSRK_LOCAL_UNAUTHENTICATED;
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001321 memcpy(csrk->val, sign.csrk, sizeof(csrk->val));
1322 }
1323 smp->slave_csrk = csrk;
1324
1325 smp_send_cmd(conn, SMP_CMD_SIGN_INFO, sizeof(sign), &sign);
1326
1327 *keydist &= ~SMP_DIST_SIGN;
1328 }
1329
1330 /* If there are still keys to be received wait for them */
Johan Hedbergb28b4942014-09-05 22:19:55 +03001331 if (smp->remote_key_dist & KEY_DIST_MASK) {
1332 smp_allow_key_dist(smp);
Johan Hedberg86d14072014-08-11 22:06:43 +03001333 return;
Johan Hedbergb28b4942014-09-05 22:19:55 +03001334 }
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001335
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001336 set_bit(SMP_FLAG_COMPLETE, &smp->flags);
1337 smp_notify_keys(conn);
1338
1339 smp_chan_destroy(conn);
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001340}
1341
Johan Hedbergb68fda62014-08-11 22:06:40 +03001342static void smp_timeout(struct work_struct *work)
1343{
1344 struct smp_chan *smp = container_of(work, struct smp_chan,
1345 security_timer.work);
1346 struct l2cap_conn *conn = smp->conn;
1347
1348 BT_DBG("conn %p", conn);
1349
Johan Hedberg1e91c292014-08-18 20:33:29 +03001350 hci_disconnect(conn->hcon, HCI_ERROR_REMOTE_USER_TERM);
Johan Hedbergb68fda62014-08-11 22:06:40 +03001351}
1352
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001353static struct smp_chan *smp_chan_create(struct l2cap_conn *conn)
1354{
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001355 struct l2cap_chan *chan = conn->smp;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001356 struct smp_chan *smp;
1357
Marcel Holtmannf1560462013-10-13 05:43:25 -07001358 smp = kzalloc(sizeof(*smp), GFP_ATOMIC);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001359 if (!smp)
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001360 return NULL;
1361
Herbert Xu71af2f62016-01-24 21:18:30 +08001362 smp->tfm_aes = crypto_alloc_skcipher("ecb(aes)", 0, CRYPTO_ALG_ASYNC);
Johan Hedberg6a7bd102014-06-27 14:23:03 +03001363 if (IS_ERR(smp->tfm_aes)) {
1364 BT_ERR("Unable to create ECB crypto context");
Marcel Holtmann276812e2015-03-16 01:10:18 -07001365 kzfree(smp);
Johan Hedberg6a7bd102014-06-27 14:23:03 +03001366 return NULL;
1367 }
1368
Herbert Xu71af2f62016-01-24 21:18:30 +08001369 smp->tfm_cmac = crypto_alloc_shash("cmac(aes)", 0, 0);
Johan Hedberg407cecf2014-05-02 14:19:47 +03001370 if (IS_ERR(smp->tfm_cmac)) {
1371 BT_ERR("Unable to create CMAC crypto context");
Herbert Xu71af2f62016-01-24 21:18:30 +08001372 crypto_free_skcipher(smp->tfm_aes);
Marcel Holtmann276812e2015-03-16 01:10:18 -07001373 kzfree(smp);
Johan Hedberg407cecf2014-05-02 14:19:47 +03001374 return NULL;
1375 }
1376
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001377 smp->conn = conn;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001378 chan->data = smp;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001379
Johan Hedbergb28b4942014-09-05 22:19:55 +03001380 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_FAIL);
1381
Johan Hedbergb68fda62014-08-11 22:06:40 +03001382 INIT_DELAYED_WORK(&smp->security_timer, smp_timeout);
1383
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001384 hci_conn_hold(conn->hcon);
1385
1386 return smp;
1387}
1388
Johan Hedberg760b0182014-06-06 11:44:05 +03001389static int sc_mackey_and_ltk(struct smp_chan *smp, u8 mackey[16], u8 ltk[16])
1390{
1391 struct hci_conn *hcon = smp->conn->hcon;
1392 u8 *na, *nb, a[7], b[7];
1393
1394 if (hcon->out) {
1395 na = smp->prnd;
1396 nb = smp->rrnd;
1397 } else {
1398 na = smp->rrnd;
1399 nb = smp->prnd;
1400 }
1401
1402 memcpy(a, &hcon->init_addr, 6);
1403 memcpy(b, &hcon->resp_addr, 6);
1404 a[6] = hcon->init_addr_type;
1405 b[6] = hcon->resp_addr_type;
1406
1407 return smp_f5(smp->tfm_cmac, smp->dhkey, na, nb, a, b, mackey, ltk);
1408}
1409
Johan Hedberg38606f12014-06-25 11:10:28 +03001410static void sc_dhkey_check(struct smp_chan *smp)
Johan Hedberg760b0182014-06-06 11:44:05 +03001411{
1412 struct hci_conn *hcon = smp->conn->hcon;
1413 struct smp_cmd_dhkey_check check;
1414 u8 a[7], b[7], *local_addr, *remote_addr;
1415 u8 io_cap[3], r[16];
1416
Johan Hedberg760b0182014-06-06 11:44:05 +03001417 memcpy(a, &hcon->init_addr, 6);
1418 memcpy(b, &hcon->resp_addr, 6);
1419 a[6] = hcon->init_addr_type;
1420 b[6] = hcon->resp_addr_type;
1421
1422 if (hcon->out) {
1423 local_addr = a;
1424 remote_addr = b;
1425 memcpy(io_cap, &smp->preq[1], 3);
1426 } else {
1427 local_addr = b;
1428 remote_addr = a;
1429 memcpy(io_cap, &smp->prsp[1], 3);
1430 }
1431
Johan Hedbergdddd3052014-06-01 15:38:09 +03001432 memset(r, 0, sizeof(r));
1433
1434 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
Johan Hedberg38606f12014-06-25 11:10:28 +03001435 put_unaligned_le32(hcon->passkey_notify, r);
Johan Hedberg760b0182014-06-06 11:44:05 +03001436
Johan Hedberga29b0732014-10-28 15:17:05 +01001437 if (smp->method == REQ_OOB)
1438 memcpy(r, smp->rr, 16);
1439
Johan Hedberg760b0182014-06-06 11:44:05 +03001440 smp_f6(smp->tfm_cmac, smp->mackey, smp->prnd, smp->rrnd, r, io_cap,
1441 local_addr, remote_addr, check.e);
1442
1443 smp_send_cmd(smp->conn, SMP_CMD_DHKEY_CHECK, sizeof(check), &check);
Johan Hedbergdddd3052014-06-01 15:38:09 +03001444}
1445
Johan Hedberg38606f12014-06-25 11:10:28 +03001446static u8 sc_passkey_send_confirm(struct smp_chan *smp)
1447{
1448 struct l2cap_conn *conn = smp->conn;
1449 struct hci_conn *hcon = conn->hcon;
1450 struct smp_cmd_pairing_confirm cfm;
1451 u8 r;
1452
1453 r = ((hcon->passkey_notify >> smp->passkey_round) & 0x01);
1454 r |= 0x80;
1455
1456 get_random_bytes(smp->prnd, sizeof(smp->prnd));
1457
1458 if (smp_f4(smp->tfm_cmac, smp->local_pk, smp->remote_pk, smp->prnd, r,
1459 cfm.confirm_val))
1460 return SMP_UNSPECIFIED;
1461
1462 smp_send_cmd(conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cfm), &cfm);
1463
1464 return 0;
1465}
1466
1467static u8 sc_passkey_round(struct smp_chan *smp, u8 smp_op)
1468{
1469 struct l2cap_conn *conn = smp->conn;
1470 struct hci_conn *hcon = conn->hcon;
1471 struct hci_dev *hdev = hcon->hdev;
1472 u8 cfm[16], r;
1473
1474 /* Ignore the PDU if we've already done 20 rounds (0 - 19) */
1475 if (smp->passkey_round >= 20)
1476 return 0;
1477
1478 switch (smp_op) {
1479 case SMP_CMD_PAIRING_RANDOM:
1480 r = ((hcon->passkey_notify >> smp->passkey_round) & 0x01);
1481 r |= 0x80;
1482
1483 if (smp_f4(smp->tfm_cmac, smp->remote_pk, smp->local_pk,
1484 smp->rrnd, r, cfm))
1485 return SMP_UNSPECIFIED;
1486
1487 if (memcmp(smp->pcnf, cfm, 16))
1488 return SMP_CONFIRM_FAILED;
1489
1490 smp->passkey_round++;
1491
1492 if (smp->passkey_round == 20) {
1493 /* Generate MacKey and LTK */
1494 if (sc_mackey_and_ltk(smp, smp->mackey, smp->tk))
1495 return SMP_UNSPECIFIED;
1496 }
1497
1498 /* The round is only complete when the initiator
1499 * receives pairing random.
1500 */
1501 if (!hcon->out) {
1502 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
1503 sizeof(smp->prnd), smp->prnd);
Johan Hedbergd3e54a82014-06-04 11:07:40 +03001504 if (smp->passkey_round == 20)
Johan Hedberg38606f12014-06-25 11:10:28 +03001505 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
Johan Hedbergd3e54a82014-06-04 11:07:40 +03001506 else
Johan Hedberg38606f12014-06-25 11:10:28 +03001507 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
Johan Hedberg38606f12014-06-25 11:10:28 +03001508 return 0;
1509 }
1510
1511 /* Start the next round */
1512 if (smp->passkey_round != 20)
1513 return sc_passkey_round(smp, 0);
1514
1515 /* Passkey rounds are complete - start DHKey Check */
1516 sc_dhkey_check(smp);
1517 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
1518
1519 break;
1520
1521 case SMP_CMD_PAIRING_CONFIRM:
1522 if (test_bit(SMP_FLAG_WAIT_USER, &smp->flags)) {
1523 set_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
1524 return 0;
1525 }
1526
1527 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
1528
1529 if (hcon->out) {
1530 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
1531 sizeof(smp->prnd), smp->prnd);
1532 return 0;
1533 }
1534
1535 return sc_passkey_send_confirm(smp);
1536
1537 case SMP_CMD_PUBLIC_KEY:
1538 default:
1539 /* Initiating device starts the round */
1540 if (!hcon->out)
1541 return 0;
1542
1543 BT_DBG("%s Starting passkey round %u", hdev->name,
1544 smp->passkey_round + 1);
1545
1546 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
1547
1548 return sc_passkey_send_confirm(smp);
1549 }
1550
1551 return 0;
1552}
1553
Johan Hedbergdddd3052014-06-01 15:38:09 +03001554static int sc_user_reply(struct smp_chan *smp, u16 mgmt_op, __le32 passkey)
1555{
Johan Hedberg38606f12014-06-25 11:10:28 +03001556 struct l2cap_conn *conn = smp->conn;
1557 struct hci_conn *hcon = conn->hcon;
1558 u8 smp_op;
1559
1560 clear_bit(SMP_FLAG_WAIT_USER, &smp->flags);
1561
Johan Hedbergdddd3052014-06-01 15:38:09 +03001562 switch (mgmt_op) {
1563 case MGMT_OP_USER_PASSKEY_NEG_REPLY:
1564 smp_failure(smp->conn, SMP_PASSKEY_ENTRY_FAILED);
1565 return 0;
1566 case MGMT_OP_USER_CONFIRM_NEG_REPLY:
1567 smp_failure(smp->conn, SMP_NUMERIC_COMP_FAILED);
1568 return 0;
Johan Hedberg38606f12014-06-25 11:10:28 +03001569 case MGMT_OP_USER_PASSKEY_REPLY:
1570 hcon->passkey_notify = le32_to_cpu(passkey);
1571 smp->passkey_round = 0;
1572
1573 if (test_and_clear_bit(SMP_FLAG_CFM_PENDING, &smp->flags))
1574 smp_op = SMP_CMD_PAIRING_CONFIRM;
1575 else
1576 smp_op = 0;
1577
1578 if (sc_passkey_round(smp, smp_op))
1579 return -EIO;
1580
1581 return 0;
Johan Hedbergdddd3052014-06-01 15:38:09 +03001582 }
1583
Johan Hedbergd3e54a82014-06-04 11:07:40 +03001584 /* Initiator sends DHKey check first */
1585 if (hcon->out) {
1586 sc_dhkey_check(smp);
1587 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
1588 } else if (test_and_clear_bit(SMP_FLAG_DHKEY_PENDING, &smp->flags)) {
1589 sc_dhkey_check(smp);
1590 sc_add_ltk(smp);
1591 }
Johan Hedberg760b0182014-06-06 11:44:05 +03001592
1593 return 0;
1594}
1595
Brian Gix2b64d152011-12-21 16:12:12 -08001596int smp_user_confirm_reply(struct hci_conn *hcon, u16 mgmt_op, __le32 passkey)
1597{
Johan Hedbergb10e8012014-06-27 14:23:07 +03001598 struct l2cap_conn *conn = hcon->l2cap_data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001599 struct l2cap_chan *chan;
Brian Gix2b64d152011-12-21 16:12:12 -08001600 struct smp_chan *smp;
1601 u32 value;
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001602 int err;
Brian Gix2b64d152011-12-21 16:12:12 -08001603
1604 BT_DBG("");
1605
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001606 if (!conn)
Brian Gix2b64d152011-12-21 16:12:12 -08001607 return -ENOTCONN;
1608
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001609 chan = conn->smp;
1610 if (!chan)
1611 return -ENOTCONN;
1612
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001613 l2cap_chan_lock(chan);
1614 if (!chan->data) {
1615 err = -ENOTCONN;
1616 goto unlock;
1617 }
1618
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001619 smp = chan->data;
Brian Gix2b64d152011-12-21 16:12:12 -08001620
Johan Hedberg760b0182014-06-06 11:44:05 +03001621 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
1622 err = sc_user_reply(smp, mgmt_op, passkey);
1623 goto unlock;
1624 }
1625
Brian Gix2b64d152011-12-21 16:12:12 -08001626 switch (mgmt_op) {
1627 case MGMT_OP_USER_PASSKEY_REPLY:
1628 value = le32_to_cpu(passkey);
Johan Hedberg943a7322014-03-18 12:58:24 +02001629 memset(smp->tk, 0, sizeof(smp->tk));
Brian Gix2b64d152011-12-21 16:12:12 -08001630 BT_DBG("PassKey: %d", value);
Johan Hedberg943a7322014-03-18 12:58:24 +02001631 put_unaligned_le32(value, smp->tk);
Brian Gix2b64d152011-12-21 16:12:12 -08001632 /* Fall Through */
1633 case MGMT_OP_USER_CONFIRM_REPLY:
Johan Hedberg4a74d652014-05-20 09:45:50 +03001634 set_bit(SMP_FLAG_TK_VALID, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -08001635 break;
1636 case MGMT_OP_USER_PASSKEY_NEG_REPLY:
1637 case MGMT_OP_USER_CONFIRM_NEG_REPLY:
Johan Hedberg84794e12013-11-06 11:24:57 +02001638 smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001639 err = 0;
1640 goto unlock;
Brian Gix2b64d152011-12-21 16:12:12 -08001641 default:
Johan Hedberg84794e12013-11-06 11:24:57 +02001642 smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001643 err = -EOPNOTSUPP;
1644 goto unlock;
Brian Gix2b64d152011-12-21 16:12:12 -08001645 }
1646
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001647 err = 0;
1648
Brian Gix2b64d152011-12-21 16:12:12 -08001649 /* If it is our turn to send Pairing Confirm, do so now */
Johan Hedberg1cc61142014-05-20 09:45:52 +03001650 if (test_bit(SMP_FLAG_CFM_PENDING, &smp->flags)) {
1651 u8 rsp = smp_confirm(smp);
1652 if (rsp)
1653 smp_failure(conn, rsp);
1654 }
Brian Gix2b64d152011-12-21 16:12:12 -08001655
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001656unlock:
1657 l2cap_chan_unlock(chan);
1658 return err;
Brian Gix2b64d152011-12-21 16:12:12 -08001659}
1660
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001661static void build_bredr_pairing_cmd(struct smp_chan *smp,
1662 struct smp_cmd_pairing *req,
1663 struct smp_cmd_pairing *rsp)
1664{
1665 struct l2cap_conn *conn = smp->conn;
1666 struct hci_dev *hdev = conn->hcon->hdev;
1667 u8 local_dist = 0, remote_dist = 0;
1668
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001669 if (hci_dev_test_flag(hdev, HCI_BONDABLE)) {
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001670 local_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
1671 remote_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
1672 }
1673
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001674 if (hci_dev_test_flag(hdev, HCI_RPA_RESOLVING))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001675 remote_dist |= SMP_DIST_ID_KEY;
1676
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001677 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001678 local_dist |= SMP_DIST_ID_KEY;
1679
1680 if (!rsp) {
1681 memset(req, 0, sizeof(*req));
1682
1683 req->init_key_dist = local_dist;
1684 req->resp_key_dist = remote_dist;
Johan Hedberge3f6a252015-06-11 13:52:30 +03001685 req->max_key_size = conn->hcon->enc_key_size;
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001686
1687 smp->remote_key_dist = remote_dist;
1688
1689 return;
1690 }
1691
1692 memset(rsp, 0, sizeof(*rsp));
1693
Johan Hedberge3f6a252015-06-11 13:52:30 +03001694 rsp->max_key_size = conn->hcon->enc_key_size;
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001695 rsp->init_key_dist = req->init_key_dist & remote_dist;
1696 rsp->resp_key_dist = req->resp_key_dist & local_dist;
1697
1698 smp->remote_key_dist = rsp->init_key_dist;
1699}
1700
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001701static u8 smp_cmd_pairing_req(struct l2cap_conn *conn, struct sk_buff *skb)
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001702{
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001703 struct smp_cmd_pairing rsp, *req = (void *) skb->data;
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001704 struct l2cap_chan *chan = conn->smp;
Johan Hedbergb3c64102014-07-10 11:02:07 +03001705 struct hci_dev *hdev = conn->hcon->hdev;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001706 struct smp_chan *smp;
Johan Hedbergc7262e72014-06-17 13:07:37 +03001707 u8 key_size, auth, sec_level;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001708 int ret;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001709
1710 BT_DBG("conn %p", conn);
1711
Johan Hedbergc46b98b2014-02-18 10:19:29 +02001712 if (skb->len < sizeof(*req))
Johan Hedberg38e4a912014-05-08 14:19:11 +03001713 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02001714
Johan Hedberg40bef302014-07-16 11:42:27 +03001715 if (conn->hcon->role != HCI_ROLE_SLAVE)
Brian Gix2b64d152011-12-21 16:12:12 -08001716 return SMP_CMD_NOTSUPP;
1717
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001718 if (!chan->data)
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001719 smp = smp_chan_create(conn);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001720 else
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001721 smp = chan->data;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001722
Andrei Emeltchenkod08fd0e2012-07-19 17:03:43 +03001723 if (!smp)
1724 return SMP_UNSPECIFIED;
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03001725
Johan Hedbergc05b9332014-09-10 17:37:42 -07001726 /* We didn't start the pairing, so match remote */
Johan Hedberg0edb14d2014-05-26 13:29:28 +03001727 auth = req->auth_req & AUTH_REQ_MASK(hdev);
Johan Hedbergc05b9332014-09-10 17:37:42 -07001728
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001729 if (!hci_dev_test_flag(hdev, HCI_BONDABLE) &&
Johan Hedbergc05b9332014-09-10 17:37:42 -07001730 (auth & SMP_AUTH_BONDING))
Johan Hedbergb3c64102014-07-10 11:02:07 +03001731 return SMP_PAIRING_NOTSUPP;
1732
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001733 if (hci_dev_test_flag(hdev, HCI_SC_ONLY) && !(auth & SMP_AUTH_SC))
Johan Hedberg903b71c2014-09-08 16:59:18 -07001734 return SMP_AUTH_REQUIREMENTS;
1735
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03001736 smp->preq[0] = SMP_CMD_PAIRING_REQ;
1737 memcpy(&smp->preq[1], req, sizeof(*req));
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001738 skb_pull(skb, sizeof(*req));
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001739
Johan Hedbergcb06d362015-03-16 21:12:34 +02001740 /* If the remote side's OOB flag is set it means it has
1741 * successfully received our local OOB data - therefore set the
1742 * flag to indicate that local OOB is in use.
1743 */
Johan Hedberg58428562015-03-16 11:45:45 +02001744 if (req->oob_flag == SMP_OOB_PRESENT)
1745 set_bit(SMP_FLAG_LOCAL_OOB, &smp->flags);
1746
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001747 /* SMP over BR/EDR requires special treatment */
1748 if (conn->hcon->type == ACL_LINK) {
1749 /* We must have a BR/EDR SC link */
Marcel Holtmann08f63cc2014-12-07 16:19:12 +01001750 if (!test_bit(HCI_CONN_AES_CCM, &conn->hcon->flags) &&
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -07001751 !hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001752 return SMP_CROSS_TRANSP_NOT_ALLOWED;
1753
1754 set_bit(SMP_FLAG_SC, &smp->flags);
1755
1756 build_bredr_pairing_cmd(smp, req, &rsp);
1757
1758 key_size = min(req->max_key_size, rsp.max_key_size);
1759 if (check_enc_key_size(conn, key_size))
1760 return SMP_ENC_KEY_SIZE;
1761
1762 /* Clear bits which are generated but not distributed */
1763 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1764
1765 smp->prsp[0] = SMP_CMD_PAIRING_RSP;
1766 memcpy(&smp->prsp[1], &rsp, sizeof(rsp));
1767 smp_send_cmd(conn, SMP_CMD_PAIRING_RSP, sizeof(rsp), &rsp);
1768
1769 smp_distribute_keys(smp);
1770 return 0;
1771 }
1772
Johan Hedberg5e3d3d92014-05-31 18:51:02 +03001773 build_pairing_cmd(conn, req, &rsp, auth);
1774
1775 if (rsp.auth_req & SMP_AUTH_SC)
1776 set_bit(SMP_FLAG_SC, &smp->flags);
1777
Johan Hedberg5be5e272014-09-10 17:58:54 -07001778 if (conn->hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
Johan Hedberg1afc2a12014-09-10 17:37:44 -07001779 sec_level = BT_SECURITY_MEDIUM;
1780 else
1781 sec_level = authreq_to_seclevel(auth);
1782
Johan Hedbergc7262e72014-06-17 13:07:37 +03001783 if (sec_level > conn->hcon->pending_sec_level)
1784 conn->hcon->pending_sec_level = sec_level;
Ido Yarivfdde0a22012-03-05 20:09:38 +02001785
Stephen Hemminger49c922b2014-10-27 21:12:20 -07001786 /* If we need MITM check that it can be achieved */
Johan Hedberg2ed8f652014-06-17 13:07:39 +03001787 if (conn->hcon->pending_sec_level >= BT_SECURITY_HIGH) {
1788 u8 method;
1789
1790 method = get_auth_method(smp, conn->hcon->io_capability,
1791 req->io_capability);
1792 if (method == JUST_WORKS || method == JUST_CFM)
1793 return SMP_AUTH_REQUIREMENTS;
1794 }
1795
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001796 key_size = min(req->max_key_size, rsp.max_key_size);
1797 if (check_enc_key_size(conn, key_size))
1798 return SMP_ENC_KEY_SIZE;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001799
Johan Hedberge84a6b12013-12-02 10:49:03 +02001800 get_random_bytes(smp->prnd, sizeof(smp->prnd));
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001801
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03001802 smp->prsp[0] = SMP_CMD_PAIRING_RSP;
1803 memcpy(&smp->prsp[1], &rsp, sizeof(rsp));
Anderson Brigliaf01ead32011-06-09 18:50:45 -03001804
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001805 smp_send_cmd(conn, SMP_CMD_PAIRING_RSP, sizeof(rsp), &rsp);
Johan Hedberg3b191462014-06-06 10:50:15 +03001806
1807 clear_bit(SMP_FLAG_INITIATOR, &smp->flags);
1808
Johan Hedberg19c5ce92015-03-15 19:34:04 +02001809 /* Strictly speaking we shouldn't allow Pairing Confirm for the
1810 * SC case, however some implementations incorrectly copy RFU auth
1811 * req bits from our security request, which may create a false
1812 * positive SC enablement.
1813 */
1814 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
1815
Johan Hedberg3b191462014-06-06 10:50:15 +03001816 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
1817 SMP_ALLOW_CMD(smp, SMP_CMD_PUBLIC_KEY);
1818 /* Clear bits which are generated but not distributed */
1819 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1820 /* Wait for Public Key from Initiating Device */
1821 return 0;
Johan Hedberg3b191462014-06-06 10:50:15 +03001822 }
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001823
Brian Gix2b64d152011-12-21 16:12:12 -08001824 /* Request setup of TK */
1825 ret = tk_request(conn, 0, auth, rsp.io_capability, req->io_capability);
1826 if (ret)
1827 return SMP_UNSPECIFIED;
1828
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001829 return 0;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001830}
1831
Johan Hedberg3b191462014-06-06 10:50:15 +03001832static u8 sc_send_public_key(struct smp_chan *smp)
1833{
Johan Hedberg70157ef2014-06-24 15:22:59 +03001834 struct hci_dev *hdev = smp->conn->hcon->hdev;
1835
Johan Hedberg3b191462014-06-06 10:50:15 +03001836 BT_DBG("");
1837
Johan Hedberg1a8bab42015-03-16 11:45:44 +02001838 if (test_bit(SMP_FLAG_LOCAL_OOB, &smp->flags)) {
Marcel Holtmann33d0c032015-03-16 01:10:24 -07001839 struct l2cap_chan *chan = hdev->smp_data;
1840 struct smp_dev *smp_dev;
1841
1842 if (!chan || !chan->data)
1843 return SMP_UNSPECIFIED;
1844
1845 smp_dev = chan->data;
1846
1847 memcpy(smp->local_pk, smp_dev->local_pk, 64);
1848 memcpy(smp->local_sk, smp_dev->local_sk, 32);
Marcel Holtmannfb334fe2015-03-16 12:34:57 -07001849 memcpy(smp->lr, smp_dev->local_rand, 16);
Marcel Holtmann33d0c032015-03-16 01:10:24 -07001850
1851 if (smp_dev->debug_key)
1852 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
1853
1854 goto done;
1855 }
1856
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001857 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS)) {
Johan Hedberg70157ef2014-06-24 15:22:59 +03001858 BT_DBG("Using debug keys");
1859 memcpy(smp->local_pk, debug_pk, 64);
1860 memcpy(smp->local_sk, debug_sk, 32);
1861 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
1862 } else {
1863 while (true) {
1864 /* Generate local key pair for Secure Connections */
1865 if (!ecc_make_key(smp->local_pk, smp->local_sk))
1866 return SMP_UNSPECIFIED;
Johan Hedberg6c0dcc52014-06-06 15:33:30 +03001867
Johan Hedberg70157ef2014-06-24 15:22:59 +03001868 /* This is unlikely, but we need to check that
1869 * we didn't accidentially generate a debug key.
1870 */
1871 if (memcmp(smp->local_sk, debug_sk, 32))
1872 break;
1873 }
Johan Hedberg6c0dcc52014-06-06 15:33:30 +03001874 }
Johan Hedberg3b191462014-06-06 10:50:15 +03001875
Marcel Holtmann33d0c032015-03-16 01:10:24 -07001876done:
Johan Hedbergc7a3d572014-12-01 22:03:16 +02001877 SMP_DBG("Local Public Key X: %32phN", smp->local_pk);
Marcel Holtmann8e4e2ee2015-03-16 01:10:25 -07001878 SMP_DBG("Local Public Key Y: %32phN", smp->local_pk + 32);
Johan Hedbergc7a3d572014-12-01 22:03:16 +02001879 SMP_DBG("Local Private Key: %32phN", smp->local_sk);
Johan Hedberg3b191462014-06-06 10:50:15 +03001880
1881 smp_send_cmd(smp->conn, SMP_CMD_PUBLIC_KEY, 64, smp->local_pk);
1882
1883 return 0;
1884}
1885
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001886static u8 smp_cmd_pairing_rsp(struct l2cap_conn *conn, struct sk_buff *skb)
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001887{
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001888 struct smp_cmd_pairing *req, *rsp = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001889 struct l2cap_chan *chan = conn->smp;
1890 struct smp_chan *smp = chan->data;
Johan Hedberg0edb14d2014-05-26 13:29:28 +03001891 struct hci_dev *hdev = conn->hcon->hdev;
Johan Hedberg3a7dbfb2014-09-10 17:37:41 -07001892 u8 key_size, auth;
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03001893 int ret;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001894
1895 BT_DBG("conn %p", conn);
1896
Johan Hedbergc46b98b2014-02-18 10:19:29 +02001897 if (skb->len < sizeof(*rsp))
Johan Hedberg38e4a912014-05-08 14:19:11 +03001898 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02001899
Johan Hedberg40bef302014-07-16 11:42:27 +03001900 if (conn->hcon->role != HCI_ROLE_MASTER)
Brian Gix2b64d152011-12-21 16:12:12 -08001901 return SMP_CMD_NOTSUPP;
1902
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001903 skb_pull(skb, sizeof(*rsp));
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001904
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03001905 req = (void *) &smp->preq[1];
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001906
1907 key_size = min(req->max_key_size, rsp->max_key_size);
1908 if (check_enc_key_size(conn, key_size))
1909 return SMP_ENC_KEY_SIZE;
1910
Johan Hedberg0edb14d2014-05-26 13:29:28 +03001911 auth = rsp->auth_req & AUTH_REQ_MASK(hdev);
Johan Hedbergc05b9332014-09-10 17:37:42 -07001912
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001913 if (hci_dev_test_flag(hdev, HCI_SC_ONLY) && !(auth & SMP_AUTH_SC))
Johan Hedberg903b71c2014-09-08 16:59:18 -07001914 return SMP_AUTH_REQUIREMENTS;
1915
Johan Hedbergcb06d362015-03-16 21:12:34 +02001916 /* If the remote side's OOB flag is set it means it has
1917 * successfully received our local OOB data - therefore set the
1918 * flag to indicate that local OOB is in use.
1919 */
Johan Hedberg58428562015-03-16 11:45:45 +02001920 if (rsp->oob_flag == SMP_OOB_PRESENT)
1921 set_bit(SMP_FLAG_LOCAL_OOB, &smp->flags);
1922
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001923 smp->prsp[0] = SMP_CMD_PAIRING_RSP;
1924 memcpy(&smp->prsp[1], rsp, sizeof(*rsp));
1925
1926 /* Update remote key distribution in case the remote cleared
1927 * some bits that we had enabled in our request.
1928 */
1929 smp->remote_key_dist &= rsp->resp_key_dist;
1930
1931 /* For BR/EDR this means we're done and can start phase 3 */
1932 if (conn->hcon->type == ACL_LINK) {
1933 /* Clear bits which are generated but not distributed */
1934 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1935 smp_distribute_keys(smp);
1936 return 0;
1937 }
1938
Johan Hedberg65668772014-05-16 11:03:34 +03001939 if ((req->auth_req & SMP_AUTH_SC) && (auth & SMP_AUTH_SC))
1940 set_bit(SMP_FLAG_SC, &smp->flags);
Johan Hedbergd2eb9e12014-05-16 10:59:06 +03001941 else if (conn->hcon->pending_sec_level > BT_SECURITY_HIGH)
1942 conn->hcon->pending_sec_level = BT_SECURITY_HIGH;
Johan Hedberg65668772014-05-16 11:03:34 +03001943
Stephen Hemminger49c922b2014-10-27 21:12:20 -07001944 /* If we need MITM check that it can be achieved */
Johan Hedberg2ed8f652014-06-17 13:07:39 +03001945 if (conn->hcon->pending_sec_level >= BT_SECURITY_HIGH) {
1946 u8 method;
1947
1948 method = get_auth_method(smp, req->io_capability,
1949 rsp->io_capability);
1950 if (method == JUST_WORKS || method == JUST_CFM)
1951 return SMP_AUTH_REQUIREMENTS;
1952 }
1953
Johan Hedberge84a6b12013-12-02 10:49:03 +02001954 get_random_bytes(smp->prnd, sizeof(smp->prnd));
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03001955
Johan Hedbergfdcc4be2014-03-14 10:53:50 +02001956 /* Update remote key distribution in case the remote cleared
1957 * some bits that we had enabled in our request.
1958 */
1959 smp->remote_key_dist &= rsp->resp_key_dist;
1960
Johan Hedberg3b191462014-06-06 10:50:15 +03001961 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
1962 /* Clear bits which are generated but not distributed */
1963 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1964 SMP_ALLOW_CMD(smp, SMP_CMD_PUBLIC_KEY);
1965 return sc_send_public_key(smp);
1966 }
1967
Johan Hedbergc05b9332014-09-10 17:37:42 -07001968 auth |= req->auth_req;
Brian Gix2b64d152011-12-21 16:12:12 -08001969
Johan Hedberg476585e2012-06-06 18:54:15 +08001970 ret = tk_request(conn, 0, auth, req->io_capability, rsp->io_capability);
Brian Gix2b64d152011-12-21 16:12:12 -08001971 if (ret)
1972 return SMP_UNSPECIFIED;
1973
Johan Hedberg4a74d652014-05-20 09:45:50 +03001974 set_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -08001975
1976 /* Can't compose response until we have been confirmed */
Johan Hedberg4a74d652014-05-20 09:45:50 +03001977 if (test_bit(SMP_FLAG_TK_VALID, &smp->flags))
Johan Hedberg1cc61142014-05-20 09:45:52 +03001978 return smp_confirm(smp);
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001979
1980 return 0;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001981}
1982
Johan Hedbergdcee2b32014-06-06 11:36:38 +03001983static u8 sc_check_confirm(struct smp_chan *smp)
1984{
1985 struct l2cap_conn *conn = smp->conn;
1986
1987 BT_DBG("");
1988
Johan Hedberg38606f12014-06-25 11:10:28 +03001989 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
1990 return sc_passkey_round(smp, SMP_CMD_PAIRING_CONFIRM);
1991
Johan Hedbergdcee2b32014-06-06 11:36:38 +03001992 if (conn->hcon->out) {
1993 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
1994 smp->prnd);
1995 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
1996 }
1997
1998 return 0;
1999}
2000
Johan Hedberg19c5ce92015-03-15 19:34:04 +02002001/* Work-around for some implementations that incorrectly copy RFU bits
2002 * from our security request and thereby create the impression that
2003 * we're doing SC when in fact the remote doesn't support it.
2004 */
2005static int fixup_sc_false_positive(struct smp_chan *smp)
2006{
2007 struct l2cap_conn *conn = smp->conn;
2008 struct hci_conn *hcon = conn->hcon;
2009 struct hci_dev *hdev = hcon->hdev;
2010 struct smp_cmd_pairing *req, *rsp;
2011 u8 auth;
2012
2013 /* The issue is only observed when we're in slave role */
2014 if (hcon->out)
2015 return SMP_UNSPECIFIED;
2016
2017 if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
2018 BT_ERR("Refusing SMP SC -> legacy fallback in SC-only mode");
2019 return SMP_UNSPECIFIED;
2020 }
2021
2022 BT_ERR("Trying to fall back to legacy SMP");
2023
2024 req = (void *) &smp->preq[1];
2025 rsp = (void *) &smp->prsp[1];
2026
2027 /* Rebuild key dist flags which may have been cleared for SC */
2028 smp->remote_key_dist = (req->init_key_dist & rsp->resp_key_dist);
2029
2030 auth = req->auth_req & AUTH_REQ_MASK(hdev);
2031
2032 if (tk_request(conn, 0, auth, rsp->io_capability, req->io_capability)) {
2033 BT_ERR("Failed to fall back to legacy SMP");
2034 return SMP_UNSPECIFIED;
2035 }
2036
2037 clear_bit(SMP_FLAG_SC, &smp->flags);
2038
2039 return 0;
2040}
2041
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002042static u8 smp_cmd_pairing_confirm(struct l2cap_conn *conn, struct sk_buff *skb)
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002043{
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002044 struct l2cap_chan *chan = conn->smp;
2045 struct smp_chan *smp = chan->data;
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03002046
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002047 BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave");
2048
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002049 if (skb->len < sizeof(smp->pcnf))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002050 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002051
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03002052 memcpy(smp->pcnf, skb->data, sizeof(smp->pcnf));
2053 skb_pull(skb, sizeof(smp->pcnf));
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03002054
Johan Hedberg19c5ce92015-03-15 19:34:04 +02002055 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
2056 int ret;
2057
2058 /* Public Key exchange must happen before any other steps */
2059 if (test_bit(SMP_FLAG_REMOTE_PK, &smp->flags))
2060 return sc_check_confirm(smp);
2061
2062 BT_ERR("Unexpected SMP Pairing Confirm");
2063
2064 ret = fixup_sc_false_positive(smp);
2065 if (ret)
2066 return ret;
2067 }
Johan Hedbergdcee2b32014-06-06 11:36:38 +03002068
Johan Hedbergb28b4942014-09-05 22:19:55 +03002069 if (conn->hcon->out) {
Johan Hedberg943a7322014-03-18 12:58:24 +02002070 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
2071 smp->prnd);
Johan Hedbergb28b4942014-09-05 22:19:55 +03002072 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2073 return 0;
2074 }
2075
2076 if (test_bit(SMP_FLAG_TK_VALID, &smp->flags))
Johan Hedberg1cc61142014-05-20 09:45:52 +03002077 return smp_confirm(smp);
Marcel Holtmann983f9812015-03-11 17:47:40 -07002078
2079 set_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002080
2081 return 0;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002082}
2083
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002084static u8 smp_cmd_pairing_random(struct l2cap_conn *conn, struct sk_buff *skb)
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002085{
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002086 struct l2cap_chan *chan = conn->smp;
2087 struct smp_chan *smp = chan->data;
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002088 struct hci_conn *hcon = conn->hcon;
2089 u8 *pkax, *pkbx, *na, *nb;
2090 u32 passkey;
2091 int err;
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03002092
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03002093 BT_DBG("conn %p", conn);
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03002094
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002095 if (skb->len < sizeof(smp->rrnd))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002096 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002097
Johan Hedberg943a7322014-03-18 12:58:24 +02002098 memcpy(smp->rrnd, skb->data, sizeof(smp->rrnd));
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03002099 skb_pull(skb, sizeof(smp->rrnd));
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002100
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002101 if (!test_bit(SMP_FLAG_SC, &smp->flags))
2102 return smp_random(smp);
2103
Johan Hedberg580039e2014-12-03 16:26:37 +02002104 if (hcon->out) {
2105 pkax = smp->local_pk;
2106 pkbx = smp->remote_pk;
2107 na = smp->prnd;
2108 nb = smp->rrnd;
2109 } else {
2110 pkax = smp->remote_pk;
2111 pkbx = smp->local_pk;
2112 na = smp->rrnd;
2113 nb = smp->prnd;
2114 }
2115
Johan Hedberga29b0732014-10-28 15:17:05 +01002116 if (smp->method == REQ_OOB) {
2117 if (!hcon->out)
2118 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
2119 sizeof(smp->prnd), smp->prnd);
2120 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
2121 goto mackey_and_ltk;
2122 }
2123
Johan Hedberg38606f12014-06-25 11:10:28 +03002124 /* Passkey entry has special treatment */
2125 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
2126 return sc_passkey_round(smp, SMP_CMD_PAIRING_RANDOM);
2127
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002128 if (hcon->out) {
2129 u8 cfm[16];
2130
2131 err = smp_f4(smp->tfm_cmac, smp->remote_pk, smp->local_pk,
2132 smp->rrnd, 0, cfm);
2133 if (err)
2134 return SMP_UNSPECIFIED;
2135
2136 if (memcmp(smp->pcnf, cfm, 16))
2137 return SMP_CONFIRM_FAILED;
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002138 } else {
2139 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
2140 smp->prnd);
2141 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002142 }
2143
Johan Hedberga29b0732014-10-28 15:17:05 +01002144mackey_and_ltk:
Johan Hedberg760b0182014-06-06 11:44:05 +03002145 /* Generate MacKey and LTK */
2146 err = sc_mackey_and_ltk(smp, smp->mackey, smp->tk);
2147 if (err)
2148 return SMP_UNSPECIFIED;
2149
Johan Hedberga29b0732014-10-28 15:17:05 +01002150 if (smp->method == JUST_WORKS || smp->method == REQ_OOB) {
Johan Hedbergdddd3052014-06-01 15:38:09 +03002151 if (hcon->out) {
Johan Hedberg38606f12014-06-25 11:10:28 +03002152 sc_dhkey_check(smp);
Johan Hedbergdddd3052014-06-01 15:38:09 +03002153 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
2154 }
2155 return 0;
2156 }
2157
Johan Hedberg38606f12014-06-25 11:10:28 +03002158 err = smp_g2(smp->tfm_cmac, pkax, pkbx, na, nb, &passkey);
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002159 if (err)
2160 return SMP_UNSPECIFIED;
2161
Johan Hedberg38606f12014-06-25 11:10:28 +03002162 err = mgmt_user_confirm_request(hcon->hdev, &hcon->dst, hcon->type,
2163 hcon->dst_type, passkey, 0);
2164 if (err)
2165 return SMP_UNSPECIFIED;
2166
2167 set_bit(SMP_FLAG_WAIT_USER, &smp->flags);
2168
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002169 return 0;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002170}
2171
Marcel Holtmannf81cd822014-07-01 10:59:24 +02002172static bool smp_ltk_encrypt(struct l2cap_conn *conn, u8 sec_level)
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002173{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002174 struct smp_ltk *key;
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002175 struct hci_conn *hcon = conn->hcon;
2176
Johan Hedbergf3a73d92014-05-29 15:02:59 +03002177 key = hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, hcon->role);
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002178 if (!key)
Marcel Holtmannf81cd822014-07-01 10:59:24 +02002179 return false;
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002180
Johan Hedberga6f78332014-09-10 17:37:45 -07002181 if (smp_ltk_sec_level(key) < sec_level)
Marcel Holtmannf81cd822014-07-01 10:59:24 +02002182 return false;
Johan Hedberg4dab7862012-06-07 14:58:37 +08002183
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002184 if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags))
Marcel Holtmannf81cd822014-07-01 10:59:24 +02002185 return true;
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002186
Johan Hedberg8b76ce32015-06-08 18:14:39 +03002187 hci_le_start_enc(hcon, key->ediv, key->rand, key->val, key->enc_size);
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002188 hcon->enc_key_size = key->enc_size;
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002189
Johan Hedbergfe59a052014-07-01 19:14:12 +03002190 /* We never store STKs for master role, so clear this flag */
2191 clear_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags);
2192
Marcel Holtmannf81cd822014-07-01 10:59:24 +02002193 return true;
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002194}
Marcel Holtmannf1560462013-10-13 05:43:25 -07002195
Johan Hedberg35dc6f82014-11-13 10:55:18 +02002196bool smp_sufficient_security(struct hci_conn *hcon, u8 sec_level,
2197 enum smp_key_pref key_pref)
Johan Hedberg854f4722014-07-01 18:40:20 +03002198{
2199 if (sec_level == BT_SECURITY_LOW)
2200 return true;
2201
Johan Hedberg35dc6f82014-11-13 10:55:18 +02002202 /* If we're encrypted with an STK but the caller prefers using
2203 * LTK claim insufficient security. This way we allow the
2204 * connection to be re-encrypted with an LTK, even if the LTK
2205 * provides the same level of security. Only exception is if we
2206 * don't have an LTK (e.g. because of key distribution bits).
Johan Hedberg9ab65d602014-07-01 19:14:13 +03002207 */
Johan Hedberg35dc6f82014-11-13 10:55:18 +02002208 if (key_pref == SMP_USE_LTK &&
2209 test_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags) &&
Johan Hedbergf3a73d92014-05-29 15:02:59 +03002210 hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, hcon->role))
Johan Hedberg9ab65d602014-07-01 19:14:13 +03002211 return false;
2212
Johan Hedberg854f4722014-07-01 18:40:20 +03002213 if (hcon->sec_level >= sec_level)
2214 return true;
2215
2216 return false;
2217}
2218
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002219static u8 smp_cmd_security_req(struct l2cap_conn *conn, struct sk_buff *skb)
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002220{
2221 struct smp_cmd_security_req *rp = (void *) skb->data;
2222 struct smp_cmd_pairing cp;
Vinicius Costa Gomesf1cb9af2011-01-26 21:42:57 -03002223 struct hci_conn *hcon = conn->hcon;
Johan Hedberg0edb14d2014-05-26 13:29:28 +03002224 struct hci_dev *hdev = hcon->hdev;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03002225 struct smp_chan *smp;
Johan Hedbergc05b9332014-09-10 17:37:42 -07002226 u8 sec_level, auth;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002227
2228 BT_DBG("conn %p", conn);
2229
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002230 if (skb->len < sizeof(*rp))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002231 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002232
Johan Hedberg40bef302014-07-16 11:42:27 +03002233 if (hcon->role != HCI_ROLE_MASTER)
Johan Hedberg86ca9ea2013-11-05 11:30:39 +02002234 return SMP_CMD_NOTSUPP;
2235
Johan Hedberg0edb14d2014-05-26 13:29:28 +03002236 auth = rp->auth_req & AUTH_REQ_MASK(hdev);
Johan Hedbergc05b9332014-09-10 17:37:42 -07002237
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002238 if (hci_dev_test_flag(hdev, HCI_SC_ONLY) && !(auth & SMP_AUTH_SC))
Johan Hedberg903b71c2014-09-08 16:59:18 -07002239 return SMP_AUTH_REQUIREMENTS;
2240
Johan Hedberg5be5e272014-09-10 17:58:54 -07002241 if (hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
Johan Hedberg1afc2a12014-09-10 17:37:44 -07002242 sec_level = BT_SECURITY_MEDIUM;
2243 else
2244 sec_level = authreq_to_seclevel(auth);
2245
Johan Hedberg35dc6f82014-11-13 10:55:18 +02002246 if (smp_sufficient_security(hcon, sec_level, SMP_USE_LTK))
Johan Hedberg854f4722014-07-01 18:40:20 +03002247 return 0;
2248
Johan Hedbergc7262e72014-06-17 13:07:37 +03002249 if (sec_level > hcon->pending_sec_level)
2250 hcon->pending_sec_level = sec_level;
Vinicius Costa Gomesfeb45eb2011-08-25 20:02:35 -03002251
Johan Hedberg4dab7862012-06-07 14:58:37 +08002252 if (smp_ltk_encrypt(conn, hcon->pending_sec_level))
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002253 return 0;
2254
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03002255 smp = smp_chan_create(conn);
Johan Hedbergc29d2442014-06-16 19:25:14 +03002256 if (!smp)
2257 return SMP_UNSPECIFIED;
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03002258
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002259 if (!hci_dev_test_flag(hdev, HCI_BONDABLE) &&
Johan Hedbergc05b9332014-09-10 17:37:42 -07002260 (auth & SMP_AUTH_BONDING))
Johan Hedberg616d55b2014-07-29 14:18:48 +03002261 return SMP_PAIRING_NOTSUPP;
2262
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002263 skb_pull(skb, sizeof(*rp));
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002264
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002265 memset(&cp, 0, sizeof(cp));
Johan Hedbergc05b9332014-09-10 17:37:42 -07002266 build_pairing_cmd(conn, &cp, NULL, auth);
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002267
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03002268 smp->preq[0] = SMP_CMD_PAIRING_REQ;
2269 memcpy(&smp->preq[1], &cp, sizeof(cp));
Anderson Brigliaf01ead32011-06-09 18:50:45 -03002270
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002271 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp);
Johan Hedbergb28b4942014-09-05 22:19:55 +03002272 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP);
Vinicius Costa Gomesf1cb9af2011-01-26 21:42:57 -03002273
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002274 return 0;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002275}
2276
Vinicius Costa Gomescc110922012-08-23 21:32:43 -03002277int smp_conn_security(struct hci_conn *hcon, __u8 sec_level)
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002278{
Vinicius Costa Gomescc110922012-08-23 21:32:43 -03002279 struct l2cap_conn *conn = hcon->l2cap_data;
Johan Hedbergc68b7f12014-09-06 06:59:10 +03002280 struct l2cap_chan *chan;
Johan Hedberg0a66cf22014-03-24 14:39:03 +02002281 struct smp_chan *smp;
Brian Gix2b64d152011-12-21 16:12:12 -08002282 __u8 authreq;
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002283 int ret;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002284
Vinicius Costa Gomes3a0259b2011-06-09 18:50:43 -03002285 BT_DBG("conn %p hcon %p level 0x%2.2x", conn, hcon, sec_level);
2286
Johan Hedberg0a66cf22014-03-24 14:39:03 +02002287 /* This may be NULL if there's an unexpected disconnection */
2288 if (!conn)
2289 return 1;
2290
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002291 if (!hci_dev_test_flag(hcon->hdev, HCI_LE_ENABLED))
Andre Guedes2e65c9d2011-06-30 19:20:56 -03002292 return 1;
2293
Johan Hedberg35dc6f82014-11-13 10:55:18 +02002294 if (smp_sufficient_security(hcon, sec_level, SMP_USE_LTK))
Vinicius Costa Gomesf1cb9af2011-01-26 21:42:57 -03002295 return 1;
2296
Johan Hedbergc7262e72014-06-17 13:07:37 +03002297 if (sec_level > hcon->pending_sec_level)
2298 hcon->pending_sec_level = sec_level;
2299
Johan Hedberg40bef302014-07-16 11:42:27 +03002300 if (hcon->role == HCI_ROLE_MASTER)
Johan Hedbergc7262e72014-06-17 13:07:37 +03002301 if (smp_ltk_encrypt(conn, hcon->pending_sec_level))
2302 return 0;
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03002303
Johan Hedbergd8949aa2015-09-04 12:22:46 +03002304 chan = conn->smp;
2305 if (!chan) {
2306 BT_ERR("SMP security requested but not available");
2307 return 1;
2308 }
2309
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002310 l2cap_chan_lock(chan);
2311
2312 /* If SMP is already in progress ignore this request */
2313 if (chan->data) {
2314 ret = 0;
2315 goto unlock;
2316 }
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03002317
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03002318 smp = smp_chan_create(conn);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002319 if (!smp) {
2320 ret = 1;
2321 goto unlock;
2322 }
Brian Gix2b64d152011-12-21 16:12:12 -08002323
2324 authreq = seclevel_to_authreq(sec_level);
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03002325
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002326 if (hci_dev_test_flag(hcon->hdev, HCI_SC_ENABLED))
Johan Hedbergd2eb9e12014-05-16 10:59:06 +03002327 authreq |= SMP_AUTH_SC;
2328
Johan Hedberg79897d22014-06-01 09:45:24 +03002329 /* Require MITM if IO Capability allows or the security level
2330 * requires it.
Johan Hedberg2e233642014-03-18 15:42:30 +02002331 */
Johan Hedberg79897d22014-06-01 09:45:24 +03002332 if (hcon->io_capability != HCI_IO_NO_INPUT_OUTPUT ||
Johan Hedbergc7262e72014-06-17 13:07:37 +03002333 hcon->pending_sec_level > BT_SECURITY_MEDIUM)
Johan Hedberg2e233642014-03-18 15:42:30 +02002334 authreq |= SMP_AUTH_MITM;
2335
Johan Hedberg40bef302014-07-16 11:42:27 +03002336 if (hcon->role == HCI_ROLE_MASTER) {
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03002337 struct smp_cmd_pairing cp;
Anderson Brigliaf01ead32011-06-09 18:50:45 -03002338
Brian Gix2b64d152011-12-21 16:12:12 -08002339 build_pairing_cmd(conn, &cp, NULL, authreq);
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03002340 smp->preq[0] = SMP_CMD_PAIRING_REQ;
2341 memcpy(&smp->preq[1], &cp, sizeof(cp));
Anderson Brigliaf01ead32011-06-09 18:50:45 -03002342
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002343 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp);
Johan Hedbergb28b4942014-09-05 22:19:55 +03002344 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP);
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002345 } else {
2346 struct smp_cmd_security_req cp;
Brian Gix2b64d152011-12-21 16:12:12 -08002347 cp.auth_req = authreq;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002348 smp_send_cmd(conn, SMP_CMD_SECURITY_REQ, sizeof(cp), &cp);
Johan Hedbergb28b4942014-09-05 22:19:55 +03002349 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_REQ);
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002350 }
2351
Johan Hedberg4a74d652014-05-20 09:45:50 +03002352 set_bit(SMP_FLAG_INITIATOR, &smp->flags);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002353 ret = 0;
Johan Hedbergedca7922014-03-24 15:54:11 +02002354
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002355unlock:
2356 l2cap_chan_unlock(chan);
2357 return ret;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002358}
2359
Johan Hedbergc81d5552015-10-22 09:38:35 +03002360void smp_cancel_pairing(struct hci_conn *hcon)
2361{
2362 struct l2cap_conn *conn = hcon->l2cap_data;
2363 struct l2cap_chan *chan;
2364 struct smp_chan *smp;
2365
2366 if (!conn)
2367 return;
2368
2369 chan = conn->smp;
2370 if (!chan)
2371 return;
2372
2373 l2cap_chan_lock(chan);
2374
2375 smp = chan->data;
2376 if (smp) {
2377 if (test_bit(SMP_FLAG_COMPLETE, &smp->flags))
2378 smp_failure(conn, 0);
2379 else
2380 smp_failure(conn, SMP_UNSPECIFIED);
2381 }
2382
2383 l2cap_chan_unlock(chan);
2384}
2385
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002386static int smp_cmd_encrypt_info(struct l2cap_conn *conn, struct sk_buff *skb)
2387{
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002388 struct smp_cmd_encrypt_info *rp = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002389 struct l2cap_chan *chan = conn->smp;
2390 struct smp_chan *smp = chan->data;
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002391
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002392 BT_DBG("conn %p", conn);
2393
2394 if (skb->len < sizeof(*rp))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002395 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002396
Johan Hedbergb28b4942014-09-05 22:19:55 +03002397 SMP_ALLOW_CMD(smp, SMP_CMD_MASTER_IDENT);
Johan Hedberg6131ddc2014-02-18 10:19:37 +02002398
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002399 skb_pull(skb, sizeof(*rp));
2400
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03002401 memcpy(smp->tk, rp->ltk, sizeof(smp->tk));
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002402
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002403 return 0;
2404}
2405
2406static int smp_cmd_master_ident(struct l2cap_conn *conn, struct sk_buff *skb)
2407{
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002408 struct smp_cmd_master_ident *rp = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002409 struct l2cap_chan *chan = conn->smp;
2410 struct smp_chan *smp = chan->data;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002411 struct hci_dev *hdev = conn->hcon->hdev;
2412 struct hci_conn *hcon = conn->hcon;
Johan Hedberg23d0e122014-02-19 14:57:46 +02002413 struct smp_ltk *ltk;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002414 u8 authenticated;
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002415
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002416 BT_DBG("conn %p", conn);
2417
2418 if (skb->len < sizeof(*rp))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002419 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002420
Johan Hedberg9747a9f2014-02-26 23:33:43 +02002421 /* Mark the information as received */
2422 smp->remote_key_dist &= ~SMP_DIST_ENC_KEY;
2423
Johan Hedbergb28b4942014-09-05 22:19:55 +03002424 if (smp->remote_key_dist & SMP_DIST_ID_KEY)
2425 SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_INFO);
Johan Hedberg196332f2014-09-09 16:21:46 -07002426 else if (smp->remote_key_dist & SMP_DIST_SIGN)
2427 SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO);
Johan Hedbergb28b4942014-09-05 22:19:55 +03002428
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002429 skb_pull(skb, sizeof(*rp));
2430
Marcel Holtmannce39fb42013-10-13 02:23:39 -07002431 authenticated = (hcon->sec_level == BT_SECURITY_HIGH);
Johan Hedberg2ceba532014-06-16 19:25:16 +03002432 ltk = hci_add_ltk(hdev, &hcon->dst, hcon->dst_type, SMP_LTK,
Johan Hedberg23d0e122014-02-19 14:57:46 +02002433 authenticated, smp->tk, smp->enc_key_size,
2434 rp->ediv, rp->rand);
2435 smp->ltk = ltk;
Johan Hedbergc6e81e92014-09-05 22:19:54 +03002436 if (!(smp->remote_key_dist & KEY_DIST_MASK))
Johan Hedbergd6268e82014-09-05 22:19:51 +03002437 smp_distribute_keys(smp);
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002438
2439 return 0;
2440}
2441
Johan Hedbergfd349c02014-02-18 10:19:36 +02002442static int smp_cmd_ident_info(struct l2cap_conn *conn, struct sk_buff *skb)
2443{
2444 struct smp_cmd_ident_info *info = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002445 struct l2cap_chan *chan = conn->smp;
2446 struct smp_chan *smp = chan->data;
Johan Hedbergfd349c02014-02-18 10:19:36 +02002447
2448 BT_DBG("");
2449
2450 if (skb->len < sizeof(*info))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002451 return SMP_INVALID_PARAMS;
Johan Hedbergfd349c02014-02-18 10:19:36 +02002452
Johan Hedbergb28b4942014-09-05 22:19:55 +03002453 SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_ADDR_INFO);
Johan Hedberg6131ddc2014-02-18 10:19:37 +02002454
Johan Hedbergfd349c02014-02-18 10:19:36 +02002455 skb_pull(skb, sizeof(*info));
2456
2457 memcpy(smp->irk, info->irk, 16);
2458
2459 return 0;
2460}
2461
2462static int smp_cmd_ident_addr_info(struct l2cap_conn *conn,
2463 struct sk_buff *skb)
2464{
2465 struct smp_cmd_ident_addr_info *info = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002466 struct l2cap_chan *chan = conn->smp;
2467 struct smp_chan *smp = chan->data;
Johan Hedbergfd349c02014-02-18 10:19:36 +02002468 struct hci_conn *hcon = conn->hcon;
2469 bdaddr_t rpa;
2470
2471 BT_DBG("");
2472
2473 if (skb->len < sizeof(*info))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002474 return SMP_INVALID_PARAMS;
Johan Hedbergfd349c02014-02-18 10:19:36 +02002475
Johan Hedberg9747a9f2014-02-26 23:33:43 +02002476 /* Mark the information as received */
2477 smp->remote_key_dist &= ~SMP_DIST_ID_KEY;
2478
Johan Hedbergb28b4942014-09-05 22:19:55 +03002479 if (smp->remote_key_dist & SMP_DIST_SIGN)
2480 SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO);
2481
Johan Hedbergfd349c02014-02-18 10:19:36 +02002482 skb_pull(skb, sizeof(*info));
2483
Johan Hedberga9a58f82014-02-25 22:24:37 +02002484 /* Strictly speaking the Core Specification (4.1) allows sending
2485 * an empty address which would force us to rely on just the IRK
2486 * as "identity information". However, since such
2487 * implementations are not known of and in order to not over
2488 * complicate our implementation, simply pretend that we never
2489 * received an IRK for such a device.
Johan Hedberge12af482015-01-14 20:51:37 +02002490 *
2491 * The Identity Address must also be a Static Random or Public
2492 * Address, which hci_is_identity_address() checks for.
Johan Hedberga9a58f82014-02-25 22:24:37 +02002493 */
Johan Hedberge12af482015-01-14 20:51:37 +02002494 if (!bacmp(&info->bdaddr, BDADDR_ANY) ||
2495 !hci_is_identity_address(&info->bdaddr, info->addr_type)) {
Johan Hedberga9a58f82014-02-25 22:24:37 +02002496 BT_ERR("Ignoring IRK with no identity address");
Johan Hedberg31dd6242014-06-27 14:23:02 +03002497 goto distribute;
Johan Hedberga9a58f82014-02-25 22:24:37 +02002498 }
2499
Johan Hedbergfd349c02014-02-18 10:19:36 +02002500 bacpy(&smp->id_addr, &info->bdaddr);
2501 smp->id_addr_type = info->addr_type;
2502
2503 if (hci_bdaddr_is_rpa(&hcon->dst, hcon->dst_type))
2504 bacpy(&rpa, &hcon->dst);
2505 else
2506 bacpy(&rpa, BDADDR_ANY);
2507
Johan Hedberg23d0e122014-02-19 14:57:46 +02002508 smp->remote_irk = hci_add_irk(conn->hcon->hdev, &smp->id_addr,
2509 smp->id_addr_type, smp->irk, &rpa);
Johan Hedbergfd349c02014-02-18 10:19:36 +02002510
Johan Hedberg31dd6242014-06-27 14:23:02 +03002511distribute:
Johan Hedbergc6e81e92014-09-05 22:19:54 +03002512 if (!(smp->remote_key_dist & KEY_DIST_MASK))
2513 smp_distribute_keys(smp);
Johan Hedbergfd349c02014-02-18 10:19:36 +02002514
2515 return 0;
2516}
2517
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002518static int smp_cmd_sign_info(struct l2cap_conn *conn, struct sk_buff *skb)
2519{
2520 struct smp_cmd_sign_info *rp = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002521 struct l2cap_chan *chan = conn->smp;
2522 struct smp_chan *smp = chan->data;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002523 struct smp_csrk *csrk;
2524
2525 BT_DBG("conn %p", conn);
2526
2527 if (skb->len < sizeof(*rp))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002528 return SMP_INVALID_PARAMS;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002529
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002530 /* Mark the information as received */
2531 smp->remote_key_dist &= ~SMP_DIST_SIGN;
2532
2533 skb_pull(skb, sizeof(*rp));
2534
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002535 csrk = kzalloc(sizeof(*csrk), GFP_KERNEL);
2536 if (csrk) {
Johan Hedberg4cd39282015-02-27 10:11:13 +02002537 if (conn->hcon->sec_level > BT_SECURITY_MEDIUM)
2538 csrk->type = MGMT_CSRK_REMOTE_AUTHENTICATED;
2539 else
2540 csrk->type = MGMT_CSRK_REMOTE_UNAUTHENTICATED;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002541 memcpy(csrk->val, rp->csrk, sizeof(csrk->val));
2542 }
2543 smp->csrk = csrk;
Johan Hedbergd6268e82014-09-05 22:19:51 +03002544 smp_distribute_keys(smp);
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002545
2546 return 0;
2547}
2548
Johan Hedberg5e3d3d92014-05-31 18:51:02 +03002549static u8 sc_select_method(struct smp_chan *smp)
2550{
2551 struct l2cap_conn *conn = smp->conn;
2552 struct hci_conn *hcon = conn->hcon;
2553 struct smp_cmd_pairing *local, *remote;
2554 u8 local_mitm, remote_mitm, local_io, remote_io, method;
2555
Johan Hedberg1a8bab42015-03-16 11:45:44 +02002556 if (test_bit(SMP_FLAG_REMOTE_OOB, &smp->flags) ||
2557 test_bit(SMP_FLAG_LOCAL_OOB, &smp->flags))
Johan Hedberga29b0732014-10-28 15:17:05 +01002558 return REQ_OOB;
2559
Johan Hedberg5e3d3d92014-05-31 18:51:02 +03002560 /* The preq/prsp contain the raw Pairing Request/Response PDUs
2561 * which are needed as inputs to some crypto functions. To get
2562 * the "struct smp_cmd_pairing" from them we need to skip the
2563 * first byte which contains the opcode.
2564 */
2565 if (hcon->out) {
2566 local = (void *) &smp->preq[1];
2567 remote = (void *) &smp->prsp[1];
2568 } else {
2569 local = (void *) &smp->prsp[1];
2570 remote = (void *) &smp->preq[1];
2571 }
2572
2573 local_io = local->io_capability;
2574 remote_io = remote->io_capability;
2575
2576 local_mitm = (local->auth_req & SMP_AUTH_MITM);
2577 remote_mitm = (remote->auth_req & SMP_AUTH_MITM);
2578
2579 /* If either side wants MITM, look up the method from the table,
2580 * otherwise use JUST WORKS.
2581 */
2582 if (local_mitm || remote_mitm)
2583 method = get_auth_method(smp, local_io, remote_io);
2584 else
2585 method = JUST_WORKS;
2586
2587 /* Don't confirm locally initiated pairing attempts */
2588 if (method == JUST_CFM && test_bit(SMP_FLAG_INITIATOR, &smp->flags))
2589 method = JUST_WORKS;
2590
2591 return method;
2592}
2593
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002594static int smp_cmd_public_key(struct l2cap_conn *conn, struct sk_buff *skb)
2595{
2596 struct smp_cmd_public_key *key = (void *) skb->data;
2597 struct hci_conn *hcon = conn->hcon;
2598 struct l2cap_chan *chan = conn->smp;
2599 struct smp_chan *smp = chan->data;
Johan Hedberg5e3d3d92014-05-31 18:51:02 +03002600 struct hci_dev *hdev = hcon->hdev;
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +03002601 struct smp_cmd_pairing_confirm cfm;
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002602 int err;
2603
2604 BT_DBG("conn %p", conn);
2605
2606 if (skb->len < sizeof(*key))
2607 return SMP_INVALID_PARAMS;
2608
2609 memcpy(smp->remote_pk, key, 64);
2610
Johan Hedberga8ca6172015-03-16 18:12:57 +02002611 if (test_bit(SMP_FLAG_REMOTE_OOB, &smp->flags)) {
2612 err = smp_f4(smp->tfm_cmac, smp->remote_pk, smp->remote_pk,
2613 smp->rr, 0, cfm.confirm_val);
2614 if (err)
2615 return SMP_UNSPECIFIED;
2616
2617 if (memcmp(cfm.confirm_val, smp->pcnf, 16))
2618 return SMP_CONFIRM_FAILED;
2619 }
2620
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002621 /* Non-initiating device sends its public key after receiving
2622 * the key from the initiating device.
2623 */
2624 if (!hcon->out) {
2625 err = sc_send_public_key(smp);
2626 if (err)
2627 return err;
2628 }
2629
Johan Hedbergc7a3d572014-12-01 22:03:16 +02002630 SMP_DBG("Remote Public Key X: %32phN", smp->remote_pk);
Marcel Holtmanne0915262015-03-16 12:34:55 -07002631 SMP_DBG("Remote Public Key Y: %32phN", smp->remote_pk + 32);
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002632
2633 if (!ecdh_shared_secret(smp->remote_pk, smp->local_sk, smp->dhkey))
2634 return SMP_UNSPECIFIED;
2635
Johan Hedbergc7a3d572014-12-01 22:03:16 +02002636 SMP_DBG("DHKey %32phN", smp->dhkey);
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002637
2638 set_bit(SMP_FLAG_REMOTE_PK, &smp->flags);
2639
Johan Hedberg5e3d3d92014-05-31 18:51:02 +03002640 smp->method = sc_select_method(smp);
2641
2642 BT_DBG("%s selected method 0x%02x", hdev->name, smp->method);
2643
2644 /* JUST_WORKS and JUST_CFM result in an unauthenticated key */
2645 if (smp->method == JUST_WORKS || smp->method == JUST_CFM)
2646 hcon->pending_sec_level = BT_SECURITY_MEDIUM;
2647 else
2648 hcon->pending_sec_level = BT_SECURITY_FIPS;
2649
Johan Hedbergaeb7d462014-05-31 18:52:28 +03002650 if (!memcmp(debug_pk, smp->remote_pk, 64))
2651 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
2652
Johan Hedberg38606f12014-06-25 11:10:28 +03002653 if (smp->method == DSP_PASSKEY) {
2654 get_random_bytes(&hcon->passkey_notify,
2655 sizeof(hcon->passkey_notify));
2656 hcon->passkey_notify %= 1000000;
2657 hcon->passkey_entered = 0;
2658 smp->passkey_round = 0;
2659 if (mgmt_user_passkey_notify(hdev, &hcon->dst, hcon->type,
2660 hcon->dst_type,
2661 hcon->passkey_notify,
2662 hcon->passkey_entered))
2663 return SMP_UNSPECIFIED;
2664 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
2665 return sc_passkey_round(smp, SMP_CMD_PUBLIC_KEY);
2666 }
2667
Johan Hedberg94ea7252015-03-16 11:45:46 +02002668 if (smp->method == REQ_OOB) {
Johan Hedberga29b0732014-10-28 15:17:05 +01002669 if (hcon->out)
2670 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
2671 sizeof(smp->prnd), smp->prnd);
2672
2673 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2674
2675 return 0;
2676 }
2677
Johan Hedberg38606f12014-06-25 11:10:28 +03002678 if (hcon->out)
2679 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
2680
2681 if (smp->method == REQ_PASSKEY) {
2682 if (mgmt_user_passkey_request(hdev, &hcon->dst, hcon->type,
2683 hcon->dst_type))
2684 return SMP_UNSPECIFIED;
2685 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
2686 set_bit(SMP_FLAG_WAIT_USER, &smp->flags);
2687 return 0;
2688 }
2689
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +03002690 /* The Initiating device waits for the non-initiating device to
2691 * send the confirm value.
2692 */
2693 if (conn->hcon->out)
2694 return 0;
2695
2696 err = smp_f4(smp->tfm_cmac, smp->local_pk, smp->remote_pk, smp->prnd,
2697 0, cfm.confirm_val);
2698 if (err)
2699 return SMP_UNSPECIFIED;
2700
2701 smp_send_cmd(conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cfm), &cfm);
2702 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2703
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002704 return 0;
2705}
2706
Johan Hedberg6433a9a2014-06-06 11:47:30 +03002707static int smp_cmd_dhkey_check(struct l2cap_conn *conn, struct sk_buff *skb)
2708{
2709 struct smp_cmd_dhkey_check *check = (void *) skb->data;
2710 struct l2cap_chan *chan = conn->smp;
2711 struct hci_conn *hcon = conn->hcon;
2712 struct smp_chan *smp = chan->data;
2713 u8 a[7], b[7], *local_addr, *remote_addr;
2714 u8 io_cap[3], r[16], e[16];
2715 int err;
2716
2717 BT_DBG("conn %p", conn);
2718
2719 if (skb->len < sizeof(*check))
2720 return SMP_INVALID_PARAMS;
2721
2722 memcpy(a, &hcon->init_addr, 6);
2723 memcpy(b, &hcon->resp_addr, 6);
2724 a[6] = hcon->init_addr_type;
2725 b[6] = hcon->resp_addr_type;
2726
2727 if (hcon->out) {
2728 local_addr = a;
2729 remote_addr = b;
2730 memcpy(io_cap, &smp->prsp[1], 3);
2731 } else {
2732 local_addr = b;
2733 remote_addr = a;
2734 memcpy(io_cap, &smp->preq[1], 3);
2735 }
2736
2737 memset(r, 0, sizeof(r));
2738
Johan Hedberg38606f12014-06-25 11:10:28 +03002739 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
2740 put_unaligned_le32(hcon->passkey_notify, r);
Johan Hedberg882fafa2015-03-16 11:45:43 +02002741 else if (smp->method == REQ_OOB)
2742 memcpy(r, smp->lr, 16);
Johan Hedberg38606f12014-06-25 11:10:28 +03002743
Johan Hedberg6433a9a2014-06-06 11:47:30 +03002744 err = smp_f6(smp->tfm_cmac, smp->mackey, smp->rrnd, smp->prnd, r,
2745 io_cap, remote_addr, local_addr, e);
2746 if (err)
2747 return SMP_UNSPECIFIED;
2748
2749 if (memcmp(check->e, e, 16))
2750 return SMP_DHKEY_CHECK_FAILED;
2751
Johan Hedbergd3e54a82014-06-04 11:07:40 +03002752 if (!hcon->out) {
2753 if (test_bit(SMP_FLAG_WAIT_USER, &smp->flags)) {
2754 set_bit(SMP_FLAG_DHKEY_PENDING, &smp->flags);
2755 return 0;
2756 }
Johan Hedbergd378a2d2014-05-31 18:53:36 +03002757
Johan Hedbergd3e54a82014-06-04 11:07:40 +03002758 /* Slave sends DHKey check as response to master */
2759 sc_dhkey_check(smp);
2760 }
Johan Hedbergd378a2d2014-05-31 18:53:36 +03002761
Johan Hedbergd3e54a82014-06-04 11:07:40 +03002762 sc_add_ltk(smp);
Johan Hedberg6433a9a2014-06-06 11:47:30 +03002763
2764 if (hcon->out) {
Johan Hedberg8b76ce32015-06-08 18:14:39 +03002765 hci_le_start_enc(hcon, 0, 0, smp->tk, smp->enc_key_size);
Johan Hedberg6433a9a2014-06-06 11:47:30 +03002766 hcon->enc_key_size = smp->enc_key_size;
2767 }
2768
2769 return 0;
2770}
2771
Johan Hedberg1408bb62014-06-04 22:45:57 +03002772static int smp_cmd_keypress_notify(struct l2cap_conn *conn,
2773 struct sk_buff *skb)
2774{
2775 struct smp_cmd_keypress_notify *kp = (void *) skb->data;
2776
2777 BT_DBG("value 0x%02x", kp->value);
2778
2779 return 0;
2780}
2781
Johan Hedberg4befb862014-08-11 22:06:38 +03002782static int smp_sig_channel(struct l2cap_chan *chan, struct sk_buff *skb)
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002783{
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002784 struct l2cap_conn *conn = chan->conn;
Marcel Holtmann7b9899d2013-10-03 00:00:57 -07002785 struct hci_conn *hcon = conn->hcon;
Johan Hedbergb28b4942014-09-05 22:19:55 +03002786 struct smp_chan *smp;
Marcel Holtmann92381f52013-10-03 01:23:08 -07002787 __u8 code, reason;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002788 int err = 0;
2789
Johan Hedberg8ae9b982014-08-11 22:06:39 +03002790 if (skb->len < 1)
Marcel Holtmann92381f52013-10-03 01:23:08 -07002791 return -EILSEQ;
Marcel Holtmann92381f52013-10-03 01:23:08 -07002792
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002793 if (!hci_dev_test_flag(hcon->hdev, HCI_LE_ENABLED)) {
Andre Guedes2e65c9d2011-06-30 19:20:56 -03002794 reason = SMP_PAIRING_NOTSUPP;
2795 goto done;
2796 }
2797
Marcel Holtmann92381f52013-10-03 01:23:08 -07002798 code = skb->data[0];
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002799 skb_pull(skb, sizeof(code));
2800
Johan Hedbergb28b4942014-09-05 22:19:55 +03002801 smp = chan->data;
2802
2803 if (code > SMP_CMD_MAX)
2804 goto drop;
2805
Johan Hedberg24bd0bd2014-09-10 17:37:43 -07002806 if (smp && !test_and_clear_bit(code, &smp->allow_cmd))
Johan Hedbergb28b4942014-09-05 22:19:55 +03002807 goto drop;
2808
2809 /* If we don't have a context the only allowed commands are
2810 * pairing request and security request.
Johan Hedberg8cf9fa12013-01-29 10:44:23 -06002811 */
Johan Hedbergb28b4942014-09-05 22:19:55 +03002812 if (!smp && code != SMP_CMD_PAIRING_REQ && code != SMP_CMD_SECURITY_REQ)
2813 goto drop;
Johan Hedberg8cf9fa12013-01-29 10:44:23 -06002814
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002815 switch (code) {
2816 case SMP_CMD_PAIRING_REQ:
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002817 reason = smp_cmd_pairing_req(conn, skb);
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002818 break;
2819
2820 case SMP_CMD_PAIRING_FAIL:
Johan Hedberg84794e12013-11-06 11:24:57 +02002821 smp_failure(conn, 0);
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002822 err = -EPERM;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002823 break;
2824
2825 case SMP_CMD_PAIRING_RSP:
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002826 reason = smp_cmd_pairing_rsp(conn, skb);
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002827 break;
2828
2829 case SMP_CMD_SECURITY_REQ:
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002830 reason = smp_cmd_security_req(conn, skb);
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002831 break;
2832
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002833 case SMP_CMD_PAIRING_CONFIRM:
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002834 reason = smp_cmd_pairing_confirm(conn, skb);
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002835 break;
2836
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002837 case SMP_CMD_PAIRING_RANDOM:
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002838 reason = smp_cmd_pairing_random(conn, skb);
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002839 break;
2840
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002841 case SMP_CMD_ENCRYPT_INFO:
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002842 reason = smp_cmd_encrypt_info(conn, skb);
2843 break;
2844
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002845 case SMP_CMD_MASTER_IDENT:
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002846 reason = smp_cmd_master_ident(conn, skb);
2847 break;
2848
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002849 case SMP_CMD_IDENT_INFO:
Johan Hedbergfd349c02014-02-18 10:19:36 +02002850 reason = smp_cmd_ident_info(conn, skb);
2851 break;
2852
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002853 case SMP_CMD_IDENT_ADDR_INFO:
Johan Hedbergfd349c02014-02-18 10:19:36 +02002854 reason = smp_cmd_ident_addr_info(conn, skb);
2855 break;
2856
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002857 case SMP_CMD_SIGN_INFO:
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002858 reason = smp_cmd_sign_info(conn, skb);
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002859 break;
2860
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002861 case SMP_CMD_PUBLIC_KEY:
2862 reason = smp_cmd_public_key(conn, skb);
2863 break;
2864
Johan Hedberg6433a9a2014-06-06 11:47:30 +03002865 case SMP_CMD_DHKEY_CHECK:
2866 reason = smp_cmd_dhkey_check(conn, skb);
2867 break;
2868
Johan Hedberg1408bb62014-06-04 22:45:57 +03002869 case SMP_CMD_KEYPRESS_NOTIFY:
2870 reason = smp_cmd_keypress_notify(conn, skb);
2871 break;
2872
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002873 default:
2874 BT_DBG("Unknown command code 0x%2.2x", code);
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002875 reason = SMP_CMD_NOTSUPP;
Vinicius Costa Gomes3a0259b2011-06-09 18:50:43 -03002876 goto done;
2877 }
2878
2879done:
Johan Hedberg9b7b18e2014-08-18 20:33:31 +03002880 if (!err) {
2881 if (reason)
2882 smp_failure(conn, reason);
Johan Hedberg8ae9b982014-08-11 22:06:39 +03002883 kfree_skb(skb);
Johan Hedberg9b7b18e2014-08-18 20:33:31 +03002884 }
2885
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002886 return err;
Johan Hedbergb28b4942014-09-05 22:19:55 +03002887
2888drop:
2889 BT_ERR("%s unexpected SMP command 0x%02x from %pMR", hcon->hdev->name,
2890 code, &hcon->dst);
2891 kfree_skb(skb);
2892 return 0;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002893}
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002894
Johan Hedberg70db83c2014-08-08 09:37:16 +03002895static void smp_teardown_cb(struct l2cap_chan *chan, int err)
2896{
2897 struct l2cap_conn *conn = chan->conn;
2898
2899 BT_DBG("chan %p", chan);
2900
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002901 if (chan->data)
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002902 smp_chan_destroy(conn);
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002903
Johan Hedberg70db83c2014-08-08 09:37:16 +03002904 conn->smp = NULL;
2905 l2cap_chan_put(chan);
2906}
2907
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002908static void bredr_pairing(struct l2cap_chan *chan)
2909{
2910 struct l2cap_conn *conn = chan->conn;
2911 struct hci_conn *hcon = conn->hcon;
2912 struct hci_dev *hdev = hcon->hdev;
2913 struct smp_cmd_pairing req;
2914 struct smp_chan *smp;
2915
2916 BT_DBG("chan %p", chan);
2917
2918 /* Only new pairings are interesting */
2919 if (!test_bit(HCI_CONN_NEW_LINK_KEY, &hcon->flags))
2920 return;
2921
2922 /* Don't bother if we're not encrypted */
2923 if (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags))
2924 return;
2925
2926 /* Only master may initiate SMP over BR/EDR */
2927 if (hcon->role != HCI_ROLE_MASTER)
2928 return;
2929
2930 /* Secure Connections support must be enabled */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002931 if (!hci_dev_test_flag(hdev, HCI_SC_ENABLED))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002932 return;
2933
2934 /* BR/EDR must use Secure Connections for SMP */
2935 if (!test_bit(HCI_CONN_AES_CCM, &hcon->flags) &&
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -07002936 !hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002937 return;
2938
2939 /* If our LE support is not enabled don't do anything */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002940 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002941 return;
2942
2943 /* Don't bother if remote LE support is not enabled */
2944 if (!lmp_host_le_capable(hcon))
2945 return;
2946
2947 /* Remote must support SMP fixed chan for BR/EDR */
2948 if (!(conn->remote_fixed_chan & L2CAP_FC_SMP_BREDR))
2949 return;
2950
2951 /* Don't bother if SMP is already ongoing */
2952 if (chan->data)
2953 return;
2954
2955 smp = smp_chan_create(conn);
2956 if (!smp) {
2957 BT_ERR("%s unable to create SMP context for BR/EDR",
2958 hdev->name);
2959 return;
2960 }
2961
2962 set_bit(SMP_FLAG_SC, &smp->flags);
2963
2964 BT_DBG("%s starting SMP over BR/EDR", hdev->name);
2965
2966 /* Prepare and send the BR/EDR SMP Pairing Request */
2967 build_bredr_pairing_cmd(smp, &req, NULL);
2968
2969 smp->preq[0] = SMP_CMD_PAIRING_REQ;
2970 memcpy(&smp->preq[1], &req, sizeof(req));
2971
2972 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(req), &req);
2973 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP);
2974}
2975
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03002976static void smp_resume_cb(struct l2cap_chan *chan)
2977{
Johan Hedbergb68fda62014-08-11 22:06:40 +03002978 struct smp_chan *smp = chan->data;
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03002979 struct l2cap_conn *conn = chan->conn;
2980 struct hci_conn *hcon = conn->hcon;
2981
2982 BT_DBG("chan %p", chan);
2983
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002984 if (hcon->type == ACL_LINK) {
2985 bredr_pairing(chan);
Johan Hedbergef8efe42014-08-13 15:12:32 +03002986 return;
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002987 }
Johan Hedbergef8efe42014-08-13 15:12:32 +03002988
Johan Hedberg86d14072014-08-11 22:06:43 +03002989 if (!smp)
2990 return;
Johan Hedbergb68fda62014-08-11 22:06:40 +03002991
Johan Hedberg84bc0db2014-09-05 22:19:49 +03002992 if (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags))
2993 return;
2994
Johan Hedberg86d14072014-08-11 22:06:43 +03002995 cancel_delayed_work(&smp->security_timer);
2996
Johan Hedbergd6268e82014-09-05 22:19:51 +03002997 smp_distribute_keys(smp);
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03002998}
2999
Johan Hedberg70db83c2014-08-08 09:37:16 +03003000static void smp_ready_cb(struct l2cap_chan *chan)
3001{
3002 struct l2cap_conn *conn = chan->conn;
Johan Hedbergb5ae3442014-08-14 12:34:26 +03003003 struct hci_conn *hcon = conn->hcon;
Johan Hedberg70db83c2014-08-08 09:37:16 +03003004
3005 BT_DBG("chan %p", chan);
3006
Johan Hedberg78837462015-11-11 21:47:12 +02003007 /* No need to call l2cap_chan_hold() here since we already own
3008 * the reference taken in smp_new_conn_cb(). This is just the
3009 * first time that we tie it to a specific pointer. The code in
3010 * l2cap_core.c ensures that there's no risk this function wont
3011 * get called if smp_new_conn_cb was previously called.
3012 */
Johan Hedberg70db83c2014-08-08 09:37:16 +03003013 conn->smp = chan;
Johan Hedbergb5ae3442014-08-14 12:34:26 +03003014
3015 if (hcon->type == ACL_LINK && test_bit(HCI_CONN_ENCRYPT, &hcon->flags))
3016 bredr_pairing(chan);
Johan Hedberg70db83c2014-08-08 09:37:16 +03003017}
3018
Johan Hedberg4befb862014-08-11 22:06:38 +03003019static int smp_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
3020{
3021 int err;
3022
3023 BT_DBG("chan %p", chan);
3024
3025 err = smp_sig_channel(chan, skb);
3026 if (err) {
Johan Hedbergb68fda62014-08-11 22:06:40 +03003027 struct smp_chan *smp = chan->data;
Johan Hedberg4befb862014-08-11 22:06:38 +03003028
Johan Hedbergb68fda62014-08-11 22:06:40 +03003029 if (smp)
3030 cancel_delayed_work_sync(&smp->security_timer);
Johan Hedberg4befb862014-08-11 22:06:38 +03003031
Johan Hedberg1e91c292014-08-18 20:33:29 +03003032 hci_disconnect(chan->conn->hcon, HCI_ERROR_AUTH_FAILURE);
Johan Hedberg4befb862014-08-11 22:06:38 +03003033 }
3034
3035 return err;
3036}
3037
Johan Hedberg70db83c2014-08-08 09:37:16 +03003038static struct sk_buff *smp_alloc_skb_cb(struct l2cap_chan *chan,
3039 unsigned long hdr_len,
3040 unsigned long len, int nb)
3041{
3042 struct sk_buff *skb;
3043
3044 skb = bt_skb_alloc(hdr_len + len, GFP_KERNEL);
3045 if (!skb)
3046 return ERR_PTR(-ENOMEM);
3047
3048 skb->priority = HCI_PRIO_MAX;
Johan Hedberga4368ff2015-03-30 23:21:01 +03003049 bt_cb(skb)->l2cap.chan = chan;
Johan Hedberg70db83c2014-08-08 09:37:16 +03003050
3051 return skb;
3052}
3053
3054static const struct l2cap_ops smp_chan_ops = {
3055 .name = "Security Manager",
3056 .ready = smp_ready_cb,
Johan Hedberg5d88cc72014-08-08 09:37:18 +03003057 .recv = smp_recv_cb,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003058 .alloc_skb = smp_alloc_skb_cb,
3059 .teardown = smp_teardown_cb,
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03003060 .resume = smp_resume_cb,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003061
3062 .new_connection = l2cap_chan_no_new_connection,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003063 .state_change = l2cap_chan_no_state_change,
3064 .close = l2cap_chan_no_close,
3065 .defer = l2cap_chan_no_defer,
3066 .suspend = l2cap_chan_no_suspend,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003067 .set_shutdown = l2cap_chan_no_set_shutdown,
3068 .get_sndtimeo = l2cap_chan_no_get_sndtimeo,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003069};
3070
3071static inline struct l2cap_chan *smp_new_conn_cb(struct l2cap_chan *pchan)
3072{
3073 struct l2cap_chan *chan;
3074
3075 BT_DBG("pchan %p", pchan);
3076
3077 chan = l2cap_chan_create();
3078 if (!chan)
3079 return NULL;
3080
3081 chan->chan_type = pchan->chan_type;
3082 chan->ops = &smp_chan_ops;
3083 chan->scid = pchan->scid;
3084 chan->dcid = chan->scid;
3085 chan->imtu = pchan->imtu;
3086 chan->omtu = pchan->omtu;
3087 chan->mode = pchan->mode;
3088
Johan Hedbergabe84902014-11-12 22:22:21 +02003089 /* Other L2CAP channels may request SMP routines in order to
3090 * change the security level. This means that the SMP channel
3091 * lock must be considered in its own category to avoid lockdep
3092 * warnings.
3093 */
3094 atomic_set(&chan->nesting, L2CAP_NESTING_SMP);
3095
Johan Hedberg70db83c2014-08-08 09:37:16 +03003096 BT_DBG("created chan %p", chan);
3097
3098 return chan;
3099}
3100
3101static const struct l2cap_ops smp_root_chan_ops = {
3102 .name = "Security Manager Root",
3103 .new_connection = smp_new_conn_cb,
3104
3105 /* None of these are implemented for the root channel */
3106 .close = l2cap_chan_no_close,
3107 .alloc_skb = l2cap_chan_no_alloc_skb,
3108 .recv = l2cap_chan_no_recv,
3109 .state_change = l2cap_chan_no_state_change,
3110 .teardown = l2cap_chan_no_teardown,
3111 .ready = l2cap_chan_no_ready,
3112 .defer = l2cap_chan_no_defer,
3113 .suspend = l2cap_chan_no_suspend,
3114 .resume = l2cap_chan_no_resume,
3115 .set_shutdown = l2cap_chan_no_set_shutdown,
3116 .get_sndtimeo = l2cap_chan_no_get_sndtimeo,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003117};
3118
Johan Hedbergef8efe42014-08-13 15:12:32 +03003119static struct l2cap_chan *smp_add_cid(struct hci_dev *hdev, u16 cid)
Johan Hedberg711eafe2014-08-08 09:32:52 +03003120{
Johan Hedberg70db83c2014-08-08 09:37:16 +03003121 struct l2cap_chan *chan;
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003122 struct smp_dev *smp;
Herbert Xu71af2f62016-01-24 21:18:30 +08003123 struct crypto_skcipher *tfm_aes;
3124 struct crypto_shash *tfm_cmac;
Johan Hedberg70db83c2014-08-08 09:37:16 +03003125
Johan Hedbergef8efe42014-08-13 15:12:32 +03003126 if (cid == L2CAP_CID_SMP_BREDR) {
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003127 smp = NULL;
Johan Hedbergef8efe42014-08-13 15:12:32 +03003128 goto create_chan;
3129 }
Johan Hedberg711eafe2014-08-08 09:32:52 +03003130
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003131 smp = kzalloc(sizeof(*smp), GFP_KERNEL);
3132 if (!smp)
3133 return ERR_PTR(-ENOMEM);
3134
Herbert Xu71af2f62016-01-24 21:18:30 +08003135 tfm_aes = crypto_alloc_skcipher("ecb(aes)", 0, CRYPTO_ALG_ASYNC);
Johan Hedbergdefce9e2014-08-08 09:37:17 +03003136 if (IS_ERR(tfm_aes)) {
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003137 BT_ERR("Unable to create ECB crypto context");
3138 kzfree(smp);
Fengguang Wufe700772014-12-08 03:04:38 +08003139 return ERR_CAST(tfm_aes);
Johan Hedberg711eafe2014-08-08 09:32:52 +03003140 }
3141
Herbert Xu71af2f62016-01-24 21:18:30 +08003142 tfm_cmac = crypto_alloc_shash("cmac(aes)", 0, 0);
Marcel Holtmann6e2dc6d2015-03-16 01:10:21 -07003143 if (IS_ERR(tfm_cmac)) {
3144 BT_ERR("Unable to create CMAC crypto context");
Herbert Xu71af2f62016-01-24 21:18:30 +08003145 crypto_free_skcipher(tfm_aes);
Marcel Holtmann6e2dc6d2015-03-16 01:10:21 -07003146 kzfree(smp);
3147 return ERR_CAST(tfm_cmac);
3148 }
3149
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003150 smp->tfm_aes = tfm_aes;
Marcel Holtmann6e2dc6d2015-03-16 01:10:21 -07003151 smp->tfm_cmac = tfm_cmac;
Johan Hedbergb1f663c2015-06-11 13:52:27 +03003152 smp->min_key_size = SMP_MIN_ENC_KEY_SIZE;
Johan Hedberg2fd36552015-06-11 13:52:26 +03003153 smp->max_key_size = SMP_MAX_ENC_KEY_SIZE;
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003154
Johan Hedbergef8efe42014-08-13 15:12:32 +03003155create_chan:
Johan Hedberg70db83c2014-08-08 09:37:16 +03003156 chan = l2cap_chan_create();
3157 if (!chan) {
Marcel Holtmann63511f6d2015-03-17 11:38:24 -07003158 if (smp) {
Herbert Xu71af2f62016-01-24 21:18:30 +08003159 crypto_free_skcipher(smp->tfm_aes);
3160 crypto_free_shash(smp->tfm_cmac);
Marcel Holtmann63511f6d2015-03-17 11:38:24 -07003161 kzfree(smp);
3162 }
Johan Hedbergef8efe42014-08-13 15:12:32 +03003163 return ERR_PTR(-ENOMEM);
Johan Hedberg70db83c2014-08-08 09:37:16 +03003164 }
3165
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003166 chan->data = smp;
Johan Hedbergdefce9e2014-08-08 09:37:17 +03003167
Johan Hedbergef8efe42014-08-13 15:12:32 +03003168 l2cap_add_scid(chan, cid);
Johan Hedberg70db83c2014-08-08 09:37:16 +03003169
3170 l2cap_chan_set_defaults(chan);
3171
Marcel Holtmann157029b2015-01-14 15:43:09 -08003172 if (cid == L2CAP_CID_SMP) {
Johan Hedberg39e3e742015-02-20 13:48:24 +02003173 u8 bdaddr_type;
3174
3175 hci_copy_identity_address(hdev, &chan->src, &bdaddr_type);
3176
3177 if (bdaddr_type == ADDR_LE_DEV_PUBLIC)
Marcel Holtmann157029b2015-01-14 15:43:09 -08003178 chan->src_type = BDADDR_LE_PUBLIC;
Johan Hedberg39e3e742015-02-20 13:48:24 +02003179 else
3180 chan->src_type = BDADDR_LE_RANDOM;
Marcel Holtmann157029b2015-01-14 15:43:09 -08003181 } else {
3182 bacpy(&chan->src, &hdev->bdaddr);
Johan Hedbergef8efe42014-08-13 15:12:32 +03003183 chan->src_type = BDADDR_BREDR;
Marcel Holtmann157029b2015-01-14 15:43:09 -08003184 }
3185
Johan Hedberg70db83c2014-08-08 09:37:16 +03003186 chan->state = BT_LISTEN;
3187 chan->mode = L2CAP_MODE_BASIC;
3188 chan->imtu = L2CAP_DEFAULT_MTU;
3189 chan->ops = &smp_root_chan_ops;
3190
Johan Hedbergabe84902014-11-12 22:22:21 +02003191 /* Set correct nesting level for a parent/listening channel */
3192 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
3193
Johan Hedbergef8efe42014-08-13 15:12:32 +03003194 return chan;
Johan Hedberg711eafe2014-08-08 09:32:52 +03003195}
3196
Johan Hedbergef8efe42014-08-13 15:12:32 +03003197static void smp_del_chan(struct l2cap_chan *chan)
Johan Hedberg711eafe2014-08-08 09:32:52 +03003198{
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003199 struct smp_dev *smp;
Johan Hedberg70db83c2014-08-08 09:37:16 +03003200
Johan Hedbergef8efe42014-08-13 15:12:32 +03003201 BT_DBG("chan %p", chan);
Johan Hedberg711eafe2014-08-08 09:32:52 +03003202
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003203 smp = chan->data;
3204 if (smp) {
Johan Hedbergdefce9e2014-08-08 09:37:17 +03003205 chan->data = NULL;
Herbert Xu71af2f62016-01-24 21:18:30 +08003206 crypto_free_skcipher(smp->tfm_aes);
3207 crypto_free_shash(smp->tfm_cmac);
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003208 kzfree(smp);
Johan Hedberg711eafe2014-08-08 09:32:52 +03003209 }
Johan Hedberg70db83c2014-08-08 09:37:16 +03003210
Johan Hedberg70db83c2014-08-08 09:37:16 +03003211 l2cap_chan_put(chan);
Johan Hedberg711eafe2014-08-08 09:32:52 +03003212}
Johan Hedbergef8efe42014-08-13 15:12:32 +03003213
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003214static ssize_t force_bredr_smp_read(struct file *file,
3215 char __user *user_buf,
3216 size_t count, loff_t *ppos)
3217{
3218 struct hci_dev *hdev = file->private_data;
3219 char buf[3];
3220
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -07003221 buf[0] = hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP) ? 'Y': 'N';
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003222 buf[1] = '\n';
3223 buf[2] = '\0';
3224 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
3225}
3226
3227static ssize_t force_bredr_smp_write(struct file *file,
3228 const char __user *user_buf,
3229 size_t count, loff_t *ppos)
3230{
3231 struct hci_dev *hdev = file->private_data;
3232 char buf[32];
3233 size_t buf_size = min(count, (sizeof(buf)-1));
3234 bool enable;
3235
3236 if (copy_from_user(buf, user_buf, buf_size))
3237 return -EFAULT;
3238
3239 buf[buf_size] = '\0';
3240 if (strtobool(buf, &enable))
3241 return -EINVAL;
3242
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -07003243 if (enable == hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP))
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003244 return -EALREADY;
3245
3246 if (enable) {
3247 struct l2cap_chan *chan;
3248
3249 chan = smp_add_cid(hdev, L2CAP_CID_SMP_BREDR);
3250 if (IS_ERR(chan))
3251 return PTR_ERR(chan);
3252
3253 hdev->smp_bredr_data = chan;
3254 } else {
3255 struct l2cap_chan *chan;
3256
3257 chan = hdev->smp_bredr_data;
3258 hdev->smp_bredr_data = NULL;
3259 smp_del_chan(chan);
3260 }
3261
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -07003262 hci_dev_change_flag(hdev, HCI_FORCE_BREDR_SMP);
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003263
3264 return count;
3265}
3266
3267static const struct file_operations force_bredr_smp_fops = {
3268 .open = simple_open,
3269 .read = force_bredr_smp_read,
3270 .write = force_bredr_smp_write,
3271 .llseek = default_llseek,
3272};
3273
Johan Hedbergb1f663c2015-06-11 13:52:27 +03003274static ssize_t le_min_key_size_read(struct file *file,
3275 char __user *user_buf,
3276 size_t count, loff_t *ppos)
3277{
3278 struct hci_dev *hdev = file->private_data;
3279 char buf[4];
3280
3281 snprintf(buf, sizeof(buf), "%2u\n", SMP_DEV(hdev)->min_key_size);
3282
3283 return simple_read_from_buffer(user_buf, count, ppos, buf, strlen(buf));
3284}
3285
3286static ssize_t le_min_key_size_write(struct file *file,
3287 const char __user *user_buf,
3288 size_t count, loff_t *ppos)
3289{
3290 struct hci_dev *hdev = file->private_data;
3291 char buf[32];
3292 size_t buf_size = min(count, (sizeof(buf) - 1));
3293 u8 key_size;
3294
3295 if (copy_from_user(buf, user_buf, buf_size))
3296 return -EFAULT;
3297
3298 buf[buf_size] = '\0';
3299
3300 sscanf(buf, "%hhu", &key_size);
3301
3302 if (key_size > SMP_DEV(hdev)->max_key_size ||
3303 key_size < SMP_MIN_ENC_KEY_SIZE)
3304 return -EINVAL;
3305
3306 SMP_DEV(hdev)->min_key_size = key_size;
3307
3308 return count;
3309}
3310
3311static const struct file_operations le_min_key_size_fops = {
3312 .open = simple_open,
3313 .read = le_min_key_size_read,
3314 .write = le_min_key_size_write,
3315 .llseek = default_llseek,
3316};
3317
Johan Hedberg2fd36552015-06-11 13:52:26 +03003318static ssize_t le_max_key_size_read(struct file *file,
3319 char __user *user_buf,
3320 size_t count, loff_t *ppos)
3321{
3322 struct hci_dev *hdev = file->private_data;
3323 char buf[4];
3324
3325 snprintf(buf, sizeof(buf), "%2u\n", SMP_DEV(hdev)->max_key_size);
3326
3327 return simple_read_from_buffer(user_buf, count, ppos, buf, strlen(buf));
3328}
3329
3330static ssize_t le_max_key_size_write(struct file *file,
3331 const char __user *user_buf,
3332 size_t count, loff_t *ppos)
3333{
3334 struct hci_dev *hdev = file->private_data;
3335 char buf[32];
3336 size_t buf_size = min(count, (sizeof(buf) - 1));
3337 u8 key_size;
3338
3339 if (copy_from_user(buf, user_buf, buf_size))
3340 return -EFAULT;
3341
3342 buf[buf_size] = '\0';
3343
3344 sscanf(buf, "%hhu", &key_size);
3345
Johan Hedbergb1f663c2015-06-11 13:52:27 +03003346 if (key_size > SMP_MAX_ENC_KEY_SIZE ||
3347 key_size < SMP_DEV(hdev)->min_key_size)
Johan Hedberg2fd36552015-06-11 13:52:26 +03003348 return -EINVAL;
3349
3350 SMP_DEV(hdev)->max_key_size = key_size;
3351
3352 return count;
3353}
3354
3355static const struct file_operations le_max_key_size_fops = {
3356 .open = simple_open,
3357 .read = le_max_key_size_read,
3358 .write = le_max_key_size_write,
3359 .llseek = default_llseek,
3360};
3361
Johan Hedbergef8efe42014-08-13 15:12:32 +03003362int smp_register(struct hci_dev *hdev)
3363{
3364 struct l2cap_chan *chan;
3365
3366 BT_DBG("%s", hdev->name);
3367
Marcel Holtmann7e7ec442015-01-14 15:43:10 -08003368 /* If the controller does not support Low Energy operation, then
3369 * there is also no need to register any SMP channel.
3370 */
3371 if (!lmp_le_capable(hdev))
3372 return 0;
3373
Marcel Holtmann2b8df322015-01-15 08:04:21 -08003374 if (WARN_ON(hdev->smp_data)) {
3375 chan = hdev->smp_data;
3376 hdev->smp_data = NULL;
3377 smp_del_chan(chan);
3378 }
3379
Johan Hedbergef8efe42014-08-13 15:12:32 +03003380 chan = smp_add_cid(hdev, L2CAP_CID_SMP);
3381 if (IS_ERR(chan))
3382 return PTR_ERR(chan);
3383
3384 hdev->smp_data = chan;
3385
Johan Hedbergb1f663c2015-06-11 13:52:27 +03003386 debugfs_create_file("le_min_key_size", 0644, hdev->debugfs, hdev,
3387 &le_min_key_size_fops);
Johan Hedberg2fd36552015-06-11 13:52:26 +03003388 debugfs_create_file("le_max_key_size", 0644, hdev->debugfs, hdev,
3389 &le_max_key_size_fops);
3390
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003391 /* If the controller does not support BR/EDR Secure Connections
3392 * feature, then the BR/EDR SMP channel shall not be present.
3393 *
3394 * To test this with Bluetooth 4.0 controllers, create a debugfs
3395 * switch that allows forcing BR/EDR SMP support and accepting
3396 * cross-transport pairing on non-AES encrypted connections.
3397 */
3398 if (!lmp_sc_capable(hdev)) {
3399 debugfs_create_file("force_bredr_smp", 0644, hdev->debugfs,
3400 hdev, &force_bredr_smp_fops);
Johan Hedbergef8efe42014-08-13 15:12:32 +03003401 return 0;
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003402 }
Johan Hedbergef8efe42014-08-13 15:12:32 +03003403
Marcel Holtmann2b8df322015-01-15 08:04:21 -08003404 if (WARN_ON(hdev->smp_bredr_data)) {
3405 chan = hdev->smp_bredr_data;
3406 hdev->smp_bredr_data = NULL;
3407 smp_del_chan(chan);
3408 }
3409
Johan Hedbergef8efe42014-08-13 15:12:32 +03003410 chan = smp_add_cid(hdev, L2CAP_CID_SMP_BREDR);
3411 if (IS_ERR(chan)) {
3412 int err = PTR_ERR(chan);
3413 chan = hdev->smp_data;
3414 hdev->smp_data = NULL;
3415 smp_del_chan(chan);
3416 return err;
3417 }
3418
3419 hdev->smp_bredr_data = chan;
3420
3421 return 0;
3422}
3423
3424void smp_unregister(struct hci_dev *hdev)
3425{
3426 struct l2cap_chan *chan;
3427
3428 if (hdev->smp_bredr_data) {
3429 chan = hdev->smp_bredr_data;
3430 hdev->smp_bredr_data = NULL;
3431 smp_del_chan(chan);
3432 }
3433
3434 if (hdev->smp_data) {
3435 chan = hdev->smp_data;
3436 hdev->smp_data = NULL;
3437 smp_del_chan(chan);
3438 }
3439}
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003440
3441#if IS_ENABLED(CONFIG_BT_SELFTEST_SMP)
3442
Herbert Xu71af2f62016-01-24 21:18:30 +08003443static int __init test_ah(struct crypto_skcipher *tfm_aes)
Johan Hedbergcfc41982014-12-30 09:50:40 +02003444{
3445 const u8 irk[16] = {
3446 0x9b, 0x7d, 0x39, 0x0a, 0xa6, 0x10, 0x10, 0x34,
3447 0x05, 0xad, 0xc8, 0x57, 0xa3, 0x34, 0x02, 0xec };
3448 const u8 r[3] = { 0x94, 0x81, 0x70 };
3449 const u8 exp[3] = { 0xaa, 0xfb, 0x0d };
3450 u8 res[3];
3451 int err;
3452
3453 err = smp_ah(tfm_aes, irk, r, res);
3454 if (err)
3455 return err;
3456
3457 if (memcmp(res, exp, 3))
3458 return -EINVAL;
3459
3460 return 0;
3461}
3462
Herbert Xu71af2f62016-01-24 21:18:30 +08003463static int __init test_c1(struct crypto_skcipher *tfm_aes)
Johan Hedbergcfc41982014-12-30 09:50:40 +02003464{
3465 const u8 k[16] = {
3466 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3467 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
3468 const u8 r[16] = {
3469 0xe0, 0x2e, 0x70, 0xc6, 0x4e, 0x27, 0x88, 0x63,
3470 0x0e, 0x6f, 0xad, 0x56, 0x21, 0xd5, 0x83, 0x57 };
3471 const u8 preq[7] = { 0x01, 0x01, 0x00, 0x00, 0x10, 0x07, 0x07 };
3472 const u8 pres[7] = { 0x02, 0x03, 0x00, 0x00, 0x08, 0x00, 0x05 };
3473 const u8 _iat = 0x01;
3474 const u8 _rat = 0x00;
3475 const bdaddr_t ra = { { 0xb6, 0xb5, 0xb4, 0xb3, 0xb2, 0xb1 } };
3476 const bdaddr_t ia = { { 0xa6, 0xa5, 0xa4, 0xa3, 0xa2, 0xa1 } };
3477 const u8 exp[16] = {
3478 0x86, 0x3b, 0xf1, 0xbe, 0xc5, 0x4d, 0xa7, 0xd2,
3479 0xea, 0x88, 0x89, 0x87, 0xef, 0x3f, 0x1e, 0x1e };
3480 u8 res[16];
3481 int err;
3482
3483 err = smp_c1(tfm_aes, k, r, preq, pres, _iat, &ia, _rat, &ra, res);
3484 if (err)
3485 return err;
3486
3487 if (memcmp(res, exp, 16))
3488 return -EINVAL;
3489
3490 return 0;
3491}
3492
Herbert Xu71af2f62016-01-24 21:18:30 +08003493static int __init test_s1(struct crypto_skcipher *tfm_aes)
Johan Hedbergcfc41982014-12-30 09:50:40 +02003494{
3495 const u8 k[16] = {
3496 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3497 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
3498 const u8 r1[16] = {
3499 0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11 };
3500 const u8 r2[16] = {
3501 0x00, 0xff, 0xee, 0xdd, 0xcc, 0xbb, 0xaa, 0x99 };
3502 const u8 exp[16] = {
3503 0x62, 0xa0, 0x6d, 0x79, 0xae, 0x16, 0x42, 0x5b,
3504 0x9b, 0xf4, 0xb0, 0xe8, 0xf0, 0xe1, 0x1f, 0x9a };
3505 u8 res[16];
3506 int err;
3507
3508 err = smp_s1(tfm_aes, k, r1, r2, res);
3509 if (err)
3510 return err;
3511
3512 if (memcmp(res, exp, 16))
3513 return -EINVAL;
3514
3515 return 0;
3516}
3517
Herbert Xu71af2f62016-01-24 21:18:30 +08003518static int __init test_f4(struct crypto_shash *tfm_cmac)
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003519{
3520 const u8 u[32] = {
3521 0xe6, 0x9d, 0x35, 0x0e, 0x48, 0x01, 0x03, 0xcc,
3522 0xdb, 0xfd, 0xf4, 0xac, 0x11, 0x91, 0xf4, 0xef,
3523 0xb9, 0xa5, 0xf9, 0xe9, 0xa7, 0x83, 0x2c, 0x5e,
3524 0x2c, 0xbe, 0x97, 0xf2, 0xd2, 0x03, 0xb0, 0x20 };
3525 const u8 v[32] = {
3526 0xfd, 0xc5, 0x7f, 0xf4, 0x49, 0xdd, 0x4f, 0x6b,
3527 0xfb, 0x7c, 0x9d, 0xf1, 0xc2, 0x9a, 0xcb, 0x59,
3528 0x2a, 0xe7, 0xd4, 0xee, 0xfb, 0xfc, 0x0a, 0x90,
3529 0x9a, 0xbb, 0xf6, 0x32, 0x3d, 0x8b, 0x18, 0x55 };
3530 const u8 x[16] = {
3531 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3532 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3533 const u8 z = 0x00;
3534 const u8 exp[16] = {
3535 0x2d, 0x87, 0x74, 0xa9, 0xbe, 0xa1, 0xed, 0xf1,
3536 0x1c, 0xbd, 0xa9, 0x07, 0xf1, 0x16, 0xc9, 0xf2 };
3537 u8 res[16];
3538 int err;
3539
3540 err = smp_f4(tfm_cmac, u, v, x, z, res);
3541 if (err)
3542 return err;
3543
3544 if (memcmp(res, exp, 16))
3545 return -EINVAL;
3546
3547 return 0;
3548}
3549
Herbert Xu71af2f62016-01-24 21:18:30 +08003550static int __init test_f5(struct crypto_shash *tfm_cmac)
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003551{
3552 const u8 w[32] = {
3553 0x98, 0xa6, 0xbf, 0x73, 0xf3, 0x34, 0x8d, 0x86,
3554 0xf1, 0x66, 0xf8, 0xb4, 0x13, 0x6b, 0x79, 0x99,
3555 0x9b, 0x7d, 0x39, 0x0a, 0xa6, 0x10, 0x10, 0x34,
3556 0x05, 0xad, 0xc8, 0x57, 0xa3, 0x34, 0x02, 0xec };
3557 const u8 n1[16] = {
3558 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3559 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3560 const u8 n2[16] = {
3561 0xcf, 0xc4, 0x3d, 0xff, 0xf7, 0x83, 0x65, 0x21,
3562 0x6e, 0x5f, 0xa7, 0x25, 0xcc, 0xe7, 0xe8, 0xa6 };
3563 const u8 a1[7] = { 0xce, 0xbf, 0x37, 0x37, 0x12, 0x56, 0x00 };
3564 const u8 a2[7] = { 0xc1, 0xcf, 0x2d, 0x70, 0x13, 0xa7, 0x00 };
3565 const u8 exp_ltk[16] = {
3566 0x38, 0x0a, 0x75, 0x94, 0xb5, 0x22, 0x05, 0x98,
3567 0x23, 0xcd, 0xd7, 0x69, 0x11, 0x79, 0x86, 0x69 };
3568 const u8 exp_mackey[16] = {
3569 0x20, 0x6e, 0x63, 0xce, 0x20, 0x6a, 0x3f, 0xfd,
3570 0x02, 0x4a, 0x08, 0xa1, 0x76, 0xf1, 0x65, 0x29 };
3571 u8 mackey[16], ltk[16];
3572 int err;
3573
3574 err = smp_f5(tfm_cmac, w, n1, n2, a1, a2, mackey, ltk);
3575 if (err)
3576 return err;
3577
3578 if (memcmp(mackey, exp_mackey, 16))
3579 return -EINVAL;
3580
3581 if (memcmp(ltk, exp_ltk, 16))
3582 return -EINVAL;
3583
3584 return 0;
3585}
3586
Herbert Xu71af2f62016-01-24 21:18:30 +08003587static int __init test_f6(struct crypto_shash *tfm_cmac)
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003588{
3589 const u8 w[16] = {
3590 0x20, 0x6e, 0x63, 0xce, 0x20, 0x6a, 0x3f, 0xfd,
3591 0x02, 0x4a, 0x08, 0xa1, 0x76, 0xf1, 0x65, 0x29 };
3592 const u8 n1[16] = {
3593 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3594 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3595 const u8 n2[16] = {
3596 0xcf, 0xc4, 0x3d, 0xff, 0xf7, 0x83, 0x65, 0x21,
3597 0x6e, 0x5f, 0xa7, 0x25, 0xcc, 0xe7, 0xe8, 0xa6 };
3598 const u8 r[16] = {
3599 0xc8, 0x0f, 0x2d, 0x0c, 0xd2, 0x42, 0xda, 0x08,
3600 0x54, 0xbb, 0x53, 0xb4, 0x3b, 0x34, 0xa3, 0x12 };
3601 const u8 io_cap[3] = { 0x02, 0x01, 0x01 };
3602 const u8 a1[7] = { 0xce, 0xbf, 0x37, 0x37, 0x12, 0x56, 0x00 };
3603 const u8 a2[7] = { 0xc1, 0xcf, 0x2d, 0x70, 0x13, 0xa7, 0x00 };
3604 const u8 exp[16] = {
3605 0x61, 0x8f, 0x95, 0xda, 0x09, 0x0b, 0x6c, 0xd2,
3606 0xc5, 0xe8, 0xd0, 0x9c, 0x98, 0x73, 0xc4, 0xe3 };
3607 u8 res[16];
3608 int err;
3609
3610 err = smp_f6(tfm_cmac, w, n1, n2, r, io_cap, a1, a2, res);
3611 if (err)
3612 return err;
3613
3614 if (memcmp(res, exp, 16))
3615 return -EINVAL;
3616
3617 return 0;
3618}
3619
Herbert Xu71af2f62016-01-24 21:18:30 +08003620static int __init test_g2(struct crypto_shash *tfm_cmac)
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003621{
3622 const u8 u[32] = {
3623 0xe6, 0x9d, 0x35, 0x0e, 0x48, 0x01, 0x03, 0xcc,
3624 0xdb, 0xfd, 0xf4, 0xac, 0x11, 0x91, 0xf4, 0xef,
3625 0xb9, 0xa5, 0xf9, 0xe9, 0xa7, 0x83, 0x2c, 0x5e,
3626 0x2c, 0xbe, 0x97, 0xf2, 0xd2, 0x03, 0xb0, 0x20 };
3627 const u8 v[32] = {
3628 0xfd, 0xc5, 0x7f, 0xf4, 0x49, 0xdd, 0x4f, 0x6b,
3629 0xfb, 0x7c, 0x9d, 0xf1, 0xc2, 0x9a, 0xcb, 0x59,
3630 0x2a, 0xe7, 0xd4, 0xee, 0xfb, 0xfc, 0x0a, 0x90,
3631 0x9a, 0xbb, 0xf6, 0x32, 0x3d, 0x8b, 0x18, 0x55 };
3632 const u8 x[16] = {
3633 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3634 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3635 const u8 y[16] = {
3636 0xcf, 0xc4, 0x3d, 0xff, 0xf7, 0x83, 0x65, 0x21,
3637 0x6e, 0x5f, 0xa7, 0x25, 0xcc, 0xe7, 0xe8, 0xa6 };
3638 const u32 exp_val = 0x2f9ed5ba % 1000000;
3639 u32 val;
3640 int err;
3641
3642 err = smp_g2(tfm_cmac, u, v, x, y, &val);
3643 if (err)
3644 return err;
3645
3646 if (val != exp_val)
3647 return -EINVAL;
3648
3649 return 0;
3650}
3651
Herbert Xu71af2f62016-01-24 21:18:30 +08003652static int __init test_h6(struct crypto_shash *tfm_cmac)
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003653{
3654 const u8 w[16] = {
3655 0x9b, 0x7d, 0x39, 0x0a, 0xa6, 0x10, 0x10, 0x34,
3656 0x05, 0xad, 0xc8, 0x57, 0xa3, 0x34, 0x02, 0xec };
3657 const u8 key_id[4] = { 0x72, 0x62, 0x65, 0x6c };
3658 const u8 exp[16] = {
3659 0x99, 0x63, 0xb1, 0x80, 0xe2, 0xa9, 0xd3, 0xe8,
3660 0x1c, 0xc9, 0x6d, 0xe7, 0x02, 0xe1, 0x9a, 0x2d };
3661 u8 res[16];
3662 int err;
3663
3664 err = smp_h6(tfm_cmac, w, key_id, res);
3665 if (err)
3666 return err;
3667
3668 if (memcmp(res, exp, 16))
3669 return -EINVAL;
3670
3671 return 0;
3672}
3673
Marcel Holtmann64dd3742015-04-01 12:52:13 -07003674static char test_smp_buffer[32];
3675
3676static ssize_t test_smp_read(struct file *file, char __user *user_buf,
3677 size_t count, loff_t *ppos)
3678{
3679 return simple_read_from_buffer(user_buf, count, ppos, test_smp_buffer,
3680 strlen(test_smp_buffer));
3681}
3682
3683static const struct file_operations test_smp_fops = {
3684 .open = simple_open,
3685 .read = test_smp_read,
3686 .llseek = default_llseek,
3687};
3688
Herbert Xu71af2f62016-01-24 21:18:30 +08003689static int __init run_selftests(struct crypto_skcipher *tfm_aes,
3690 struct crypto_shash *tfm_cmac)
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003691{
Marcel Holtmann255047b2014-12-30 00:11:20 -08003692 ktime_t calltime, delta, rettime;
3693 unsigned long long duration;
Johan Hedbergcfc41982014-12-30 09:50:40 +02003694 int err;
3695
Marcel Holtmann255047b2014-12-30 00:11:20 -08003696 calltime = ktime_get();
3697
Johan Hedbergcfc41982014-12-30 09:50:40 +02003698 err = test_ah(tfm_aes);
3699 if (err) {
3700 BT_ERR("smp_ah test failed");
Marcel Holtmann64dd3742015-04-01 12:52:13 -07003701 goto done;
Johan Hedbergcfc41982014-12-30 09:50:40 +02003702 }
3703
3704 err = test_c1(tfm_aes);
3705 if (err) {
3706 BT_ERR("smp_c1 test failed");
Marcel Holtmann64dd3742015-04-01 12:52:13 -07003707 goto done;
Johan Hedbergcfc41982014-12-30 09:50:40 +02003708 }
3709
3710 err = test_s1(tfm_aes);
3711 if (err) {
3712 BT_ERR("smp_s1 test failed");
Marcel Holtmann64dd3742015-04-01 12:52:13 -07003713 goto done;
Johan Hedbergcfc41982014-12-30 09:50:40 +02003714 }
3715
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003716 err = test_f4(tfm_cmac);
3717 if (err) {
3718 BT_ERR("smp_f4 test failed");
Marcel Holtmann64dd3742015-04-01 12:52:13 -07003719 goto done;
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003720 }
3721
3722 err = test_f5(tfm_cmac);
3723 if (err) {
3724 BT_ERR("smp_f5 test failed");
Marcel Holtmann64dd3742015-04-01 12:52:13 -07003725 goto done;
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003726 }
3727
3728 err = test_f6(tfm_cmac);
3729 if (err) {
3730 BT_ERR("smp_f6 test failed");
Marcel Holtmann64dd3742015-04-01 12:52:13 -07003731 goto done;
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003732 }
3733
3734 err = test_g2(tfm_cmac);
3735 if (err) {
3736 BT_ERR("smp_g2 test failed");
Marcel Holtmann64dd3742015-04-01 12:52:13 -07003737 goto done;
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003738 }
3739
3740 err = test_h6(tfm_cmac);
3741 if (err) {
3742 BT_ERR("smp_h6 test failed");
Marcel Holtmann64dd3742015-04-01 12:52:13 -07003743 goto done;
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003744 }
3745
Marcel Holtmann255047b2014-12-30 00:11:20 -08003746 rettime = ktime_get();
3747 delta = ktime_sub(rettime, calltime);
3748 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
3749
Marcel Holtmann5ced2462015-01-12 23:09:48 -08003750 BT_INFO("SMP test passed in %llu usecs", duration);
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003751
Marcel Holtmann64dd3742015-04-01 12:52:13 -07003752done:
3753 if (!err)
3754 snprintf(test_smp_buffer, sizeof(test_smp_buffer),
3755 "PASS (%llu usecs)\n", duration);
3756 else
3757 snprintf(test_smp_buffer, sizeof(test_smp_buffer), "FAIL\n");
3758
3759 debugfs_create_file("selftest_smp", 0444, bt_debugfs, NULL,
3760 &test_smp_fops);
3761
3762 return err;
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003763}
3764
3765int __init bt_selftest_smp(void)
3766{
Herbert Xu71af2f62016-01-24 21:18:30 +08003767 struct crypto_skcipher *tfm_aes;
3768 struct crypto_shash *tfm_cmac;
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003769 int err;
3770
Herbert Xu71af2f62016-01-24 21:18:30 +08003771 tfm_aes = crypto_alloc_skcipher("ecb(aes)", 0, CRYPTO_ALG_ASYNC);
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003772 if (IS_ERR(tfm_aes)) {
3773 BT_ERR("Unable to create ECB crypto context");
3774 return PTR_ERR(tfm_aes);
3775 }
3776
Herbert Xu71af2f62016-01-24 21:18:30 +08003777 tfm_cmac = crypto_alloc_shash("cmac(aes)", 0, CRYPTO_ALG_ASYNC);
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003778 if (IS_ERR(tfm_cmac)) {
3779 BT_ERR("Unable to create CMAC crypto context");
Herbert Xu71af2f62016-01-24 21:18:30 +08003780 crypto_free_skcipher(tfm_aes);
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003781 return PTR_ERR(tfm_cmac);
3782 }
3783
3784 err = run_selftests(tfm_aes, tfm_cmac);
3785
Herbert Xu71af2f62016-01-24 21:18:30 +08003786 crypto_free_shash(tfm_cmac);
3787 crypto_free_skcipher(tfm_aes);
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003788
3789 return err;
3790}
3791
3792#endif