Bluetooth: Reject an encryption request when the key isn't found
[deliverable/linux.git] / net / bluetooth / smp.c
CommitLineData
eb492e01
AB
1/*
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
23#include <net/bluetooth/bluetooth.h>
24#include <net/bluetooth/hci_core.h>
25#include <net/bluetooth/l2cap.h>
26#include <net/bluetooth/smp.h>
d22ef0bc 27#include <linux/crypto.h>
f70490e6 28#include <linux/scatterlist.h>
d22ef0bc
AB
29#include <crypto/b128ops.h>
30
5d3de7df
VCG
31#define SMP_TIMEOUT 30000 /* 30 seconds */
32
d22ef0bc
AB
33static inline void swap128(u8 src[16], u8 dst[16])
34{
35 int i;
36 for (i = 0; i < 16; i++)
37 dst[15 - i] = src[i];
38}
39
40static inline void swap56(u8 src[7], u8 dst[7])
41{
42 int i;
43 for (i = 0; i < 7; i++)
44 dst[6 - i] = src[i];
45}
46
47static int smp_e(struct crypto_blkcipher *tfm, const u8 *k, u8 *r)
48{
49 struct blkcipher_desc desc;
50 struct scatterlist sg;
51 int err, iv_len;
52 unsigned char iv[128];
53
54 if (tfm == NULL) {
55 BT_ERR("tfm %p", tfm);
56 return -EINVAL;
57 }
58
59 desc.tfm = tfm;
60 desc.flags = 0;
61
62 err = crypto_blkcipher_setkey(tfm, k, 16);
63 if (err) {
64 BT_ERR("cipher setkey failed: %d", err);
65 return err;
66 }
67
68 sg_init_one(&sg, r, 16);
69
70 iv_len = crypto_blkcipher_ivsize(tfm);
71 if (iv_len) {
72 memset(&iv, 0xff, iv_len);
73 crypto_blkcipher_set_iv(tfm, iv, iv_len);
74 }
75
76 err = crypto_blkcipher_encrypt(&desc, &sg, &sg, 16);
77 if (err)
78 BT_ERR("Encrypt data error %d", err);
79
80 return err;
81}
82
83static int smp_c1(struct crypto_blkcipher *tfm, u8 k[16], u8 r[16],
84 u8 preq[7], u8 pres[7], u8 _iat, bdaddr_t *ia,
85 u8 _rat, bdaddr_t *ra, u8 res[16])
86{
87 u8 p1[16], p2[16];
88 int err;
89
90 memset(p1, 0, 16);
91
92 /* p1 = pres || preq || _rat || _iat */
93 swap56(pres, p1);
94 swap56(preq, p1 + 7);
95 p1[14] = _rat;
96 p1[15] = _iat;
97
98 memset(p2, 0, 16);
99
100 /* p2 = padding || ia || ra */
101 baswap((bdaddr_t *) (p2 + 4), ia);
102 baswap((bdaddr_t *) (p2 + 10), ra);
103
104 /* res = r XOR p1 */
105 u128_xor((u128 *) res, (u128 *) r, (u128 *) p1);
106
107 /* res = e(k, res) */
108 err = smp_e(tfm, k, res);
109 if (err) {
110 BT_ERR("Encrypt data error");
111 return err;
112 }
113
114 /* res = res XOR p2 */
115 u128_xor((u128 *) res, (u128 *) res, (u128 *) p2);
116
117 /* res = e(k, res) */
118 err = smp_e(tfm, k, res);
119 if (err)
120 BT_ERR("Encrypt data error");
121
122 return err;
123}
124
125static int smp_s1(struct crypto_blkcipher *tfm, u8 k[16],
126 u8 r1[16], u8 r2[16], u8 _r[16])
127{
128 int err;
129
130 /* Just least significant octets from r1 and r2 are considered */
131 memcpy(_r, r1 + 8, 8);
132 memcpy(_r + 8, r2 + 8, 8);
133
134 err = smp_e(tfm, k, _r);
135 if (err)
136 BT_ERR("Encrypt data error");
137
138 return err;
139}
140
141static int smp_rand(u8 *buf)
142{
143 get_random_bytes(buf, 16);
144
145 return 0;
146}
eb492e01
AB
147
148static struct sk_buff *smp_build_cmd(struct l2cap_conn *conn, u8 code,
149 u16 dlen, void *data)
150{
151 struct sk_buff *skb;
152 struct l2cap_hdr *lh;
153 int len;
154
155 len = L2CAP_HDR_SIZE + sizeof(code) + dlen;
156
157 if (len > conn->mtu)
158 return NULL;
159
160 skb = bt_skb_alloc(len, GFP_ATOMIC);
161 if (!skb)
162 return NULL;
163
164 lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE);
165 lh->len = cpu_to_le16(sizeof(code) + dlen);
166 lh->cid = cpu_to_le16(L2CAP_CID_SMP);
167
168 memcpy(skb_put(skb, sizeof(code)), &code, sizeof(code));
169
170 memcpy(skb_put(skb, dlen), data, dlen);
171
172 return skb;
173}
174
175static void smp_send_cmd(struct l2cap_conn *conn, u8 code, u16 len, void *data)
176{
177 struct sk_buff *skb = smp_build_cmd(conn, code, len, data);
178
179 BT_DBG("code 0x%2.2x", code);
180
181 if (!skb)
182 return;
183
184 hci_send_acl(conn->hcon, skb, 0);
185}
186
da85e5e5
VCG
187static __u8 seclevel_to_authreq(__u8 level)
188{
189 switch (level) {
190 case BT_SECURITY_HIGH:
191 /* Right now we don't support bonding */
192 return SMP_AUTH_MITM;
193
194 default:
195 return SMP_AUTH_NONE;
196 }
197}
198
b8e66eac
VCG
199static void build_pairing_cmd(struct l2cap_conn *conn,
200 struct smp_cmd_pairing *cmd, __u8 authreq)
201{
202 cmd->io_capability = conn->hcon->io_capability;
203 cmd->oob_flag = SMP_OOB_NOT_PRESENT;
3158c50c 204 cmd->max_key_size = SMP_MAX_ENC_KEY_SIZE;
7034b911
VCG
205 cmd->init_key_dist = SMP_DIST_ENC_KEY | SMP_DIST_ID_KEY | SMP_DIST_SIGN;
206 cmd->resp_key_dist = SMP_DIST_ENC_KEY | SMP_DIST_ID_KEY | SMP_DIST_SIGN;
b8e66eac
VCG
207 cmd->auth_req = authreq;
208}
209
3158c50c
VCG
210static u8 check_enc_key_size(struct l2cap_conn *conn, __u8 max_key_size)
211{
212 if ((max_key_size > SMP_MAX_ENC_KEY_SIZE) ||
213 (max_key_size < SMP_MIN_ENC_KEY_SIZE))
214 return SMP_ENC_KEY_SIZE;
215
216 conn->smp_key_size = max_key_size;
217
218 return 0;
219}
220
da85e5e5 221static u8 smp_cmd_pairing_req(struct l2cap_conn *conn, struct sk_buff *skb)
88ba43b6 222{
3158c50c
VCG
223 struct smp_cmd_pairing rsp, *req = (void *) skb->data;
224 u8 key_size;
88ba43b6
AB
225
226 BT_DBG("conn %p", conn);
227
f01ead31 228 conn->preq[0] = SMP_CMD_PAIRING_REQ;
3158c50c
VCG
229 memcpy(&conn->preq[1], req, sizeof(*req));
230 skb_pull(skb, sizeof(*req));
88ba43b6 231
3158c50c 232 if (req->oob_flag)
da85e5e5
VCG
233 return SMP_OOB_NOT_AVAIL;
234
235 /* We didn't start the pairing, so no requirements */
3158c50c
VCG
236 build_pairing_cmd(conn, &rsp, SMP_AUTH_NONE);
237
238 key_size = min(req->max_key_size, rsp.max_key_size);
239 if (check_enc_key_size(conn, key_size))
240 return SMP_ENC_KEY_SIZE;
88ba43b6 241
7d24ddcc
AB
242 /* Just works */
243 memset(conn->tk, 0, sizeof(conn->tk));
244
f01ead31 245 conn->prsp[0] = SMP_CMD_PAIRING_RSP;
3158c50c 246 memcpy(&conn->prsp[1], &rsp, sizeof(rsp));
f01ead31 247
3158c50c 248 smp_send_cmd(conn, SMP_CMD_PAIRING_RSP, sizeof(rsp), &rsp);
da85e5e5 249
5d3de7df
VCG
250 mod_timer(&conn->security_timer, jiffies +
251 msecs_to_jiffies(SMP_TIMEOUT));
252
da85e5e5 253 return 0;
88ba43b6
AB
254}
255
da85e5e5 256static u8 smp_cmd_pairing_rsp(struct l2cap_conn *conn, struct sk_buff *skb)
88ba43b6 257{
3158c50c 258 struct smp_cmd_pairing *req, *rsp = (void *) skb->data;
88ba43b6 259 struct smp_cmd_pairing_confirm cp;
7d24ddcc
AB
260 struct crypto_blkcipher *tfm = conn->hcon->hdev->tfm;
261 int ret;
3158c50c 262 u8 res[16], key_size;
88ba43b6
AB
263
264 BT_DBG("conn %p", conn);
265
3158c50c
VCG
266 skb_pull(skb, sizeof(*rsp));
267
268 req = (void *) &conn->preq[1];
da85e5e5 269
3158c50c
VCG
270 key_size = min(req->max_key_size, rsp->max_key_size);
271 if (check_enc_key_size(conn, key_size))
272 return SMP_ENC_KEY_SIZE;
273
274 if (rsp->oob_flag)
da85e5e5
VCG
275 return SMP_OOB_NOT_AVAIL;
276
7d24ddcc
AB
277 /* Just works */
278 memset(conn->tk, 0, sizeof(conn->tk));
88ba43b6 279
f01ead31 280 conn->prsp[0] = SMP_CMD_PAIRING_RSP;
3158c50c 281 memcpy(&conn->prsp[1], rsp, sizeof(*rsp));
f01ead31 282
7d24ddcc
AB
283 ret = smp_rand(conn->prnd);
284 if (ret)
da85e5e5 285 return SMP_UNSPECIFIED;
7d24ddcc
AB
286
287 ret = smp_c1(tfm, conn->tk, conn->prnd, conn->preq, conn->prsp, 0,
288 conn->src, conn->hcon->dst_type, conn->dst, res);
289 if (ret)
da85e5e5 290 return SMP_UNSPECIFIED;
7d24ddcc
AB
291
292 swap128(res, cp.confirm_val);
293
88ba43b6 294 smp_send_cmd(conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cp), &cp);
da85e5e5
VCG
295
296 return 0;
88ba43b6
AB
297}
298
da85e5e5 299static u8 smp_cmd_pairing_confirm(struct l2cap_conn *conn, struct sk_buff *skb)
88ba43b6 300{
7d24ddcc
AB
301 struct crypto_blkcipher *tfm = conn->hcon->hdev->tfm;
302
88ba43b6
AB
303 BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave");
304
7d24ddcc
AB
305 memcpy(conn->pcnf, skb->data, sizeof(conn->pcnf));
306 skb_pull(skb, sizeof(conn->pcnf));
88ba43b6 307
7d24ddcc
AB
308 if (conn->hcon->out) {
309 u8 random[16];
88ba43b6 310
7d24ddcc 311 swap128(conn->prnd, random);
88ba43b6 312 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(random),
7d24ddcc 313 random);
88ba43b6 314 } else {
7d24ddcc
AB
315 struct smp_cmd_pairing_confirm cp;
316 int ret;
317 u8 res[16];
88ba43b6 318
7d24ddcc
AB
319 ret = smp_rand(conn->prnd);
320 if (ret)
da85e5e5 321 return SMP_UNSPECIFIED;
88ba43b6 322
7d24ddcc
AB
323 ret = smp_c1(tfm, conn->tk, conn->prnd, conn->preq, conn->prsp,
324 conn->hcon->dst_type, conn->dst,
325 0, conn->src, res);
326 if (ret)
da85e5e5 327 return SMP_CONFIRM_FAILED;
7d24ddcc
AB
328
329 swap128(res, cp.confirm_val);
330
331 smp_send_cmd(conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cp), &cp);
88ba43b6 332 }
da85e5e5 333
5d3de7df
VCG
334 mod_timer(&conn->security_timer, jiffies +
335 msecs_to_jiffies(SMP_TIMEOUT));
336
da85e5e5 337 return 0;
88ba43b6
AB
338}
339
da85e5e5 340static u8 smp_cmd_pairing_random(struct l2cap_conn *conn, struct sk_buff *skb)
88ba43b6 341{
a7a595f6
VCG
342 struct hci_conn *hcon = conn->hcon;
343 struct crypto_blkcipher *tfm = hcon->hdev->tfm;
7d24ddcc 344 int ret;
9b3d6740 345 u8 key[16], res[16], random[16], confirm[16];
7d24ddcc
AB
346
347 swap128(skb->data, random);
348 skb_pull(skb, sizeof(random));
349
a7a595f6
VCG
350 memset(hcon->ltk, 0, sizeof(hcon->ltk));
351
7d24ddcc
AB
352 if (conn->hcon->out)
353 ret = smp_c1(tfm, conn->tk, random, conn->preq, conn->prsp, 0,
354 conn->src, conn->hcon->dst_type, conn->dst,
355 res);
356 else
357 ret = smp_c1(tfm, conn->tk, random, conn->preq, conn->prsp,
358 conn->hcon->dst_type, conn->dst, 0, conn->src,
359 res);
360 if (ret)
da85e5e5 361 return SMP_UNSPECIFIED;
88ba43b6
AB
362
363 BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave");
364
7d24ddcc
AB
365 swap128(res, confirm);
366
367 if (memcmp(conn->pcnf, confirm, sizeof(conn->pcnf)) != 0) {
7d24ddcc 368 BT_ERR("Pairing failed (confirmation values mismatch)");
da85e5e5 369 return SMP_CONFIRM_FAILED;
7d24ddcc 370 }
88ba43b6
AB
371
372 if (conn->hcon->out) {
a7a595f6
VCG
373 __le16 ediv;
374 u8 rand[8];
375
7d24ddcc 376 smp_s1(tfm, conn->tk, random, conn->prnd, key);
a7a595f6 377 swap128(key, hcon->ltk);
7d24ddcc 378
3158c50c
VCG
379 memset(hcon->ltk + conn->smp_key_size, 0,
380 SMP_MAX_ENC_KEY_SIZE - conn->smp_key_size);
381
a7a595f6
VCG
382 memset(rand, 0, sizeof(rand));
383 ediv = 0;
384 hci_le_start_enc(hcon, ediv, rand, hcon->ltk);
88ba43b6 385 } else {
7d24ddcc
AB
386 u8 r[16];
387
388 swap128(conn->prnd, r);
389 smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(r), r);
390
391 smp_s1(tfm, conn->tk, conn->prnd, random, key);
a7a595f6 392 swap128(key, hcon->ltk);
3158c50c
VCG
393
394 memset(hcon->ltk + conn->smp_key_size, 0,
395 SMP_MAX_ENC_KEY_SIZE - conn->smp_key_size);
88ba43b6 396 }
da85e5e5
VCG
397
398 return 0;
88ba43b6
AB
399}
400
da85e5e5 401static u8 smp_cmd_security_req(struct l2cap_conn *conn, struct sk_buff *skb)
88ba43b6
AB
402{
403 struct smp_cmd_security_req *rp = (void *) skb->data;
404 struct smp_cmd_pairing cp;
f1cb9af5 405 struct hci_conn *hcon = conn->hcon;
88ba43b6
AB
406
407 BT_DBG("conn %p", conn);
408
f1cb9af5 409 if (test_bit(HCI_CONN_ENCRYPT_PEND, &hcon->pend))
da85e5e5 410 return 0;
f1cb9af5 411
88ba43b6 412 skb_pull(skb, sizeof(*rp));
88ba43b6 413
da85e5e5
VCG
414 memset(&cp, 0, sizeof(cp));
415 build_pairing_cmd(conn, &cp, rp->auth_req);
88ba43b6 416
f01ead31
AB
417 conn->preq[0] = SMP_CMD_PAIRING_REQ;
418 memcpy(&conn->preq[1], &cp, sizeof(cp));
419
88ba43b6 420 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp);
f1cb9af5 421
5d3de7df
VCG
422 mod_timer(&conn->security_timer, jiffies +
423 msecs_to_jiffies(SMP_TIMEOUT));
424
f1cb9af5 425 set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->pend);
f1cb9af5 426
da85e5e5 427 return 0;
88ba43b6
AB
428}
429
eb492e01
AB
430int smp_conn_security(struct l2cap_conn *conn, __u8 sec_level)
431{
3a0259bb 432 struct hci_conn *hcon = conn->hcon;
eb492e01
AB
433 __u8 authreq;
434
3a0259bb
VCG
435 BT_DBG("conn %p hcon %p level 0x%2.2x", conn, hcon, sec_level);
436
2e65c9d2
AG
437 if (!lmp_host_le_capable(hcon->hdev))
438 return 1;
439
3a0259bb
VCG
440 if (IS_ERR(hcon->hdev->tfm))
441 return 1;
eb492e01 442
f1cb9af5
VCG
443 if (test_bit(HCI_CONN_ENCRYPT_PEND, &hcon->pend))
444 return 0;
eb492e01 445
f1cb9af5
VCG
446 if (sec_level == BT_SECURITY_LOW)
447 return 1;
eb492e01 448
f1cb9af5 449 if (hcon->sec_level >= sec_level)
eb492e01 450 return 1;
f1cb9af5
VCG
451
452 authreq = seclevel_to_authreq(sec_level);
eb492e01 453
3a0259bb 454 if (hcon->link_mode & HCI_LM_MASTER) {
eb492e01 455 struct smp_cmd_pairing cp;
f01ead31 456
da85e5e5 457 build_pairing_cmd(conn, &cp, authreq);
f01ead31
AB
458 conn->preq[0] = SMP_CMD_PAIRING_REQ;
459 memcpy(&conn->preq[1], &cp, sizeof(cp));
460
5d3de7df
VCG
461 mod_timer(&conn->security_timer, jiffies +
462 msecs_to_jiffies(SMP_TIMEOUT));
463
eb492e01
AB
464 smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp);
465 } else {
466 struct smp_cmd_security_req cp;
467 cp.auth_req = authreq;
468 smp_send_cmd(conn, SMP_CMD_SECURITY_REQ, sizeof(cp), &cp);
469 }
470
f1cb9af5
VCG
471 hcon->pending_sec_level = sec_level;
472 set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->pend);
473
eb492e01
AB
474 return 0;
475}
476
7034b911
VCG
477static int smp_cmd_encrypt_info(struct l2cap_conn *conn, struct sk_buff *skb)
478{
479 BT_DBG("conn %p", conn);
480 /* FIXME: store the ltk */
481 return 0;
482}
483
484static int smp_cmd_master_ident(struct l2cap_conn *conn, struct sk_buff *skb)
485{
486 struct smp_cmd_pairing *paircmd = (void *) &conn->prsp[1];
487 u8 keydist = paircmd->init_key_dist;
488
489 BT_DBG("keydist 0x%x", keydist);
490 /* FIXME: store ediv and rand */
491
492 smp_distribute_keys(conn, 1);
493
494 return 0;
495}
496
eb492e01
AB
497int smp_sig_channel(struct l2cap_conn *conn, struct sk_buff *skb)
498{
499 __u8 code = skb->data[0];
500 __u8 reason;
501 int err = 0;
502
2e65c9d2
AG
503 if (!lmp_host_le_capable(conn->hcon->hdev)) {
504 err = -ENOTSUPP;
505 reason = SMP_PAIRING_NOTSUPP;
506 goto done;
507 }
508
3a0259bb
VCG
509 if (IS_ERR(conn->hcon->hdev->tfm)) {
510 err = PTR_ERR(conn->hcon->hdev->tfm);
511 reason = SMP_PAIRING_NOTSUPP;
512 goto done;
513 }
514
eb492e01
AB
515 skb_pull(skb, sizeof(code));
516
517 switch (code) {
518 case SMP_CMD_PAIRING_REQ:
da85e5e5 519 reason = smp_cmd_pairing_req(conn, skb);
eb492e01
AB
520 break;
521
522 case SMP_CMD_PAIRING_FAIL:
da85e5e5
VCG
523 reason = 0;
524 err = -EPERM;
eb492e01
AB
525 break;
526
527 case SMP_CMD_PAIRING_RSP:
da85e5e5 528 reason = smp_cmd_pairing_rsp(conn, skb);
88ba43b6
AB
529 break;
530
531 case SMP_CMD_SECURITY_REQ:
da85e5e5 532 reason = smp_cmd_security_req(conn, skb);
88ba43b6
AB
533 break;
534
eb492e01 535 case SMP_CMD_PAIRING_CONFIRM:
da85e5e5 536 reason = smp_cmd_pairing_confirm(conn, skb);
88ba43b6
AB
537 break;
538
eb492e01 539 case SMP_CMD_PAIRING_RANDOM:
da85e5e5 540 reason = smp_cmd_pairing_random(conn, skb);
88ba43b6
AB
541 break;
542
eb492e01 543 case SMP_CMD_ENCRYPT_INFO:
7034b911
VCG
544 reason = smp_cmd_encrypt_info(conn, skb);
545 break;
546
eb492e01 547 case SMP_CMD_MASTER_IDENT:
7034b911
VCG
548 reason = smp_cmd_master_ident(conn, skb);
549 break;
550
eb492e01
AB
551 case SMP_CMD_IDENT_INFO:
552 case SMP_CMD_IDENT_ADDR_INFO:
553 case SMP_CMD_SIGN_INFO:
7034b911
VCG
554 /* Just ignored */
555 reason = 0;
556 break;
557
eb492e01
AB
558 default:
559 BT_DBG("Unknown command code 0x%2.2x", code);
560
561 reason = SMP_CMD_NOTSUPP;
eb492e01 562 err = -EOPNOTSUPP;
3a0259bb 563 goto done;
eb492e01
AB
564 }
565
3a0259bb
VCG
566done:
567 if (reason)
568 smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason),
569 &reason);
570
eb492e01
AB
571 kfree_skb(skb);
572 return err;
573}
7034b911
VCG
574
575int smp_distribute_keys(struct l2cap_conn *conn, __u8 force)
576{
577 struct smp_cmd_pairing *req, *rsp;
578 __u8 *keydist;
579
580 BT_DBG("conn %p force %d", conn, force);
581
582 if (IS_ERR(conn->hcon->hdev->tfm))
583 return PTR_ERR(conn->hcon->hdev->tfm);
584
585 rsp = (void *) &conn->prsp[1];
586
587 /* The responder sends its keys first */
588 if (!force && conn->hcon->out && (rsp->resp_key_dist & 0x07))
589 return 0;
590
591 req = (void *) &conn->preq[1];
592
593 if (conn->hcon->out) {
594 keydist = &rsp->init_key_dist;
595 *keydist &= req->init_key_dist;
596 } else {
597 keydist = &rsp->resp_key_dist;
598 *keydist &= req->resp_key_dist;
599 }
600
601
602 BT_DBG("keydist 0x%x", *keydist);
603
604 if (*keydist & SMP_DIST_ENC_KEY) {
605 struct smp_cmd_encrypt_info enc;
606 struct smp_cmd_master_ident ident;
607 __le16 ediv;
608
609 get_random_bytes(enc.ltk, sizeof(enc.ltk));
610 get_random_bytes(&ediv, sizeof(ediv));
611 get_random_bytes(ident.rand, sizeof(ident.rand));
612
613 smp_send_cmd(conn, SMP_CMD_ENCRYPT_INFO, sizeof(enc), &enc);
614
615 ident.ediv = cpu_to_le16(ediv);
616
617 smp_send_cmd(conn, SMP_CMD_MASTER_IDENT, sizeof(ident), &ident);
618
619 *keydist &= ~SMP_DIST_ENC_KEY;
620 }
621
622 if (*keydist & SMP_DIST_ID_KEY) {
623 struct smp_cmd_ident_addr_info addrinfo;
624 struct smp_cmd_ident_info idinfo;
625
626 /* Send a dummy key */
627 get_random_bytes(idinfo.irk, sizeof(idinfo.irk));
628
629 smp_send_cmd(conn, SMP_CMD_IDENT_INFO, sizeof(idinfo), &idinfo);
630
631 /* Just public address */
632 memset(&addrinfo, 0, sizeof(addrinfo));
633 bacpy(&addrinfo.bdaddr, conn->src);
634
635 smp_send_cmd(conn, SMP_CMD_IDENT_ADDR_INFO, sizeof(addrinfo),
636 &addrinfo);
637
638 *keydist &= ~SMP_DIST_ID_KEY;
639 }
640
641 if (*keydist & SMP_DIST_SIGN) {
642 struct smp_cmd_sign_info sign;
643
644 /* Send a dummy key */
645 get_random_bytes(sign.csrk, sizeof(sign.csrk));
646
647 smp_send_cmd(conn, SMP_CMD_SIGN_INFO, sizeof(sign), &sign);
648
649 *keydist &= ~SMP_DIST_SIGN;
650 }
651
652 return 0;
653}
This page took 0.128176 seconds and 5 git commands to generate.