blob: 1ec3f66b5a74ec1027efa078409cfbcf88e18c73 [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/crypto.h>
25#include <linux/scatterlist.h>
26#include <crypto/b128ops.h>
27
Anderson Brigliaeb492e02011-06-09 18:50:40 -030028#include <net/bluetooth/bluetooth.h>
29#include <net/bluetooth/hci_core.h>
30#include <net/bluetooth/l2cap.h>
Brian Gix2b64d152011-12-21 16:12:12 -080031#include <net/bluetooth/mgmt.h>
Marcel Holtmannac4b7232013-10-10 14:54:16 -070032
Johan Hedberg3b191462014-06-06 10:50:15 +030033#include "ecc.h"
Marcel Holtmannac4b7232013-10-10 14:54:16 -070034#include "smp.h"
Anderson Brigliad22ef0b2011-06-09 18:50:44 -030035
Johan Hedbergc7a3d572014-12-01 22:03:16 +020036/* Low-level debug macros to be used for stuff that we don't want
37 * accidentially in dmesg, i.e. the values of the various crypto keys
38 * and the inputs & outputs of crypto functions.
39 */
40#ifdef DEBUG
41#define SMP_DBG(fmt, ...) printk(KERN_DEBUG "%s: " fmt, __func__, \
42 ##__VA_ARGS__)
43#else
44#define SMP_DBG(fmt, ...) no_printk(KERN_DEBUG "%s: " fmt, __func__, \
45 ##__VA_ARGS__)
46#endif
47
Johan Hedbergb28b4942014-09-05 22:19:55 +030048#define SMP_ALLOW_CMD(smp, code) set_bit(code, &smp->allow_cmd)
Johan Hedbergb28b4942014-09-05 22:19:55 +030049
Johan Hedberg3b191462014-06-06 10:50:15 +030050/* Keys which are not distributed with Secure Connections */
51#define SMP_SC_NO_DIST (SMP_DIST_ENC_KEY | SMP_DIST_LINK_KEY);
52
Marcel Holtmann17b02e62012-03-01 14:32:37 -080053#define SMP_TIMEOUT msecs_to_jiffies(30000)
Vinicius Costa Gomes5d3de7d2011-06-14 13:37:41 -030054
Marcel Holtmannd7a5a112015-03-13 02:11:00 -070055#define AUTH_REQ_MASK(dev) (hci_dev_test_flag(dev, HCI_SC_ENABLED) ? \
Johan Hedberg0edb14d2014-05-26 13:29:28 +030056 0x1f : 0x07)
57#define KEY_DIST_MASK 0x07
Johan Hedberg065a13e2012-10-11 16:26:06 +020058
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +030059/* Maximum message length that can be passed to aes_cmac */
60#define CMAC_MSG_MAX 80
61
Johan Hedberg533e35d2014-06-16 19:25:18 +030062enum {
63 SMP_FLAG_TK_VALID,
64 SMP_FLAG_CFM_PENDING,
65 SMP_FLAG_MITM_AUTH,
66 SMP_FLAG_COMPLETE,
67 SMP_FLAG_INITIATOR,
Johan Hedberg65668772014-05-16 11:03:34 +030068 SMP_FLAG_SC,
Johan Hedbergd8f8edb2014-06-06 11:09:28 +030069 SMP_FLAG_REMOTE_PK,
Johan Hedbergaeb7d462014-05-31 18:52:28 +030070 SMP_FLAG_DEBUG_KEY,
Johan Hedberg38606f12014-06-25 11:10:28 +030071 SMP_FLAG_WAIT_USER,
Johan Hedbergd3e54a82014-06-04 11:07:40 +030072 SMP_FLAG_DHKEY_PENDING,
Johan Hedberg1a8bab42015-03-16 11:45:44 +020073 SMP_FLAG_REMOTE_OOB,
74 SMP_FLAG_LOCAL_OOB,
Johan Hedberg533e35d2014-06-16 19:25:18 +030075};
Johan Hedberg4bc58f52014-05-20 09:45:47 +030076
Marcel Holtmann88a479d2015-03-16 01:10:19 -070077struct smp_dev {
Marcel Holtmann60a27d62015-03-16 01:10:22 -070078 /* Secure Connections OOB data */
79 u8 local_pk[64];
80 u8 local_sk[32];
Marcel Holtmannfb334fe2015-03-16 12:34:57 -070081 u8 local_rand[16];
Marcel Holtmann60a27d62015-03-16 01:10:22 -070082 bool debug_key;
83
Marcel Holtmann88a479d2015-03-16 01:10:19 -070084 struct crypto_blkcipher *tfm_aes;
Marcel Holtmann6e2dc6d2015-03-16 01:10:21 -070085 struct crypto_hash *tfm_cmac;
Marcel Holtmann88a479d2015-03-16 01:10:19 -070086};
87
Johan Hedberg4bc58f52014-05-20 09:45:47 +030088struct smp_chan {
Johan Hedbergb68fda62014-08-11 22:06:40 +030089 struct l2cap_conn *conn;
90 struct delayed_work security_timer;
Johan Hedbergb28b4942014-09-05 22:19:55 +030091 unsigned long allow_cmd; /* Bitmask of allowed commands */
Johan Hedbergb68fda62014-08-11 22:06:40 +030092
Johan Hedberg4bc58f52014-05-20 09:45:47 +030093 u8 preq[7]; /* SMP Pairing Request */
94 u8 prsp[7]; /* SMP Pairing Response */
95 u8 prnd[16]; /* SMP Pairing Random (local) */
96 u8 rrnd[16]; /* SMP Pairing Random (remote) */
97 u8 pcnf[16]; /* SMP Pairing Confirm */
98 u8 tk[16]; /* SMP Temporary Key */
Johan Hedberg882fafa2015-03-16 11:45:43 +020099 u8 rr[16]; /* Remote OOB ra/rb value */
100 u8 lr[16]; /* Local OOB ra/rb value */
Johan Hedberg4bc58f52014-05-20 09:45:47 +0300101 u8 enc_key_size;
102 u8 remote_key_dist;
103 bdaddr_t id_addr;
104 u8 id_addr_type;
105 u8 irk[16];
106 struct smp_csrk *csrk;
107 struct smp_csrk *slave_csrk;
108 struct smp_ltk *ltk;
109 struct smp_ltk *slave_ltk;
110 struct smp_irk *remote_irk;
Johan Hedberg6a770832014-06-06 11:54:04 +0300111 u8 *link_key;
Johan Hedberg4a74d652014-05-20 09:45:50 +0300112 unsigned long flags;
Johan Hedberg783e0572014-05-31 18:48:26 +0300113 u8 method;
Johan Hedberg38606f12014-06-25 11:10:28 +0300114 u8 passkey_round;
Johan Hedberg6a7bd102014-06-27 14:23:03 +0300115
Johan Hedberg3b191462014-06-06 10:50:15 +0300116 /* Secure Connections variables */
117 u8 local_pk[64];
118 u8 local_sk[32];
Johan Hedbergd8f8edb2014-06-06 11:09:28 +0300119 u8 remote_pk[64];
120 u8 dhkey[32];
Johan Hedberg760b0182014-06-06 11:44:05 +0300121 u8 mackey[16];
Johan Hedberg3b191462014-06-06 10:50:15 +0300122
Johan Hedberg6a7bd102014-06-27 14:23:03 +0300123 struct crypto_blkcipher *tfm_aes;
Johan Hedberg407cecf2014-05-02 14:19:47 +0300124 struct crypto_hash *tfm_cmac;
Johan Hedberg4bc58f52014-05-20 09:45:47 +0300125};
126
Johan Hedbergaeb7d462014-05-31 18:52:28 +0300127/* These debug key values are defined in the SMP section of the core
128 * specification. debug_pk is the public debug key and debug_sk the
129 * private debug key.
130 */
131static const u8 debug_pk[64] = {
132 0xe6, 0x9d, 0x35, 0x0e, 0x48, 0x01, 0x03, 0xcc,
133 0xdb, 0xfd, 0xf4, 0xac, 0x11, 0x91, 0xf4, 0xef,
134 0xb9, 0xa5, 0xf9, 0xe9, 0xa7, 0x83, 0x2c, 0x5e,
135 0x2c, 0xbe, 0x97, 0xf2, 0xd2, 0x03, 0xb0, 0x20,
136
137 0x8b, 0xd2, 0x89, 0x15, 0xd0, 0x8e, 0x1c, 0x74,
138 0x24, 0x30, 0xed, 0x8f, 0xc2, 0x45, 0x63, 0x76,
139 0x5c, 0x15, 0x52, 0x5a, 0xbf, 0x9a, 0x32, 0x63,
140 0x6d, 0xeb, 0x2a, 0x65, 0x49, 0x9c, 0x80, 0xdc,
141};
142
143static const u8 debug_sk[32] = {
144 0xbd, 0x1a, 0x3c, 0xcd, 0xa6, 0xb8, 0x99, 0x58,
145 0x99, 0xb7, 0x40, 0xeb, 0x7b, 0x60, 0xff, 0x4a,
146 0x50, 0x3f, 0x10, 0xd2, 0xe3, 0xb3, 0xc9, 0x74,
147 0x38, 0x5f, 0xc5, 0xa3, 0xd4, 0xf6, 0x49, 0x3f,
148};
149
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300150static inline void swap_buf(const u8 *src, u8 *dst, size_t len)
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300151{
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300152 size_t i;
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300153
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300154 for (i = 0; i < len; i++)
155 dst[len - 1 - i] = src[i];
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300156}
157
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200158/* The following functions map to the LE SC SMP crypto functions
159 * AES-CMAC, f4, f5, f6, g2 and h6.
160 */
161
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300162static int aes_cmac(struct crypto_hash *tfm, const u8 k[16], const u8 *m,
163 size_t len, u8 mac[16])
164{
165 uint8_t tmp[16], mac_msb[16], msg_msb[CMAC_MSG_MAX];
166 struct hash_desc desc;
167 struct scatterlist sg;
168 int err;
169
170 if (len > CMAC_MSG_MAX)
171 return -EFBIG;
172
173 if (!tfm) {
174 BT_ERR("tfm %p", tfm);
175 return -EINVAL;
176 }
177
178 desc.tfm = tfm;
179 desc.flags = 0;
180
181 crypto_hash_init(&desc);
182
183 /* Swap key and message from LSB to MSB */
184 swap_buf(k, tmp, 16);
185 swap_buf(m, msg_msb, len);
186
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200187 SMP_DBG("msg (len %zu) %*phN", len, (int) len, m);
188 SMP_DBG("key %16phN", k);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300189
190 err = crypto_hash_setkey(tfm, tmp, 16);
191 if (err) {
192 BT_ERR("cipher setkey failed: %d", err);
193 return err;
194 }
195
196 sg_init_one(&sg, msg_msb, len);
197
198 err = crypto_hash_update(&desc, &sg, len);
199 if (err) {
200 BT_ERR("Hash update error %d", err);
201 return err;
202 }
203
204 err = crypto_hash_final(&desc, mac_msb);
205 if (err) {
206 BT_ERR("Hash final error %d", err);
207 return err;
208 }
209
210 swap_buf(mac_msb, mac, 16);
211
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200212 SMP_DBG("mac %16phN", mac);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300213
214 return 0;
215}
216
217static int smp_f4(struct crypto_hash *tfm_cmac, const u8 u[32], const u8 v[32],
218 const u8 x[16], u8 z, u8 res[16])
219{
220 u8 m[65];
221 int err;
222
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200223 SMP_DBG("u %32phN", u);
224 SMP_DBG("v %32phN", v);
225 SMP_DBG("x %16phN z %02x", x, z);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300226
227 m[0] = z;
228 memcpy(m + 1, v, 32);
229 memcpy(m + 33, u, 32);
230
231 err = aes_cmac(tfm_cmac, x, m, sizeof(m), res);
232 if (err)
233 return err;
234
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200235 SMP_DBG("res %16phN", res);
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +0300236
237 return err;
238}
239
Johan Hedberg4da50de2014-12-29 12:04:10 +0200240static int smp_f5(struct crypto_hash *tfm_cmac, const u8 w[32],
241 const u8 n1[16], const u8 n2[16], const u8 a1[7],
242 const u8 a2[7], u8 mackey[16], u8 ltk[16])
Johan Hedberg760b0182014-06-06 11:44:05 +0300243{
244 /* The btle, salt and length "magic" values are as defined in
245 * the SMP section of the Bluetooth core specification. In ASCII
246 * the btle value ends up being 'btle'. The salt is just a
247 * random number whereas length is the value 256 in little
248 * endian format.
249 */
250 const u8 btle[4] = { 0x65, 0x6c, 0x74, 0x62 };
251 const u8 salt[16] = { 0xbe, 0x83, 0x60, 0x5a, 0xdb, 0x0b, 0x37, 0x60,
252 0x38, 0xa5, 0xf5, 0xaa, 0x91, 0x83, 0x88, 0x6c };
253 const u8 length[2] = { 0x00, 0x01 };
254 u8 m[53], t[16];
255 int err;
256
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200257 SMP_DBG("w %32phN", w);
258 SMP_DBG("n1 %16phN n2 %16phN", n1, n2);
259 SMP_DBG("a1 %7phN a2 %7phN", a1, a2);
Johan Hedberg760b0182014-06-06 11:44:05 +0300260
261 err = aes_cmac(tfm_cmac, salt, w, 32, t);
262 if (err)
263 return err;
264
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200265 SMP_DBG("t %16phN", t);
Johan Hedberg760b0182014-06-06 11:44:05 +0300266
267 memcpy(m, length, 2);
268 memcpy(m + 2, a2, 7);
269 memcpy(m + 9, a1, 7);
270 memcpy(m + 16, n2, 16);
271 memcpy(m + 32, n1, 16);
272 memcpy(m + 48, btle, 4);
273
274 m[52] = 0; /* Counter */
275
276 err = aes_cmac(tfm_cmac, t, m, sizeof(m), mackey);
277 if (err)
278 return err;
279
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200280 SMP_DBG("mackey %16phN", mackey);
Johan Hedberg760b0182014-06-06 11:44:05 +0300281
282 m[52] = 1; /* Counter */
283
284 err = aes_cmac(tfm_cmac, t, m, sizeof(m), ltk);
285 if (err)
286 return err;
287
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200288 SMP_DBG("ltk %16phN", ltk);
Johan Hedberg760b0182014-06-06 11:44:05 +0300289
290 return 0;
291}
292
293static int smp_f6(struct crypto_hash *tfm_cmac, const u8 w[16],
Johan Hedberg4da50de2014-12-29 12:04:10 +0200294 const u8 n1[16], const u8 n2[16], const u8 r[16],
Johan Hedberg760b0182014-06-06 11:44:05 +0300295 const u8 io_cap[3], const u8 a1[7], const u8 a2[7],
296 u8 res[16])
297{
298 u8 m[65];
299 int err;
300
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200301 SMP_DBG("w %16phN", w);
302 SMP_DBG("n1 %16phN n2 %16phN", n1, n2);
303 SMP_DBG("r %16phN io_cap %3phN a1 %7phN a2 %7phN", r, io_cap, a1, a2);
Johan Hedberg760b0182014-06-06 11:44:05 +0300304
305 memcpy(m, a2, 7);
306 memcpy(m + 7, a1, 7);
307 memcpy(m + 14, io_cap, 3);
308 memcpy(m + 17, r, 16);
309 memcpy(m + 33, n2, 16);
310 memcpy(m + 49, n1, 16);
311
312 err = aes_cmac(tfm_cmac, w, m, sizeof(m), res);
313 if (err)
314 return err;
315
Marcel Holtmann203de212014-12-31 20:01:22 -0800316 SMP_DBG("res %16phN", res);
Johan Hedberg760b0182014-06-06 11:44:05 +0300317
318 return err;
319}
320
Johan Hedberg191dc7f2014-06-06 11:39:49 +0300321static int smp_g2(struct crypto_hash *tfm_cmac, const u8 u[32], const u8 v[32],
322 const u8 x[16], const u8 y[16], u32 *val)
323{
324 u8 m[80], tmp[16];
325 int err;
326
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200327 SMP_DBG("u %32phN", u);
328 SMP_DBG("v %32phN", v);
329 SMP_DBG("x %16phN y %16phN", x, y);
Johan Hedberg191dc7f2014-06-06 11:39:49 +0300330
331 memcpy(m, y, 16);
332 memcpy(m + 16, v, 32);
333 memcpy(m + 48, u, 32);
334
335 err = aes_cmac(tfm_cmac, x, m, sizeof(m), tmp);
336 if (err)
337 return err;
338
339 *val = get_unaligned_le32(tmp);
340 *val %= 1000000;
341
Johan Hedbergc7a3d572014-12-01 22:03:16 +0200342 SMP_DBG("val %06u", *val);
Johan Hedberg191dc7f2014-06-06 11:39:49 +0300343
344 return 0;
345}
346
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200347static int smp_h6(struct crypto_hash *tfm_cmac, const u8 w[16],
348 const u8 key_id[4], u8 res[16])
349{
350 int err;
351
352 SMP_DBG("w %16phN key_id %4phN", w, key_id);
353
354 err = aes_cmac(tfm_cmac, w, key_id, 4, res);
355 if (err)
356 return err;
357
358 SMP_DBG("res %16phN", res);
359
360 return err;
361}
362
363/* The following functions map to the legacy SMP crypto functions e, c1,
364 * s1 and ah.
365 */
366
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300367static int smp_e(struct crypto_blkcipher *tfm, const u8 *k, u8 *r)
368{
369 struct blkcipher_desc desc;
370 struct scatterlist sg;
Johan Hedberg943a7322014-03-18 12:58:24 +0200371 uint8_t tmp[16], data[16];
Johan Hedberg201a5922013-12-02 10:49:04 +0200372 int err;
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300373
Johan Hedberg7f376cd2014-12-03 16:07:13 +0200374 if (!tfm) {
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300375 BT_ERR("tfm %p", tfm);
376 return -EINVAL;
377 }
378
379 desc.tfm = tfm;
380 desc.flags = 0;
381
Johan Hedberg943a7322014-03-18 12:58:24 +0200382 /* The most significant octet of key corresponds to k[0] */
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300383 swap_buf(k, tmp, 16);
Johan Hedberg943a7322014-03-18 12:58:24 +0200384
385 err = crypto_blkcipher_setkey(tfm, tmp, 16);
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300386 if (err) {
387 BT_ERR("cipher setkey failed: %d", err);
388 return err;
389 }
390
Johan Hedberg943a7322014-03-18 12:58:24 +0200391 /* Most significant octet of plaintextData corresponds to data[0] */
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300392 swap_buf(r, data, 16);
Johan Hedberg943a7322014-03-18 12:58:24 +0200393
394 sg_init_one(&sg, data, 16);
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300395
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300396 err = crypto_blkcipher_encrypt(&desc, &sg, &sg, 16);
397 if (err)
398 BT_ERR("Encrypt data error %d", err);
399
Johan Hedberg943a7322014-03-18 12:58:24 +0200400 /* Most significant octet of encryptedData corresponds to data[0] */
Johan Hedberg8a2936f2014-06-16 19:25:19 +0300401 swap_buf(data, r, 16);
Johan Hedberg943a7322014-03-18 12:58:24 +0200402
Anderson Brigliad22ef0b2011-06-09 18:50:44 -0300403 return err;
404}
405
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200406static int smp_c1(struct crypto_blkcipher *tfm_aes, const u8 k[16],
407 const u8 r[16], const u8 preq[7], const u8 pres[7], u8 _iat,
408 const bdaddr_t *ia, u8 _rat, const bdaddr_t *ra, u8 res[16])
409{
410 u8 p1[16], p2[16];
411 int err;
412
413 memset(p1, 0, 16);
414
415 /* p1 = pres || preq || _rat || _iat */
416 p1[0] = _iat;
417 p1[1] = _rat;
418 memcpy(p1 + 2, preq, 7);
419 memcpy(p1 + 9, pres, 7);
420
421 /* p2 = padding || ia || ra */
422 memcpy(p2, ra, 6);
423 memcpy(p2 + 6, ia, 6);
424 memset(p2 + 12, 0, 4);
425
426 /* res = r XOR p1 */
427 u128_xor((u128 *) res, (u128 *) r, (u128 *) p1);
428
429 /* res = e(k, res) */
430 err = smp_e(tfm_aes, k, res);
431 if (err) {
432 BT_ERR("Encrypt data error");
433 return err;
434 }
435
436 /* res = res XOR p2 */
437 u128_xor((u128 *) res, (u128 *) res, (u128 *) p2);
438
439 /* res = e(k, res) */
440 err = smp_e(tfm_aes, k, res);
441 if (err)
442 BT_ERR("Encrypt data error");
443
444 return err;
445}
446
447static int smp_s1(struct crypto_blkcipher *tfm_aes, const u8 k[16],
448 const u8 r1[16], const u8 r2[16], u8 _r[16])
Johan Hedberg6a770832014-06-06 11:54:04 +0300449{
450 int err;
451
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200452 /* Just least significant octets from r1 and r2 are considered */
453 memcpy(_r, r2, 8);
454 memcpy(_r + 8, r1, 8);
Johan Hedberg6a770832014-06-06 11:54:04 +0300455
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200456 err = smp_e(tfm_aes, k, _r);
Johan Hedberg6a770832014-06-06 11:54:04 +0300457 if (err)
Johan Hedberg06edf8d2014-12-02 13:39:23 +0200458 BT_ERR("Encrypt data error");
Johan Hedberg6a770832014-06-06 11:54:04 +0300459
460 return err;
461}
462
Johan Hedbergcd082792014-12-02 13:37:41 +0200463static int smp_ah(struct crypto_blkcipher *tfm, const u8 irk[16],
464 const u8 r[3], u8 res[3])
Johan Hedberg60478052014-02-18 10:19:31 +0200465{
Johan Hedberg943a7322014-03-18 12:58:24 +0200466 u8 _res[16];
Johan Hedberg60478052014-02-18 10:19:31 +0200467 int err;
468
469 /* r' = padding || r */
Johan Hedberg943a7322014-03-18 12:58:24 +0200470 memcpy(_res, r, 3);
471 memset(_res + 3, 0, 13);
Johan Hedberg60478052014-02-18 10:19:31 +0200472
Johan Hedberg943a7322014-03-18 12:58:24 +0200473 err = smp_e(tfm, irk, _res);
Johan Hedberg60478052014-02-18 10:19:31 +0200474 if (err) {
475 BT_ERR("Encrypt error");
476 return err;
477 }
478
479 /* The output of the random address function ah is:
480 * ah(h, r) = e(k, r') mod 2^24
481 * The output of the security function e is then truncated to 24 bits
482 * by taking the least significant 24 bits of the output of e as the
483 * result of ah.
484 */
Johan Hedberg943a7322014-03-18 12:58:24 +0200485 memcpy(res, _res, 3);
Johan Hedberg60478052014-02-18 10:19:31 +0200486
487 return 0;
488}
489
Johan Hedbergcd082792014-12-02 13:37:41 +0200490bool smp_irk_matches(struct hci_dev *hdev, const u8 irk[16],
491 const bdaddr_t *bdaddr)
Johan Hedberg60478052014-02-18 10:19:31 +0200492{
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300493 struct l2cap_chan *chan = hdev->smp_data;
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700494 struct smp_dev *smp;
Johan Hedberg60478052014-02-18 10:19:31 +0200495 u8 hash[3];
496 int err;
497
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300498 if (!chan || !chan->data)
499 return false;
500
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700501 smp = chan->data;
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300502
Johan Hedberg60478052014-02-18 10:19:31 +0200503 BT_DBG("RPA %pMR IRK %*phN", bdaddr, 16, irk);
504
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700505 err = smp_ah(smp->tfm_aes, irk, &bdaddr->b[3], hash);
Johan Hedberg60478052014-02-18 10:19:31 +0200506 if (err)
507 return false;
508
509 return !memcmp(bdaddr->b, hash, 3);
510}
511
Johan Hedbergcd082792014-12-02 13:37:41 +0200512int smp_generate_rpa(struct hci_dev *hdev, const u8 irk[16], bdaddr_t *rpa)
Johan Hedbergb1e2b3a2014-02-23 19:42:19 +0200513{
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300514 struct l2cap_chan *chan = hdev->smp_data;
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700515 struct smp_dev *smp;
Johan Hedbergb1e2b3a2014-02-23 19:42:19 +0200516 int err;
517
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300518 if (!chan || !chan->data)
519 return -EOPNOTSUPP;
520
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700521 smp = chan->data;
Johan Hedbergdefce9e2014-08-08 09:37:17 +0300522
Johan Hedbergb1e2b3a2014-02-23 19:42:19 +0200523 get_random_bytes(&rpa->b[3], 3);
524
525 rpa->b[5] &= 0x3f; /* Clear two most significant bits */
526 rpa->b[5] |= 0x40; /* Set second most significant bit */
527
Marcel Holtmann88a479d2015-03-16 01:10:19 -0700528 err = smp_ah(smp->tfm_aes, irk, &rpa->b[3], rpa->b);
Johan Hedbergb1e2b3a2014-02-23 19:42:19 +0200529 if (err < 0)
530 return err;
531
532 BT_DBG("RPA %pMR", rpa);
533
534 return 0;
535}
536
Marcel Holtmann60a27d62015-03-16 01:10:22 -0700537int smp_generate_oob(struct hci_dev *hdev, u8 hash[16], u8 rand[16])
538{
539 struct l2cap_chan *chan = hdev->smp_data;
540 struct smp_dev *smp;
541 int err;
542
543 if (!chan || !chan->data)
544 return -EOPNOTSUPP;
545
546 smp = chan->data;
547
548 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS)) {
549 BT_DBG("Using debug keys");
550 memcpy(smp->local_pk, debug_pk, 64);
551 memcpy(smp->local_sk, debug_sk, 32);
552 smp->debug_key = true;
553 } else {
554 while (true) {
555 /* Generate local key pair for Secure Connections */
556 if (!ecc_make_key(smp->local_pk, smp->local_sk))
557 return -EIO;
558
559 /* This is unlikely, but we need to check that
560 * we didn't accidentially generate a debug key.
561 */
562 if (memcmp(smp->local_sk, debug_sk, 32))
563 break;
564 }
565 smp->debug_key = false;
566 }
567
568 SMP_DBG("OOB Public Key X: %32phN", smp->local_pk);
569 SMP_DBG("OOB Public Key Y: %32phN", smp->local_pk + 32);
570 SMP_DBG("OOB Private Key: %32phN", smp->local_sk);
571
Marcel Holtmannfb334fe2015-03-16 12:34:57 -0700572 get_random_bytes(smp->local_rand, 16);
Marcel Holtmann60a27d62015-03-16 01:10:22 -0700573
574 err = smp_f4(smp->tfm_cmac, smp->local_pk, smp->local_pk,
Marcel Holtmannfb334fe2015-03-16 12:34:57 -0700575 smp->local_rand, 0, hash);
Marcel Holtmann60a27d62015-03-16 01:10:22 -0700576 if (err < 0)
577 return err;
578
Marcel Holtmannfb334fe2015-03-16 12:34:57 -0700579 memcpy(rand, smp->local_rand, 16);
Marcel Holtmann60a27d62015-03-16 01:10:22 -0700580
581 return 0;
582}
583
Anderson Brigliaeb492e02011-06-09 18:50:40 -0300584static void smp_send_cmd(struct l2cap_conn *conn, u8 code, u16 len, void *data)
585{
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300586 struct l2cap_chan *chan = conn->smp;
Johan Hedbergb68fda62014-08-11 22:06:40 +0300587 struct smp_chan *smp;
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300588 struct kvec iv[2];
589 struct msghdr msg;
590
591 if (!chan)
592 return;
Anderson Brigliaeb492e02011-06-09 18:50:40 -0300593
594 BT_DBG("code 0x%2.2x", code);
595
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300596 iv[0].iov_base = &code;
597 iv[0].iov_len = 1;
Anderson Brigliaeb492e02011-06-09 18:50:40 -0300598
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300599 iv[1].iov_base = data;
600 iv[1].iov_len = len;
601
602 memset(&msg, 0, sizeof(msg));
603
Al Viro17836392014-11-24 17:07:38 -0500604 iov_iter_kvec(&msg.msg_iter, WRITE | ITER_KVEC, iv, 2, 1 + len);
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300605
606 l2cap_chan_send(chan, &msg, 1 + len);
Vinicius Costa Gomese2dcd112011-08-19 21:06:50 -0300607
Johan Hedbergb68fda62014-08-11 22:06:40 +0300608 if (!chan->data)
609 return;
610
611 smp = chan->data;
612
613 cancel_delayed_work_sync(&smp->security_timer);
Johan Hedberg1b0921d2014-09-05 22:19:48 +0300614 schedule_delayed_work(&smp->security_timer, SMP_TIMEOUT);
Anderson Brigliaeb492e02011-06-09 18:50:40 -0300615}
616
Johan Hedbergd2eb9e12014-05-16 10:59:06 +0300617static u8 authreq_to_seclevel(u8 authreq)
Brian Gix2b64d152011-12-21 16:12:12 -0800618{
Johan Hedbergd2eb9e12014-05-16 10:59:06 +0300619 if (authreq & SMP_AUTH_MITM) {
620 if (authreq & SMP_AUTH_SC)
621 return BT_SECURITY_FIPS;
622 else
623 return BT_SECURITY_HIGH;
624 } else {
Brian Gix2b64d152011-12-21 16:12:12 -0800625 return BT_SECURITY_MEDIUM;
Johan Hedbergd2eb9e12014-05-16 10:59:06 +0300626 }
Brian Gix2b64d152011-12-21 16:12:12 -0800627}
628
629static __u8 seclevel_to_authreq(__u8 sec_level)
630{
631 switch (sec_level) {
Johan Hedbergd2eb9e12014-05-16 10:59:06 +0300632 case BT_SECURITY_FIPS:
Brian Gix2b64d152011-12-21 16:12:12 -0800633 case BT_SECURITY_HIGH:
634 return SMP_AUTH_MITM | SMP_AUTH_BONDING;
635 case BT_SECURITY_MEDIUM:
636 return SMP_AUTH_BONDING;
637 default:
638 return SMP_AUTH_NONE;
639 }
640}
641
Vinicius Costa Gomesb8e66ea2011-06-09 18:50:52 -0300642static void build_pairing_cmd(struct l2cap_conn *conn,
Marcel Holtmannf1560462013-10-13 05:43:25 -0700643 struct smp_cmd_pairing *req,
644 struct smp_cmd_pairing *rsp, __u8 authreq)
Vinicius Costa Gomesb8e66ea2011-06-09 18:50:52 -0300645{
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300646 struct l2cap_chan *chan = conn->smp;
647 struct smp_chan *smp = chan->data;
Johan Hedbergfd349c02014-02-18 10:19:36 +0200648 struct hci_conn *hcon = conn->hcon;
649 struct hci_dev *hdev = hcon->hdev;
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100650 u8 local_dist = 0, remote_dist = 0, oob_flag = SMP_OOB_NOT_PRESENT;
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300651
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700652 if (hci_dev_test_flag(hdev, HCI_BONDABLE)) {
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -0700653 local_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
654 remote_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300655 authreq |= SMP_AUTH_BONDING;
Brian Gix2b64d152011-12-21 16:12:12 -0800656 } else {
657 authreq &= ~SMP_AUTH_BONDING;
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300658 }
659
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700660 if (hci_dev_test_flag(hdev, HCI_RPA_RESOLVING))
Johan Hedbergfd349c02014-02-18 10:19:36 +0200661 remote_dist |= SMP_DIST_ID_KEY;
662
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700663 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
Johan Hedberg863efaf2014-02-22 19:06:32 +0200664 local_dist |= SMP_DIST_ID_KEY;
665
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700666 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100667 (authreq & SMP_AUTH_SC)) {
668 struct oob_data *oob_data;
669 u8 bdaddr_type;
670
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700671 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedbergdf8e1a42014-06-06 10:39:56 +0300672 local_dist |= SMP_DIST_LINK_KEY;
673 remote_dist |= SMP_DIST_LINK_KEY;
674 }
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100675
676 if (hcon->dst_type == ADDR_LE_DEV_PUBLIC)
677 bdaddr_type = BDADDR_LE_PUBLIC;
678 else
679 bdaddr_type = BDADDR_LE_RANDOM;
680
681 oob_data = hci_find_remote_oob_data(hdev, &hcon->dst,
682 bdaddr_type);
Marcel Holtmann4775a4e2015-01-31 00:15:52 -0800683 if (oob_data && oob_data->present) {
Johan Hedberg1a8bab42015-03-16 11:45:44 +0200684 set_bit(SMP_FLAG_REMOTE_OOB, &smp->flags);
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100685 oob_flag = SMP_OOB_PRESENT;
Johan Hedberga29b0732014-10-28 15:17:05 +0100686 memcpy(smp->rr, oob_data->rand256, 16);
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100687 memcpy(smp->pcnf, oob_data->hash256, 16);
Marcel Holtmannbc07cd62015-03-16 12:34:56 -0700688 SMP_DBG("OOB Remote Confirmation: %16phN", smp->pcnf);
689 SMP_DBG("OOB Remote Random: %16phN", smp->rr);
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100690 }
691
Johan Hedbergdf8e1a42014-06-06 10:39:56 +0300692 } else {
693 authreq &= ~SMP_AUTH_SC;
694 }
695
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300696 if (rsp == NULL) {
697 req->io_capability = conn->hcon->io_capability;
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100698 req->oob_flag = oob_flag;
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300699 req->max_key_size = SMP_MAX_ENC_KEY_SIZE;
Johan Hedbergfd349c02014-02-18 10:19:36 +0200700 req->init_key_dist = local_dist;
701 req->resp_key_dist = remote_dist;
Johan Hedberg0edb14d2014-05-26 13:29:28 +0300702 req->auth_req = (authreq & AUTH_REQ_MASK(hdev));
Johan Hedbergfd349c02014-02-18 10:19:36 +0200703
704 smp->remote_key_dist = remote_dist;
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300705 return;
706 }
707
708 rsp->io_capability = conn->hcon->io_capability;
Johan Hedberg02b05bd2014-10-26 21:19:10 +0100709 rsp->oob_flag = oob_flag;
Vinicius Costa Gomes54790f72011-07-07 18:59:38 -0300710 rsp->max_key_size = SMP_MAX_ENC_KEY_SIZE;
Johan Hedbergfd349c02014-02-18 10:19:36 +0200711 rsp->init_key_dist = req->init_key_dist & remote_dist;
712 rsp->resp_key_dist = req->resp_key_dist & local_dist;
Johan Hedberg0edb14d2014-05-26 13:29:28 +0300713 rsp->auth_req = (authreq & AUTH_REQ_MASK(hdev));
Johan Hedbergfd349c02014-02-18 10:19:36 +0200714
715 smp->remote_key_dist = rsp->init_key_dist;
Vinicius Costa Gomesb8e66ea2011-06-09 18:50:52 -0300716}
717
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -0300718static u8 check_enc_key_size(struct l2cap_conn *conn, __u8 max_key_size)
719{
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300720 struct l2cap_chan *chan = conn->smp;
721 struct smp_chan *smp = chan->data;
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -0300722
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -0300723 if ((max_key_size > SMP_MAX_ENC_KEY_SIZE) ||
Marcel Holtmannf1560462013-10-13 05:43:25 -0700724 (max_key_size < SMP_MIN_ENC_KEY_SIZE))
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -0300725 return SMP_ENC_KEY_SIZE;
726
Vinicius Costa Gomesf7aa6112012-01-30 19:29:12 -0300727 smp->enc_key_size = max_key_size;
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -0300728
729 return 0;
730}
731
Johan Hedberg6f48e262014-08-11 22:06:44 +0300732static void smp_chan_destroy(struct l2cap_conn *conn)
733{
734 struct l2cap_chan *chan = conn->smp;
735 struct smp_chan *smp = chan->data;
Johan Hedberg923e2412014-12-03 12:43:39 +0200736 struct hci_conn *hcon = conn->hcon;
Johan Hedberg6f48e262014-08-11 22:06:44 +0300737 bool complete;
738
739 BUG_ON(!smp);
740
741 cancel_delayed_work_sync(&smp->security_timer);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300742
Johan Hedberg6f48e262014-08-11 22:06:44 +0300743 complete = test_bit(SMP_FLAG_COMPLETE, &smp->flags);
Johan Hedberg923e2412014-12-03 12:43:39 +0200744 mgmt_smp_complete(hcon, complete);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300745
Marcel Holtmann276812e2015-03-16 01:10:18 -0700746 kzfree(smp->csrk);
747 kzfree(smp->slave_csrk);
748 kzfree(smp->link_key);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300749
750 crypto_free_blkcipher(smp->tfm_aes);
Johan Hedberg407cecf2014-05-02 14:19:47 +0300751 crypto_free_hash(smp->tfm_cmac);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300752
Johan Hedberg923e2412014-12-03 12:43:39 +0200753 /* Ensure that we don't leave any debug key around if debug key
754 * support hasn't been explicitly enabled.
755 */
756 if (smp->ltk && smp->ltk->type == SMP_LTK_P256_DEBUG &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700757 !hci_dev_test_flag(hcon->hdev, HCI_KEEP_DEBUG_KEYS)) {
Johan Hedberg923e2412014-12-03 12:43:39 +0200758 list_del_rcu(&smp->ltk->list);
759 kfree_rcu(smp->ltk, rcu);
760 smp->ltk = NULL;
761 }
762
Johan Hedberg6f48e262014-08-11 22:06:44 +0300763 /* If pairing failed clean up any keys we might have */
764 if (!complete) {
765 if (smp->ltk) {
Johan Hedberg970d0f12014-11-13 14:37:47 +0200766 list_del_rcu(&smp->ltk->list);
767 kfree_rcu(smp->ltk, rcu);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300768 }
769
770 if (smp->slave_ltk) {
Johan Hedberg970d0f12014-11-13 14:37:47 +0200771 list_del_rcu(&smp->slave_ltk->list);
772 kfree_rcu(smp->slave_ltk, rcu);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300773 }
774
775 if (smp->remote_irk) {
Johan Hedbergadae20c2014-11-13 14:37:48 +0200776 list_del_rcu(&smp->remote_irk->list);
777 kfree_rcu(smp->remote_irk, rcu);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300778 }
779 }
780
781 chan->data = NULL;
Marcel Holtmann276812e2015-03-16 01:10:18 -0700782 kzfree(smp);
Johan Hedberg923e2412014-12-03 12:43:39 +0200783 hci_conn_drop(hcon);
Johan Hedberg6f48e262014-08-11 22:06:44 +0300784}
785
Johan Hedberg84794e12013-11-06 11:24:57 +0200786static void smp_failure(struct l2cap_conn *conn, u8 reason)
Brian Gix4f957a72011-11-23 08:28:36 -0800787{
Johan Hedbergbab73cb2012-02-09 16:07:29 +0200788 struct hci_conn *hcon = conn->hcon;
Johan Hedbergb68fda62014-08-11 22:06:40 +0300789 struct l2cap_chan *chan = conn->smp;
Johan Hedbergbab73cb2012-02-09 16:07:29 +0200790
Johan Hedberg84794e12013-11-06 11:24:57 +0200791 if (reason)
Brian Gix4f957a72011-11-23 08:28:36 -0800792 smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason),
Marcel Holtmannf1560462013-10-13 05:43:25 -0700793 &reason);
Brian Gix4f957a72011-11-23 08:28:36 -0800794
Marcel Holtmannce39fb42013-10-13 02:23:39 -0700795 clear_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags);
Johan Hedberge1e930f2014-09-08 17:09:49 -0700796 mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE);
Vinicius Costa Gomesf1c09c02012-02-01 18:27:56 -0300797
Johan Hedbergfc75cc82014-09-05 22:19:52 +0300798 if (chan->data)
Vinicius Costa Gomesf1c09c02012-02-01 18:27:56 -0300799 smp_chan_destroy(conn);
Brian Gix4f957a72011-11-23 08:28:36 -0800800}
801
Brian Gix2b64d152011-12-21 16:12:12 -0800802#define JUST_WORKS 0x00
803#define JUST_CFM 0x01
804#define REQ_PASSKEY 0x02
805#define CFM_PASSKEY 0x03
806#define REQ_OOB 0x04
Johan Hedberg5e3d3d92014-05-31 18:51:02 +0300807#define DSP_PASSKEY 0x05
Brian Gix2b64d152011-12-21 16:12:12 -0800808#define OVERLAP 0xFF
809
810static const u8 gen_method[5][5] = {
811 { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
812 { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
813 { CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY },
814 { JUST_WORKS, JUST_CFM, JUST_WORKS, JUST_WORKS, JUST_CFM },
815 { CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, OVERLAP },
816};
817
Johan Hedberg5e3d3d92014-05-31 18:51:02 +0300818static const u8 sc_method[5][5] = {
819 { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY },
820 { JUST_WORKS, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY },
821 { DSP_PASSKEY, DSP_PASSKEY, REQ_PASSKEY, JUST_WORKS, DSP_PASSKEY },
822 { JUST_WORKS, JUST_CFM, JUST_WORKS, JUST_WORKS, JUST_CFM },
823 { DSP_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY },
824};
825
Johan Hedberg581370c2014-06-17 13:07:38 +0300826static u8 get_auth_method(struct smp_chan *smp, u8 local_io, u8 remote_io)
827{
Johan Hedberg2bcd4002014-07-09 19:18:09 +0300828 /* If either side has unknown io_caps, use JUST_CFM (which gets
829 * converted later to JUST_WORKS if we're initiators.
830 */
Johan Hedberg581370c2014-06-17 13:07:38 +0300831 if (local_io > SMP_IO_KEYBOARD_DISPLAY ||
832 remote_io > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2bcd4002014-07-09 19:18:09 +0300833 return JUST_CFM;
Johan Hedberg581370c2014-06-17 13:07:38 +0300834
Johan Hedberg5e3d3d92014-05-31 18:51:02 +0300835 if (test_bit(SMP_FLAG_SC, &smp->flags))
836 return sc_method[remote_io][local_io];
837
Johan Hedberg581370c2014-06-17 13:07:38 +0300838 return gen_method[remote_io][local_io];
839}
840
Brian Gix2b64d152011-12-21 16:12:12 -0800841static int tk_request(struct l2cap_conn *conn, u8 remote_oob, u8 auth,
842 u8 local_io, u8 remote_io)
843{
844 struct hci_conn *hcon = conn->hcon;
Johan Hedberg5d88cc72014-08-08 09:37:18 +0300845 struct l2cap_chan *chan = conn->smp;
846 struct smp_chan *smp = chan->data;
Brian Gix2b64d152011-12-21 16:12:12 -0800847 u32 passkey = 0;
848 int ret = 0;
849
850 /* Initialize key for JUST WORKS */
851 memset(smp->tk, 0, sizeof(smp->tk));
Johan Hedberg4a74d652014-05-20 09:45:50 +0300852 clear_bit(SMP_FLAG_TK_VALID, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -0800853
854 BT_DBG("tk_request: auth:%d lcl:%d rem:%d", auth, local_io, remote_io);
855
Johan Hedberg2bcd4002014-07-09 19:18:09 +0300856 /* If neither side wants MITM, either "just" confirm an incoming
857 * request or use just-works for outgoing ones. The JUST_CFM
858 * will be converted to JUST_WORKS if necessary later in this
859 * function. If either side has MITM look up the method from the
860 * table.
861 */
Johan Hedberg581370c2014-06-17 13:07:38 +0300862 if (!(auth & SMP_AUTH_MITM))
Johan Hedberg783e0572014-05-31 18:48:26 +0300863 smp->method = JUST_CFM;
Brian Gix2b64d152011-12-21 16:12:12 -0800864 else
Johan Hedberg783e0572014-05-31 18:48:26 +0300865 smp->method = get_auth_method(smp, local_io, remote_io);
Brian Gix2b64d152011-12-21 16:12:12 -0800866
Johan Hedberga82505c2014-03-24 14:39:07 +0200867 /* Don't confirm locally initiated pairing attempts */
Johan Hedberg783e0572014-05-31 18:48:26 +0300868 if (smp->method == JUST_CFM && test_bit(SMP_FLAG_INITIATOR,
869 &smp->flags))
870 smp->method = JUST_WORKS;
Johan Hedberga82505c2014-03-24 14:39:07 +0200871
Johan Hedberg02f3e252014-07-16 15:09:13 +0300872 /* Don't bother user space with no IO capabilities */
Johan Hedberg783e0572014-05-31 18:48:26 +0300873 if (smp->method == JUST_CFM &&
874 hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
875 smp->method = JUST_WORKS;
Johan Hedberg02f3e252014-07-16 15:09:13 +0300876
Brian Gix2b64d152011-12-21 16:12:12 -0800877 /* If Just Works, Continue with Zero TK */
Johan Hedberg783e0572014-05-31 18:48:26 +0300878 if (smp->method == JUST_WORKS) {
Johan Hedberg4a74d652014-05-20 09:45:50 +0300879 set_bit(SMP_FLAG_TK_VALID, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -0800880 return 0;
881 }
882
Johan Hedberg19c5ce92015-03-15 19:34:04 +0200883 /* If this function is used for SC -> legacy fallback we
884 * can only recover the just-works case.
885 */
886 if (test_bit(SMP_FLAG_SC, &smp->flags))
887 return -EINVAL;
888
Brian Gix2b64d152011-12-21 16:12:12 -0800889 /* Not Just Works/Confirm results in MITM Authentication */
Johan Hedberg783e0572014-05-31 18:48:26 +0300890 if (smp->method != JUST_CFM) {
Johan Hedberg4a74d652014-05-20 09:45:50 +0300891 set_bit(SMP_FLAG_MITM_AUTH, &smp->flags);
Johan Hedberg5eb596f2014-09-18 11:26:32 +0300892 if (hcon->pending_sec_level < BT_SECURITY_HIGH)
893 hcon->pending_sec_level = BT_SECURITY_HIGH;
894 }
Brian Gix2b64d152011-12-21 16:12:12 -0800895
896 /* If both devices have Keyoard-Display I/O, the master
897 * Confirms and the slave Enters the passkey.
898 */
Johan Hedberg783e0572014-05-31 18:48:26 +0300899 if (smp->method == OVERLAP) {
Johan Hedberg40bef302014-07-16 11:42:27 +0300900 if (hcon->role == HCI_ROLE_MASTER)
Johan Hedberg783e0572014-05-31 18:48:26 +0300901 smp->method = CFM_PASSKEY;
Brian Gix2b64d152011-12-21 16:12:12 -0800902 else
Johan Hedberg783e0572014-05-31 18:48:26 +0300903 smp->method = REQ_PASSKEY;
Brian Gix2b64d152011-12-21 16:12:12 -0800904 }
905
Johan Hedberg01ad34d2014-03-19 14:14:53 +0200906 /* Generate random passkey. */
Johan Hedberg783e0572014-05-31 18:48:26 +0300907 if (smp->method == CFM_PASSKEY) {
Johan Hedberg943a7322014-03-18 12:58:24 +0200908 memset(smp->tk, 0, sizeof(smp->tk));
Brian Gix2b64d152011-12-21 16:12:12 -0800909 get_random_bytes(&passkey, sizeof(passkey));
910 passkey %= 1000000;
Johan Hedberg943a7322014-03-18 12:58:24 +0200911 put_unaligned_le32(passkey, smp->tk);
Brian Gix2b64d152011-12-21 16:12:12 -0800912 BT_DBG("PassKey: %d", passkey);
Johan Hedberg4a74d652014-05-20 09:45:50 +0300913 set_bit(SMP_FLAG_TK_VALID, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -0800914 }
915
Johan Hedberg783e0572014-05-31 18:48:26 +0300916 if (smp->method == REQ_PASSKEY)
Marcel Holtmannce39fb42013-10-13 02:23:39 -0700917 ret = mgmt_user_passkey_request(hcon->hdev, &hcon->dst,
Johan Hedberg272d90d2012-02-09 15:26:12 +0200918 hcon->type, hcon->dst_type);
Johan Hedberg783e0572014-05-31 18:48:26 +0300919 else if (smp->method == JUST_CFM)
Johan Hedberg4eb65e62014-03-24 14:39:05 +0200920 ret = mgmt_user_confirm_request(hcon->hdev, &hcon->dst,
921 hcon->type, hcon->dst_type,
922 passkey, 1);
Brian Gix2b64d152011-12-21 16:12:12 -0800923 else
Johan Hedberg01ad34d2014-03-19 14:14:53 +0200924 ret = mgmt_user_passkey_notify(hcon->hdev, &hcon->dst,
Johan Hedberg272d90d2012-02-09 15:26:12 +0200925 hcon->type, hcon->dst_type,
Johan Hedberg39adbff2014-03-20 08:18:14 +0200926 passkey, 0);
Brian Gix2b64d152011-12-21 16:12:12 -0800927
Brian Gix2b64d152011-12-21 16:12:12 -0800928 return ret;
929}
930
Johan Hedberg1cc61142014-05-20 09:45:52 +0300931static u8 smp_confirm(struct smp_chan *smp)
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300932{
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300933 struct l2cap_conn *conn = smp->conn;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300934 struct smp_cmd_pairing_confirm cp;
935 int ret;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300936
937 BT_DBG("conn %p", conn);
938
Johan Hedberge491eaf2014-10-25 21:15:37 +0200939 ret = smp_c1(smp->tfm_aes, smp->tk, smp->prnd, smp->preq, smp->prsp,
Johan Hedbergb1cd5fd2014-02-28 12:54:17 +0200940 conn->hcon->init_addr_type, &conn->hcon->init_addr,
Johan Hedberg943a7322014-03-18 12:58:24 +0200941 conn->hcon->resp_addr_type, &conn->hcon->resp_addr,
942 cp.confirm_val);
Johan Hedberg1cc61142014-05-20 09:45:52 +0300943 if (ret)
944 return SMP_UNSPECIFIED;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300945
Johan Hedberg4a74d652014-05-20 09:45:50 +0300946 clear_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -0800947
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300948 smp_send_cmd(smp->conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cp), &cp);
949
Johan Hedbergb28b4942014-09-05 22:19:55 +0300950 if (conn->hcon->out)
951 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
952 else
953 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
954
Johan Hedberg1cc61142014-05-20 09:45:52 +0300955 return 0;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300956}
957
Johan Hedberg861580a2014-05-20 09:45:51 +0300958static u8 smp_random(struct smp_chan *smp)
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300959{
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300960 struct l2cap_conn *conn = smp->conn;
961 struct hci_conn *hcon = conn->hcon;
Johan Hedberg861580a2014-05-20 09:45:51 +0300962 u8 confirm[16];
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300963 int ret;
964
Johan Hedbergec70f362014-06-27 14:23:04 +0300965 if (IS_ERR_OR_NULL(smp->tfm_aes))
Johan Hedberg861580a2014-05-20 09:45:51 +0300966 return SMP_UNSPECIFIED;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300967
968 BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave");
969
Johan Hedberge491eaf2014-10-25 21:15:37 +0200970 ret = smp_c1(smp->tfm_aes, smp->tk, smp->rrnd, smp->preq, smp->prsp,
Johan Hedbergb1cd5fd2014-02-28 12:54:17 +0200971 hcon->init_addr_type, &hcon->init_addr,
Johan Hedberg943a7322014-03-18 12:58:24 +0200972 hcon->resp_addr_type, &hcon->resp_addr, confirm);
Johan Hedberg861580a2014-05-20 09:45:51 +0300973 if (ret)
974 return SMP_UNSPECIFIED;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300975
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300976 if (memcmp(smp->pcnf, confirm, sizeof(smp->pcnf)) != 0) {
977 BT_ERR("Pairing failed (confirmation values mismatch)");
Johan Hedberg861580a2014-05-20 09:45:51 +0300978 return SMP_CONFIRM_FAILED;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300979 }
980
981 if (hcon->out) {
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -0800982 u8 stk[16];
983 __le64 rand = 0;
984 __le16 ediv = 0;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300985
Johan Hedberge491eaf2014-10-25 21:15:37 +0200986 smp_s1(smp->tfm_aes, smp->tk, smp->rrnd, smp->prnd, stk);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300987
Vinicius Costa Gomesf7aa6112012-01-30 19:29:12 -0300988 memset(stk + smp->enc_key_size, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300989 SMP_MAX_ENC_KEY_SIZE - smp->enc_key_size);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300990
Johan Hedberg861580a2014-05-20 09:45:51 +0300991 if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags))
992 return SMP_UNSPECIFIED;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300993
994 hci_le_start_enc(hcon, ediv, rand, stk);
Vinicius Costa Gomesf7aa6112012-01-30 19:29:12 -0300995 hcon->enc_key_size = smp->enc_key_size;
Johan Hedbergfe59a052014-07-01 19:14:12 +0300996 set_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -0300997 } else {
Johan Hedbergfff34902014-06-10 15:19:50 +0300998 u8 stk[16], auth;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -0800999 __le64 rand = 0;
1000 __le16 ediv = 0;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001001
Johan Hedberg943a7322014-03-18 12:58:24 +02001002 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
1003 smp->prnd);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001004
Johan Hedberge491eaf2014-10-25 21:15:37 +02001005 smp_s1(smp->tfm_aes, smp->tk, smp->prnd, smp->rrnd, stk);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001006
Vinicius Costa Gomesf7aa6112012-01-30 19:29:12 -03001007 memset(stk + smp->enc_key_size, 0,
Marcel Holtmannf1560462013-10-13 05:43:25 -07001008 SMP_MAX_ENC_KEY_SIZE - smp->enc_key_size);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001009
Johan Hedbergfff34902014-06-10 15:19:50 +03001010 if (hcon->pending_sec_level == BT_SECURITY_HIGH)
1011 auth = 1;
1012 else
1013 auth = 0;
1014
Johan Hedberg7d5843b2014-06-16 19:25:15 +03001015 /* Even though there's no _SLAVE suffix this is the
1016 * slave STK we're adding for later lookup (the master
1017 * STK never needs to be stored).
1018 */
Marcel Holtmannce39fb42013-10-13 02:23:39 -07001019 hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type,
Johan Hedberg2ceba532014-06-16 19:25:16 +03001020 SMP_STK, auth, stk, smp->enc_key_size, ediv, rand);
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001021 }
1022
Johan Hedberg861580a2014-05-20 09:45:51 +03001023 return 0;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001024}
1025
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001026static void smp_notify_keys(struct l2cap_conn *conn)
1027{
1028 struct l2cap_chan *chan = conn->smp;
1029 struct smp_chan *smp = chan->data;
1030 struct hci_conn *hcon = conn->hcon;
1031 struct hci_dev *hdev = hcon->hdev;
1032 struct smp_cmd_pairing *req = (void *) &smp->preq[1];
1033 struct smp_cmd_pairing *rsp = (void *) &smp->prsp[1];
1034 bool persistent;
1035
1036 if (smp->remote_irk) {
1037 mgmt_new_irk(hdev, smp->remote_irk);
1038 /* Now that user space can be considered to know the
1039 * identity address track the connection based on it
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001040 * from now on (assuming this is an LE link).
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001041 */
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001042 if (hcon->type == LE_LINK) {
1043 bacpy(&hcon->dst, &smp->remote_irk->bdaddr);
1044 hcon->dst_type = smp->remote_irk->addr_type;
1045 queue_work(hdev->workqueue, &conn->id_addr_update_work);
1046 }
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001047
1048 /* When receiving an indentity resolving key for
1049 * a remote device that does not use a resolvable
1050 * private address, just remove the key so that
1051 * it is possible to use the controller white
1052 * list for scanning.
1053 *
1054 * Userspace will have been told to not store
1055 * this key at this point. So it is safe to
1056 * just remove it.
1057 */
1058 if (!bacmp(&smp->remote_irk->rpa, BDADDR_ANY)) {
Johan Hedbergadae20c2014-11-13 14:37:48 +02001059 list_del_rcu(&smp->remote_irk->list);
1060 kfree_rcu(smp->remote_irk, rcu);
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001061 smp->remote_irk = NULL;
1062 }
1063 }
1064
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001065 if (hcon->type == ACL_LINK) {
1066 if (hcon->key_type == HCI_LK_DEBUG_COMBINATION)
1067 persistent = false;
1068 else
1069 persistent = !test_bit(HCI_CONN_FLUSH_KEY,
1070 &hcon->flags);
1071 } else {
1072 /* The LTKs and CSRKs should be persistent only if both sides
1073 * had the bonding bit set in their authentication requests.
1074 */
1075 persistent = !!((req->auth_req & rsp->auth_req) &
1076 SMP_AUTH_BONDING);
1077 }
1078
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001079
1080 if (smp->csrk) {
1081 smp->csrk->bdaddr_type = hcon->dst_type;
1082 bacpy(&smp->csrk->bdaddr, &hcon->dst);
1083 mgmt_new_csrk(hdev, smp->csrk, persistent);
1084 }
1085
1086 if (smp->slave_csrk) {
1087 smp->slave_csrk->bdaddr_type = hcon->dst_type;
1088 bacpy(&smp->slave_csrk->bdaddr, &hcon->dst);
1089 mgmt_new_csrk(hdev, smp->slave_csrk, persistent);
1090 }
1091
1092 if (smp->ltk) {
1093 smp->ltk->bdaddr_type = hcon->dst_type;
1094 bacpy(&smp->ltk->bdaddr, &hcon->dst);
1095 mgmt_new_ltk(hdev, smp->ltk, persistent);
1096 }
1097
1098 if (smp->slave_ltk) {
1099 smp->slave_ltk->bdaddr_type = hcon->dst_type;
1100 bacpy(&smp->slave_ltk->bdaddr, &hcon->dst);
1101 mgmt_new_ltk(hdev, smp->slave_ltk, persistent);
1102 }
Johan Hedberg6a770832014-06-06 11:54:04 +03001103
1104 if (smp->link_key) {
Johan Hedberge3befab2014-06-01 16:33:39 +03001105 struct link_key *key;
1106 u8 type;
1107
1108 if (test_bit(SMP_FLAG_DEBUG_KEY, &smp->flags))
1109 type = HCI_LK_DEBUG_COMBINATION;
1110 else if (hcon->sec_level == BT_SECURITY_FIPS)
1111 type = HCI_LK_AUTH_COMBINATION_P256;
1112 else
1113 type = HCI_LK_UNAUTH_COMBINATION_P256;
1114
1115 key = hci_add_link_key(hdev, smp->conn->hcon, &hcon->dst,
1116 smp->link_key, type, 0, &persistent);
1117 if (key) {
1118 mgmt_new_link_key(hdev, key, persistent);
1119
1120 /* Don't keep debug keys around if the relevant
1121 * flag is not set.
1122 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001123 if (!hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS) &&
Johan Hedberge3befab2014-06-01 16:33:39 +03001124 key->type == HCI_LK_DEBUG_COMBINATION) {
1125 list_del_rcu(&key->list);
1126 kfree_rcu(key, rcu);
1127 }
1128 }
Johan Hedberg6a770832014-06-06 11:54:04 +03001129 }
1130}
1131
Johan Hedbergd3e54a82014-06-04 11:07:40 +03001132static void sc_add_ltk(struct smp_chan *smp)
1133{
1134 struct hci_conn *hcon = smp->conn->hcon;
1135 u8 key_type, auth;
1136
1137 if (test_bit(SMP_FLAG_DEBUG_KEY, &smp->flags))
1138 key_type = SMP_LTK_P256_DEBUG;
1139 else
1140 key_type = SMP_LTK_P256;
1141
1142 if (hcon->pending_sec_level == BT_SECURITY_FIPS)
1143 auth = 1;
1144 else
1145 auth = 0;
1146
1147 memset(smp->tk + smp->enc_key_size, 0,
1148 SMP_MAX_ENC_KEY_SIZE - smp->enc_key_size);
1149
1150 smp->ltk = hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type,
1151 key_type, auth, smp->tk, smp->enc_key_size,
1152 0, 0);
1153}
1154
Johan Hedberg6a770832014-06-06 11:54:04 +03001155static void sc_generate_link_key(struct smp_chan *smp)
1156{
1157 /* These constants are as specified in the core specification.
1158 * In ASCII they spell out to 'tmp1' and 'lebr'.
1159 */
1160 const u8 tmp1[4] = { 0x31, 0x70, 0x6d, 0x74 };
1161 const u8 lebr[4] = { 0x72, 0x62, 0x65, 0x6c };
1162
1163 smp->link_key = kzalloc(16, GFP_KERNEL);
1164 if (!smp->link_key)
1165 return;
1166
1167 if (smp_h6(smp->tfm_cmac, smp->tk, tmp1, smp->link_key)) {
Marcel Holtmann276812e2015-03-16 01:10:18 -07001168 kzfree(smp->link_key);
Johan Hedberg6a770832014-06-06 11:54:04 +03001169 smp->link_key = NULL;
1170 return;
1171 }
1172
1173 if (smp_h6(smp->tfm_cmac, smp->link_key, lebr, smp->link_key)) {
Marcel Holtmann276812e2015-03-16 01:10:18 -07001174 kzfree(smp->link_key);
Johan Hedberg6a770832014-06-06 11:54:04 +03001175 smp->link_key = NULL;
1176 return;
1177 }
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001178}
1179
Johan Hedbergb28b4942014-09-05 22:19:55 +03001180static void smp_allow_key_dist(struct smp_chan *smp)
1181{
1182 /* Allow the first expected phase 3 PDU. The rest of the PDUs
1183 * will be allowed in each PDU handler to ensure we receive
1184 * them in the correct order.
1185 */
1186 if (smp->remote_key_dist & SMP_DIST_ENC_KEY)
1187 SMP_ALLOW_CMD(smp, SMP_CMD_ENCRYPT_INFO);
1188 else if (smp->remote_key_dist & SMP_DIST_ID_KEY)
1189 SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_INFO);
1190 else if (smp->remote_key_dist & SMP_DIST_SIGN)
1191 SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO);
1192}
1193
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001194static void sc_generate_ltk(struct smp_chan *smp)
1195{
1196 /* These constants are as specified in the core specification.
1197 * In ASCII they spell out to 'tmp2' and 'brle'.
1198 */
1199 const u8 tmp2[4] = { 0x32, 0x70, 0x6d, 0x74 };
1200 const u8 brle[4] = { 0x65, 0x6c, 0x72, 0x62 };
1201 struct hci_conn *hcon = smp->conn->hcon;
1202 struct hci_dev *hdev = hcon->hdev;
1203 struct link_key *key;
1204
1205 key = hci_find_link_key(hdev, &hcon->dst);
1206 if (!key) {
1207 BT_ERR("%s No Link Key found to generate LTK", hdev->name);
1208 return;
1209 }
1210
1211 if (key->type == HCI_LK_DEBUG_COMBINATION)
1212 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
1213
1214 if (smp_h6(smp->tfm_cmac, key->val, tmp2, smp->tk))
1215 return;
1216
1217 if (smp_h6(smp->tfm_cmac, smp->tk, brle, smp->tk))
1218 return;
1219
1220 sc_add_ltk(smp);
1221}
1222
Johan Hedbergd6268e82014-09-05 22:19:51 +03001223static void smp_distribute_keys(struct smp_chan *smp)
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001224{
1225 struct smp_cmd_pairing *req, *rsp;
Johan Hedberg86d14072014-08-11 22:06:43 +03001226 struct l2cap_conn *conn = smp->conn;
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001227 struct hci_conn *hcon = conn->hcon;
1228 struct hci_dev *hdev = hcon->hdev;
1229 __u8 *keydist;
1230
1231 BT_DBG("conn %p", conn);
1232
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001233 rsp = (void *) &smp->prsp[1];
1234
1235 /* The responder sends its keys first */
Johan Hedbergb28b4942014-09-05 22:19:55 +03001236 if (hcon->out && (smp->remote_key_dist & KEY_DIST_MASK)) {
1237 smp_allow_key_dist(smp);
Johan Hedberg86d14072014-08-11 22:06:43 +03001238 return;
Johan Hedbergb28b4942014-09-05 22:19:55 +03001239 }
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001240
1241 req = (void *) &smp->preq[1];
1242
1243 if (hcon->out) {
1244 keydist = &rsp->init_key_dist;
1245 *keydist &= req->init_key_dist;
1246 } else {
1247 keydist = &rsp->resp_key_dist;
1248 *keydist &= req->resp_key_dist;
1249 }
1250
Johan Hedberg6a770832014-06-06 11:54:04 +03001251 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001252 if (hcon->type == LE_LINK && (*keydist & SMP_DIST_LINK_KEY))
Johan Hedberg6a770832014-06-06 11:54:04 +03001253 sc_generate_link_key(smp);
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001254 if (hcon->type == ACL_LINK && (*keydist & SMP_DIST_ENC_KEY))
1255 sc_generate_ltk(smp);
Johan Hedberg6a770832014-06-06 11:54:04 +03001256
1257 /* Clear the keys which are generated but not distributed */
1258 *keydist &= ~SMP_SC_NO_DIST;
1259 }
1260
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001261 BT_DBG("keydist 0x%x", *keydist);
1262
1263 if (*keydist & SMP_DIST_ENC_KEY) {
1264 struct smp_cmd_encrypt_info enc;
1265 struct smp_cmd_master_ident ident;
1266 struct smp_ltk *ltk;
1267 u8 authenticated;
1268 __le16 ediv;
1269 __le64 rand;
1270
1271 get_random_bytes(enc.ltk, sizeof(enc.ltk));
1272 get_random_bytes(&ediv, sizeof(ediv));
1273 get_random_bytes(&rand, sizeof(rand));
1274
1275 smp_send_cmd(conn, SMP_CMD_ENCRYPT_INFO, sizeof(enc), &enc);
1276
1277 authenticated = hcon->sec_level == BT_SECURITY_HIGH;
1278 ltk = hci_add_ltk(hdev, &hcon->dst, hcon->dst_type,
1279 SMP_LTK_SLAVE, authenticated, enc.ltk,
1280 smp->enc_key_size, ediv, rand);
1281 smp->slave_ltk = ltk;
1282
1283 ident.ediv = ediv;
1284 ident.rand = rand;
1285
1286 smp_send_cmd(conn, SMP_CMD_MASTER_IDENT, sizeof(ident), &ident);
1287
1288 *keydist &= ~SMP_DIST_ENC_KEY;
1289 }
1290
1291 if (*keydist & SMP_DIST_ID_KEY) {
1292 struct smp_cmd_ident_addr_info addrinfo;
1293 struct smp_cmd_ident_info idinfo;
1294
1295 memcpy(idinfo.irk, hdev->irk, sizeof(idinfo.irk));
1296
1297 smp_send_cmd(conn, SMP_CMD_IDENT_INFO, sizeof(idinfo), &idinfo);
1298
1299 /* The hci_conn contains the local identity address
1300 * after the connection has been established.
1301 *
1302 * This is true even when the connection has been
1303 * established using a resolvable random address.
1304 */
1305 bacpy(&addrinfo.bdaddr, &hcon->src);
1306 addrinfo.addr_type = hcon->src_type;
1307
1308 smp_send_cmd(conn, SMP_CMD_IDENT_ADDR_INFO, sizeof(addrinfo),
1309 &addrinfo);
1310
1311 *keydist &= ~SMP_DIST_ID_KEY;
1312 }
1313
1314 if (*keydist & SMP_DIST_SIGN) {
1315 struct smp_cmd_sign_info sign;
1316 struct smp_csrk *csrk;
1317
1318 /* Generate a new random key */
1319 get_random_bytes(sign.csrk, sizeof(sign.csrk));
1320
1321 csrk = kzalloc(sizeof(*csrk), GFP_KERNEL);
1322 if (csrk) {
Johan Hedberg4cd39282015-02-27 10:11:13 +02001323 if (hcon->sec_level > BT_SECURITY_MEDIUM)
1324 csrk->type = MGMT_CSRK_LOCAL_AUTHENTICATED;
1325 else
1326 csrk->type = MGMT_CSRK_LOCAL_UNAUTHENTICATED;
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001327 memcpy(csrk->val, sign.csrk, sizeof(csrk->val));
1328 }
1329 smp->slave_csrk = csrk;
1330
1331 smp_send_cmd(conn, SMP_CMD_SIGN_INFO, sizeof(sign), &sign);
1332
1333 *keydist &= ~SMP_DIST_SIGN;
1334 }
1335
1336 /* If there are still keys to be received wait for them */
Johan Hedbergb28b4942014-09-05 22:19:55 +03001337 if (smp->remote_key_dist & KEY_DIST_MASK) {
1338 smp_allow_key_dist(smp);
Johan Hedberg86d14072014-08-11 22:06:43 +03001339 return;
Johan Hedbergb28b4942014-09-05 22:19:55 +03001340 }
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001341
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001342 set_bit(SMP_FLAG_COMPLETE, &smp->flags);
1343 smp_notify_keys(conn);
1344
1345 smp_chan_destroy(conn);
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03001346}
1347
Johan Hedbergb68fda62014-08-11 22:06:40 +03001348static void smp_timeout(struct work_struct *work)
1349{
1350 struct smp_chan *smp = container_of(work, struct smp_chan,
1351 security_timer.work);
1352 struct l2cap_conn *conn = smp->conn;
1353
1354 BT_DBG("conn %p", conn);
1355
Johan Hedberg1e91c292014-08-18 20:33:29 +03001356 hci_disconnect(conn->hcon, HCI_ERROR_REMOTE_USER_TERM);
Johan Hedbergb68fda62014-08-11 22:06:40 +03001357}
1358
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001359static struct smp_chan *smp_chan_create(struct l2cap_conn *conn)
1360{
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001361 struct l2cap_chan *chan = conn->smp;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001362 struct smp_chan *smp;
1363
Marcel Holtmannf1560462013-10-13 05:43:25 -07001364 smp = kzalloc(sizeof(*smp), GFP_ATOMIC);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001365 if (!smp)
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001366 return NULL;
1367
Johan Hedberg6a7bd102014-06-27 14:23:03 +03001368 smp->tfm_aes = crypto_alloc_blkcipher("ecb(aes)", 0, CRYPTO_ALG_ASYNC);
1369 if (IS_ERR(smp->tfm_aes)) {
1370 BT_ERR("Unable to create ECB crypto context");
Marcel Holtmann276812e2015-03-16 01:10:18 -07001371 kzfree(smp);
Johan Hedberg6a7bd102014-06-27 14:23:03 +03001372 return NULL;
1373 }
1374
Johan Hedberg407cecf2014-05-02 14:19:47 +03001375 smp->tfm_cmac = crypto_alloc_hash("cmac(aes)", 0, CRYPTO_ALG_ASYNC);
1376 if (IS_ERR(smp->tfm_cmac)) {
1377 BT_ERR("Unable to create CMAC crypto context");
1378 crypto_free_blkcipher(smp->tfm_aes);
Marcel Holtmann276812e2015-03-16 01:10:18 -07001379 kzfree(smp);
Johan Hedberg407cecf2014-05-02 14:19:47 +03001380 return NULL;
1381 }
1382
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001383 smp->conn = conn;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001384 chan->data = smp;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001385
Johan Hedbergb28b4942014-09-05 22:19:55 +03001386 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_FAIL);
1387
Johan Hedbergb68fda62014-08-11 22:06:40 +03001388 INIT_DELAYED_WORK(&smp->security_timer, smp_timeout);
1389
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001390 hci_conn_hold(conn->hcon);
1391
1392 return smp;
1393}
1394
Johan Hedberg760b0182014-06-06 11:44:05 +03001395static int sc_mackey_and_ltk(struct smp_chan *smp, u8 mackey[16], u8 ltk[16])
1396{
1397 struct hci_conn *hcon = smp->conn->hcon;
1398 u8 *na, *nb, a[7], b[7];
1399
1400 if (hcon->out) {
1401 na = smp->prnd;
1402 nb = smp->rrnd;
1403 } else {
1404 na = smp->rrnd;
1405 nb = smp->prnd;
1406 }
1407
1408 memcpy(a, &hcon->init_addr, 6);
1409 memcpy(b, &hcon->resp_addr, 6);
1410 a[6] = hcon->init_addr_type;
1411 b[6] = hcon->resp_addr_type;
1412
1413 return smp_f5(smp->tfm_cmac, smp->dhkey, na, nb, a, b, mackey, ltk);
1414}
1415
Johan Hedberg38606f12014-06-25 11:10:28 +03001416static void sc_dhkey_check(struct smp_chan *smp)
Johan Hedberg760b0182014-06-06 11:44:05 +03001417{
1418 struct hci_conn *hcon = smp->conn->hcon;
1419 struct smp_cmd_dhkey_check check;
1420 u8 a[7], b[7], *local_addr, *remote_addr;
1421 u8 io_cap[3], r[16];
1422
Johan Hedberg760b0182014-06-06 11:44:05 +03001423 memcpy(a, &hcon->init_addr, 6);
1424 memcpy(b, &hcon->resp_addr, 6);
1425 a[6] = hcon->init_addr_type;
1426 b[6] = hcon->resp_addr_type;
1427
1428 if (hcon->out) {
1429 local_addr = a;
1430 remote_addr = b;
1431 memcpy(io_cap, &smp->preq[1], 3);
1432 } else {
1433 local_addr = b;
1434 remote_addr = a;
1435 memcpy(io_cap, &smp->prsp[1], 3);
1436 }
1437
Johan Hedbergdddd3052014-06-01 15:38:09 +03001438 memset(r, 0, sizeof(r));
1439
1440 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
Johan Hedberg38606f12014-06-25 11:10:28 +03001441 put_unaligned_le32(hcon->passkey_notify, r);
Johan Hedberg760b0182014-06-06 11:44:05 +03001442
Johan Hedberga29b0732014-10-28 15:17:05 +01001443 if (smp->method == REQ_OOB)
1444 memcpy(r, smp->rr, 16);
1445
Johan Hedberg760b0182014-06-06 11:44:05 +03001446 smp_f6(smp->tfm_cmac, smp->mackey, smp->prnd, smp->rrnd, r, io_cap,
1447 local_addr, remote_addr, check.e);
1448
1449 smp_send_cmd(smp->conn, SMP_CMD_DHKEY_CHECK, sizeof(check), &check);
Johan Hedbergdddd3052014-06-01 15:38:09 +03001450}
1451
Johan Hedberg38606f12014-06-25 11:10:28 +03001452static u8 sc_passkey_send_confirm(struct smp_chan *smp)
1453{
1454 struct l2cap_conn *conn = smp->conn;
1455 struct hci_conn *hcon = conn->hcon;
1456 struct smp_cmd_pairing_confirm cfm;
1457 u8 r;
1458
1459 r = ((hcon->passkey_notify >> smp->passkey_round) & 0x01);
1460 r |= 0x80;
1461
1462 get_random_bytes(smp->prnd, sizeof(smp->prnd));
1463
1464 if (smp_f4(smp->tfm_cmac, smp->local_pk, smp->remote_pk, smp->prnd, r,
1465 cfm.confirm_val))
1466 return SMP_UNSPECIFIED;
1467
1468 smp_send_cmd(conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cfm), &cfm);
1469
1470 return 0;
1471}
1472
1473static u8 sc_passkey_round(struct smp_chan *smp, u8 smp_op)
1474{
1475 struct l2cap_conn *conn = smp->conn;
1476 struct hci_conn *hcon = conn->hcon;
1477 struct hci_dev *hdev = hcon->hdev;
1478 u8 cfm[16], r;
1479
1480 /* Ignore the PDU if we've already done 20 rounds (0 - 19) */
1481 if (smp->passkey_round >= 20)
1482 return 0;
1483
1484 switch (smp_op) {
1485 case SMP_CMD_PAIRING_RANDOM:
1486 r = ((hcon->passkey_notify >> smp->passkey_round) & 0x01);
1487 r |= 0x80;
1488
1489 if (smp_f4(smp->tfm_cmac, smp->remote_pk, smp->local_pk,
1490 smp->rrnd, r, cfm))
1491 return SMP_UNSPECIFIED;
1492
1493 if (memcmp(smp->pcnf, cfm, 16))
1494 return SMP_CONFIRM_FAILED;
1495
1496 smp->passkey_round++;
1497
1498 if (smp->passkey_round == 20) {
1499 /* Generate MacKey and LTK */
1500 if (sc_mackey_and_ltk(smp, smp->mackey, smp->tk))
1501 return SMP_UNSPECIFIED;
1502 }
1503
1504 /* The round is only complete when the initiator
1505 * receives pairing random.
1506 */
1507 if (!hcon->out) {
1508 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
1509 sizeof(smp->prnd), smp->prnd);
Johan Hedbergd3e54a82014-06-04 11:07:40 +03001510 if (smp->passkey_round == 20)
Johan Hedberg38606f12014-06-25 11:10:28 +03001511 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
Johan Hedbergd3e54a82014-06-04 11:07:40 +03001512 else
Johan Hedberg38606f12014-06-25 11:10:28 +03001513 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
Johan Hedberg38606f12014-06-25 11:10:28 +03001514 return 0;
1515 }
1516
1517 /* Start the next round */
1518 if (smp->passkey_round != 20)
1519 return sc_passkey_round(smp, 0);
1520
1521 /* Passkey rounds are complete - start DHKey Check */
1522 sc_dhkey_check(smp);
1523 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
1524
1525 break;
1526
1527 case SMP_CMD_PAIRING_CONFIRM:
1528 if (test_bit(SMP_FLAG_WAIT_USER, &smp->flags)) {
1529 set_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
1530 return 0;
1531 }
1532
1533 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
1534
1535 if (hcon->out) {
1536 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
1537 sizeof(smp->prnd), smp->prnd);
1538 return 0;
1539 }
1540
1541 return sc_passkey_send_confirm(smp);
1542
1543 case SMP_CMD_PUBLIC_KEY:
1544 default:
1545 /* Initiating device starts the round */
1546 if (!hcon->out)
1547 return 0;
1548
1549 BT_DBG("%s Starting passkey round %u", hdev->name,
1550 smp->passkey_round + 1);
1551
1552 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
1553
1554 return sc_passkey_send_confirm(smp);
1555 }
1556
1557 return 0;
1558}
1559
Johan Hedbergdddd3052014-06-01 15:38:09 +03001560static int sc_user_reply(struct smp_chan *smp, u16 mgmt_op, __le32 passkey)
1561{
Johan Hedberg38606f12014-06-25 11:10:28 +03001562 struct l2cap_conn *conn = smp->conn;
1563 struct hci_conn *hcon = conn->hcon;
1564 u8 smp_op;
1565
1566 clear_bit(SMP_FLAG_WAIT_USER, &smp->flags);
1567
Johan Hedbergdddd3052014-06-01 15:38:09 +03001568 switch (mgmt_op) {
1569 case MGMT_OP_USER_PASSKEY_NEG_REPLY:
1570 smp_failure(smp->conn, SMP_PASSKEY_ENTRY_FAILED);
1571 return 0;
1572 case MGMT_OP_USER_CONFIRM_NEG_REPLY:
1573 smp_failure(smp->conn, SMP_NUMERIC_COMP_FAILED);
1574 return 0;
Johan Hedberg38606f12014-06-25 11:10:28 +03001575 case MGMT_OP_USER_PASSKEY_REPLY:
1576 hcon->passkey_notify = le32_to_cpu(passkey);
1577 smp->passkey_round = 0;
1578
1579 if (test_and_clear_bit(SMP_FLAG_CFM_PENDING, &smp->flags))
1580 smp_op = SMP_CMD_PAIRING_CONFIRM;
1581 else
1582 smp_op = 0;
1583
1584 if (sc_passkey_round(smp, smp_op))
1585 return -EIO;
1586
1587 return 0;
Johan Hedbergdddd3052014-06-01 15:38:09 +03001588 }
1589
Johan Hedbergd3e54a82014-06-04 11:07:40 +03001590 /* Initiator sends DHKey check first */
1591 if (hcon->out) {
1592 sc_dhkey_check(smp);
1593 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
1594 } else if (test_and_clear_bit(SMP_FLAG_DHKEY_PENDING, &smp->flags)) {
1595 sc_dhkey_check(smp);
1596 sc_add_ltk(smp);
1597 }
Johan Hedberg760b0182014-06-06 11:44:05 +03001598
1599 return 0;
1600}
1601
Brian Gix2b64d152011-12-21 16:12:12 -08001602int smp_user_confirm_reply(struct hci_conn *hcon, u16 mgmt_op, __le32 passkey)
1603{
Johan Hedbergb10e8012014-06-27 14:23:07 +03001604 struct l2cap_conn *conn = hcon->l2cap_data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001605 struct l2cap_chan *chan;
Brian Gix2b64d152011-12-21 16:12:12 -08001606 struct smp_chan *smp;
1607 u32 value;
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001608 int err;
Brian Gix2b64d152011-12-21 16:12:12 -08001609
1610 BT_DBG("");
1611
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001612 if (!conn)
Brian Gix2b64d152011-12-21 16:12:12 -08001613 return -ENOTCONN;
1614
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001615 chan = conn->smp;
1616 if (!chan)
1617 return -ENOTCONN;
1618
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001619 l2cap_chan_lock(chan);
1620 if (!chan->data) {
1621 err = -ENOTCONN;
1622 goto unlock;
1623 }
1624
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001625 smp = chan->data;
Brian Gix2b64d152011-12-21 16:12:12 -08001626
Johan Hedberg760b0182014-06-06 11:44:05 +03001627 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
1628 err = sc_user_reply(smp, mgmt_op, passkey);
1629 goto unlock;
1630 }
1631
Brian Gix2b64d152011-12-21 16:12:12 -08001632 switch (mgmt_op) {
1633 case MGMT_OP_USER_PASSKEY_REPLY:
1634 value = le32_to_cpu(passkey);
Johan Hedberg943a7322014-03-18 12:58:24 +02001635 memset(smp->tk, 0, sizeof(smp->tk));
Brian Gix2b64d152011-12-21 16:12:12 -08001636 BT_DBG("PassKey: %d", value);
Johan Hedberg943a7322014-03-18 12:58:24 +02001637 put_unaligned_le32(value, smp->tk);
Brian Gix2b64d152011-12-21 16:12:12 -08001638 /* Fall Through */
1639 case MGMT_OP_USER_CONFIRM_REPLY:
Johan Hedberg4a74d652014-05-20 09:45:50 +03001640 set_bit(SMP_FLAG_TK_VALID, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -08001641 break;
1642 case MGMT_OP_USER_PASSKEY_NEG_REPLY:
1643 case MGMT_OP_USER_CONFIRM_NEG_REPLY:
Johan Hedberg84794e12013-11-06 11:24:57 +02001644 smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001645 err = 0;
1646 goto unlock;
Brian Gix2b64d152011-12-21 16:12:12 -08001647 default:
Johan Hedberg84794e12013-11-06 11:24:57 +02001648 smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001649 err = -EOPNOTSUPP;
1650 goto unlock;
Brian Gix2b64d152011-12-21 16:12:12 -08001651 }
1652
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001653 err = 0;
1654
Brian Gix2b64d152011-12-21 16:12:12 -08001655 /* If it is our turn to send Pairing Confirm, do so now */
Johan Hedberg1cc61142014-05-20 09:45:52 +03001656 if (test_bit(SMP_FLAG_CFM_PENDING, &smp->flags)) {
1657 u8 rsp = smp_confirm(smp);
1658 if (rsp)
1659 smp_failure(conn, rsp);
1660 }
Brian Gix2b64d152011-12-21 16:12:12 -08001661
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001662unlock:
1663 l2cap_chan_unlock(chan);
1664 return err;
Brian Gix2b64d152011-12-21 16:12:12 -08001665}
1666
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001667static void build_bredr_pairing_cmd(struct smp_chan *smp,
1668 struct smp_cmd_pairing *req,
1669 struct smp_cmd_pairing *rsp)
1670{
1671 struct l2cap_conn *conn = smp->conn;
1672 struct hci_dev *hdev = conn->hcon->hdev;
1673 u8 local_dist = 0, remote_dist = 0;
1674
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001675 if (hci_dev_test_flag(hdev, HCI_BONDABLE)) {
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001676 local_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
1677 remote_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN;
1678 }
1679
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001680 if (hci_dev_test_flag(hdev, HCI_RPA_RESOLVING))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001681 remote_dist |= SMP_DIST_ID_KEY;
1682
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001683 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001684 local_dist |= SMP_DIST_ID_KEY;
1685
1686 if (!rsp) {
1687 memset(req, 0, sizeof(*req));
1688
1689 req->init_key_dist = local_dist;
1690 req->resp_key_dist = remote_dist;
1691 req->max_key_size = SMP_MAX_ENC_KEY_SIZE;
1692
1693 smp->remote_key_dist = remote_dist;
1694
1695 return;
1696 }
1697
1698 memset(rsp, 0, sizeof(*rsp));
1699
1700 rsp->max_key_size = SMP_MAX_ENC_KEY_SIZE;
1701 rsp->init_key_dist = req->init_key_dist & remote_dist;
1702 rsp->resp_key_dist = req->resp_key_dist & local_dist;
1703
1704 smp->remote_key_dist = rsp->init_key_dist;
1705}
1706
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001707static u8 smp_cmd_pairing_req(struct l2cap_conn *conn, struct sk_buff *skb)
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001708{
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001709 struct smp_cmd_pairing rsp, *req = (void *) skb->data;
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001710 struct l2cap_chan *chan = conn->smp;
Johan Hedbergb3c64102014-07-10 11:02:07 +03001711 struct hci_dev *hdev = conn->hcon->hdev;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001712 struct smp_chan *smp;
Johan Hedbergc7262e72014-06-17 13:07:37 +03001713 u8 key_size, auth, sec_level;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001714 int ret;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001715
1716 BT_DBG("conn %p", conn);
1717
Johan Hedbergc46b98b2014-02-18 10:19:29 +02001718 if (skb->len < sizeof(*req))
Johan Hedberg38e4a912014-05-08 14:19:11 +03001719 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02001720
Johan Hedberg40bef302014-07-16 11:42:27 +03001721 if (conn->hcon->role != HCI_ROLE_SLAVE)
Brian Gix2b64d152011-12-21 16:12:12 -08001722 return SMP_CMD_NOTSUPP;
1723
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001724 if (!chan->data)
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001725 smp = smp_chan_create(conn);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03001726 else
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001727 smp = chan->data;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001728
Andrei Emeltchenkod08fd0e2012-07-19 17:03:43 +03001729 if (!smp)
1730 return SMP_UNSPECIFIED;
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03001731
Johan Hedbergc05b9332014-09-10 17:37:42 -07001732 /* We didn't start the pairing, so match remote */
Johan Hedberg0edb14d2014-05-26 13:29:28 +03001733 auth = req->auth_req & AUTH_REQ_MASK(hdev);
Johan Hedbergc05b9332014-09-10 17:37:42 -07001734
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001735 if (!hci_dev_test_flag(hdev, HCI_BONDABLE) &&
Johan Hedbergc05b9332014-09-10 17:37:42 -07001736 (auth & SMP_AUTH_BONDING))
Johan Hedbergb3c64102014-07-10 11:02:07 +03001737 return SMP_PAIRING_NOTSUPP;
1738
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001739 if (hci_dev_test_flag(hdev, HCI_SC_ONLY) && !(auth & SMP_AUTH_SC))
Johan Hedberg903b71c2014-09-08 16:59:18 -07001740 return SMP_AUTH_REQUIREMENTS;
1741
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03001742 smp->preq[0] = SMP_CMD_PAIRING_REQ;
1743 memcpy(&smp->preq[1], req, sizeof(*req));
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001744 skb_pull(skb, sizeof(*req));
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001745
Johan Hedbergcb06d362015-03-16 21:12:34 +02001746 /* If the remote side's OOB flag is set it means it has
1747 * successfully received our local OOB data - therefore set the
1748 * flag to indicate that local OOB is in use.
1749 */
Johan Hedberg58428562015-03-16 11:45:45 +02001750 if (req->oob_flag == SMP_OOB_PRESENT)
1751 set_bit(SMP_FLAG_LOCAL_OOB, &smp->flags);
1752
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001753 /* SMP over BR/EDR requires special treatment */
1754 if (conn->hcon->type == ACL_LINK) {
1755 /* We must have a BR/EDR SC link */
Marcel Holtmann08f63cc2014-12-07 16:19:12 +01001756 if (!test_bit(HCI_CONN_AES_CCM, &conn->hcon->flags) &&
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -07001757 !hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001758 return SMP_CROSS_TRANSP_NOT_ALLOWED;
1759
1760 set_bit(SMP_FLAG_SC, &smp->flags);
1761
1762 build_bredr_pairing_cmd(smp, req, &rsp);
1763
1764 key_size = min(req->max_key_size, rsp.max_key_size);
1765 if (check_enc_key_size(conn, key_size))
1766 return SMP_ENC_KEY_SIZE;
1767
1768 /* Clear bits which are generated but not distributed */
1769 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1770
1771 smp->prsp[0] = SMP_CMD_PAIRING_RSP;
1772 memcpy(&smp->prsp[1], &rsp, sizeof(rsp));
1773 smp_send_cmd(conn, SMP_CMD_PAIRING_RSP, sizeof(rsp), &rsp);
1774
1775 smp_distribute_keys(smp);
1776 return 0;
1777 }
1778
Johan Hedberg5e3d3d92014-05-31 18:51:02 +03001779 build_pairing_cmd(conn, req, &rsp, auth);
1780
1781 if (rsp.auth_req & SMP_AUTH_SC)
1782 set_bit(SMP_FLAG_SC, &smp->flags);
1783
Johan Hedberg5be5e272014-09-10 17:58:54 -07001784 if (conn->hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
Johan Hedberg1afc2a12014-09-10 17:37:44 -07001785 sec_level = BT_SECURITY_MEDIUM;
1786 else
1787 sec_level = authreq_to_seclevel(auth);
1788
Johan Hedbergc7262e72014-06-17 13:07:37 +03001789 if (sec_level > conn->hcon->pending_sec_level)
1790 conn->hcon->pending_sec_level = sec_level;
Ido Yarivfdde0a22012-03-05 20:09:38 +02001791
Stephen Hemminger49c922b2014-10-27 21:12:20 -07001792 /* If we need MITM check that it can be achieved */
Johan Hedberg2ed8f652014-06-17 13:07:39 +03001793 if (conn->hcon->pending_sec_level >= BT_SECURITY_HIGH) {
1794 u8 method;
1795
1796 method = get_auth_method(smp, conn->hcon->io_capability,
1797 req->io_capability);
1798 if (method == JUST_WORKS || method == JUST_CFM)
1799 return SMP_AUTH_REQUIREMENTS;
1800 }
1801
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001802 key_size = min(req->max_key_size, rsp.max_key_size);
1803 if (check_enc_key_size(conn, key_size))
1804 return SMP_ENC_KEY_SIZE;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001805
Johan Hedberge84a6b12013-12-02 10:49:03 +02001806 get_random_bytes(smp->prnd, sizeof(smp->prnd));
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03001807
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03001808 smp->prsp[0] = SMP_CMD_PAIRING_RSP;
1809 memcpy(&smp->prsp[1], &rsp, sizeof(rsp));
Anderson Brigliaf01ead32011-06-09 18:50:45 -03001810
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001811 smp_send_cmd(conn, SMP_CMD_PAIRING_RSP, sizeof(rsp), &rsp);
Johan Hedberg3b191462014-06-06 10:50:15 +03001812
1813 clear_bit(SMP_FLAG_INITIATOR, &smp->flags);
1814
Johan Hedberg19c5ce92015-03-15 19:34:04 +02001815 /* Strictly speaking we shouldn't allow Pairing Confirm for the
1816 * SC case, however some implementations incorrectly copy RFU auth
1817 * req bits from our security request, which may create a false
1818 * positive SC enablement.
1819 */
1820 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
1821
Johan Hedberg3b191462014-06-06 10:50:15 +03001822 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
1823 SMP_ALLOW_CMD(smp, SMP_CMD_PUBLIC_KEY);
1824 /* Clear bits which are generated but not distributed */
1825 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1826 /* Wait for Public Key from Initiating Device */
1827 return 0;
Johan Hedberg3b191462014-06-06 10:50:15 +03001828 }
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001829
Brian Gix2b64d152011-12-21 16:12:12 -08001830 /* Request setup of TK */
1831 ret = tk_request(conn, 0, auth, rsp.io_capability, req->io_capability);
1832 if (ret)
1833 return SMP_UNSPECIFIED;
1834
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001835 return 0;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001836}
1837
Johan Hedberg3b191462014-06-06 10:50:15 +03001838static u8 sc_send_public_key(struct smp_chan *smp)
1839{
Johan Hedberg70157ef2014-06-24 15:22:59 +03001840 struct hci_dev *hdev = smp->conn->hcon->hdev;
1841
Johan Hedberg3b191462014-06-06 10:50:15 +03001842 BT_DBG("");
1843
Johan Hedberg1a8bab42015-03-16 11:45:44 +02001844 if (test_bit(SMP_FLAG_LOCAL_OOB, &smp->flags)) {
Marcel Holtmann33d0c032015-03-16 01:10:24 -07001845 struct l2cap_chan *chan = hdev->smp_data;
1846 struct smp_dev *smp_dev;
1847
1848 if (!chan || !chan->data)
1849 return SMP_UNSPECIFIED;
1850
1851 smp_dev = chan->data;
1852
1853 memcpy(smp->local_pk, smp_dev->local_pk, 64);
1854 memcpy(smp->local_sk, smp_dev->local_sk, 32);
Marcel Holtmannfb334fe2015-03-16 12:34:57 -07001855 memcpy(smp->lr, smp_dev->local_rand, 16);
Marcel Holtmann33d0c032015-03-16 01:10:24 -07001856
1857 if (smp_dev->debug_key)
1858 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
1859
1860 goto done;
1861 }
1862
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001863 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS)) {
Johan Hedberg70157ef2014-06-24 15:22:59 +03001864 BT_DBG("Using debug keys");
1865 memcpy(smp->local_pk, debug_pk, 64);
1866 memcpy(smp->local_sk, debug_sk, 32);
1867 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
1868 } else {
1869 while (true) {
1870 /* Generate local key pair for Secure Connections */
1871 if (!ecc_make_key(smp->local_pk, smp->local_sk))
1872 return SMP_UNSPECIFIED;
Johan Hedberg6c0dcc52014-06-06 15:33:30 +03001873
Johan Hedberg70157ef2014-06-24 15:22:59 +03001874 /* This is unlikely, but we need to check that
1875 * we didn't accidentially generate a debug key.
1876 */
1877 if (memcmp(smp->local_sk, debug_sk, 32))
1878 break;
1879 }
Johan Hedberg6c0dcc52014-06-06 15:33:30 +03001880 }
Johan Hedberg3b191462014-06-06 10:50:15 +03001881
Marcel Holtmann33d0c032015-03-16 01:10:24 -07001882done:
Johan Hedbergc7a3d572014-12-01 22:03:16 +02001883 SMP_DBG("Local Public Key X: %32phN", smp->local_pk);
Marcel Holtmann8e4e2ee2015-03-16 01:10:25 -07001884 SMP_DBG("Local Public Key Y: %32phN", smp->local_pk + 32);
Johan Hedbergc7a3d572014-12-01 22:03:16 +02001885 SMP_DBG("Local Private Key: %32phN", smp->local_sk);
Johan Hedberg3b191462014-06-06 10:50:15 +03001886
1887 smp_send_cmd(smp->conn, SMP_CMD_PUBLIC_KEY, 64, smp->local_pk);
1888
1889 return 0;
1890}
1891
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001892static u8 smp_cmd_pairing_rsp(struct l2cap_conn *conn, struct sk_buff *skb)
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001893{
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001894 struct smp_cmd_pairing *req, *rsp = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03001895 struct l2cap_chan *chan = conn->smp;
1896 struct smp_chan *smp = chan->data;
Johan Hedberg0edb14d2014-05-26 13:29:28 +03001897 struct hci_dev *hdev = conn->hcon->hdev;
Johan Hedberg3a7dbfb2014-09-10 17:37:41 -07001898 u8 key_size, auth;
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03001899 int ret;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001900
1901 BT_DBG("conn %p", conn);
1902
Johan Hedbergc46b98b2014-02-18 10:19:29 +02001903 if (skb->len < sizeof(*rsp))
Johan Hedberg38e4a912014-05-08 14:19:11 +03001904 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02001905
Johan Hedberg40bef302014-07-16 11:42:27 +03001906 if (conn->hcon->role != HCI_ROLE_MASTER)
Brian Gix2b64d152011-12-21 16:12:12 -08001907 return SMP_CMD_NOTSUPP;
1908
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001909 skb_pull(skb, sizeof(*rsp));
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001910
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03001911 req = (void *) &smp->preq[1];
Vinicius Costa Gomes3158c502011-06-14 13:37:42 -03001912
1913 key_size = min(req->max_key_size, rsp->max_key_size);
1914 if (check_enc_key_size(conn, key_size))
1915 return SMP_ENC_KEY_SIZE;
1916
Johan Hedberg0edb14d2014-05-26 13:29:28 +03001917 auth = rsp->auth_req & AUTH_REQ_MASK(hdev);
Johan Hedbergc05b9332014-09-10 17:37:42 -07001918
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001919 if (hci_dev_test_flag(hdev, HCI_SC_ONLY) && !(auth & SMP_AUTH_SC))
Johan Hedberg903b71c2014-09-08 16:59:18 -07001920 return SMP_AUTH_REQUIREMENTS;
1921
Johan Hedbergcb06d362015-03-16 21:12:34 +02001922 /* If the remote side's OOB flag is set it means it has
1923 * successfully received our local OOB data - therefore set the
1924 * flag to indicate that local OOB is in use.
1925 */
Johan Hedberg58428562015-03-16 11:45:45 +02001926 if (rsp->oob_flag == SMP_OOB_PRESENT)
1927 set_bit(SMP_FLAG_LOCAL_OOB, &smp->flags);
1928
Johan Hedbergb5ae3442014-08-14 12:34:26 +03001929 smp->prsp[0] = SMP_CMD_PAIRING_RSP;
1930 memcpy(&smp->prsp[1], rsp, sizeof(*rsp));
1931
1932 /* Update remote key distribution in case the remote cleared
1933 * some bits that we had enabled in our request.
1934 */
1935 smp->remote_key_dist &= rsp->resp_key_dist;
1936
1937 /* For BR/EDR this means we're done and can start phase 3 */
1938 if (conn->hcon->type == ACL_LINK) {
1939 /* Clear bits which are generated but not distributed */
1940 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1941 smp_distribute_keys(smp);
1942 return 0;
1943 }
1944
Johan Hedberg65668772014-05-16 11:03:34 +03001945 if ((req->auth_req & SMP_AUTH_SC) && (auth & SMP_AUTH_SC))
1946 set_bit(SMP_FLAG_SC, &smp->flags);
Johan Hedbergd2eb9e12014-05-16 10:59:06 +03001947 else if (conn->hcon->pending_sec_level > BT_SECURITY_HIGH)
1948 conn->hcon->pending_sec_level = BT_SECURITY_HIGH;
Johan Hedberg65668772014-05-16 11:03:34 +03001949
Stephen Hemminger49c922b2014-10-27 21:12:20 -07001950 /* If we need MITM check that it can be achieved */
Johan Hedberg2ed8f652014-06-17 13:07:39 +03001951 if (conn->hcon->pending_sec_level >= BT_SECURITY_HIGH) {
1952 u8 method;
1953
1954 method = get_auth_method(smp, req->io_capability,
1955 rsp->io_capability);
1956 if (method == JUST_WORKS || method == JUST_CFM)
1957 return SMP_AUTH_REQUIREMENTS;
1958 }
1959
Johan Hedberge84a6b12013-12-02 10:49:03 +02001960 get_random_bytes(smp->prnd, sizeof(smp->prnd));
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03001961
Johan Hedbergfdcc4be2014-03-14 10:53:50 +02001962 /* Update remote key distribution in case the remote cleared
1963 * some bits that we had enabled in our request.
1964 */
1965 smp->remote_key_dist &= rsp->resp_key_dist;
1966
Johan Hedberg3b191462014-06-06 10:50:15 +03001967 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
1968 /* Clear bits which are generated but not distributed */
1969 smp->remote_key_dist &= ~SMP_SC_NO_DIST;
1970 SMP_ALLOW_CMD(smp, SMP_CMD_PUBLIC_KEY);
1971 return sc_send_public_key(smp);
1972 }
1973
Johan Hedbergc05b9332014-09-10 17:37:42 -07001974 auth |= req->auth_req;
Brian Gix2b64d152011-12-21 16:12:12 -08001975
Johan Hedberg476585e2012-06-06 18:54:15 +08001976 ret = tk_request(conn, 0, auth, req->io_capability, rsp->io_capability);
Brian Gix2b64d152011-12-21 16:12:12 -08001977 if (ret)
1978 return SMP_UNSPECIFIED;
1979
Johan Hedberg4a74d652014-05-20 09:45:50 +03001980 set_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
Brian Gix2b64d152011-12-21 16:12:12 -08001981
1982 /* Can't compose response until we have been confirmed */
Johan Hedberg4a74d652014-05-20 09:45:50 +03001983 if (test_bit(SMP_FLAG_TK_VALID, &smp->flags))
Johan Hedberg1cc61142014-05-20 09:45:52 +03001984 return smp_confirm(smp);
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03001985
1986 return 0;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03001987}
1988
Johan Hedbergdcee2b32014-06-06 11:36:38 +03001989static u8 sc_check_confirm(struct smp_chan *smp)
1990{
1991 struct l2cap_conn *conn = smp->conn;
1992
1993 BT_DBG("");
1994
Johan Hedberg38606f12014-06-25 11:10:28 +03001995 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
1996 return sc_passkey_round(smp, SMP_CMD_PAIRING_CONFIRM);
1997
Johan Hedbergdcee2b32014-06-06 11:36:38 +03001998 if (conn->hcon->out) {
1999 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
2000 smp->prnd);
2001 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2002 }
2003
2004 return 0;
2005}
2006
Johan Hedberg19c5ce92015-03-15 19:34:04 +02002007/* Work-around for some implementations that incorrectly copy RFU bits
2008 * from our security request and thereby create the impression that
2009 * we're doing SC when in fact the remote doesn't support it.
2010 */
2011static int fixup_sc_false_positive(struct smp_chan *smp)
2012{
2013 struct l2cap_conn *conn = smp->conn;
2014 struct hci_conn *hcon = conn->hcon;
2015 struct hci_dev *hdev = hcon->hdev;
2016 struct smp_cmd_pairing *req, *rsp;
2017 u8 auth;
2018
2019 /* The issue is only observed when we're in slave role */
2020 if (hcon->out)
2021 return SMP_UNSPECIFIED;
2022
2023 if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
2024 BT_ERR("Refusing SMP SC -> legacy fallback in SC-only mode");
2025 return SMP_UNSPECIFIED;
2026 }
2027
2028 BT_ERR("Trying to fall back to legacy SMP");
2029
2030 req = (void *) &smp->preq[1];
2031 rsp = (void *) &smp->prsp[1];
2032
2033 /* Rebuild key dist flags which may have been cleared for SC */
2034 smp->remote_key_dist = (req->init_key_dist & rsp->resp_key_dist);
2035
2036 auth = req->auth_req & AUTH_REQ_MASK(hdev);
2037
2038 if (tk_request(conn, 0, auth, rsp->io_capability, req->io_capability)) {
2039 BT_ERR("Failed to fall back to legacy SMP");
2040 return SMP_UNSPECIFIED;
2041 }
2042
2043 clear_bit(SMP_FLAG_SC, &smp->flags);
2044
2045 return 0;
2046}
2047
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002048static u8 smp_cmd_pairing_confirm(struct l2cap_conn *conn, struct sk_buff *skb)
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002049{
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002050 struct l2cap_chan *chan = conn->smp;
2051 struct smp_chan *smp = chan->data;
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03002052
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002053 BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave");
2054
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002055 if (skb->len < sizeof(smp->pcnf))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002056 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002057
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03002058 memcpy(smp->pcnf, skb->data, sizeof(smp->pcnf));
2059 skb_pull(skb, sizeof(smp->pcnf));
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03002060
Johan Hedberg19c5ce92015-03-15 19:34:04 +02002061 if (test_bit(SMP_FLAG_SC, &smp->flags)) {
2062 int ret;
2063
2064 /* Public Key exchange must happen before any other steps */
2065 if (test_bit(SMP_FLAG_REMOTE_PK, &smp->flags))
2066 return sc_check_confirm(smp);
2067
2068 BT_ERR("Unexpected SMP Pairing Confirm");
2069
2070 ret = fixup_sc_false_positive(smp);
2071 if (ret)
2072 return ret;
2073 }
Johan Hedbergdcee2b32014-06-06 11:36:38 +03002074
Johan Hedbergb28b4942014-09-05 22:19:55 +03002075 if (conn->hcon->out) {
Johan Hedberg943a7322014-03-18 12:58:24 +02002076 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
2077 smp->prnd);
Johan Hedbergb28b4942014-09-05 22:19:55 +03002078 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2079 return 0;
2080 }
2081
2082 if (test_bit(SMP_FLAG_TK_VALID, &smp->flags))
Johan Hedberg1cc61142014-05-20 09:45:52 +03002083 return smp_confirm(smp);
Marcel Holtmann983f9812015-03-11 17:47:40 -07002084
2085 set_bit(SMP_FLAG_CFM_PENDING, &smp->flags);
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002086
2087 return 0;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002088}
2089
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002090static u8 smp_cmd_pairing_random(struct l2cap_conn *conn, struct sk_buff *skb)
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002091{
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002092 struct l2cap_chan *chan = conn->smp;
2093 struct smp_chan *smp = chan->data;
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002094 struct hci_conn *hcon = conn->hcon;
2095 u8 *pkax, *pkbx, *na, *nb;
2096 u32 passkey;
2097 int err;
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03002098
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03002099 BT_DBG("conn %p", conn);
Anderson Briglia7d24ddc2011-06-09 18:50:46 -03002100
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002101 if (skb->len < sizeof(smp->rrnd))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002102 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002103
Johan Hedberg943a7322014-03-18 12:58:24 +02002104 memcpy(smp->rrnd, skb->data, sizeof(smp->rrnd));
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03002105 skb_pull(skb, sizeof(smp->rrnd));
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002106
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002107 if (!test_bit(SMP_FLAG_SC, &smp->flags))
2108 return smp_random(smp);
2109
Johan Hedberg580039e2014-12-03 16:26:37 +02002110 if (hcon->out) {
2111 pkax = smp->local_pk;
2112 pkbx = smp->remote_pk;
2113 na = smp->prnd;
2114 nb = smp->rrnd;
2115 } else {
2116 pkax = smp->remote_pk;
2117 pkbx = smp->local_pk;
2118 na = smp->rrnd;
2119 nb = smp->prnd;
2120 }
2121
Johan Hedberga29b0732014-10-28 15:17:05 +01002122 if (smp->method == REQ_OOB) {
2123 if (!hcon->out)
2124 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
2125 sizeof(smp->prnd), smp->prnd);
2126 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
2127 goto mackey_and_ltk;
2128 }
2129
Johan Hedberg38606f12014-06-25 11:10:28 +03002130 /* Passkey entry has special treatment */
2131 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
2132 return sc_passkey_round(smp, SMP_CMD_PAIRING_RANDOM);
2133
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002134 if (hcon->out) {
2135 u8 cfm[16];
2136
2137 err = smp_f4(smp->tfm_cmac, smp->remote_pk, smp->local_pk,
2138 smp->rrnd, 0, cfm);
2139 if (err)
2140 return SMP_UNSPECIFIED;
2141
2142 if (memcmp(smp->pcnf, cfm, 16))
2143 return SMP_CONFIRM_FAILED;
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002144 } else {
2145 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd),
2146 smp->prnd);
2147 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002148 }
2149
Johan Hedberga29b0732014-10-28 15:17:05 +01002150mackey_and_ltk:
Johan Hedberg760b0182014-06-06 11:44:05 +03002151 /* Generate MacKey and LTK */
2152 err = sc_mackey_and_ltk(smp, smp->mackey, smp->tk);
2153 if (err)
2154 return SMP_UNSPECIFIED;
2155
Johan Hedberga29b0732014-10-28 15:17:05 +01002156 if (smp->method == JUST_WORKS || smp->method == REQ_OOB) {
Johan Hedbergdddd3052014-06-01 15:38:09 +03002157 if (hcon->out) {
Johan Hedberg38606f12014-06-25 11:10:28 +03002158 sc_dhkey_check(smp);
Johan Hedbergdddd3052014-06-01 15:38:09 +03002159 SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK);
2160 }
2161 return 0;
2162 }
2163
Johan Hedberg38606f12014-06-25 11:10:28 +03002164 err = smp_g2(smp->tfm_cmac, pkax, pkbx, na, nb, &passkey);
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002165 if (err)
2166 return SMP_UNSPECIFIED;
2167
Johan Hedberg38606f12014-06-25 11:10:28 +03002168 err = mgmt_user_confirm_request(hcon->hdev, &hcon->dst, hcon->type,
2169 hcon->dst_type, passkey, 0);
2170 if (err)
2171 return SMP_UNSPECIFIED;
2172
2173 set_bit(SMP_FLAG_WAIT_USER, &smp->flags);
2174
Johan Hedberg191dc7f2014-06-06 11:39:49 +03002175 return 0;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002176}
2177
Marcel Holtmannf81cd822014-07-01 10:59:24 +02002178static bool smp_ltk_encrypt(struct l2cap_conn *conn, u8 sec_level)
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002179{
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002180 struct smp_ltk *key;
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002181 struct hci_conn *hcon = conn->hcon;
2182
Johan Hedbergf3a73d92014-05-29 15:02:59 +03002183 key = hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, hcon->role);
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002184 if (!key)
Marcel Holtmannf81cd822014-07-01 10:59:24 +02002185 return false;
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002186
Johan Hedberga6f78332014-09-10 17:37:45 -07002187 if (smp_ltk_sec_level(key) < sec_level)
Marcel Holtmannf81cd822014-07-01 10:59:24 +02002188 return false;
Johan Hedberg4dab7862012-06-07 14:58:37 +08002189
Johan Hedberg51a8efd2012-01-16 06:10:31 +02002190 if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags))
Marcel Holtmannf81cd822014-07-01 10:59:24 +02002191 return true;
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002192
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002193 hci_le_start_enc(hcon, key->ediv, key->rand, key->val);
2194 hcon->enc_key_size = key->enc_size;
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002195
Johan Hedbergfe59a052014-07-01 19:14:12 +03002196 /* We never store STKs for master role, so clear this flag */
2197 clear_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags);
2198
Marcel Holtmannf81cd822014-07-01 10:59:24 +02002199 return true;
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002200}
Marcel Holtmannf1560462013-10-13 05:43:25 -07002201
Johan Hedberg35dc6f82014-11-13 10:55:18 +02002202bool smp_sufficient_security(struct hci_conn *hcon, u8 sec_level,
2203 enum smp_key_pref key_pref)
Johan Hedberg854f4722014-07-01 18:40:20 +03002204{
2205 if (sec_level == BT_SECURITY_LOW)
2206 return true;
2207
Johan Hedberg35dc6f82014-11-13 10:55:18 +02002208 /* If we're encrypted with an STK but the caller prefers using
2209 * LTK claim insufficient security. This way we allow the
2210 * connection to be re-encrypted with an LTK, even if the LTK
2211 * provides the same level of security. Only exception is if we
2212 * don't have an LTK (e.g. because of key distribution bits).
Johan Hedberg9ab65d602014-07-01 19:14:13 +03002213 */
Johan Hedberg35dc6f82014-11-13 10:55:18 +02002214 if (key_pref == SMP_USE_LTK &&
2215 test_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags) &&
Johan Hedbergf3a73d92014-05-29 15:02:59 +03002216 hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, hcon->role))
Johan Hedberg9ab65d602014-07-01 19:14:13 +03002217 return false;
2218
Johan Hedberg854f4722014-07-01 18:40:20 +03002219 if (hcon->sec_level >= sec_level)
2220 return true;
2221
2222 return false;
2223}
2224
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002225static u8 smp_cmd_security_req(struct l2cap_conn *conn, struct sk_buff *skb)
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002226{
2227 struct smp_cmd_security_req *rp = (void *) skb->data;
2228 struct smp_cmd_pairing cp;
Vinicius Costa Gomesf1cb9af2011-01-26 21:42:57 -03002229 struct hci_conn *hcon = conn->hcon;
Johan Hedberg0edb14d2014-05-26 13:29:28 +03002230 struct hci_dev *hdev = hcon->hdev;
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03002231 struct smp_chan *smp;
Johan Hedbergc05b9332014-09-10 17:37:42 -07002232 u8 sec_level, auth;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002233
2234 BT_DBG("conn %p", conn);
2235
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002236 if (skb->len < sizeof(*rp))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002237 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002238
Johan Hedberg40bef302014-07-16 11:42:27 +03002239 if (hcon->role != HCI_ROLE_MASTER)
Johan Hedberg86ca9ea2013-11-05 11:30:39 +02002240 return SMP_CMD_NOTSUPP;
2241
Johan Hedberg0edb14d2014-05-26 13:29:28 +03002242 auth = rp->auth_req & AUTH_REQ_MASK(hdev);
Johan Hedbergc05b9332014-09-10 17:37:42 -07002243
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002244 if (hci_dev_test_flag(hdev, HCI_SC_ONLY) && !(auth & SMP_AUTH_SC))
Johan Hedberg903b71c2014-09-08 16:59:18 -07002245 return SMP_AUTH_REQUIREMENTS;
2246
Johan Hedberg5be5e272014-09-10 17:58:54 -07002247 if (hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT)
Johan Hedberg1afc2a12014-09-10 17:37:44 -07002248 sec_level = BT_SECURITY_MEDIUM;
2249 else
2250 sec_level = authreq_to_seclevel(auth);
2251
Johan Hedberg35dc6f82014-11-13 10:55:18 +02002252 if (smp_sufficient_security(hcon, sec_level, SMP_USE_LTK))
Johan Hedberg854f4722014-07-01 18:40:20 +03002253 return 0;
2254
Johan Hedbergc7262e72014-06-17 13:07:37 +03002255 if (sec_level > hcon->pending_sec_level)
2256 hcon->pending_sec_level = sec_level;
Vinicius Costa Gomesfeb45eb2011-08-25 20:02:35 -03002257
Johan Hedberg4dab7862012-06-07 14:58:37 +08002258 if (smp_ltk_encrypt(conn, hcon->pending_sec_level))
Vinicius Costa Gomes988c5992011-08-25 20:02:28 -03002259 return 0;
2260
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03002261 smp = smp_chan_create(conn);
Johan Hedbergc29d2442014-06-16 19:25:14 +03002262 if (!smp)
2263 return SMP_UNSPECIFIED;
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03002264
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002265 if (!hci_dev_test_flag(hdev, HCI_BONDABLE) &&
Johan Hedbergc05b9332014-09-10 17:37:42 -07002266 (auth & SMP_AUTH_BONDING))
Johan Hedberg616d55b2014-07-29 14:18:48 +03002267 return SMP_PAIRING_NOTSUPP;
2268
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002269 skb_pull(skb, sizeof(*rp));
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002270
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002271 memset(&cp, 0, sizeof(cp));
Johan Hedbergc05b9332014-09-10 17:37:42 -07002272 build_pairing_cmd(conn, &cp, NULL, auth);
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002273
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03002274 smp->preq[0] = SMP_CMD_PAIRING_REQ;
2275 memcpy(&smp->preq[1], &cp, sizeof(cp));
Anderson Brigliaf01ead32011-06-09 18:50:45 -03002276
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002277 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp);
Johan Hedbergb28b4942014-09-05 22:19:55 +03002278 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP);
Vinicius Costa Gomesf1cb9af2011-01-26 21:42:57 -03002279
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002280 return 0;
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002281}
2282
Vinicius Costa Gomescc110922012-08-23 21:32:43 -03002283int smp_conn_security(struct hci_conn *hcon, __u8 sec_level)
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002284{
Vinicius Costa Gomescc110922012-08-23 21:32:43 -03002285 struct l2cap_conn *conn = hcon->l2cap_data;
Johan Hedbergc68b7f12014-09-06 06:59:10 +03002286 struct l2cap_chan *chan;
Johan Hedberg0a66cf22014-03-24 14:39:03 +02002287 struct smp_chan *smp;
Brian Gix2b64d152011-12-21 16:12:12 -08002288 __u8 authreq;
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002289 int ret;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002290
Vinicius Costa Gomes3a0259b2011-06-09 18:50:43 -03002291 BT_DBG("conn %p hcon %p level 0x%2.2x", conn, hcon, sec_level);
2292
Johan Hedberg0a66cf22014-03-24 14:39:03 +02002293 /* This may be NULL if there's an unexpected disconnection */
2294 if (!conn)
2295 return 1;
2296
Johan Hedbergc68b7f12014-09-06 06:59:10 +03002297 chan = conn->smp;
2298
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002299 if (!hci_dev_test_flag(hcon->hdev, HCI_LE_ENABLED))
Andre Guedes2e65c9d2011-06-30 19:20:56 -03002300 return 1;
2301
Johan Hedberg35dc6f82014-11-13 10:55:18 +02002302 if (smp_sufficient_security(hcon, sec_level, SMP_USE_LTK))
Vinicius Costa Gomesf1cb9af2011-01-26 21:42:57 -03002303 return 1;
2304
Johan Hedbergc7262e72014-06-17 13:07:37 +03002305 if (sec_level > hcon->pending_sec_level)
2306 hcon->pending_sec_level = sec_level;
2307
Johan Hedberg40bef302014-07-16 11:42:27 +03002308 if (hcon->role == HCI_ROLE_MASTER)
Johan Hedbergc7262e72014-06-17 13:07:37 +03002309 if (smp_ltk_encrypt(conn, hcon->pending_sec_level))
2310 return 0;
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03002311
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002312 l2cap_chan_lock(chan);
2313
2314 /* If SMP is already in progress ignore this request */
2315 if (chan->data) {
2316 ret = 0;
2317 goto unlock;
2318 }
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03002319
Vinicius Costa Gomes8aab4752011-09-05 14:31:31 -03002320 smp = smp_chan_create(conn);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002321 if (!smp) {
2322 ret = 1;
2323 goto unlock;
2324 }
Brian Gix2b64d152011-12-21 16:12:12 -08002325
2326 authreq = seclevel_to_authreq(sec_level);
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03002327
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002328 if (hci_dev_test_flag(hcon->hdev, HCI_SC_ENABLED))
Johan Hedbergd2eb9e12014-05-16 10:59:06 +03002329 authreq |= SMP_AUTH_SC;
2330
Johan Hedberg79897d22014-06-01 09:45:24 +03002331 /* Require MITM if IO Capability allows or the security level
2332 * requires it.
Johan Hedberg2e233642014-03-18 15:42:30 +02002333 */
Johan Hedberg79897d22014-06-01 09:45:24 +03002334 if (hcon->io_capability != HCI_IO_NO_INPUT_OUTPUT ||
Johan Hedbergc7262e72014-06-17 13:07:37 +03002335 hcon->pending_sec_level > BT_SECURITY_MEDIUM)
Johan Hedberg2e233642014-03-18 15:42:30 +02002336 authreq |= SMP_AUTH_MITM;
2337
Johan Hedberg40bef302014-07-16 11:42:27 +03002338 if (hcon->role == HCI_ROLE_MASTER) {
Vinicius Costa Gomesd26a2342011-08-19 21:06:51 -03002339 struct smp_cmd_pairing cp;
Anderson Brigliaf01ead32011-06-09 18:50:45 -03002340
Brian Gix2b64d152011-12-21 16:12:12 -08002341 build_pairing_cmd(conn, &cp, NULL, authreq);
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03002342 smp->preq[0] = SMP_CMD_PAIRING_REQ;
2343 memcpy(&smp->preq[1], &cp, sizeof(cp));
Anderson Brigliaf01ead32011-06-09 18:50:45 -03002344
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002345 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp);
Johan Hedbergb28b4942014-09-05 22:19:55 +03002346 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP);
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002347 } else {
2348 struct smp_cmd_security_req cp;
Brian Gix2b64d152011-12-21 16:12:12 -08002349 cp.auth_req = authreq;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002350 smp_send_cmd(conn, SMP_CMD_SECURITY_REQ, sizeof(cp), &cp);
Johan Hedbergb28b4942014-09-05 22:19:55 +03002351 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_REQ);
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002352 }
2353
Johan Hedberg4a74d652014-05-20 09:45:50 +03002354 set_bit(SMP_FLAG_INITIATOR, &smp->flags);
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002355 ret = 0;
Johan Hedbergedca7922014-03-24 15:54:11 +02002356
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002357unlock:
2358 l2cap_chan_unlock(chan);
2359 return ret;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002360}
2361
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002362static int smp_cmd_encrypt_info(struct l2cap_conn *conn, struct sk_buff *skb)
2363{
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002364 struct smp_cmd_encrypt_info *rp = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002365 struct l2cap_chan *chan = conn->smp;
2366 struct smp_chan *smp = chan->data;
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002367
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002368 BT_DBG("conn %p", conn);
2369
2370 if (skb->len < sizeof(*rp))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002371 return SMP_INVALID_PARAMS;
Johan Hedbergc46b98b2014-02-18 10:19:29 +02002372
Johan Hedbergb28b4942014-09-05 22:19:55 +03002373 SMP_ALLOW_CMD(smp, SMP_CMD_MASTER_IDENT);
Johan Hedberg6131ddc2014-02-18 10:19:37 +02002374
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002375 skb_pull(skb, sizeof(*rp));
2376
Vinicius Costa Gomes1c1def02011-09-05 14:31:30 -03002377 memcpy(smp->tk, rp->ltk, sizeof(smp->tk));
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002378
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002379 return 0;
2380}
2381
2382static int smp_cmd_master_ident(struct l2cap_conn *conn, struct sk_buff *skb)
2383{
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002384 struct smp_cmd_master_ident *rp = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002385 struct l2cap_chan *chan = conn->smp;
2386 struct smp_chan *smp = chan->data;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002387 struct hci_dev *hdev = conn->hcon->hdev;
2388 struct hci_conn *hcon = conn->hcon;
Johan Hedberg23d0e122014-02-19 14:57:46 +02002389 struct smp_ltk *ltk;
Vinicius Costa Gomesc9839a12012-02-02 21:08:01 -03002390 u8 authenticated;
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -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 Hedberg9747a9f2014-02-26 23:33:43 +02002397 /* Mark the information as received */
2398 smp->remote_key_dist &= ~SMP_DIST_ENC_KEY;
2399
Johan Hedbergb28b4942014-09-05 22:19:55 +03002400 if (smp->remote_key_dist & SMP_DIST_ID_KEY)
2401 SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_INFO);
Johan Hedberg196332f2014-09-09 16:21:46 -07002402 else if (smp->remote_key_dist & SMP_DIST_SIGN)
2403 SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO);
Johan Hedbergb28b4942014-09-05 22:19:55 +03002404
Vinicius Costa Gomes16b90832011-07-07 18:59:39 -03002405 skb_pull(skb, sizeof(*rp));
2406
Marcel Holtmannce39fb42013-10-13 02:23:39 -07002407 authenticated = (hcon->sec_level == BT_SECURITY_HIGH);
Johan Hedberg2ceba532014-06-16 19:25:16 +03002408 ltk = hci_add_ltk(hdev, &hcon->dst, hcon->dst_type, SMP_LTK,
Johan Hedberg23d0e122014-02-19 14:57:46 +02002409 authenticated, smp->tk, smp->enc_key_size,
2410 rp->ediv, rp->rand);
2411 smp->ltk = ltk;
Johan Hedbergc6e81e92014-09-05 22:19:54 +03002412 if (!(smp->remote_key_dist & KEY_DIST_MASK))
Johan Hedbergd6268e82014-09-05 22:19:51 +03002413 smp_distribute_keys(smp);
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002414
2415 return 0;
2416}
2417
Johan Hedbergfd349c02014-02-18 10:19:36 +02002418static int smp_cmd_ident_info(struct l2cap_conn *conn, struct sk_buff *skb)
2419{
2420 struct smp_cmd_ident_info *info = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002421 struct l2cap_chan *chan = conn->smp;
2422 struct smp_chan *smp = chan->data;
Johan Hedbergfd349c02014-02-18 10:19:36 +02002423
2424 BT_DBG("");
2425
2426 if (skb->len < sizeof(*info))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002427 return SMP_INVALID_PARAMS;
Johan Hedbergfd349c02014-02-18 10:19:36 +02002428
Johan Hedbergb28b4942014-09-05 22:19:55 +03002429 SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_ADDR_INFO);
Johan Hedberg6131ddc2014-02-18 10:19:37 +02002430
Johan Hedbergfd349c02014-02-18 10:19:36 +02002431 skb_pull(skb, sizeof(*info));
2432
2433 memcpy(smp->irk, info->irk, 16);
2434
2435 return 0;
2436}
2437
2438static int smp_cmd_ident_addr_info(struct l2cap_conn *conn,
2439 struct sk_buff *skb)
2440{
2441 struct smp_cmd_ident_addr_info *info = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002442 struct l2cap_chan *chan = conn->smp;
2443 struct smp_chan *smp = chan->data;
Johan Hedbergfd349c02014-02-18 10:19:36 +02002444 struct hci_conn *hcon = conn->hcon;
2445 bdaddr_t rpa;
2446
2447 BT_DBG("");
2448
2449 if (skb->len < sizeof(*info))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002450 return SMP_INVALID_PARAMS;
Johan Hedbergfd349c02014-02-18 10:19:36 +02002451
Johan Hedberg9747a9f2014-02-26 23:33:43 +02002452 /* Mark the information as received */
2453 smp->remote_key_dist &= ~SMP_DIST_ID_KEY;
2454
Johan Hedbergb28b4942014-09-05 22:19:55 +03002455 if (smp->remote_key_dist & SMP_DIST_SIGN)
2456 SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO);
2457
Johan Hedbergfd349c02014-02-18 10:19:36 +02002458 skb_pull(skb, sizeof(*info));
2459
Johan Hedberga9a58f82014-02-25 22:24:37 +02002460 /* Strictly speaking the Core Specification (4.1) allows sending
2461 * an empty address which would force us to rely on just the IRK
2462 * as "identity information". However, since such
2463 * implementations are not known of and in order to not over
2464 * complicate our implementation, simply pretend that we never
2465 * received an IRK for such a device.
Johan Hedberge12af482015-01-14 20:51:37 +02002466 *
2467 * The Identity Address must also be a Static Random or Public
2468 * Address, which hci_is_identity_address() checks for.
Johan Hedberga9a58f82014-02-25 22:24:37 +02002469 */
Johan Hedberge12af482015-01-14 20:51:37 +02002470 if (!bacmp(&info->bdaddr, BDADDR_ANY) ||
2471 !hci_is_identity_address(&info->bdaddr, info->addr_type)) {
Johan Hedberga9a58f82014-02-25 22:24:37 +02002472 BT_ERR("Ignoring IRK with no identity address");
Johan Hedberg31dd6242014-06-27 14:23:02 +03002473 goto distribute;
Johan Hedberga9a58f82014-02-25 22:24:37 +02002474 }
2475
Johan Hedbergfd349c02014-02-18 10:19:36 +02002476 bacpy(&smp->id_addr, &info->bdaddr);
2477 smp->id_addr_type = info->addr_type;
2478
2479 if (hci_bdaddr_is_rpa(&hcon->dst, hcon->dst_type))
2480 bacpy(&rpa, &hcon->dst);
2481 else
2482 bacpy(&rpa, BDADDR_ANY);
2483
Johan Hedberg23d0e122014-02-19 14:57:46 +02002484 smp->remote_irk = hci_add_irk(conn->hcon->hdev, &smp->id_addr,
2485 smp->id_addr_type, smp->irk, &rpa);
Johan Hedbergfd349c02014-02-18 10:19:36 +02002486
Johan Hedberg31dd6242014-06-27 14:23:02 +03002487distribute:
Johan Hedbergc6e81e92014-09-05 22:19:54 +03002488 if (!(smp->remote_key_dist & KEY_DIST_MASK))
2489 smp_distribute_keys(smp);
Johan Hedbergfd349c02014-02-18 10:19:36 +02002490
2491 return 0;
2492}
2493
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002494static int smp_cmd_sign_info(struct l2cap_conn *conn, struct sk_buff *skb)
2495{
2496 struct smp_cmd_sign_info *rp = (void *) skb->data;
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002497 struct l2cap_chan *chan = conn->smp;
2498 struct smp_chan *smp = chan->data;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002499 struct smp_csrk *csrk;
2500
2501 BT_DBG("conn %p", conn);
2502
2503 if (skb->len < sizeof(*rp))
Johan Hedberg38e4a912014-05-08 14:19:11 +03002504 return SMP_INVALID_PARAMS;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002505
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002506 /* Mark the information as received */
2507 smp->remote_key_dist &= ~SMP_DIST_SIGN;
2508
2509 skb_pull(skb, sizeof(*rp));
2510
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002511 csrk = kzalloc(sizeof(*csrk), GFP_KERNEL);
2512 if (csrk) {
Johan Hedberg4cd39282015-02-27 10:11:13 +02002513 if (conn->hcon->sec_level > BT_SECURITY_MEDIUM)
2514 csrk->type = MGMT_CSRK_REMOTE_AUTHENTICATED;
2515 else
2516 csrk->type = MGMT_CSRK_REMOTE_UNAUTHENTICATED;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002517 memcpy(csrk->val, rp->csrk, sizeof(csrk->val));
2518 }
2519 smp->csrk = csrk;
Johan Hedbergd6268e82014-09-05 22:19:51 +03002520 smp_distribute_keys(smp);
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002521
2522 return 0;
2523}
2524
Johan Hedberg5e3d3d92014-05-31 18:51:02 +03002525static u8 sc_select_method(struct smp_chan *smp)
2526{
2527 struct l2cap_conn *conn = smp->conn;
2528 struct hci_conn *hcon = conn->hcon;
2529 struct smp_cmd_pairing *local, *remote;
2530 u8 local_mitm, remote_mitm, local_io, remote_io, method;
2531
Johan Hedberg1a8bab42015-03-16 11:45:44 +02002532 if (test_bit(SMP_FLAG_REMOTE_OOB, &smp->flags) ||
2533 test_bit(SMP_FLAG_LOCAL_OOB, &smp->flags))
Johan Hedberga29b0732014-10-28 15:17:05 +01002534 return REQ_OOB;
2535
Johan Hedberg5e3d3d92014-05-31 18:51:02 +03002536 /* The preq/prsp contain the raw Pairing Request/Response PDUs
2537 * which are needed as inputs to some crypto functions. To get
2538 * the "struct smp_cmd_pairing" from them we need to skip the
2539 * first byte which contains the opcode.
2540 */
2541 if (hcon->out) {
2542 local = (void *) &smp->preq[1];
2543 remote = (void *) &smp->prsp[1];
2544 } else {
2545 local = (void *) &smp->prsp[1];
2546 remote = (void *) &smp->preq[1];
2547 }
2548
2549 local_io = local->io_capability;
2550 remote_io = remote->io_capability;
2551
2552 local_mitm = (local->auth_req & SMP_AUTH_MITM);
2553 remote_mitm = (remote->auth_req & SMP_AUTH_MITM);
2554
2555 /* If either side wants MITM, look up the method from the table,
2556 * otherwise use JUST WORKS.
2557 */
2558 if (local_mitm || remote_mitm)
2559 method = get_auth_method(smp, local_io, remote_io);
2560 else
2561 method = JUST_WORKS;
2562
2563 /* Don't confirm locally initiated pairing attempts */
2564 if (method == JUST_CFM && test_bit(SMP_FLAG_INITIATOR, &smp->flags))
2565 method = JUST_WORKS;
2566
2567 return method;
2568}
2569
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002570static int smp_cmd_public_key(struct l2cap_conn *conn, struct sk_buff *skb)
2571{
2572 struct smp_cmd_public_key *key = (void *) skb->data;
2573 struct hci_conn *hcon = conn->hcon;
2574 struct l2cap_chan *chan = conn->smp;
2575 struct smp_chan *smp = chan->data;
Johan Hedberg5e3d3d92014-05-31 18:51:02 +03002576 struct hci_dev *hdev = hcon->hdev;
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +03002577 struct smp_cmd_pairing_confirm cfm;
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002578 int err;
2579
2580 BT_DBG("conn %p", conn);
2581
2582 if (skb->len < sizeof(*key))
2583 return SMP_INVALID_PARAMS;
2584
2585 memcpy(smp->remote_pk, key, 64);
2586
Johan Hedberga8ca6172015-03-16 18:12:57 +02002587 if (test_bit(SMP_FLAG_REMOTE_OOB, &smp->flags)) {
2588 err = smp_f4(smp->tfm_cmac, smp->remote_pk, smp->remote_pk,
2589 smp->rr, 0, cfm.confirm_val);
2590 if (err)
2591 return SMP_UNSPECIFIED;
2592
2593 if (memcmp(cfm.confirm_val, smp->pcnf, 16))
2594 return SMP_CONFIRM_FAILED;
2595 }
2596
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002597 /* Non-initiating device sends its public key after receiving
2598 * the key from the initiating device.
2599 */
2600 if (!hcon->out) {
2601 err = sc_send_public_key(smp);
2602 if (err)
2603 return err;
2604 }
2605
Johan Hedbergc7a3d572014-12-01 22:03:16 +02002606 SMP_DBG("Remote Public Key X: %32phN", smp->remote_pk);
Marcel Holtmanne0915262015-03-16 12:34:55 -07002607 SMP_DBG("Remote Public Key Y: %32phN", smp->remote_pk + 32);
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002608
2609 if (!ecdh_shared_secret(smp->remote_pk, smp->local_sk, smp->dhkey))
2610 return SMP_UNSPECIFIED;
2611
Johan Hedbergc7a3d572014-12-01 22:03:16 +02002612 SMP_DBG("DHKey %32phN", smp->dhkey);
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002613
2614 set_bit(SMP_FLAG_REMOTE_PK, &smp->flags);
2615
Johan Hedberg5e3d3d92014-05-31 18:51:02 +03002616 smp->method = sc_select_method(smp);
2617
2618 BT_DBG("%s selected method 0x%02x", hdev->name, smp->method);
2619
2620 /* JUST_WORKS and JUST_CFM result in an unauthenticated key */
2621 if (smp->method == JUST_WORKS || smp->method == JUST_CFM)
2622 hcon->pending_sec_level = BT_SECURITY_MEDIUM;
2623 else
2624 hcon->pending_sec_level = BT_SECURITY_FIPS;
2625
Johan Hedbergaeb7d462014-05-31 18:52:28 +03002626 if (!memcmp(debug_pk, smp->remote_pk, 64))
2627 set_bit(SMP_FLAG_DEBUG_KEY, &smp->flags);
2628
Johan Hedberg38606f12014-06-25 11:10:28 +03002629 if (smp->method == DSP_PASSKEY) {
2630 get_random_bytes(&hcon->passkey_notify,
2631 sizeof(hcon->passkey_notify));
2632 hcon->passkey_notify %= 1000000;
2633 hcon->passkey_entered = 0;
2634 smp->passkey_round = 0;
2635 if (mgmt_user_passkey_notify(hdev, &hcon->dst, hcon->type,
2636 hcon->dst_type,
2637 hcon->passkey_notify,
2638 hcon->passkey_entered))
2639 return SMP_UNSPECIFIED;
2640 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
2641 return sc_passkey_round(smp, SMP_CMD_PUBLIC_KEY);
2642 }
2643
Johan Hedberg94ea7252015-03-16 11:45:46 +02002644 if (smp->method == REQ_OOB) {
Johan Hedberga29b0732014-10-28 15:17:05 +01002645 if (hcon->out)
2646 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM,
2647 sizeof(smp->prnd), smp->prnd);
2648
2649 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2650
2651 return 0;
2652 }
2653
Johan Hedberg38606f12014-06-25 11:10:28 +03002654 if (hcon->out)
2655 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
2656
2657 if (smp->method == REQ_PASSKEY) {
2658 if (mgmt_user_passkey_request(hdev, &hcon->dst, hcon->type,
2659 hcon->dst_type))
2660 return SMP_UNSPECIFIED;
2661 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM);
2662 set_bit(SMP_FLAG_WAIT_USER, &smp->flags);
2663 return 0;
2664 }
2665
Johan Hedbergcbbbe3e2014-06-06 11:30:08 +03002666 /* The Initiating device waits for the non-initiating device to
2667 * send the confirm value.
2668 */
2669 if (conn->hcon->out)
2670 return 0;
2671
2672 err = smp_f4(smp->tfm_cmac, smp->local_pk, smp->remote_pk, smp->prnd,
2673 0, cfm.confirm_val);
2674 if (err)
2675 return SMP_UNSPECIFIED;
2676
2677 smp_send_cmd(conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cfm), &cfm);
2678 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM);
2679
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002680 return 0;
2681}
2682
Johan Hedberg6433a9a2014-06-06 11:47:30 +03002683static int smp_cmd_dhkey_check(struct l2cap_conn *conn, struct sk_buff *skb)
2684{
2685 struct smp_cmd_dhkey_check *check = (void *) skb->data;
2686 struct l2cap_chan *chan = conn->smp;
2687 struct hci_conn *hcon = conn->hcon;
2688 struct smp_chan *smp = chan->data;
2689 u8 a[7], b[7], *local_addr, *remote_addr;
2690 u8 io_cap[3], r[16], e[16];
2691 int err;
2692
2693 BT_DBG("conn %p", conn);
2694
2695 if (skb->len < sizeof(*check))
2696 return SMP_INVALID_PARAMS;
2697
2698 memcpy(a, &hcon->init_addr, 6);
2699 memcpy(b, &hcon->resp_addr, 6);
2700 a[6] = hcon->init_addr_type;
2701 b[6] = hcon->resp_addr_type;
2702
2703 if (hcon->out) {
2704 local_addr = a;
2705 remote_addr = b;
2706 memcpy(io_cap, &smp->prsp[1], 3);
2707 } else {
2708 local_addr = b;
2709 remote_addr = a;
2710 memcpy(io_cap, &smp->preq[1], 3);
2711 }
2712
2713 memset(r, 0, sizeof(r));
2714
Johan Hedberg38606f12014-06-25 11:10:28 +03002715 if (smp->method == REQ_PASSKEY || smp->method == DSP_PASSKEY)
2716 put_unaligned_le32(hcon->passkey_notify, r);
Johan Hedberg882fafa2015-03-16 11:45:43 +02002717 else if (smp->method == REQ_OOB)
2718 memcpy(r, smp->lr, 16);
Johan Hedberg38606f12014-06-25 11:10:28 +03002719
Johan Hedberg6433a9a2014-06-06 11:47:30 +03002720 err = smp_f6(smp->tfm_cmac, smp->mackey, smp->rrnd, smp->prnd, r,
2721 io_cap, remote_addr, local_addr, e);
2722 if (err)
2723 return SMP_UNSPECIFIED;
2724
2725 if (memcmp(check->e, e, 16))
2726 return SMP_DHKEY_CHECK_FAILED;
2727
Johan Hedbergd3e54a82014-06-04 11:07:40 +03002728 if (!hcon->out) {
2729 if (test_bit(SMP_FLAG_WAIT_USER, &smp->flags)) {
2730 set_bit(SMP_FLAG_DHKEY_PENDING, &smp->flags);
2731 return 0;
2732 }
Johan Hedbergd378a2d2014-05-31 18:53:36 +03002733
Johan Hedbergd3e54a82014-06-04 11:07:40 +03002734 /* Slave sends DHKey check as response to master */
2735 sc_dhkey_check(smp);
2736 }
Johan Hedbergd378a2d2014-05-31 18:53:36 +03002737
Johan Hedbergd3e54a82014-06-04 11:07:40 +03002738 sc_add_ltk(smp);
Johan Hedberg6433a9a2014-06-06 11:47:30 +03002739
2740 if (hcon->out) {
2741 hci_le_start_enc(hcon, 0, 0, smp->tk);
2742 hcon->enc_key_size = smp->enc_key_size;
2743 }
2744
2745 return 0;
2746}
2747
Johan Hedberg1408bb62014-06-04 22:45:57 +03002748static int smp_cmd_keypress_notify(struct l2cap_conn *conn,
2749 struct sk_buff *skb)
2750{
2751 struct smp_cmd_keypress_notify *kp = (void *) skb->data;
2752
2753 BT_DBG("value 0x%02x", kp->value);
2754
2755 return 0;
2756}
2757
Johan Hedberg4befb862014-08-11 22:06:38 +03002758static int smp_sig_channel(struct l2cap_chan *chan, struct sk_buff *skb)
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002759{
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002760 struct l2cap_conn *conn = chan->conn;
Marcel Holtmann7b9899d2013-10-03 00:00:57 -07002761 struct hci_conn *hcon = conn->hcon;
Johan Hedbergb28b4942014-09-05 22:19:55 +03002762 struct smp_chan *smp;
Marcel Holtmann92381f52013-10-03 01:23:08 -07002763 __u8 code, reason;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002764 int err = 0;
2765
Johan Hedberg8ae9b982014-08-11 22:06:39 +03002766 if (skb->len < 1)
Marcel Holtmann92381f52013-10-03 01:23:08 -07002767 return -EILSEQ;
Marcel Holtmann92381f52013-10-03 01:23:08 -07002768
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002769 if (!hci_dev_test_flag(hcon->hdev, HCI_LE_ENABLED)) {
Andre Guedes2e65c9d2011-06-30 19:20:56 -03002770 reason = SMP_PAIRING_NOTSUPP;
2771 goto done;
2772 }
2773
Marcel Holtmann92381f52013-10-03 01:23:08 -07002774 code = skb->data[0];
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002775 skb_pull(skb, sizeof(code));
2776
Johan Hedbergb28b4942014-09-05 22:19:55 +03002777 smp = chan->data;
2778
2779 if (code > SMP_CMD_MAX)
2780 goto drop;
2781
Johan Hedberg24bd0bd2014-09-10 17:37:43 -07002782 if (smp && !test_and_clear_bit(code, &smp->allow_cmd))
Johan Hedbergb28b4942014-09-05 22:19:55 +03002783 goto drop;
2784
2785 /* If we don't have a context the only allowed commands are
2786 * pairing request and security request.
Johan Hedberg8cf9fa12013-01-29 10:44:23 -06002787 */
Johan Hedbergb28b4942014-09-05 22:19:55 +03002788 if (!smp && code != SMP_CMD_PAIRING_REQ && code != SMP_CMD_SECURITY_REQ)
2789 goto drop;
Johan Hedberg8cf9fa12013-01-29 10:44:23 -06002790
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002791 switch (code) {
2792 case SMP_CMD_PAIRING_REQ:
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002793 reason = smp_cmd_pairing_req(conn, skb);
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002794 break;
2795
2796 case SMP_CMD_PAIRING_FAIL:
Johan Hedberg84794e12013-11-06 11:24:57 +02002797 smp_failure(conn, 0);
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002798 err = -EPERM;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002799 break;
2800
2801 case SMP_CMD_PAIRING_RSP:
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002802 reason = smp_cmd_pairing_rsp(conn, skb);
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002803 break;
2804
2805 case SMP_CMD_SECURITY_REQ:
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002806 reason = smp_cmd_security_req(conn, skb);
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002807 break;
2808
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002809 case SMP_CMD_PAIRING_CONFIRM:
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002810 reason = smp_cmd_pairing_confirm(conn, skb);
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002811 break;
2812
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002813 case SMP_CMD_PAIRING_RANDOM:
Vinicius Costa Gomesda85e5e2011-06-09 18:50:53 -03002814 reason = smp_cmd_pairing_random(conn, skb);
Anderson Briglia88ba43b2011-06-09 18:50:42 -03002815 break;
2816
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002817 case SMP_CMD_ENCRYPT_INFO:
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002818 reason = smp_cmd_encrypt_info(conn, skb);
2819 break;
2820
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002821 case SMP_CMD_MASTER_IDENT:
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002822 reason = smp_cmd_master_ident(conn, skb);
2823 break;
2824
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002825 case SMP_CMD_IDENT_INFO:
Johan Hedbergfd349c02014-02-18 10:19:36 +02002826 reason = smp_cmd_ident_info(conn, skb);
2827 break;
2828
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002829 case SMP_CMD_IDENT_ADDR_INFO:
Johan Hedbergfd349c02014-02-18 10:19:36 +02002830 reason = smp_cmd_ident_addr_info(conn, skb);
2831 break;
2832
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002833 case SMP_CMD_SIGN_INFO:
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07002834 reason = smp_cmd_sign_info(conn, skb);
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002835 break;
2836
Johan Hedbergd8f8edb2014-06-06 11:09:28 +03002837 case SMP_CMD_PUBLIC_KEY:
2838 reason = smp_cmd_public_key(conn, skb);
2839 break;
2840
Johan Hedberg6433a9a2014-06-06 11:47:30 +03002841 case SMP_CMD_DHKEY_CHECK:
2842 reason = smp_cmd_dhkey_check(conn, skb);
2843 break;
2844
Johan Hedberg1408bb62014-06-04 22:45:57 +03002845 case SMP_CMD_KEYPRESS_NOTIFY:
2846 reason = smp_cmd_keypress_notify(conn, skb);
2847 break;
2848
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002849 default:
2850 BT_DBG("Unknown command code 0x%2.2x", code);
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002851 reason = SMP_CMD_NOTSUPP;
Vinicius Costa Gomes3a0259b2011-06-09 18:50:43 -03002852 goto done;
2853 }
2854
2855done:
Johan Hedberg9b7b18e2014-08-18 20:33:31 +03002856 if (!err) {
2857 if (reason)
2858 smp_failure(conn, reason);
Johan Hedberg8ae9b982014-08-11 22:06:39 +03002859 kfree_skb(skb);
Johan Hedberg9b7b18e2014-08-18 20:33:31 +03002860 }
2861
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002862 return err;
Johan Hedbergb28b4942014-09-05 22:19:55 +03002863
2864drop:
2865 BT_ERR("%s unexpected SMP command 0x%02x from %pMR", hcon->hdev->name,
2866 code, &hcon->dst);
2867 kfree_skb(skb);
2868 return 0;
Anderson Brigliaeb492e02011-06-09 18:50:40 -03002869}
Vinicius Costa Gomes7034b912011-07-07 18:59:34 -03002870
Johan Hedberg70db83c2014-08-08 09:37:16 +03002871static void smp_teardown_cb(struct l2cap_chan *chan, int err)
2872{
2873 struct l2cap_conn *conn = chan->conn;
2874
2875 BT_DBG("chan %p", chan);
2876
Johan Hedbergfc75cc82014-09-05 22:19:52 +03002877 if (chan->data)
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002878 smp_chan_destroy(conn);
Johan Hedberg5d88cc72014-08-08 09:37:18 +03002879
Johan Hedberg70db83c2014-08-08 09:37:16 +03002880 conn->smp = NULL;
2881 l2cap_chan_put(chan);
2882}
2883
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002884static void bredr_pairing(struct l2cap_chan *chan)
2885{
2886 struct l2cap_conn *conn = chan->conn;
2887 struct hci_conn *hcon = conn->hcon;
2888 struct hci_dev *hdev = hcon->hdev;
2889 struct smp_cmd_pairing req;
2890 struct smp_chan *smp;
2891
2892 BT_DBG("chan %p", chan);
2893
2894 /* Only new pairings are interesting */
2895 if (!test_bit(HCI_CONN_NEW_LINK_KEY, &hcon->flags))
2896 return;
2897
2898 /* Don't bother if we're not encrypted */
2899 if (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags))
2900 return;
2901
2902 /* Only master may initiate SMP over BR/EDR */
2903 if (hcon->role != HCI_ROLE_MASTER)
2904 return;
2905
2906 /* Secure Connections support must be enabled */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002907 if (!hci_dev_test_flag(hdev, HCI_SC_ENABLED))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002908 return;
2909
2910 /* BR/EDR must use Secure Connections for SMP */
2911 if (!test_bit(HCI_CONN_AES_CCM, &hcon->flags) &&
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -07002912 !hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002913 return;
2914
2915 /* If our LE support is not enabled don't do anything */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002916 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002917 return;
2918
2919 /* Don't bother if remote LE support is not enabled */
2920 if (!lmp_host_le_capable(hcon))
2921 return;
2922
2923 /* Remote must support SMP fixed chan for BR/EDR */
2924 if (!(conn->remote_fixed_chan & L2CAP_FC_SMP_BREDR))
2925 return;
2926
2927 /* Don't bother if SMP is already ongoing */
2928 if (chan->data)
2929 return;
2930
2931 smp = smp_chan_create(conn);
2932 if (!smp) {
2933 BT_ERR("%s unable to create SMP context for BR/EDR",
2934 hdev->name);
2935 return;
2936 }
2937
2938 set_bit(SMP_FLAG_SC, &smp->flags);
2939
2940 BT_DBG("%s starting SMP over BR/EDR", hdev->name);
2941
2942 /* Prepare and send the BR/EDR SMP Pairing Request */
2943 build_bredr_pairing_cmd(smp, &req, NULL);
2944
2945 smp->preq[0] = SMP_CMD_PAIRING_REQ;
2946 memcpy(&smp->preq[1], &req, sizeof(req));
2947
2948 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(req), &req);
2949 SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP);
2950}
2951
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03002952static void smp_resume_cb(struct l2cap_chan *chan)
2953{
Johan Hedbergb68fda62014-08-11 22:06:40 +03002954 struct smp_chan *smp = chan->data;
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03002955 struct l2cap_conn *conn = chan->conn;
2956 struct hci_conn *hcon = conn->hcon;
2957
2958 BT_DBG("chan %p", chan);
2959
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002960 if (hcon->type == ACL_LINK) {
2961 bredr_pairing(chan);
Johan Hedbergef8efe42014-08-13 15:12:32 +03002962 return;
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002963 }
Johan Hedbergef8efe42014-08-13 15:12:32 +03002964
Johan Hedberg86d14072014-08-11 22:06:43 +03002965 if (!smp)
2966 return;
Johan Hedbergb68fda62014-08-11 22:06:40 +03002967
Johan Hedberg84bc0db2014-09-05 22:19:49 +03002968 if (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags))
2969 return;
2970
Johan Hedberg86d14072014-08-11 22:06:43 +03002971 cancel_delayed_work(&smp->security_timer);
2972
Johan Hedbergd6268e82014-09-05 22:19:51 +03002973 smp_distribute_keys(smp);
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03002974}
2975
Johan Hedberg70db83c2014-08-08 09:37:16 +03002976static void smp_ready_cb(struct l2cap_chan *chan)
2977{
2978 struct l2cap_conn *conn = chan->conn;
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002979 struct hci_conn *hcon = conn->hcon;
Johan Hedberg70db83c2014-08-08 09:37:16 +03002980
2981 BT_DBG("chan %p", chan);
2982
2983 conn->smp = chan;
2984 l2cap_chan_hold(chan);
Johan Hedbergb5ae3442014-08-14 12:34:26 +03002985
2986 if (hcon->type == ACL_LINK && test_bit(HCI_CONN_ENCRYPT, &hcon->flags))
2987 bredr_pairing(chan);
Johan Hedberg70db83c2014-08-08 09:37:16 +03002988}
2989
Johan Hedberg4befb862014-08-11 22:06:38 +03002990static int smp_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb)
2991{
2992 int err;
2993
2994 BT_DBG("chan %p", chan);
2995
2996 err = smp_sig_channel(chan, skb);
2997 if (err) {
Johan Hedbergb68fda62014-08-11 22:06:40 +03002998 struct smp_chan *smp = chan->data;
Johan Hedberg4befb862014-08-11 22:06:38 +03002999
Johan Hedbergb68fda62014-08-11 22:06:40 +03003000 if (smp)
3001 cancel_delayed_work_sync(&smp->security_timer);
Johan Hedberg4befb862014-08-11 22:06:38 +03003002
Johan Hedberg1e91c292014-08-18 20:33:29 +03003003 hci_disconnect(chan->conn->hcon, HCI_ERROR_AUTH_FAILURE);
Johan Hedberg4befb862014-08-11 22:06:38 +03003004 }
3005
3006 return err;
3007}
3008
Johan Hedberg70db83c2014-08-08 09:37:16 +03003009static struct sk_buff *smp_alloc_skb_cb(struct l2cap_chan *chan,
3010 unsigned long hdr_len,
3011 unsigned long len, int nb)
3012{
3013 struct sk_buff *skb;
3014
3015 skb = bt_skb_alloc(hdr_len + len, GFP_KERNEL);
3016 if (!skb)
3017 return ERR_PTR(-ENOMEM);
3018
3019 skb->priority = HCI_PRIO_MAX;
3020 bt_cb(skb)->chan = chan;
3021
3022 return skb;
3023}
3024
3025static const struct l2cap_ops smp_chan_ops = {
3026 .name = "Security Manager",
3027 .ready = smp_ready_cb,
Johan Hedberg5d88cc72014-08-08 09:37:18 +03003028 .recv = smp_recv_cb,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003029 .alloc_skb = smp_alloc_skb_cb,
3030 .teardown = smp_teardown_cb,
Johan Hedberg44f1a7a2014-08-11 22:06:36 +03003031 .resume = smp_resume_cb,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003032
3033 .new_connection = l2cap_chan_no_new_connection,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003034 .state_change = l2cap_chan_no_state_change,
3035 .close = l2cap_chan_no_close,
3036 .defer = l2cap_chan_no_defer,
3037 .suspend = l2cap_chan_no_suspend,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003038 .set_shutdown = l2cap_chan_no_set_shutdown,
3039 .get_sndtimeo = l2cap_chan_no_get_sndtimeo,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003040};
3041
3042static inline struct l2cap_chan *smp_new_conn_cb(struct l2cap_chan *pchan)
3043{
3044 struct l2cap_chan *chan;
3045
3046 BT_DBG("pchan %p", pchan);
3047
3048 chan = l2cap_chan_create();
3049 if (!chan)
3050 return NULL;
3051
3052 chan->chan_type = pchan->chan_type;
3053 chan->ops = &smp_chan_ops;
3054 chan->scid = pchan->scid;
3055 chan->dcid = chan->scid;
3056 chan->imtu = pchan->imtu;
3057 chan->omtu = pchan->omtu;
3058 chan->mode = pchan->mode;
3059
Johan Hedbergabe84902014-11-12 22:22:21 +02003060 /* Other L2CAP channels may request SMP routines in order to
3061 * change the security level. This means that the SMP channel
3062 * lock must be considered in its own category to avoid lockdep
3063 * warnings.
3064 */
3065 atomic_set(&chan->nesting, L2CAP_NESTING_SMP);
3066
Johan Hedberg70db83c2014-08-08 09:37:16 +03003067 BT_DBG("created chan %p", chan);
3068
3069 return chan;
3070}
3071
3072static const struct l2cap_ops smp_root_chan_ops = {
3073 .name = "Security Manager Root",
3074 .new_connection = smp_new_conn_cb,
3075
3076 /* None of these are implemented for the root channel */
3077 .close = l2cap_chan_no_close,
3078 .alloc_skb = l2cap_chan_no_alloc_skb,
3079 .recv = l2cap_chan_no_recv,
3080 .state_change = l2cap_chan_no_state_change,
3081 .teardown = l2cap_chan_no_teardown,
3082 .ready = l2cap_chan_no_ready,
3083 .defer = l2cap_chan_no_defer,
3084 .suspend = l2cap_chan_no_suspend,
3085 .resume = l2cap_chan_no_resume,
3086 .set_shutdown = l2cap_chan_no_set_shutdown,
3087 .get_sndtimeo = l2cap_chan_no_get_sndtimeo,
Johan Hedberg70db83c2014-08-08 09:37:16 +03003088};
3089
Johan Hedbergef8efe42014-08-13 15:12:32 +03003090static struct l2cap_chan *smp_add_cid(struct hci_dev *hdev, u16 cid)
Johan Hedberg711eafe2014-08-08 09:32:52 +03003091{
Johan Hedberg70db83c2014-08-08 09:37:16 +03003092 struct l2cap_chan *chan;
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003093 struct smp_dev *smp;
3094 struct crypto_blkcipher *tfm_aes;
Marcel Holtmann6e2dc6d2015-03-16 01:10:21 -07003095 struct crypto_hash *tfm_cmac;
Johan Hedberg70db83c2014-08-08 09:37:16 +03003096
Johan Hedbergef8efe42014-08-13 15:12:32 +03003097 if (cid == L2CAP_CID_SMP_BREDR) {
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003098 smp = NULL;
Johan Hedbergef8efe42014-08-13 15:12:32 +03003099 goto create_chan;
3100 }
Johan Hedberg711eafe2014-08-08 09:32:52 +03003101
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003102 smp = kzalloc(sizeof(*smp), GFP_KERNEL);
3103 if (!smp)
3104 return ERR_PTR(-ENOMEM);
3105
3106 tfm_aes = crypto_alloc_blkcipher("ecb(aes)", 0, CRYPTO_ALG_ASYNC);
Johan Hedbergdefce9e2014-08-08 09:37:17 +03003107 if (IS_ERR(tfm_aes)) {
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003108 BT_ERR("Unable to create ECB crypto context");
3109 kzfree(smp);
Fengguang Wufe700772014-12-08 03:04:38 +08003110 return ERR_CAST(tfm_aes);
Johan Hedberg711eafe2014-08-08 09:32:52 +03003111 }
3112
Marcel Holtmann6e2dc6d2015-03-16 01:10:21 -07003113 tfm_cmac = crypto_alloc_hash("cmac(aes)", 0, CRYPTO_ALG_ASYNC);
3114 if (IS_ERR(tfm_cmac)) {
3115 BT_ERR("Unable to create CMAC crypto context");
3116 crypto_free_blkcipher(tfm_aes);
3117 kzfree(smp);
3118 return ERR_CAST(tfm_cmac);
3119 }
3120
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003121 smp->tfm_aes = tfm_aes;
Marcel Holtmann6e2dc6d2015-03-16 01:10:21 -07003122 smp->tfm_cmac = tfm_cmac;
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003123
Johan Hedbergef8efe42014-08-13 15:12:32 +03003124create_chan:
Johan Hedberg70db83c2014-08-08 09:37:16 +03003125 chan = l2cap_chan_create();
3126 if (!chan) {
Marcel Holtmann63511f6d2015-03-17 11:38:24 -07003127 if (smp) {
3128 crypto_free_blkcipher(smp->tfm_aes);
3129 crypto_free_hash(smp->tfm_cmac);
3130 kzfree(smp);
3131 }
Johan Hedbergef8efe42014-08-13 15:12:32 +03003132 return ERR_PTR(-ENOMEM);
Johan Hedberg70db83c2014-08-08 09:37:16 +03003133 }
3134
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003135 chan->data = smp;
Johan Hedbergdefce9e2014-08-08 09:37:17 +03003136
Johan Hedbergef8efe42014-08-13 15:12:32 +03003137 l2cap_add_scid(chan, cid);
Johan Hedberg70db83c2014-08-08 09:37:16 +03003138
3139 l2cap_chan_set_defaults(chan);
3140
Marcel Holtmann157029b2015-01-14 15:43:09 -08003141 if (cid == L2CAP_CID_SMP) {
Johan Hedberg39e3e742015-02-20 13:48:24 +02003142 u8 bdaddr_type;
3143
3144 hci_copy_identity_address(hdev, &chan->src, &bdaddr_type);
3145
3146 if (bdaddr_type == ADDR_LE_DEV_PUBLIC)
Marcel Holtmann157029b2015-01-14 15:43:09 -08003147 chan->src_type = BDADDR_LE_PUBLIC;
Johan Hedberg39e3e742015-02-20 13:48:24 +02003148 else
3149 chan->src_type = BDADDR_LE_RANDOM;
Marcel Holtmann157029b2015-01-14 15:43:09 -08003150 } else {
3151 bacpy(&chan->src, &hdev->bdaddr);
Johan Hedbergef8efe42014-08-13 15:12:32 +03003152 chan->src_type = BDADDR_BREDR;
Marcel Holtmann157029b2015-01-14 15:43:09 -08003153 }
3154
Johan Hedberg70db83c2014-08-08 09:37:16 +03003155 chan->state = BT_LISTEN;
3156 chan->mode = L2CAP_MODE_BASIC;
3157 chan->imtu = L2CAP_DEFAULT_MTU;
3158 chan->ops = &smp_root_chan_ops;
3159
Johan Hedbergabe84902014-11-12 22:22:21 +02003160 /* Set correct nesting level for a parent/listening channel */
3161 atomic_set(&chan->nesting, L2CAP_NESTING_PARENT);
3162
Johan Hedbergef8efe42014-08-13 15:12:32 +03003163 return chan;
Johan Hedberg711eafe2014-08-08 09:32:52 +03003164}
3165
Johan Hedbergef8efe42014-08-13 15:12:32 +03003166static void smp_del_chan(struct l2cap_chan *chan)
Johan Hedberg711eafe2014-08-08 09:32:52 +03003167{
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003168 struct smp_dev *smp;
Johan Hedberg70db83c2014-08-08 09:37:16 +03003169
Johan Hedbergef8efe42014-08-13 15:12:32 +03003170 BT_DBG("chan %p", chan);
Johan Hedberg711eafe2014-08-08 09:32:52 +03003171
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003172 smp = chan->data;
3173 if (smp) {
Johan Hedbergdefce9e2014-08-08 09:37:17 +03003174 chan->data = NULL;
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003175 if (smp->tfm_aes)
3176 crypto_free_blkcipher(smp->tfm_aes);
Marcel Holtmann6e2dc6d2015-03-16 01:10:21 -07003177 if (smp->tfm_cmac)
3178 crypto_free_hash(smp->tfm_cmac);
Marcel Holtmann88a479d2015-03-16 01:10:19 -07003179 kzfree(smp);
Johan Hedberg711eafe2014-08-08 09:32:52 +03003180 }
Johan Hedberg70db83c2014-08-08 09:37:16 +03003181
Johan Hedberg70db83c2014-08-08 09:37:16 +03003182 l2cap_chan_put(chan);
Johan Hedberg711eafe2014-08-08 09:32:52 +03003183}
Johan Hedbergef8efe42014-08-13 15:12:32 +03003184
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003185static ssize_t force_bredr_smp_read(struct file *file,
3186 char __user *user_buf,
3187 size_t count, loff_t *ppos)
3188{
3189 struct hci_dev *hdev = file->private_data;
3190 char buf[3];
3191
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -07003192 buf[0] = hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP) ? 'Y': 'N';
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003193 buf[1] = '\n';
3194 buf[2] = '\0';
3195 return simple_read_from_buffer(user_buf, count, ppos, buf, 2);
3196}
3197
3198static ssize_t force_bredr_smp_write(struct file *file,
3199 const char __user *user_buf,
3200 size_t count, loff_t *ppos)
3201{
3202 struct hci_dev *hdev = file->private_data;
3203 char buf[32];
3204 size_t buf_size = min(count, (sizeof(buf)-1));
3205 bool enable;
3206
3207 if (copy_from_user(buf, user_buf, buf_size))
3208 return -EFAULT;
3209
3210 buf[buf_size] = '\0';
3211 if (strtobool(buf, &enable))
3212 return -EINVAL;
3213
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -07003214 if (enable == hci_dev_test_flag(hdev, HCI_FORCE_BREDR_SMP))
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003215 return -EALREADY;
3216
3217 if (enable) {
3218 struct l2cap_chan *chan;
3219
3220 chan = smp_add_cid(hdev, L2CAP_CID_SMP_BREDR);
3221 if (IS_ERR(chan))
3222 return PTR_ERR(chan);
3223
3224 hdev->smp_bredr_data = chan;
3225 } else {
3226 struct l2cap_chan *chan;
3227
3228 chan = hdev->smp_bredr_data;
3229 hdev->smp_bredr_data = NULL;
3230 smp_del_chan(chan);
3231 }
3232
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -07003233 hci_dev_change_flag(hdev, HCI_FORCE_BREDR_SMP);
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003234
3235 return count;
3236}
3237
3238static const struct file_operations force_bredr_smp_fops = {
3239 .open = simple_open,
3240 .read = force_bredr_smp_read,
3241 .write = force_bredr_smp_write,
3242 .llseek = default_llseek,
3243};
3244
Johan Hedbergef8efe42014-08-13 15:12:32 +03003245int smp_register(struct hci_dev *hdev)
3246{
3247 struct l2cap_chan *chan;
3248
3249 BT_DBG("%s", hdev->name);
3250
Marcel Holtmann7e7ec442015-01-14 15:43:10 -08003251 /* If the controller does not support Low Energy operation, then
3252 * there is also no need to register any SMP channel.
3253 */
3254 if (!lmp_le_capable(hdev))
3255 return 0;
3256
Marcel Holtmann2b8df322015-01-15 08:04:21 -08003257 if (WARN_ON(hdev->smp_data)) {
3258 chan = hdev->smp_data;
3259 hdev->smp_data = NULL;
3260 smp_del_chan(chan);
3261 }
3262
Johan Hedbergef8efe42014-08-13 15:12:32 +03003263 chan = smp_add_cid(hdev, L2CAP_CID_SMP);
3264 if (IS_ERR(chan))
3265 return PTR_ERR(chan);
3266
3267 hdev->smp_data = chan;
3268
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003269 /* If the controller does not support BR/EDR Secure Connections
3270 * feature, then the BR/EDR SMP channel shall not be present.
3271 *
3272 * To test this with Bluetooth 4.0 controllers, create a debugfs
3273 * switch that allows forcing BR/EDR SMP support and accepting
3274 * cross-transport pairing on non-AES encrypted connections.
3275 */
3276 if (!lmp_sc_capable(hdev)) {
3277 debugfs_create_file("force_bredr_smp", 0644, hdev->debugfs,
3278 hdev, &force_bredr_smp_fops);
Johan Hedbergef8efe42014-08-13 15:12:32 +03003279 return 0;
Marcel Holtmann300acfde2014-12-31 14:43:16 -08003280 }
Johan Hedbergef8efe42014-08-13 15:12:32 +03003281
Marcel Holtmann2b8df322015-01-15 08:04:21 -08003282 if (WARN_ON(hdev->smp_bredr_data)) {
3283 chan = hdev->smp_bredr_data;
3284 hdev->smp_bredr_data = NULL;
3285 smp_del_chan(chan);
3286 }
3287
Johan Hedbergef8efe42014-08-13 15:12:32 +03003288 chan = smp_add_cid(hdev, L2CAP_CID_SMP_BREDR);
3289 if (IS_ERR(chan)) {
3290 int err = PTR_ERR(chan);
3291 chan = hdev->smp_data;
3292 hdev->smp_data = NULL;
3293 smp_del_chan(chan);
3294 return err;
3295 }
3296
3297 hdev->smp_bredr_data = chan;
3298
3299 return 0;
3300}
3301
3302void smp_unregister(struct hci_dev *hdev)
3303{
3304 struct l2cap_chan *chan;
3305
3306 if (hdev->smp_bredr_data) {
3307 chan = hdev->smp_bredr_data;
3308 hdev->smp_bredr_data = NULL;
3309 smp_del_chan(chan);
3310 }
3311
3312 if (hdev->smp_data) {
3313 chan = hdev->smp_data;
3314 hdev->smp_data = NULL;
3315 smp_del_chan(chan);
3316 }
3317}
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003318
3319#if IS_ENABLED(CONFIG_BT_SELFTEST_SMP)
3320
Johan Hedbergcfc41982014-12-30 09:50:40 +02003321static int __init test_ah(struct crypto_blkcipher *tfm_aes)
3322{
3323 const u8 irk[16] = {
3324 0x9b, 0x7d, 0x39, 0x0a, 0xa6, 0x10, 0x10, 0x34,
3325 0x05, 0xad, 0xc8, 0x57, 0xa3, 0x34, 0x02, 0xec };
3326 const u8 r[3] = { 0x94, 0x81, 0x70 };
3327 const u8 exp[3] = { 0xaa, 0xfb, 0x0d };
3328 u8 res[3];
3329 int err;
3330
3331 err = smp_ah(tfm_aes, irk, r, res);
3332 if (err)
3333 return err;
3334
3335 if (memcmp(res, exp, 3))
3336 return -EINVAL;
3337
3338 return 0;
3339}
3340
3341static int __init test_c1(struct crypto_blkcipher *tfm_aes)
3342{
3343 const u8 k[16] = {
3344 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3345 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
3346 const u8 r[16] = {
3347 0xe0, 0x2e, 0x70, 0xc6, 0x4e, 0x27, 0x88, 0x63,
3348 0x0e, 0x6f, 0xad, 0x56, 0x21, 0xd5, 0x83, 0x57 };
3349 const u8 preq[7] = { 0x01, 0x01, 0x00, 0x00, 0x10, 0x07, 0x07 };
3350 const u8 pres[7] = { 0x02, 0x03, 0x00, 0x00, 0x08, 0x00, 0x05 };
3351 const u8 _iat = 0x01;
3352 const u8 _rat = 0x00;
3353 const bdaddr_t ra = { { 0xb6, 0xb5, 0xb4, 0xb3, 0xb2, 0xb1 } };
3354 const bdaddr_t ia = { { 0xa6, 0xa5, 0xa4, 0xa3, 0xa2, 0xa1 } };
3355 const u8 exp[16] = {
3356 0x86, 0x3b, 0xf1, 0xbe, 0xc5, 0x4d, 0xa7, 0xd2,
3357 0xea, 0x88, 0x89, 0x87, 0xef, 0x3f, 0x1e, 0x1e };
3358 u8 res[16];
3359 int err;
3360
3361 err = smp_c1(tfm_aes, k, r, preq, pres, _iat, &ia, _rat, &ra, res);
3362 if (err)
3363 return err;
3364
3365 if (memcmp(res, exp, 16))
3366 return -EINVAL;
3367
3368 return 0;
3369}
3370
3371static int __init test_s1(struct crypto_blkcipher *tfm_aes)
3372{
3373 const u8 k[16] = {
3374 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
3375 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
3376 const u8 r1[16] = {
3377 0x88, 0x77, 0x66, 0x55, 0x44, 0x33, 0x22, 0x11 };
3378 const u8 r2[16] = {
3379 0x00, 0xff, 0xee, 0xdd, 0xcc, 0xbb, 0xaa, 0x99 };
3380 const u8 exp[16] = {
3381 0x62, 0xa0, 0x6d, 0x79, 0xae, 0x16, 0x42, 0x5b,
3382 0x9b, 0xf4, 0xb0, 0xe8, 0xf0, 0xe1, 0x1f, 0x9a };
3383 u8 res[16];
3384 int err;
3385
3386 err = smp_s1(tfm_aes, k, r1, r2, res);
3387 if (err)
3388 return err;
3389
3390 if (memcmp(res, exp, 16))
3391 return -EINVAL;
3392
3393 return 0;
3394}
3395
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003396static int __init test_f4(struct crypto_hash *tfm_cmac)
3397{
3398 const u8 u[32] = {
3399 0xe6, 0x9d, 0x35, 0x0e, 0x48, 0x01, 0x03, 0xcc,
3400 0xdb, 0xfd, 0xf4, 0xac, 0x11, 0x91, 0xf4, 0xef,
3401 0xb9, 0xa5, 0xf9, 0xe9, 0xa7, 0x83, 0x2c, 0x5e,
3402 0x2c, 0xbe, 0x97, 0xf2, 0xd2, 0x03, 0xb0, 0x20 };
3403 const u8 v[32] = {
3404 0xfd, 0xc5, 0x7f, 0xf4, 0x49, 0xdd, 0x4f, 0x6b,
3405 0xfb, 0x7c, 0x9d, 0xf1, 0xc2, 0x9a, 0xcb, 0x59,
3406 0x2a, 0xe7, 0xd4, 0xee, 0xfb, 0xfc, 0x0a, 0x90,
3407 0x9a, 0xbb, 0xf6, 0x32, 0x3d, 0x8b, 0x18, 0x55 };
3408 const u8 x[16] = {
3409 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3410 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3411 const u8 z = 0x00;
3412 const u8 exp[16] = {
3413 0x2d, 0x87, 0x74, 0xa9, 0xbe, 0xa1, 0xed, 0xf1,
3414 0x1c, 0xbd, 0xa9, 0x07, 0xf1, 0x16, 0xc9, 0xf2 };
3415 u8 res[16];
3416 int err;
3417
3418 err = smp_f4(tfm_cmac, u, v, x, z, res);
3419 if (err)
3420 return err;
3421
3422 if (memcmp(res, exp, 16))
3423 return -EINVAL;
3424
3425 return 0;
3426}
3427
3428static int __init test_f5(struct crypto_hash *tfm_cmac)
3429{
3430 const u8 w[32] = {
3431 0x98, 0xa6, 0xbf, 0x73, 0xf3, 0x34, 0x8d, 0x86,
3432 0xf1, 0x66, 0xf8, 0xb4, 0x13, 0x6b, 0x79, 0x99,
3433 0x9b, 0x7d, 0x39, 0x0a, 0xa6, 0x10, 0x10, 0x34,
3434 0x05, 0xad, 0xc8, 0x57, 0xa3, 0x34, 0x02, 0xec };
3435 const u8 n1[16] = {
3436 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3437 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3438 const u8 n2[16] = {
3439 0xcf, 0xc4, 0x3d, 0xff, 0xf7, 0x83, 0x65, 0x21,
3440 0x6e, 0x5f, 0xa7, 0x25, 0xcc, 0xe7, 0xe8, 0xa6 };
3441 const u8 a1[7] = { 0xce, 0xbf, 0x37, 0x37, 0x12, 0x56, 0x00 };
3442 const u8 a2[7] = { 0xc1, 0xcf, 0x2d, 0x70, 0x13, 0xa7, 0x00 };
3443 const u8 exp_ltk[16] = {
3444 0x38, 0x0a, 0x75, 0x94, 0xb5, 0x22, 0x05, 0x98,
3445 0x23, 0xcd, 0xd7, 0x69, 0x11, 0x79, 0x86, 0x69 };
3446 const u8 exp_mackey[16] = {
3447 0x20, 0x6e, 0x63, 0xce, 0x20, 0x6a, 0x3f, 0xfd,
3448 0x02, 0x4a, 0x08, 0xa1, 0x76, 0xf1, 0x65, 0x29 };
3449 u8 mackey[16], ltk[16];
3450 int err;
3451
3452 err = smp_f5(tfm_cmac, w, n1, n2, a1, a2, mackey, ltk);
3453 if (err)
3454 return err;
3455
3456 if (memcmp(mackey, exp_mackey, 16))
3457 return -EINVAL;
3458
3459 if (memcmp(ltk, exp_ltk, 16))
3460 return -EINVAL;
3461
3462 return 0;
3463}
3464
3465static int __init test_f6(struct crypto_hash *tfm_cmac)
3466{
3467 const u8 w[16] = {
3468 0x20, 0x6e, 0x63, 0xce, 0x20, 0x6a, 0x3f, 0xfd,
3469 0x02, 0x4a, 0x08, 0xa1, 0x76, 0xf1, 0x65, 0x29 };
3470 const u8 n1[16] = {
3471 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3472 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3473 const u8 n2[16] = {
3474 0xcf, 0xc4, 0x3d, 0xff, 0xf7, 0x83, 0x65, 0x21,
3475 0x6e, 0x5f, 0xa7, 0x25, 0xcc, 0xe7, 0xe8, 0xa6 };
3476 const u8 r[16] = {
3477 0xc8, 0x0f, 0x2d, 0x0c, 0xd2, 0x42, 0xda, 0x08,
3478 0x54, 0xbb, 0x53, 0xb4, 0x3b, 0x34, 0xa3, 0x12 };
3479 const u8 io_cap[3] = { 0x02, 0x01, 0x01 };
3480 const u8 a1[7] = { 0xce, 0xbf, 0x37, 0x37, 0x12, 0x56, 0x00 };
3481 const u8 a2[7] = { 0xc1, 0xcf, 0x2d, 0x70, 0x13, 0xa7, 0x00 };
3482 const u8 exp[16] = {
3483 0x61, 0x8f, 0x95, 0xda, 0x09, 0x0b, 0x6c, 0xd2,
3484 0xc5, 0xe8, 0xd0, 0x9c, 0x98, 0x73, 0xc4, 0xe3 };
3485 u8 res[16];
3486 int err;
3487
3488 err = smp_f6(tfm_cmac, w, n1, n2, r, io_cap, a1, a2, res);
3489 if (err)
3490 return err;
3491
3492 if (memcmp(res, exp, 16))
3493 return -EINVAL;
3494
3495 return 0;
3496}
3497
3498static int __init test_g2(struct crypto_hash *tfm_cmac)
3499{
3500 const u8 u[32] = {
3501 0xe6, 0x9d, 0x35, 0x0e, 0x48, 0x01, 0x03, 0xcc,
3502 0xdb, 0xfd, 0xf4, 0xac, 0x11, 0x91, 0xf4, 0xef,
3503 0xb9, 0xa5, 0xf9, 0xe9, 0xa7, 0x83, 0x2c, 0x5e,
3504 0x2c, 0xbe, 0x97, 0xf2, 0xd2, 0x03, 0xb0, 0x20 };
3505 const u8 v[32] = {
3506 0xfd, 0xc5, 0x7f, 0xf4, 0x49, 0xdd, 0x4f, 0x6b,
3507 0xfb, 0x7c, 0x9d, 0xf1, 0xc2, 0x9a, 0xcb, 0x59,
3508 0x2a, 0xe7, 0xd4, 0xee, 0xfb, 0xfc, 0x0a, 0x90,
3509 0x9a, 0xbb, 0xf6, 0x32, 0x3d, 0x8b, 0x18, 0x55 };
3510 const u8 x[16] = {
3511 0xab, 0xae, 0x2b, 0x71, 0xec, 0xb2, 0xff, 0xff,
3512 0x3e, 0x73, 0x77, 0xd1, 0x54, 0x84, 0xcb, 0xd5 };
3513 const u8 y[16] = {
3514 0xcf, 0xc4, 0x3d, 0xff, 0xf7, 0x83, 0x65, 0x21,
3515 0x6e, 0x5f, 0xa7, 0x25, 0xcc, 0xe7, 0xe8, 0xa6 };
3516 const u32 exp_val = 0x2f9ed5ba % 1000000;
3517 u32 val;
3518 int err;
3519
3520 err = smp_g2(tfm_cmac, u, v, x, y, &val);
3521 if (err)
3522 return err;
3523
3524 if (val != exp_val)
3525 return -EINVAL;
3526
3527 return 0;
3528}
3529
3530static int __init test_h6(struct crypto_hash *tfm_cmac)
3531{
3532 const u8 w[16] = {
3533 0x9b, 0x7d, 0x39, 0x0a, 0xa6, 0x10, 0x10, 0x34,
3534 0x05, 0xad, 0xc8, 0x57, 0xa3, 0x34, 0x02, 0xec };
3535 const u8 key_id[4] = { 0x72, 0x62, 0x65, 0x6c };
3536 const u8 exp[16] = {
3537 0x99, 0x63, 0xb1, 0x80, 0xe2, 0xa9, 0xd3, 0xe8,
3538 0x1c, 0xc9, 0x6d, 0xe7, 0x02, 0xe1, 0x9a, 0x2d };
3539 u8 res[16];
3540 int err;
3541
3542 err = smp_h6(tfm_cmac, w, key_id, res);
3543 if (err)
3544 return err;
3545
3546 if (memcmp(res, exp, 16))
3547 return -EINVAL;
3548
3549 return 0;
3550}
3551
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003552static int __init run_selftests(struct crypto_blkcipher *tfm_aes,
3553 struct crypto_hash *tfm_cmac)
3554{
Marcel Holtmann255047b2014-12-30 00:11:20 -08003555 ktime_t calltime, delta, rettime;
3556 unsigned long long duration;
Johan Hedbergcfc41982014-12-30 09:50:40 +02003557 int err;
3558
Marcel Holtmann255047b2014-12-30 00:11:20 -08003559 calltime = ktime_get();
3560
Johan Hedbergcfc41982014-12-30 09:50:40 +02003561 err = test_ah(tfm_aes);
3562 if (err) {
3563 BT_ERR("smp_ah test failed");
3564 return err;
3565 }
3566
3567 err = test_c1(tfm_aes);
3568 if (err) {
3569 BT_ERR("smp_c1 test failed");
3570 return err;
3571 }
3572
3573 err = test_s1(tfm_aes);
3574 if (err) {
3575 BT_ERR("smp_s1 test failed");
3576 return err;
3577 }
3578
Johan Hedbergfb2969a2014-12-30 09:50:41 +02003579 err = test_f4(tfm_cmac);
3580 if (err) {
3581 BT_ERR("smp_f4 test failed");
3582 return err;
3583 }
3584
3585 err = test_f5(tfm_cmac);
3586 if (err) {
3587 BT_ERR("smp_f5 test failed");
3588 return err;
3589 }
3590
3591 err = test_f6(tfm_cmac);
3592 if (err) {
3593 BT_ERR("smp_f6 test failed");
3594 return err;
3595 }
3596
3597 err = test_g2(tfm_cmac);
3598 if (err) {
3599 BT_ERR("smp_g2 test failed");
3600 return err;
3601 }
3602
3603 err = test_h6(tfm_cmac);
3604 if (err) {
3605 BT_ERR("smp_h6 test failed");
3606 return err;
3607 }
3608
Marcel Holtmann255047b2014-12-30 00:11:20 -08003609 rettime = ktime_get();
3610 delta = ktime_sub(rettime, calltime);
3611 duration = (unsigned long long) ktime_to_ns(delta) >> 10;
3612
Marcel Holtmann5ced2462015-01-12 23:09:48 -08003613 BT_INFO("SMP test passed in %llu usecs", duration);
Johan Hedberg0a2b0f02014-12-30 09:50:39 +02003614
3615 return 0;
3616}
3617
3618int __init bt_selftest_smp(void)
3619{
3620 struct crypto_blkcipher *tfm_aes;
3621 struct crypto_hash *tfm_cmac;
3622 int err;
3623
3624 tfm_aes = crypto_alloc_blkcipher("ecb(aes)", 0, CRYPTO_ALG_ASYNC);
3625 if (IS_ERR(tfm_aes)) {
3626 BT_ERR("Unable to create ECB crypto context");
3627 return PTR_ERR(tfm_aes);
3628 }
3629
3630 tfm_cmac = crypto_alloc_hash("cmac(aes)", 0, CRYPTO_ALG_ASYNC);
3631 if (IS_ERR(tfm_cmac)) {
3632 BT_ERR("Unable to create CMAC crypto context");
3633 crypto_free_blkcipher(tfm_aes);
3634 return PTR_ERR(tfm_cmac);
3635 }
3636
3637 err = run_selftests(tfm_aes, tfm_cmac);
3638
3639 crypto_free_hash(tfm_cmac);
3640 crypto_free_blkcipher(tfm_aes);
3641
3642 return err;
3643}
3644
3645#endif