Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 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 | |
Gustavo Padovan | 8c520a5 | 2012-05-23 04:04:22 -0300 | [diff] [blame] | 23 | #include <linux/crypto.h> |
| 24 | #include <linux/scatterlist.h> |
| 25 | #include <crypto/b128ops.h> |
| 26 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 27 | #include <net/bluetooth/bluetooth.h> |
| 28 | #include <net/bluetooth/hci_core.h> |
| 29 | #include <net/bluetooth/l2cap.h> |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 30 | #include <net/bluetooth/mgmt.h> |
Marcel Holtmann | ac4b723 | 2013-10-10 14:54:16 -0700 | [diff] [blame] | 31 | |
| 32 | #include "smp.h" |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 33 | |
Marcel Holtmann | 17b02e6 | 2012-03-01 14:32:37 -0800 | [diff] [blame] | 34 | #define SMP_TIMEOUT msecs_to_jiffies(30000) |
Vinicius Costa Gomes | 5d3de7d | 2011-06-14 13:37:41 -0300 | [diff] [blame] | 35 | |
Johan Hedberg | 065a13e | 2012-10-11 16:26:06 +0200 | [diff] [blame] | 36 | #define AUTH_REQ_MASK 0x07 |
| 37 | |
Johan Hedberg | 66bed1a | 2014-03-18 12:58:23 +0200 | [diff] [blame] | 38 | static inline void swap128(const u8 src[16], u8 dst[16]) |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 39 | { |
| 40 | int i; |
| 41 | for (i = 0; i < 16; i++) |
| 42 | dst[15 - i] = src[i]; |
| 43 | } |
| 44 | |
Johan Hedberg | 66bed1a | 2014-03-18 12:58:23 +0200 | [diff] [blame] | 45 | static inline void swap56(const u8 src[7], u8 dst[7]) |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 46 | { |
| 47 | int i; |
| 48 | for (i = 0; i < 7; i++) |
| 49 | dst[6 - i] = src[i]; |
| 50 | } |
| 51 | |
| 52 | static int smp_e(struct crypto_blkcipher *tfm, const u8 *k, u8 *r) |
| 53 | { |
| 54 | struct blkcipher_desc desc; |
| 55 | struct scatterlist sg; |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 56 | uint8_t tmp[16], data[16]; |
Johan Hedberg | 201a592 | 2013-12-02 10:49:04 +0200 | [diff] [blame] | 57 | int err; |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 58 | |
| 59 | if (tfm == NULL) { |
| 60 | BT_ERR("tfm %p", tfm); |
| 61 | return -EINVAL; |
| 62 | } |
| 63 | |
| 64 | desc.tfm = tfm; |
| 65 | desc.flags = 0; |
| 66 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 67 | /* The most significant octet of key corresponds to k[0] */ |
| 68 | swap128(k, tmp); |
| 69 | |
| 70 | err = crypto_blkcipher_setkey(tfm, tmp, 16); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 71 | if (err) { |
| 72 | BT_ERR("cipher setkey failed: %d", err); |
| 73 | return err; |
| 74 | } |
| 75 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 76 | /* Most significant octet of plaintextData corresponds to data[0] */ |
| 77 | swap128(r, data); |
| 78 | |
| 79 | sg_init_one(&sg, data, 16); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 80 | |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 81 | err = crypto_blkcipher_encrypt(&desc, &sg, &sg, 16); |
| 82 | if (err) |
| 83 | BT_ERR("Encrypt data error %d", err); |
| 84 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 85 | /* Most significant octet of encryptedData corresponds to data[0] */ |
| 86 | swap128(data, r); |
| 87 | |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 88 | return err; |
| 89 | } |
| 90 | |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 91 | static int smp_ah(struct crypto_blkcipher *tfm, u8 irk[16], u8 r[3], u8 res[3]) |
| 92 | { |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 93 | u8 _res[16]; |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 94 | int err; |
| 95 | |
| 96 | /* r' = padding || r */ |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 97 | memcpy(_res, r, 3); |
| 98 | memset(_res + 3, 0, 13); |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 99 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 100 | err = smp_e(tfm, irk, _res); |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 101 | if (err) { |
| 102 | BT_ERR("Encrypt error"); |
| 103 | return err; |
| 104 | } |
| 105 | |
| 106 | /* The output of the random address function ah is: |
| 107 | * ah(h, r) = e(k, r') mod 2^24 |
| 108 | * The output of the security function e is then truncated to 24 bits |
| 109 | * by taking the least significant 24 bits of the output of e as the |
| 110 | * result of ah. |
| 111 | */ |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 112 | memcpy(res, _res, 3); |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 113 | |
| 114 | return 0; |
| 115 | } |
| 116 | |
| 117 | bool smp_irk_matches(struct crypto_blkcipher *tfm, u8 irk[16], |
| 118 | bdaddr_t *bdaddr) |
| 119 | { |
| 120 | u8 hash[3]; |
| 121 | int err; |
| 122 | |
| 123 | BT_DBG("RPA %pMR IRK %*phN", bdaddr, 16, irk); |
| 124 | |
| 125 | err = smp_ah(tfm, irk, &bdaddr->b[3], hash); |
| 126 | if (err) |
| 127 | return false; |
| 128 | |
| 129 | return !memcmp(bdaddr->b, hash, 3); |
| 130 | } |
| 131 | |
Johan Hedberg | b1e2b3a | 2014-02-23 19:42:19 +0200 | [diff] [blame] | 132 | int smp_generate_rpa(struct crypto_blkcipher *tfm, u8 irk[16], bdaddr_t *rpa) |
| 133 | { |
| 134 | int err; |
| 135 | |
| 136 | get_random_bytes(&rpa->b[3], 3); |
| 137 | |
| 138 | rpa->b[5] &= 0x3f; /* Clear two most significant bits */ |
| 139 | rpa->b[5] |= 0x40; /* Set second most significant bit */ |
| 140 | |
| 141 | err = smp_ah(tfm, irk, &rpa->b[3], rpa->b); |
| 142 | if (err < 0) |
| 143 | return err; |
| 144 | |
| 145 | BT_DBG("RPA %pMR", rpa); |
| 146 | |
| 147 | return 0; |
| 148 | } |
| 149 | |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 150 | static int smp_c1(struct crypto_blkcipher *tfm, u8 k[16], u8 r[16], |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 151 | u8 preq[7], u8 pres[7], u8 _iat, bdaddr_t *ia, |
| 152 | u8 _rat, bdaddr_t *ra, u8 res[16]) |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 153 | { |
| 154 | u8 p1[16], p2[16]; |
| 155 | int err; |
| 156 | |
| 157 | memset(p1, 0, 16); |
| 158 | |
| 159 | /* p1 = pres || preq || _rat || _iat */ |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 160 | p1[0] = _iat; |
| 161 | p1[1] = _rat; |
| 162 | memcpy(p1 + 2, preq, 7); |
| 163 | memcpy(p1 + 9, pres, 7); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 164 | |
| 165 | /* p2 = padding || ia || ra */ |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 166 | memcpy(p2, ra, 6); |
| 167 | memcpy(p2 + 6, ia, 6); |
| 168 | memset(p2 + 12, 0, 4); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 169 | |
| 170 | /* res = r XOR p1 */ |
| 171 | u128_xor((u128 *) res, (u128 *) r, (u128 *) p1); |
| 172 | |
| 173 | /* res = e(k, res) */ |
| 174 | err = smp_e(tfm, k, res); |
| 175 | if (err) { |
| 176 | BT_ERR("Encrypt data error"); |
| 177 | return err; |
| 178 | } |
| 179 | |
| 180 | /* res = res XOR p2 */ |
| 181 | u128_xor((u128 *) res, (u128 *) res, (u128 *) p2); |
| 182 | |
| 183 | /* res = e(k, res) */ |
| 184 | err = smp_e(tfm, k, res); |
| 185 | if (err) |
| 186 | BT_ERR("Encrypt data error"); |
| 187 | |
| 188 | return err; |
| 189 | } |
| 190 | |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 191 | static int smp_s1(struct crypto_blkcipher *tfm, u8 k[16], u8 r1[16], |
| 192 | u8 r2[16], u8 _r[16]) |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 193 | { |
| 194 | int err; |
| 195 | |
| 196 | /* Just least significant octets from r1 and r2 are considered */ |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 197 | memcpy(_r, r2, 8); |
| 198 | memcpy(_r + 8, r1, 8); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 199 | |
| 200 | err = smp_e(tfm, k, _r); |
| 201 | if (err) |
| 202 | BT_ERR("Encrypt data error"); |
| 203 | |
| 204 | return err; |
| 205 | } |
| 206 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 207 | static struct sk_buff *smp_build_cmd(struct l2cap_conn *conn, u8 code, |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 208 | u16 dlen, void *data) |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 209 | { |
| 210 | struct sk_buff *skb; |
| 211 | struct l2cap_hdr *lh; |
| 212 | int len; |
| 213 | |
| 214 | len = L2CAP_HDR_SIZE + sizeof(code) + dlen; |
| 215 | |
| 216 | if (len > conn->mtu) |
| 217 | return NULL; |
| 218 | |
| 219 | skb = bt_skb_alloc(len, GFP_ATOMIC); |
| 220 | if (!skb) |
| 221 | return NULL; |
| 222 | |
| 223 | lh = (struct l2cap_hdr *) skb_put(skb, L2CAP_HDR_SIZE); |
| 224 | lh->len = cpu_to_le16(sizeof(code) + dlen); |
Joe Perches | dcf4adb | 2014-03-12 10:52:35 -0700 | [diff] [blame] | 225 | lh->cid = cpu_to_le16(L2CAP_CID_SMP); |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 226 | |
| 227 | memcpy(skb_put(skb, sizeof(code)), &code, sizeof(code)); |
| 228 | |
| 229 | memcpy(skb_put(skb, dlen), data, dlen); |
| 230 | |
| 231 | return skb; |
| 232 | } |
| 233 | |
| 234 | static void smp_send_cmd(struct l2cap_conn *conn, u8 code, u16 len, void *data) |
| 235 | { |
| 236 | struct sk_buff *skb = smp_build_cmd(conn, code, len, data); |
| 237 | |
| 238 | BT_DBG("code 0x%2.2x", code); |
| 239 | |
| 240 | if (!skb) |
| 241 | return; |
| 242 | |
Luiz Augusto von Dentz | 73d80de | 2011-11-02 15:52:01 +0200 | [diff] [blame] | 243 | skb->priority = HCI_PRIO_MAX; |
| 244 | hci_send_acl(conn->hchan, skb, 0); |
Vinicius Costa Gomes | e2dcd11 | 2011-08-19 21:06:50 -0300 | [diff] [blame] | 245 | |
Gustavo F. Padovan | 6c9d42a | 2011-12-20 10:57:27 -0200 | [diff] [blame] | 246 | cancel_delayed_work_sync(&conn->security_timer); |
Marcel Holtmann | 17b02e6 | 2012-03-01 14:32:37 -0800 | [diff] [blame] | 247 | schedule_delayed_work(&conn->security_timer, SMP_TIMEOUT); |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 248 | } |
| 249 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 250 | static __u8 authreq_to_seclevel(__u8 authreq) |
| 251 | { |
| 252 | if (authreq & SMP_AUTH_MITM) |
| 253 | return BT_SECURITY_HIGH; |
| 254 | else |
| 255 | return BT_SECURITY_MEDIUM; |
| 256 | } |
| 257 | |
| 258 | static __u8 seclevel_to_authreq(__u8 sec_level) |
| 259 | { |
| 260 | switch (sec_level) { |
| 261 | case BT_SECURITY_HIGH: |
| 262 | return SMP_AUTH_MITM | SMP_AUTH_BONDING; |
| 263 | case BT_SECURITY_MEDIUM: |
| 264 | return SMP_AUTH_BONDING; |
| 265 | default: |
| 266 | return SMP_AUTH_NONE; |
| 267 | } |
| 268 | } |
| 269 | |
Vinicius Costa Gomes | b8e66ea | 2011-06-09 18:50:52 -0300 | [diff] [blame] | 270 | static void build_pairing_cmd(struct l2cap_conn *conn, |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 271 | struct smp_cmd_pairing *req, |
| 272 | struct smp_cmd_pairing *rsp, __u8 authreq) |
Vinicius Costa Gomes | b8e66ea | 2011-06-09 18:50:52 -0300 | [diff] [blame] | 273 | { |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 274 | struct smp_chan *smp = conn->smp_chan; |
| 275 | struct hci_conn *hcon = conn->hcon; |
| 276 | struct hci_dev *hdev = hcon->hdev; |
| 277 | u8 local_dist = 0, remote_dist = 0; |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 278 | |
Johan Hedberg | a8b2d5c | 2012-01-08 23:11:15 +0200 | [diff] [blame] | 279 | if (test_bit(HCI_PAIRABLE, &conn->hcon->hdev->dev_flags)) { |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 280 | local_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN; |
| 281 | remote_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN; |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 282 | authreq |= SMP_AUTH_BONDING; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 283 | } else { |
| 284 | authreq &= ~SMP_AUTH_BONDING; |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 285 | } |
| 286 | |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 287 | if (test_bit(HCI_RPA_RESOLVING, &hdev->dev_flags)) |
| 288 | remote_dist |= SMP_DIST_ID_KEY; |
| 289 | |
Johan Hedberg | 863efaf | 2014-02-22 19:06:32 +0200 | [diff] [blame] | 290 | if (test_bit(HCI_PRIVACY, &hdev->dev_flags)) |
| 291 | local_dist |= SMP_DIST_ID_KEY; |
| 292 | |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 293 | if (rsp == NULL) { |
| 294 | req->io_capability = conn->hcon->io_capability; |
| 295 | req->oob_flag = SMP_OOB_NOT_PRESENT; |
| 296 | req->max_key_size = SMP_MAX_ENC_KEY_SIZE; |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 297 | req->init_key_dist = local_dist; |
| 298 | req->resp_key_dist = remote_dist; |
Johan Hedberg | 065a13e | 2012-10-11 16:26:06 +0200 | [diff] [blame] | 299 | req->auth_req = (authreq & AUTH_REQ_MASK); |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 300 | |
| 301 | smp->remote_key_dist = remote_dist; |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 302 | return; |
| 303 | } |
| 304 | |
| 305 | rsp->io_capability = conn->hcon->io_capability; |
| 306 | rsp->oob_flag = SMP_OOB_NOT_PRESENT; |
| 307 | rsp->max_key_size = SMP_MAX_ENC_KEY_SIZE; |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 308 | rsp->init_key_dist = req->init_key_dist & remote_dist; |
| 309 | rsp->resp_key_dist = req->resp_key_dist & local_dist; |
Johan Hedberg | 065a13e | 2012-10-11 16:26:06 +0200 | [diff] [blame] | 310 | rsp->auth_req = (authreq & AUTH_REQ_MASK); |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 311 | |
| 312 | smp->remote_key_dist = rsp->init_key_dist; |
Vinicius Costa Gomes | b8e66ea | 2011-06-09 18:50:52 -0300 | [diff] [blame] | 313 | } |
| 314 | |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 315 | static u8 check_enc_key_size(struct l2cap_conn *conn, __u8 max_key_size) |
| 316 | { |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 317 | struct smp_chan *smp = conn->smp_chan; |
| 318 | |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 319 | if ((max_key_size > SMP_MAX_ENC_KEY_SIZE) || |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 320 | (max_key_size < SMP_MIN_ENC_KEY_SIZE)) |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 321 | return SMP_ENC_KEY_SIZE; |
| 322 | |
Vinicius Costa Gomes | f7aa611 | 2012-01-30 19:29:12 -0300 | [diff] [blame] | 323 | smp->enc_key_size = max_key_size; |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 324 | |
| 325 | return 0; |
| 326 | } |
| 327 | |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 328 | static void smp_failure(struct l2cap_conn *conn, u8 reason) |
Brian Gix | 4f957a7 | 2011-11-23 08:28:36 -0800 | [diff] [blame] | 329 | { |
Johan Hedberg | bab73cb | 2012-02-09 16:07:29 +0200 | [diff] [blame] | 330 | struct hci_conn *hcon = conn->hcon; |
| 331 | |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 332 | if (reason) |
Brian Gix | 4f957a7 | 2011-11-23 08:28:36 -0800 | [diff] [blame] | 333 | smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason), |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 334 | &reason); |
Brian Gix | 4f957a7 | 2011-11-23 08:28:36 -0800 | [diff] [blame] | 335 | |
Marcel Holtmann | ce39fb4 | 2013-10-13 02:23:39 -0700 | [diff] [blame] | 336 | clear_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags); |
| 337 | mgmt_auth_failed(hcon->hdev, &hcon->dst, hcon->type, hcon->dst_type, |
| 338 | HCI_ERROR_AUTH_FAILURE); |
Vinicius Costa Gomes | f1c09c0 | 2012-02-01 18:27:56 -0300 | [diff] [blame] | 339 | |
Andre Guedes | 61a0cfb | 2012-08-01 20:34:15 -0300 | [diff] [blame] | 340 | cancel_delayed_work_sync(&conn->security_timer); |
| 341 | |
Marcel Holtmann | ce39fb4 | 2013-10-13 02:23:39 -0700 | [diff] [blame] | 342 | if (test_and_clear_bit(HCI_CONN_LE_SMP_PEND, &hcon->flags)) |
Vinicius Costa Gomes | f1c09c0 | 2012-02-01 18:27:56 -0300 | [diff] [blame] | 343 | smp_chan_destroy(conn); |
Brian Gix | 4f957a7 | 2011-11-23 08:28:36 -0800 | [diff] [blame] | 344 | } |
| 345 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 346 | #define JUST_WORKS 0x00 |
| 347 | #define JUST_CFM 0x01 |
| 348 | #define REQ_PASSKEY 0x02 |
| 349 | #define CFM_PASSKEY 0x03 |
| 350 | #define REQ_OOB 0x04 |
| 351 | #define OVERLAP 0xFF |
| 352 | |
| 353 | static const u8 gen_method[5][5] = { |
| 354 | { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY }, |
| 355 | { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY }, |
| 356 | { CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY }, |
| 357 | { JUST_WORKS, JUST_CFM, JUST_WORKS, JUST_WORKS, JUST_CFM }, |
| 358 | { CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, OVERLAP }, |
| 359 | }; |
| 360 | |
| 361 | static int tk_request(struct l2cap_conn *conn, u8 remote_oob, u8 auth, |
| 362 | u8 local_io, u8 remote_io) |
| 363 | { |
| 364 | struct hci_conn *hcon = conn->hcon; |
| 365 | struct smp_chan *smp = conn->smp_chan; |
| 366 | u8 method; |
| 367 | u32 passkey = 0; |
| 368 | int ret = 0; |
| 369 | |
| 370 | /* Initialize key for JUST WORKS */ |
| 371 | memset(smp->tk, 0, sizeof(smp->tk)); |
| 372 | clear_bit(SMP_FLAG_TK_VALID, &smp->smp_flags); |
| 373 | |
| 374 | BT_DBG("tk_request: auth:%d lcl:%d rem:%d", auth, local_io, remote_io); |
| 375 | |
| 376 | /* If neither side wants MITM, use JUST WORKS */ |
| 377 | /* If either side has unknown io_caps, use JUST WORKS */ |
| 378 | /* Otherwise, look up method from the table */ |
| 379 | if (!(auth & SMP_AUTH_MITM) || |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 380 | local_io > SMP_IO_KEYBOARD_DISPLAY || |
| 381 | remote_io > SMP_IO_KEYBOARD_DISPLAY) |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 382 | method = JUST_WORKS; |
| 383 | else |
Ido Yariv | b3ff53f | 2012-03-05 20:07:08 +0200 | [diff] [blame] | 384 | method = gen_method[remote_io][local_io]; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 385 | |
| 386 | /* If not bonding, don't ask user to confirm a Zero TK */ |
| 387 | if (!(auth & SMP_AUTH_BONDING) && method == JUST_CFM) |
| 388 | method = JUST_WORKS; |
| 389 | |
Johan Hedberg | a82505c | 2014-03-24 14:39:07 +0200 | [diff] [blame^] | 390 | /* Don't confirm locally initiated pairing attempts */ |
| 391 | if (method == JUST_CFM && test_bit(SMP_FLAG_INITIATOR, |
| 392 | &smp->smp_flags)) |
| 393 | method = JUST_WORKS; |
| 394 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 395 | /* If Just Works, Continue with Zero TK */ |
| 396 | if (method == JUST_WORKS) { |
| 397 | set_bit(SMP_FLAG_TK_VALID, &smp->smp_flags); |
| 398 | return 0; |
| 399 | } |
| 400 | |
| 401 | /* Not Just Works/Confirm results in MITM Authentication */ |
| 402 | if (method != JUST_CFM) |
| 403 | set_bit(SMP_FLAG_MITM_AUTH, &smp->smp_flags); |
| 404 | |
| 405 | /* If both devices have Keyoard-Display I/O, the master |
| 406 | * Confirms and the slave Enters the passkey. |
| 407 | */ |
| 408 | if (method == OVERLAP) { |
| 409 | if (hcon->link_mode & HCI_LM_MASTER) |
| 410 | method = CFM_PASSKEY; |
| 411 | else |
| 412 | method = REQ_PASSKEY; |
| 413 | } |
| 414 | |
Johan Hedberg | 01ad34d | 2014-03-19 14:14:53 +0200 | [diff] [blame] | 415 | /* Generate random passkey. */ |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 416 | if (method == CFM_PASSKEY) { |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 417 | memset(smp->tk, 0, sizeof(smp->tk)); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 418 | get_random_bytes(&passkey, sizeof(passkey)); |
| 419 | passkey %= 1000000; |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 420 | put_unaligned_le32(passkey, smp->tk); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 421 | BT_DBG("PassKey: %d", passkey); |
Johan Hedberg | 01ad34d | 2014-03-19 14:14:53 +0200 | [diff] [blame] | 422 | set_bit(SMP_FLAG_TK_VALID, &smp->smp_flags); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 423 | } |
| 424 | |
| 425 | hci_dev_lock(hcon->hdev); |
| 426 | |
| 427 | if (method == REQ_PASSKEY) |
Marcel Holtmann | ce39fb4 | 2013-10-13 02:23:39 -0700 | [diff] [blame] | 428 | ret = mgmt_user_passkey_request(hcon->hdev, &hcon->dst, |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 429 | hcon->type, hcon->dst_type); |
Johan Hedberg | 4eb65e6 | 2014-03-24 14:39:05 +0200 | [diff] [blame] | 430 | else if (method == JUST_CFM) |
| 431 | ret = mgmt_user_confirm_request(hcon->hdev, &hcon->dst, |
| 432 | hcon->type, hcon->dst_type, |
| 433 | passkey, 1); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 434 | else |
Johan Hedberg | 01ad34d | 2014-03-19 14:14:53 +0200 | [diff] [blame] | 435 | ret = mgmt_user_passkey_notify(hcon->hdev, &hcon->dst, |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 436 | hcon->type, hcon->dst_type, |
Johan Hedberg | 39adbff | 2014-03-20 08:18:14 +0200 | [diff] [blame] | 437 | passkey, 0); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 438 | |
| 439 | hci_dev_unlock(hcon->hdev); |
| 440 | |
| 441 | return ret; |
| 442 | } |
| 443 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 444 | static void confirm_work(struct work_struct *work) |
| 445 | { |
| 446 | struct smp_chan *smp = container_of(work, struct smp_chan, confirm); |
| 447 | struct l2cap_conn *conn = smp->conn; |
Johan Hedberg | 893ce8b | 2014-02-18 21:41:31 +0200 | [diff] [blame] | 448 | struct hci_dev *hdev = conn->hcon->hdev; |
| 449 | struct crypto_blkcipher *tfm = hdev->tfm_aes; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 450 | struct smp_cmd_pairing_confirm cp; |
| 451 | int ret; |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 452 | u8 reason; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 453 | |
| 454 | BT_DBG("conn %p", conn); |
| 455 | |
Johan Hedberg | 893ce8b | 2014-02-18 21:41:31 +0200 | [diff] [blame] | 456 | /* Prevent mutual access to hdev->tfm_aes */ |
| 457 | hci_dev_lock(hdev); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 458 | |
Johan Hedberg | b1cd5fd | 2014-02-28 12:54:17 +0200 | [diff] [blame] | 459 | ret = smp_c1(tfm, smp->tk, smp->prnd, smp->preq, smp->prsp, |
| 460 | conn->hcon->init_addr_type, &conn->hcon->init_addr, |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 461 | conn->hcon->resp_addr_type, &conn->hcon->resp_addr, |
| 462 | cp.confirm_val); |
Johan Hedberg | 893ce8b | 2014-02-18 21:41:31 +0200 | [diff] [blame] | 463 | |
| 464 | hci_dev_unlock(hdev); |
| 465 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 466 | if (ret) { |
| 467 | reason = SMP_UNSPECIFIED; |
| 468 | goto error; |
| 469 | } |
| 470 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 471 | clear_bit(SMP_FLAG_CFM_PENDING, &smp->smp_flags); |
| 472 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 473 | smp_send_cmd(smp->conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cp), &cp); |
| 474 | |
| 475 | return; |
| 476 | |
| 477 | error: |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 478 | smp_failure(conn, reason); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 479 | } |
| 480 | |
| 481 | static void random_work(struct work_struct *work) |
| 482 | { |
| 483 | struct smp_chan *smp = container_of(work, struct smp_chan, random); |
| 484 | struct l2cap_conn *conn = smp->conn; |
| 485 | struct hci_conn *hcon = conn->hcon; |
Johan Hedberg | 893ce8b | 2014-02-18 21:41:31 +0200 | [diff] [blame] | 486 | struct hci_dev *hdev = hcon->hdev; |
| 487 | struct crypto_blkcipher *tfm = hdev->tfm_aes; |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 488 | u8 reason, confirm[16]; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 489 | int ret; |
| 490 | |
| 491 | if (IS_ERR_OR_NULL(tfm)) { |
| 492 | reason = SMP_UNSPECIFIED; |
| 493 | goto error; |
| 494 | } |
| 495 | |
| 496 | BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave"); |
| 497 | |
Johan Hedberg | 893ce8b | 2014-02-18 21:41:31 +0200 | [diff] [blame] | 498 | /* Prevent mutual access to hdev->tfm_aes */ |
| 499 | hci_dev_lock(hdev); |
| 500 | |
Johan Hedberg | b1cd5fd | 2014-02-28 12:54:17 +0200 | [diff] [blame] | 501 | ret = smp_c1(tfm, smp->tk, smp->rrnd, smp->preq, smp->prsp, |
| 502 | hcon->init_addr_type, &hcon->init_addr, |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 503 | hcon->resp_addr_type, &hcon->resp_addr, confirm); |
Johan Hedberg | 893ce8b | 2014-02-18 21:41:31 +0200 | [diff] [blame] | 504 | |
| 505 | hci_dev_unlock(hdev); |
| 506 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 507 | if (ret) { |
| 508 | reason = SMP_UNSPECIFIED; |
| 509 | goto error; |
| 510 | } |
| 511 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 512 | if (memcmp(smp->pcnf, confirm, sizeof(smp->pcnf)) != 0) { |
| 513 | BT_ERR("Pairing failed (confirmation values mismatch)"); |
| 514 | reason = SMP_CONFIRM_FAILED; |
| 515 | goto error; |
| 516 | } |
| 517 | |
| 518 | if (hcon->out) { |
Marcel Holtmann | fe39c7b | 2014-02-27 16:00:28 -0800 | [diff] [blame] | 519 | u8 stk[16]; |
| 520 | __le64 rand = 0; |
| 521 | __le16 ediv = 0; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 522 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 523 | smp_s1(tfm, smp->tk, smp->rrnd, smp->prnd, stk); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 524 | |
Vinicius Costa Gomes | f7aa611 | 2012-01-30 19:29:12 -0300 | [diff] [blame] | 525 | memset(stk + smp->enc_key_size, 0, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 526 | SMP_MAX_ENC_KEY_SIZE - smp->enc_key_size); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 527 | |
Johan Hedberg | 51a8efd | 2012-01-16 06:10:31 +0200 | [diff] [blame] | 528 | if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags)) { |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 529 | reason = SMP_UNSPECIFIED; |
| 530 | goto error; |
| 531 | } |
| 532 | |
| 533 | hci_le_start_enc(hcon, ediv, rand, stk); |
Vinicius Costa Gomes | f7aa611 | 2012-01-30 19:29:12 -0300 | [diff] [blame] | 534 | hcon->enc_key_size = smp->enc_key_size; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 535 | } else { |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 536 | u8 stk[16]; |
Marcel Holtmann | fe39c7b | 2014-02-27 16:00:28 -0800 | [diff] [blame] | 537 | __le64 rand = 0; |
| 538 | __le16 ediv = 0; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 539 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 540 | smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd), |
| 541 | smp->prnd); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 542 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 543 | smp_s1(tfm, smp->tk, smp->prnd, smp->rrnd, stk); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 544 | |
Vinicius Costa Gomes | f7aa611 | 2012-01-30 19:29:12 -0300 | [diff] [blame] | 545 | memset(stk + smp->enc_key_size, 0, |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 546 | SMP_MAX_ENC_KEY_SIZE - smp->enc_key_size); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 547 | |
Marcel Holtmann | ce39fb4 | 2013-10-13 02:23:39 -0700 | [diff] [blame] | 548 | hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, |
Johan Hedberg | 35d7027 | 2014-02-19 14:57:47 +0200 | [diff] [blame] | 549 | HCI_SMP_STK_SLAVE, 0, stk, smp->enc_key_size, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 550 | ediv, rand); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 551 | } |
| 552 | |
| 553 | return; |
| 554 | |
| 555 | error: |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 556 | smp_failure(conn, reason); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 557 | } |
| 558 | |
Johan Hedberg | e3098be | 2014-02-28 18:10:03 +0200 | [diff] [blame] | 559 | static void smp_reencrypt(struct work_struct *work) |
| 560 | { |
| 561 | struct smp_chan *smp = container_of(work, struct smp_chan, |
| 562 | reencrypt.work); |
| 563 | struct l2cap_conn *conn = smp->conn; |
| 564 | struct hci_conn *hcon = conn->hcon; |
| 565 | struct smp_ltk *ltk = smp->ltk; |
| 566 | |
| 567 | BT_DBG(""); |
| 568 | |
| 569 | hci_le_start_enc(hcon, ltk->ediv, ltk->rand, ltk->val); |
| 570 | hcon->enc_key_size = ltk->enc_size; |
| 571 | } |
| 572 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 573 | static struct smp_chan *smp_chan_create(struct l2cap_conn *conn) |
| 574 | { |
| 575 | struct smp_chan *smp; |
| 576 | |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 577 | smp = kzalloc(sizeof(*smp), GFP_ATOMIC); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 578 | if (!smp) |
| 579 | return NULL; |
| 580 | |
| 581 | INIT_WORK(&smp->confirm, confirm_work); |
| 582 | INIT_WORK(&smp->random, random_work); |
Johan Hedberg | e3098be | 2014-02-28 18:10:03 +0200 | [diff] [blame] | 583 | INIT_DELAYED_WORK(&smp->reencrypt, smp_reencrypt); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 584 | |
| 585 | smp->conn = conn; |
| 586 | conn->smp_chan = smp; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 587 | conn->hcon->smp_conn = conn; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 588 | |
| 589 | hci_conn_hold(conn->hcon); |
| 590 | |
| 591 | return smp; |
| 592 | } |
| 593 | |
| 594 | void smp_chan_destroy(struct l2cap_conn *conn) |
| 595 | { |
Brian Gix | c8eb969 | 2011-11-23 08:28:35 -0800 | [diff] [blame] | 596 | struct smp_chan *smp = conn->smp_chan; |
Johan Hedberg | f4a407b | 2014-02-18 21:41:34 +0200 | [diff] [blame] | 597 | bool complete; |
Brian Gix | c8eb969 | 2011-11-23 08:28:35 -0800 | [diff] [blame] | 598 | |
Vinicius Costa Gomes | f1c09c0 | 2012-02-01 18:27:56 -0300 | [diff] [blame] | 599 | BUG_ON(!smp); |
Brian Gix | c8eb969 | 2011-11-23 08:28:35 -0800 | [diff] [blame] | 600 | |
Johan Hedberg | e3098be | 2014-02-28 18:10:03 +0200 | [diff] [blame] | 601 | cancel_delayed_work_sync(&smp->reencrypt); |
| 602 | |
Johan Hedberg | f4a407b | 2014-02-18 21:41:34 +0200 | [diff] [blame] | 603 | complete = test_bit(SMP_FLAG_COMPLETE, &smp->smp_flags); |
| 604 | mgmt_smp_complete(conn->hcon, complete); |
| 605 | |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 606 | kfree(smp->csrk); |
| 607 | kfree(smp->slave_csrk); |
| 608 | |
Johan Hedberg | 759331d | 2014-02-28 10:10:16 +0200 | [diff] [blame] | 609 | /* If pairing failed clean up any keys we might have */ |
| 610 | if (!complete) { |
| 611 | if (smp->ltk) { |
| 612 | list_del(&smp->ltk->list); |
| 613 | kfree(smp->ltk); |
| 614 | } |
| 615 | |
| 616 | if (smp->slave_ltk) { |
| 617 | list_del(&smp->slave_ltk->list); |
| 618 | kfree(smp->slave_ltk); |
| 619 | } |
| 620 | |
| 621 | if (smp->remote_irk) { |
| 622 | list_del(&smp->remote_irk->list); |
| 623 | kfree(smp->remote_irk); |
| 624 | } |
| 625 | } |
| 626 | |
Brian Gix | c8eb969 | 2011-11-23 08:28:35 -0800 | [diff] [blame] | 627 | kfree(smp); |
| 628 | conn->smp_chan = NULL; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 629 | conn->hcon->smp_conn = NULL; |
David Herrmann | 76a68ba | 2013-04-06 20:28:37 +0200 | [diff] [blame] | 630 | hci_conn_drop(conn->hcon); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 631 | } |
| 632 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 633 | int smp_user_confirm_reply(struct hci_conn *hcon, u16 mgmt_op, __le32 passkey) |
| 634 | { |
| 635 | struct l2cap_conn *conn = hcon->smp_conn; |
| 636 | struct smp_chan *smp; |
| 637 | u32 value; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 638 | |
| 639 | BT_DBG(""); |
| 640 | |
| 641 | if (!conn) |
| 642 | return -ENOTCONN; |
| 643 | |
| 644 | smp = conn->smp_chan; |
| 645 | |
| 646 | switch (mgmt_op) { |
| 647 | case MGMT_OP_USER_PASSKEY_REPLY: |
| 648 | value = le32_to_cpu(passkey); |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 649 | memset(smp->tk, 0, sizeof(smp->tk)); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 650 | BT_DBG("PassKey: %d", value); |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 651 | put_unaligned_le32(value, smp->tk); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 652 | /* Fall Through */ |
| 653 | case MGMT_OP_USER_CONFIRM_REPLY: |
| 654 | set_bit(SMP_FLAG_TK_VALID, &smp->smp_flags); |
| 655 | break; |
| 656 | case MGMT_OP_USER_PASSKEY_NEG_REPLY: |
| 657 | case MGMT_OP_USER_CONFIRM_NEG_REPLY: |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 658 | smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 659 | return 0; |
| 660 | default: |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 661 | smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 662 | return -EOPNOTSUPP; |
| 663 | } |
| 664 | |
| 665 | /* If it is our turn to send Pairing Confirm, do so now */ |
| 666 | if (test_bit(SMP_FLAG_CFM_PENDING, &smp->smp_flags)) |
| 667 | queue_work(hcon->hdev->workqueue, &smp->confirm); |
| 668 | |
| 669 | return 0; |
| 670 | } |
| 671 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 672 | static u8 smp_cmd_pairing_req(struct l2cap_conn *conn, struct sk_buff *skb) |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 673 | { |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 674 | struct smp_cmd_pairing rsp, *req = (void *) skb->data; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 675 | struct smp_chan *smp; |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 676 | u8 key_size; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 677 | u8 auth = SMP_AUTH_NONE; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 678 | int ret; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 679 | |
| 680 | BT_DBG("conn %p", conn); |
| 681 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 682 | if (skb->len < sizeof(*req)) |
| 683 | return SMP_UNSPECIFIED; |
| 684 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 685 | if (conn->hcon->link_mode & HCI_LM_MASTER) |
| 686 | return SMP_CMD_NOTSUPP; |
| 687 | |
Johan Hedberg | 51a8efd | 2012-01-16 06:10:31 +0200 | [diff] [blame] | 688 | if (!test_and_set_bit(HCI_CONN_LE_SMP_PEND, &conn->hcon->flags)) |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 689 | smp = smp_chan_create(conn); |
Andrei Emeltchenko | d08fd0e | 2012-07-19 17:03:43 +0300 | [diff] [blame] | 690 | else |
| 691 | smp = conn->smp_chan; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 692 | |
Andrei Emeltchenko | d08fd0e | 2012-07-19 17:03:43 +0300 | [diff] [blame] | 693 | if (!smp) |
| 694 | return SMP_UNSPECIFIED; |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 695 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 696 | smp->preq[0] = SMP_CMD_PAIRING_REQ; |
| 697 | memcpy(&smp->preq[1], req, sizeof(*req)); |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 698 | skb_pull(skb, sizeof(*req)); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 699 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 700 | /* We didn't start the pairing, so match remote */ |
| 701 | if (req->auth_req & SMP_AUTH_BONDING) |
| 702 | auth = req->auth_req; |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 703 | |
Ido Yariv | fdde0a2 | 2012-03-05 20:09:38 +0200 | [diff] [blame] | 704 | conn->hcon->pending_sec_level = authreq_to_seclevel(auth); |
| 705 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 706 | build_pairing_cmd(conn, req, &rsp, auth); |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 707 | |
| 708 | key_size = min(req->max_key_size, rsp.max_key_size); |
| 709 | if (check_enc_key_size(conn, key_size)) |
| 710 | return SMP_ENC_KEY_SIZE; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 711 | |
Johan Hedberg | e84a6b1 | 2013-12-02 10:49:03 +0200 | [diff] [blame] | 712 | get_random_bytes(smp->prnd, sizeof(smp->prnd)); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 713 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 714 | smp->prsp[0] = SMP_CMD_PAIRING_RSP; |
| 715 | memcpy(&smp->prsp[1], &rsp, sizeof(rsp)); |
Anderson Briglia | f01ead3 | 2011-06-09 18:50:45 -0300 | [diff] [blame] | 716 | |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 717 | smp_send_cmd(conn, SMP_CMD_PAIRING_RSP, sizeof(rsp), &rsp); |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 718 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 719 | /* Request setup of TK */ |
| 720 | ret = tk_request(conn, 0, auth, rsp.io_capability, req->io_capability); |
| 721 | if (ret) |
| 722 | return SMP_UNSPECIFIED; |
| 723 | |
Johan Hedberg | edca792 | 2014-03-24 15:54:11 +0200 | [diff] [blame] | 724 | clear_bit(SMP_FLAG_INITIATOR, &smp->smp_flags); |
| 725 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 726 | return 0; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 727 | } |
| 728 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 729 | static u8 smp_cmd_pairing_rsp(struct l2cap_conn *conn, struct sk_buff *skb) |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 730 | { |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 731 | struct smp_cmd_pairing *req, *rsp = (void *) skb->data; |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 732 | struct smp_chan *smp = conn->smp_chan; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 733 | struct hci_dev *hdev = conn->hcon->hdev; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 734 | u8 key_size, auth = SMP_AUTH_NONE; |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 735 | int ret; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 736 | |
| 737 | BT_DBG("conn %p", conn); |
| 738 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 739 | if (skb->len < sizeof(*rsp)) |
| 740 | return SMP_UNSPECIFIED; |
| 741 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 742 | if (!(conn->hcon->link_mode & HCI_LM_MASTER)) |
| 743 | return SMP_CMD_NOTSUPP; |
| 744 | |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 745 | skb_pull(skb, sizeof(*rsp)); |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 746 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 747 | req = (void *) &smp->preq[1]; |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 748 | |
| 749 | key_size = min(req->max_key_size, rsp->max_key_size); |
| 750 | if (check_enc_key_size(conn, key_size)) |
| 751 | return SMP_ENC_KEY_SIZE; |
| 752 | |
Johan Hedberg | e84a6b1 | 2013-12-02 10:49:03 +0200 | [diff] [blame] | 753 | get_random_bytes(smp->prnd, sizeof(smp->prnd)); |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 754 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 755 | smp->prsp[0] = SMP_CMD_PAIRING_RSP; |
| 756 | memcpy(&smp->prsp[1], rsp, sizeof(*rsp)); |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 757 | |
Johan Hedberg | fdcc4be | 2014-03-14 10:53:50 +0200 | [diff] [blame] | 758 | /* Update remote key distribution in case the remote cleared |
| 759 | * some bits that we had enabled in our request. |
| 760 | */ |
| 761 | smp->remote_key_dist &= rsp->resp_key_dist; |
| 762 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 763 | if ((req->auth_req & SMP_AUTH_BONDING) && |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 764 | (rsp->auth_req & SMP_AUTH_BONDING)) |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 765 | auth = SMP_AUTH_BONDING; |
| 766 | |
| 767 | auth |= (req->auth_req | rsp->auth_req) & SMP_AUTH_MITM; |
| 768 | |
Johan Hedberg | 476585e | 2012-06-06 18:54:15 +0800 | [diff] [blame] | 769 | ret = tk_request(conn, 0, auth, req->io_capability, rsp->io_capability); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 770 | if (ret) |
| 771 | return SMP_UNSPECIFIED; |
| 772 | |
| 773 | set_bit(SMP_FLAG_CFM_PENDING, &smp->smp_flags); |
| 774 | |
| 775 | /* Can't compose response until we have been confirmed */ |
Johan Hedberg | 18e4aeb | 2014-03-19 14:14:51 +0200 | [diff] [blame] | 776 | if (test_bit(SMP_FLAG_TK_VALID, &smp->smp_flags)) |
| 777 | queue_work(hdev->workqueue, &smp->confirm); |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 778 | |
| 779 | return 0; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 780 | } |
| 781 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 782 | static u8 smp_cmd_pairing_confirm(struct l2cap_conn *conn, struct sk_buff *skb) |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 783 | { |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 784 | struct smp_chan *smp = conn->smp_chan; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 785 | struct hci_dev *hdev = conn->hcon->hdev; |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 786 | |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 787 | BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave"); |
| 788 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 789 | if (skb->len < sizeof(smp->pcnf)) |
| 790 | return SMP_UNSPECIFIED; |
| 791 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 792 | memcpy(smp->pcnf, skb->data, sizeof(smp->pcnf)); |
| 793 | skb_pull(skb, sizeof(smp->pcnf)); |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 794 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 795 | if (conn->hcon->out) |
| 796 | smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd), |
| 797 | smp->prnd); |
| 798 | else if (test_bit(SMP_FLAG_TK_VALID, &smp->smp_flags)) |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 799 | queue_work(hdev->workqueue, &smp->confirm); |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 800 | else |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 801 | set_bit(SMP_FLAG_CFM_PENDING, &smp->smp_flags); |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 802 | |
| 803 | return 0; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 804 | } |
| 805 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 806 | static u8 smp_cmd_pairing_random(struct l2cap_conn *conn, struct sk_buff *skb) |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 807 | { |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 808 | struct smp_chan *smp = conn->smp_chan; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 809 | struct hci_dev *hdev = conn->hcon->hdev; |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 810 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 811 | BT_DBG("conn %p", conn); |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 812 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 813 | if (skb->len < sizeof(smp->rrnd)) |
| 814 | return SMP_UNSPECIFIED; |
| 815 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 816 | memcpy(smp->rrnd, skb->data, sizeof(smp->rrnd)); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 817 | skb_pull(skb, sizeof(smp->rrnd)); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 818 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 819 | queue_work(hdev->workqueue, &smp->random); |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 820 | |
| 821 | return 0; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 822 | } |
| 823 | |
Johan Hedberg | 4dab786 | 2012-06-07 14:58:37 +0800 | [diff] [blame] | 824 | static u8 smp_ltk_encrypt(struct l2cap_conn *conn, u8 sec_level) |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 825 | { |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 826 | struct smp_ltk *key; |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 827 | struct hci_conn *hcon = conn->hcon; |
| 828 | |
Johan Hedberg | 98a0b84 | 2014-01-30 19:40:00 -0800 | [diff] [blame] | 829 | key = hci_find_ltk_by_addr(hcon->hdev, &hcon->dst, hcon->dst_type, |
| 830 | hcon->out); |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 831 | if (!key) |
| 832 | return 0; |
| 833 | |
Johan Hedberg | 4dab786 | 2012-06-07 14:58:37 +0800 | [diff] [blame] | 834 | if (sec_level > BT_SECURITY_MEDIUM && !key->authenticated) |
| 835 | return 0; |
| 836 | |
Johan Hedberg | 51a8efd | 2012-01-16 06:10:31 +0200 | [diff] [blame] | 837 | if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags)) |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 838 | return 1; |
| 839 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 840 | hci_le_start_enc(hcon, key->ediv, key->rand, key->val); |
| 841 | hcon->enc_key_size = key->enc_size; |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 842 | |
| 843 | return 1; |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 844 | } |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 845 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 846 | static u8 smp_cmd_security_req(struct l2cap_conn *conn, struct sk_buff *skb) |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 847 | { |
| 848 | struct smp_cmd_security_req *rp = (void *) skb->data; |
| 849 | struct smp_cmd_pairing cp; |
Vinicius Costa Gomes | f1cb9af | 2011-01-26 21:42:57 -0300 | [diff] [blame] | 850 | struct hci_conn *hcon = conn->hcon; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 851 | struct smp_chan *smp; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 852 | |
| 853 | BT_DBG("conn %p", conn); |
| 854 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 855 | if (skb->len < sizeof(*rp)) |
| 856 | return SMP_UNSPECIFIED; |
| 857 | |
Johan Hedberg | 86ca9ea | 2013-11-05 11:30:39 +0200 | [diff] [blame] | 858 | if (!(conn->hcon->link_mode & HCI_LM_MASTER)) |
| 859 | return SMP_CMD_NOTSUPP; |
| 860 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 861 | hcon->pending_sec_level = authreq_to_seclevel(rp->auth_req); |
Vinicius Costa Gomes | feb45eb | 2011-08-25 20:02:35 -0300 | [diff] [blame] | 862 | |
Johan Hedberg | 4dab786 | 2012-06-07 14:58:37 +0800 | [diff] [blame] | 863 | if (smp_ltk_encrypt(conn, hcon->pending_sec_level)) |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 864 | return 0; |
| 865 | |
Johan Hedberg | 51a8efd | 2012-01-16 06:10:31 +0200 | [diff] [blame] | 866 | if (test_and_set_bit(HCI_CONN_LE_SMP_PEND, &hcon->flags)) |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 867 | return 0; |
Vinicius Costa Gomes | f1cb9af | 2011-01-26 21:42:57 -0300 | [diff] [blame] | 868 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 869 | smp = smp_chan_create(conn); |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 870 | |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 871 | skb_pull(skb, sizeof(*rp)); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 872 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 873 | memset(&cp, 0, sizeof(cp)); |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 874 | build_pairing_cmd(conn, &cp, NULL, rp->auth_req); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 875 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 876 | smp->preq[0] = SMP_CMD_PAIRING_REQ; |
| 877 | memcpy(&smp->preq[1], &cp, sizeof(cp)); |
Anderson Briglia | f01ead3 | 2011-06-09 18:50:45 -0300 | [diff] [blame] | 878 | |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 879 | smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp); |
Vinicius Costa Gomes | f1cb9af | 2011-01-26 21:42:57 -0300 | [diff] [blame] | 880 | |
Johan Hedberg | edca792 | 2014-03-24 15:54:11 +0200 | [diff] [blame] | 881 | clear_bit(SMP_FLAG_INITIATOR, &smp->smp_flags); |
| 882 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 883 | return 0; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 884 | } |
| 885 | |
Johan Hedberg | ad32a2f | 2013-05-14 18:05:12 +0300 | [diff] [blame] | 886 | bool smp_sufficient_security(struct hci_conn *hcon, u8 sec_level) |
| 887 | { |
| 888 | if (sec_level == BT_SECURITY_LOW) |
| 889 | return true; |
| 890 | |
| 891 | if (hcon->sec_level >= sec_level) |
| 892 | return true; |
| 893 | |
| 894 | return false; |
| 895 | } |
| 896 | |
Vinicius Costa Gomes | cc11092 | 2012-08-23 21:32:43 -0300 | [diff] [blame] | 897 | int smp_conn_security(struct hci_conn *hcon, __u8 sec_level) |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 898 | { |
Vinicius Costa Gomes | cc11092 | 2012-08-23 21:32:43 -0300 | [diff] [blame] | 899 | struct l2cap_conn *conn = hcon->l2cap_data; |
Johan Hedberg | 0a66cf2 | 2014-03-24 14:39:03 +0200 | [diff] [blame] | 900 | struct smp_chan *smp; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 901 | __u8 authreq; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 902 | |
Vinicius Costa Gomes | 3a0259b | 2011-06-09 18:50:43 -0300 | [diff] [blame] | 903 | BT_DBG("conn %p hcon %p level 0x%2.2x", conn, hcon, sec_level); |
| 904 | |
Johan Hedberg | 0a66cf2 | 2014-03-24 14:39:03 +0200 | [diff] [blame] | 905 | /* This may be NULL if there's an unexpected disconnection */ |
| 906 | if (!conn) |
| 907 | return 1; |
| 908 | |
| 909 | smp = conn->smp_chan; |
| 910 | |
Johan Hedberg | 757aee0 | 2013-04-24 13:05:32 +0300 | [diff] [blame] | 911 | if (!test_bit(HCI_LE_ENABLED, &hcon->hdev->dev_flags)) |
Andre Guedes | 2e65c9d | 2011-06-30 19:20:56 -0300 | [diff] [blame] | 912 | return 1; |
| 913 | |
Johan Hedberg | ad32a2f | 2013-05-14 18:05:12 +0300 | [diff] [blame] | 914 | if (smp_sufficient_security(hcon, sec_level)) |
Vinicius Costa Gomes | f1cb9af | 2011-01-26 21:42:57 -0300 | [diff] [blame] | 915 | return 1; |
| 916 | |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 917 | if (hcon->link_mode & HCI_LM_MASTER) |
Johan Hedberg | 4dab786 | 2012-06-07 14:58:37 +0800 | [diff] [blame] | 918 | if (smp_ltk_encrypt(conn, sec_level)) |
Vinicius Costa Gomes | 02bc745 | 2011-07-07 18:59:41 -0300 | [diff] [blame] | 919 | goto done; |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 920 | |
Johan Hedberg | 51a8efd | 2012-01-16 06:10:31 +0200 | [diff] [blame] | 921 | if (test_and_set_bit(HCI_CONN_LE_SMP_PEND, &hcon->flags)) |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 922 | return 0; |
| 923 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 924 | smp = smp_chan_create(conn); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 925 | if (!smp) |
| 926 | return 1; |
| 927 | |
| 928 | authreq = seclevel_to_authreq(sec_level); |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 929 | |
Johan Hedberg | 2e23364 | 2014-03-18 15:42:30 +0200 | [diff] [blame] | 930 | /* hcon->auth_type is set by pair_device in mgmt.c. If the MITM |
| 931 | * flag is set we should also set it for the SMP request. |
| 932 | */ |
| 933 | if ((hcon->auth_type & 0x01)) |
| 934 | authreq |= SMP_AUTH_MITM; |
| 935 | |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 936 | if (hcon->link_mode & HCI_LM_MASTER) { |
| 937 | struct smp_cmd_pairing cp; |
Anderson Briglia | f01ead3 | 2011-06-09 18:50:45 -0300 | [diff] [blame] | 938 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 939 | build_pairing_cmd(conn, &cp, NULL, authreq); |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 940 | smp->preq[0] = SMP_CMD_PAIRING_REQ; |
| 941 | memcpy(&smp->preq[1], &cp, sizeof(cp)); |
Anderson Briglia | f01ead3 | 2011-06-09 18:50:45 -0300 | [diff] [blame] | 942 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 943 | smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp); |
| 944 | } else { |
| 945 | struct smp_cmd_security_req cp; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 946 | cp.auth_req = authreq; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 947 | smp_send_cmd(conn, SMP_CMD_SECURITY_REQ, sizeof(cp), &cp); |
| 948 | } |
| 949 | |
Vinicius Costa Gomes | 02bc745 | 2011-07-07 18:59:41 -0300 | [diff] [blame] | 950 | done: |
Johan Hedberg | edca792 | 2014-03-24 15:54:11 +0200 | [diff] [blame] | 951 | set_bit(SMP_FLAG_INITIATOR, &smp->smp_flags); |
| 952 | |
Vinicius Costa Gomes | f1cb9af | 2011-01-26 21:42:57 -0300 | [diff] [blame] | 953 | hcon->pending_sec_level = sec_level; |
Vinicius Costa Gomes | f1cb9af | 2011-01-26 21:42:57 -0300 | [diff] [blame] | 954 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 955 | return 0; |
| 956 | } |
| 957 | |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 958 | static int smp_cmd_encrypt_info(struct l2cap_conn *conn, struct sk_buff *skb) |
| 959 | { |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 960 | struct smp_cmd_encrypt_info *rp = (void *) skb->data; |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 961 | struct smp_chan *smp = conn->smp_chan; |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 962 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 963 | BT_DBG("conn %p", conn); |
| 964 | |
| 965 | if (skb->len < sizeof(*rp)) |
| 966 | return SMP_UNSPECIFIED; |
| 967 | |
Johan Hedberg | 6131ddc | 2014-02-18 10:19:37 +0200 | [diff] [blame] | 968 | /* Ignore this PDU if it wasn't requested */ |
| 969 | if (!(smp->remote_key_dist & SMP_DIST_ENC_KEY)) |
| 970 | return 0; |
| 971 | |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 972 | skb_pull(skb, sizeof(*rp)); |
| 973 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 974 | memcpy(smp->tk, rp->ltk, sizeof(smp->tk)); |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 975 | |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 976 | return 0; |
| 977 | } |
| 978 | |
| 979 | static int smp_cmd_master_ident(struct l2cap_conn *conn, struct sk_buff *skb) |
| 980 | { |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 981 | struct smp_cmd_master_ident *rp = (void *) skb->data; |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 982 | struct smp_chan *smp = conn->smp_chan; |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 983 | struct hci_dev *hdev = conn->hcon->hdev; |
| 984 | struct hci_conn *hcon = conn->hcon; |
Johan Hedberg | 23d0e12 | 2014-02-19 14:57:46 +0200 | [diff] [blame] | 985 | struct smp_ltk *ltk; |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 986 | u8 authenticated; |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 987 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 988 | BT_DBG("conn %p", conn); |
| 989 | |
| 990 | if (skb->len < sizeof(*rp)) |
| 991 | return SMP_UNSPECIFIED; |
| 992 | |
Johan Hedberg | 6131ddc | 2014-02-18 10:19:37 +0200 | [diff] [blame] | 993 | /* Ignore this PDU if it wasn't requested */ |
| 994 | if (!(smp->remote_key_dist & SMP_DIST_ENC_KEY)) |
| 995 | return 0; |
| 996 | |
Johan Hedberg | 9747a9f | 2014-02-26 23:33:43 +0200 | [diff] [blame] | 997 | /* Mark the information as received */ |
| 998 | smp->remote_key_dist &= ~SMP_DIST_ENC_KEY; |
| 999 | |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 1000 | skb_pull(skb, sizeof(*rp)); |
| 1001 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1002 | hci_dev_lock(hdev); |
Marcel Holtmann | ce39fb4 | 2013-10-13 02:23:39 -0700 | [diff] [blame] | 1003 | authenticated = (hcon->sec_level == BT_SECURITY_HIGH); |
Johan Hedberg | 35d7027 | 2014-02-19 14:57:47 +0200 | [diff] [blame] | 1004 | ltk = hci_add_ltk(hdev, &hcon->dst, hcon->dst_type, HCI_SMP_LTK, |
Johan Hedberg | 23d0e12 | 2014-02-19 14:57:46 +0200 | [diff] [blame] | 1005 | authenticated, smp->tk, smp->enc_key_size, |
| 1006 | rp->ediv, rp->rand); |
| 1007 | smp->ltk = ltk; |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1008 | if (!(smp->remote_key_dist & SMP_DIST_ID_KEY)) |
Johan Hedberg | 4bd6d38 | 2014-02-26 23:33:45 +0200 | [diff] [blame] | 1009 | smp_distribute_keys(conn); |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1010 | hci_dev_unlock(hdev); |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1011 | |
| 1012 | return 0; |
| 1013 | } |
| 1014 | |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1015 | static int smp_cmd_ident_info(struct l2cap_conn *conn, struct sk_buff *skb) |
| 1016 | { |
| 1017 | struct smp_cmd_ident_info *info = (void *) skb->data; |
| 1018 | struct smp_chan *smp = conn->smp_chan; |
| 1019 | |
| 1020 | BT_DBG(""); |
| 1021 | |
| 1022 | if (skb->len < sizeof(*info)) |
| 1023 | return SMP_UNSPECIFIED; |
| 1024 | |
Johan Hedberg | 6131ddc | 2014-02-18 10:19:37 +0200 | [diff] [blame] | 1025 | /* Ignore this PDU if it wasn't requested */ |
| 1026 | if (!(smp->remote_key_dist & SMP_DIST_ID_KEY)) |
| 1027 | return 0; |
| 1028 | |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1029 | skb_pull(skb, sizeof(*info)); |
| 1030 | |
| 1031 | memcpy(smp->irk, info->irk, 16); |
| 1032 | |
| 1033 | return 0; |
| 1034 | } |
| 1035 | |
| 1036 | static int smp_cmd_ident_addr_info(struct l2cap_conn *conn, |
| 1037 | struct sk_buff *skb) |
| 1038 | { |
| 1039 | struct smp_cmd_ident_addr_info *info = (void *) skb->data; |
| 1040 | struct smp_chan *smp = conn->smp_chan; |
| 1041 | struct hci_conn *hcon = conn->hcon; |
| 1042 | bdaddr_t rpa; |
| 1043 | |
| 1044 | BT_DBG(""); |
| 1045 | |
| 1046 | if (skb->len < sizeof(*info)) |
| 1047 | return SMP_UNSPECIFIED; |
| 1048 | |
Johan Hedberg | 6131ddc | 2014-02-18 10:19:37 +0200 | [diff] [blame] | 1049 | /* Ignore this PDU if it wasn't requested */ |
| 1050 | if (!(smp->remote_key_dist & SMP_DIST_ID_KEY)) |
| 1051 | return 0; |
| 1052 | |
Johan Hedberg | 9747a9f | 2014-02-26 23:33:43 +0200 | [diff] [blame] | 1053 | /* Mark the information as received */ |
| 1054 | smp->remote_key_dist &= ~SMP_DIST_ID_KEY; |
| 1055 | |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1056 | skb_pull(skb, sizeof(*info)); |
| 1057 | |
Johan Hedberg | a9a58f8 | 2014-02-25 22:24:37 +0200 | [diff] [blame] | 1058 | /* Strictly speaking the Core Specification (4.1) allows sending |
| 1059 | * an empty address which would force us to rely on just the IRK |
| 1060 | * as "identity information". However, since such |
| 1061 | * implementations are not known of and in order to not over |
| 1062 | * complicate our implementation, simply pretend that we never |
| 1063 | * received an IRK for such a device. |
| 1064 | */ |
| 1065 | if (!bacmp(&info->bdaddr, BDADDR_ANY)) { |
| 1066 | BT_ERR("Ignoring IRK with no identity address"); |
Johan Hedberg | 4bd6d38 | 2014-02-26 23:33:45 +0200 | [diff] [blame] | 1067 | smp_distribute_keys(conn); |
Johan Hedberg | a9a58f8 | 2014-02-25 22:24:37 +0200 | [diff] [blame] | 1068 | return 0; |
| 1069 | } |
| 1070 | |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1071 | bacpy(&smp->id_addr, &info->bdaddr); |
| 1072 | smp->id_addr_type = info->addr_type; |
| 1073 | |
| 1074 | if (hci_bdaddr_is_rpa(&hcon->dst, hcon->dst_type)) |
| 1075 | bacpy(&rpa, &hcon->dst); |
| 1076 | else |
| 1077 | bacpy(&rpa, BDADDR_ANY); |
| 1078 | |
Johan Hedberg | 23d0e12 | 2014-02-19 14:57:46 +0200 | [diff] [blame] | 1079 | smp->remote_irk = hci_add_irk(conn->hcon->hdev, &smp->id_addr, |
| 1080 | smp->id_addr_type, smp->irk, &rpa); |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1081 | |
Johan Hedberg | 4bd6d38 | 2014-02-26 23:33:45 +0200 | [diff] [blame] | 1082 | smp_distribute_keys(conn); |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1083 | |
| 1084 | return 0; |
| 1085 | } |
| 1086 | |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1087 | static int smp_cmd_sign_info(struct l2cap_conn *conn, struct sk_buff *skb) |
| 1088 | { |
| 1089 | struct smp_cmd_sign_info *rp = (void *) skb->data; |
| 1090 | struct smp_chan *smp = conn->smp_chan; |
| 1091 | struct hci_dev *hdev = conn->hcon->hdev; |
| 1092 | struct smp_csrk *csrk; |
| 1093 | |
| 1094 | BT_DBG("conn %p", conn); |
| 1095 | |
| 1096 | if (skb->len < sizeof(*rp)) |
| 1097 | return SMP_UNSPECIFIED; |
| 1098 | |
| 1099 | /* Ignore this PDU if it wasn't requested */ |
| 1100 | if (!(smp->remote_key_dist & SMP_DIST_SIGN)) |
| 1101 | return 0; |
| 1102 | |
| 1103 | /* Mark the information as received */ |
| 1104 | smp->remote_key_dist &= ~SMP_DIST_SIGN; |
| 1105 | |
| 1106 | skb_pull(skb, sizeof(*rp)); |
| 1107 | |
| 1108 | hci_dev_lock(hdev); |
| 1109 | csrk = kzalloc(sizeof(*csrk), GFP_KERNEL); |
| 1110 | if (csrk) { |
| 1111 | csrk->master = 0x01; |
| 1112 | memcpy(csrk->val, rp->csrk, sizeof(csrk->val)); |
| 1113 | } |
| 1114 | smp->csrk = csrk; |
| 1115 | if (!(smp->remote_key_dist & SMP_DIST_SIGN)) |
| 1116 | smp_distribute_keys(conn); |
| 1117 | hci_dev_unlock(hdev); |
| 1118 | |
| 1119 | return 0; |
| 1120 | } |
| 1121 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1122 | int smp_sig_channel(struct l2cap_conn *conn, struct sk_buff *skb) |
| 1123 | { |
Marcel Holtmann | 7b9899d | 2013-10-03 00:00:57 -0700 | [diff] [blame] | 1124 | struct hci_conn *hcon = conn->hcon; |
Marcel Holtmann | 92381f5 | 2013-10-03 01:23:08 -0700 | [diff] [blame] | 1125 | __u8 code, reason; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1126 | int err = 0; |
| 1127 | |
Marcel Holtmann | 7b9899d | 2013-10-03 00:00:57 -0700 | [diff] [blame] | 1128 | if (hcon->type != LE_LINK) { |
| 1129 | kfree_skb(skb); |
Johan Hedberg | 3432711 | 2013-10-16 11:37:01 +0300 | [diff] [blame] | 1130 | return 0; |
Marcel Holtmann | 7b9899d | 2013-10-03 00:00:57 -0700 | [diff] [blame] | 1131 | } |
| 1132 | |
Marcel Holtmann | 92381f5 | 2013-10-03 01:23:08 -0700 | [diff] [blame] | 1133 | if (skb->len < 1) { |
| 1134 | kfree_skb(skb); |
| 1135 | return -EILSEQ; |
| 1136 | } |
| 1137 | |
Marcel Holtmann | 06ae331 | 2013-10-18 03:43:00 -0700 | [diff] [blame] | 1138 | if (!test_bit(HCI_LE_ENABLED, &hcon->hdev->dev_flags)) { |
Andre Guedes | 2e65c9d | 2011-06-30 19:20:56 -0300 | [diff] [blame] | 1139 | err = -ENOTSUPP; |
| 1140 | reason = SMP_PAIRING_NOTSUPP; |
| 1141 | goto done; |
| 1142 | } |
| 1143 | |
Marcel Holtmann | 92381f5 | 2013-10-03 01:23:08 -0700 | [diff] [blame] | 1144 | code = skb->data[0]; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1145 | skb_pull(skb, sizeof(code)); |
| 1146 | |
Johan Hedberg | 8cf9fa1 | 2013-01-29 10:44:23 -0600 | [diff] [blame] | 1147 | /* |
| 1148 | * The SMP context must be initialized for all other PDUs except |
| 1149 | * pairing and security requests. If we get any other PDU when |
| 1150 | * not initialized simply disconnect (done if this function |
| 1151 | * returns an error). |
| 1152 | */ |
| 1153 | if (code != SMP_CMD_PAIRING_REQ && code != SMP_CMD_SECURITY_REQ && |
| 1154 | !conn->smp_chan) { |
| 1155 | BT_ERR("Unexpected SMP command 0x%02x. Disconnecting.", code); |
| 1156 | kfree_skb(skb); |
| 1157 | return -ENOTSUPP; |
| 1158 | } |
| 1159 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1160 | switch (code) { |
| 1161 | case SMP_CMD_PAIRING_REQ: |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1162 | reason = smp_cmd_pairing_req(conn, skb); |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1163 | break; |
| 1164 | |
| 1165 | case SMP_CMD_PAIRING_FAIL: |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 1166 | smp_failure(conn, 0); |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1167 | reason = 0; |
| 1168 | err = -EPERM; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1169 | break; |
| 1170 | |
| 1171 | case SMP_CMD_PAIRING_RSP: |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1172 | reason = smp_cmd_pairing_rsp(conn, skb); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1173 | break; |
| 1174 | |
| 1175 | case SMP_CMD_SECURITY_REQ: |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1176 | reason = smp_cmd_security_req(conn, skb); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1177 | break; |
| 1178 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1179 | case SMP_CMD_PAIRING_CONFIRM: |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1180 | reason = smp_cmd_pairing_confirm(conn, skb); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1181 | break; |
| 1182 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1183 | case SMP_CMD_PAIRING_RANDOM: |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1184 | reason = smp_cmd_pairing_random(conn, skb); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1185 | break; |
| 1186 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1187 | case SMP_CMD_ENCRYPT_INFO: |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1188 | reason = smp_cmd_encrypt_info(conn, skb); |
| 1189 | break; |
| 1190 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1191 | case SMP_CMD_MASTER_IDENT: |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1192 | reason = smp_cmd_master_ident(conn, skb); |
| 1193 | break; |
| 1194 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1195 | case SMP_CMD_IDENT_INFO: |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1196 | reason = smp_cmd_ident_info(conn, skb); |
| 1197 | break; |
| 1198 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1199 | case SMP_CMD_IDENT_ADDR_INFO: |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1200 | reason = smp_cmd_ident_addr_info(conn, skb); |
| 1201 | break; |
| 1202 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1203 | case SMP_CMD_SIGN_INFO: |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1204 | reason = smp_cmd_sign_info(conn, skb); |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1205 | break; |
| 1206 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1207 | default: |
| 1208 | BT_DBG("Unknown command code 0x%2.2x", code); |
| 1209 | |
| 1210 | reason = SMP_CMD_NOTSUPP; |
Vinicius Costa Gomes | 3a0259b | 2011-06-09 18:50:43 -0300 | [diff] [blame] | 1211 | err = -EOPNOTSUPP; |
| 1212 | goto done; |
| 1213 | } |
| 1214 | |
| 1215 | done: |
| 1216 | if (reason) |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 1217 | smp_failure(conn, reason); |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1218 | |
| 1219 | kfree_skb(skb); |
| 1220 | return err; |
| 1221 | } |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1222 | |
Johan Hedberg | 35d7027 | 2014-02-19 14:57:47 +0200 | [diff] [blame] | 1223 | static void smp_notify_keys(struct l2cap_conn *conn) |
| 1224 | { |
| 1225 | struct smp_chan *smp = conn->smp_chan; |
| 1226 | struct hci_conn *hcon = conn->hcon; |
| 1227 | struct hci_dev *hdev = hcon->hdev; |
Marcel Holtmann | 53ac6ab | 2014-03-09 23:38:42 -0700 | [diff] [blame] | 1228 | struct smp_cmd_pairing *req = (void *) &smp->preq[1]; |
| 1229 | struct smp_cmd_pairing *rsp = (void *) &smp->prsp[1]; |
| 1230 | bool persistent; |
Johan Hedberg | 35d7027 | 2014-02-19 14:57:47 +0200 | [diff] [blame] | 1231 | |
Johan Hedberg | 61b1a7f | 2014-03-20 12:54:16 +0200 | [diff] [blame] | 1232 | if (smp->remote_irk) { |
Johan Hedberg | 95fbac8 | 2014-02-19 15:18:31 +0200 | [diff] [blame] | 1233 | mgmt_new_irk(hdev, smp->remote_irk); |
Johan Hedberg | 61b1a7f | 2014-03-20 12:54:16 +0200 | [diff] [blame] | 1234 | /* Now that user space can be considered to know the |
| 1235 | * identity address track the connection based on it |
| 1236 | * from now on. |
| 1237 | */ |
| 1238 | bacpy(&hcon->dst, &smp->remote_irk->bdaddr); |
| 1239 | hcon->dst_type = smp->remote_irk->addr_type; |
| 1240 | l2cap_conn_update_id_addr(hcon); |
| 1241 | } |
Johan Hedberg | 95fbac8 | 2014-02-19 15:18:31 +0200 | [diff] [blame] | 1242 | |
Marcel Holtmann | 53ac6ab | 2014-03-09 23:38:42 -0700 | [diff] [blame] | 1243 | /* The LTKs and CSRKs should be persistent only if both sides |
| 1244 | * had the bonding bit set in their authentication requests. |
| 1245 | */ |
| 1246 | persistent = !!((req->auth_req & rsp->auth_req) & SMP_AUTH_BONDING); |
| 1247 | |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1248 | if (smp->csrk) { |
| 1249 | smp->csrk->bdaddr_type = hcon->dst_type; |
| 1250 | bacpy(&smp->csrk->bdaddr, &hcon->dst); |
Marcel Holtmann | 53ac6ab | 2014-03-09 23:38:42 -0700 | [diff] [blame] | 1251 | mgmt_new_csrk(hdev, smp->csrk, persistent); |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1252 | } |
| 1253 | |
| 1254 | if (smp->slave_csrk) { |
| 1255 | smp->slave_csrk->bdaddr_type = hcon->dst_type; |
| 1256 | bacpy(&smp->slave_csrk->bdaddr, &hcon->dst); |
Marcel Holtmann | 53ac6ab | 2014-03-09 23:38:42 -0700 | [diff] [blame] | 1257 | mgmt_new_csrk(hdev, smp->slave_csrk, persistent); |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1258 | } |
| 1259 | |
Johan Hedberg | 35d7027 | 2014-02-19 14:57:47 +0200 | [diff] [blame] | 1260 | if (smp->ltk) { |
| 1261 | smp->ltk->bdaddr_type = hcon->dst_type; |
| 1262 | bacpy(&smp->ltk->bdaddr, &hcon->dst); |
Marcel Holtmann | 53ac6ab | 2014-03-09 23:38:42 -0700 | [diff] [blame] | 1263 | mgmt_new_ltk(hdev, smp->ltk, persistent); |
Johan Hedberg | 35d7027 | 2014-02-19 14:57:47 +0200 | [diff] [blame] | 1264 | } |
| 1265 | |
| 1266 | if (smp->slave_ltk) { |
| 1267 | smp->slave_ltk->bdaddr_type = hcon->dst_type; |
| 1268 | bacpy(&smp->slave_ltk->bdaddr, &hcon->dst); |
Marcel Holtmann | 53ac6ab | 2014-03-09 23:38:42 -0700 | [diff] [blame] | 1269 | mgmt_new_ltk(hdev, smp->slave_ltk, persistent); |
Johan Hedberg | 35d7027 | 2014-02-19 14:57:47 +0200 | [diff] [blame] | 1270 | } |
| 1271 | } |
| 1272 | |
Johan Hedberg | 4bd6d38 | 2014-02-26 23:33:45 +0200 | [diff] [blame] | 1273 | int smp_distribute_keys(struct l2cap_conn *conn) |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1274 | { |
| 1275 | struct smp_cmd_pairing *req, *rsp; |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 1276 | struct smp_chan *smp = conn->smp_chan; |
Johan Hedberg | 524237c | 2014-02-22 19:06:31 +0200 | [diff] [blame] | 1277 | struct hci_conn *hcon = conn->hcon; |
| 1278 | struct hci_dev *hdev = hcon->hdev; |
Johan Hedberg | 38ccdc9 | 2014-02-28 18:10:02 +0200 | [diff] [blame] | 1279 | bool ltk_encrypt; |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1280 | __u8 *keydist; |
| 1281 | |
Johan Hedberg | 4bd6d38 | 2014-02-26 23:33:45 +0200 | [diff] [blame] | 1282 | BT_DBG("conn %p", conn); |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1283 | |
Johan Hedberg | 524237c | 2014-02-22 19:06:31 +0200 | [diff] [blame] | 1284 | if (!test_bit(HCI_CONN_LE_SMP_PEND, &hcon->flags)) |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 1285 | return 0; |
| 1286 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 1287 | rsp = (void *) &smp->prsp[1]; |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1288 | |
| 1289 | /* The responder sends its keys first */ |
Johan Hedberg | efabba3 | 2014-02-26 23:33:44 +0200 | [diff] [blame] | 1290 | if (hcon->out && (smp->remote_key_dist & 0x07)) |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1291 | return 0; |
| 1292 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 1293 | req = (void *) &smp->preq[1]; |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1294 | |
Johan Hedberg | 524237c | 2014-02-22 19:06:31 +0200 | [diff] [blame] | 1295 | if (hcon->out) { |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1296 | keydist = &rsp->init_key_dist; |
| 1297 | *keydist &= req->init_key_dist; |
| 1298 | } else { |
| 1299 | keydist = &rsp->resp_key_dist; |
| 1300 | *keydist &= req->resp_key_dist; |
| 1301 | } |
| 1302 | |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1303 | BT_DBG("keydist 0x%x", *keydist); |
| 1304 | |
| 1305 | if (*keydist & SMP_DIST_ENC_KEY) { |
| 1306 | struct smp_cmd_encrypt_info enc; |
| 1307 | struct smp_cmd_master_ident ident; |
Johan Hedberg | 23d0e12 | 2014-02-19 14:57:46 +0200 | [diff] [blame] | 1308 | struct smp_ltk *ltk; |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1309 | u8 authenticated; |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1310 | __le16 ediv; |
Marcel Holtmann | fe39c7b | 2014-02-27 16:00:28 -0800 | [diff] [blame] | 1311 | __le64 rand; |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1312 | |
| 1313 | get_random_bytes(enc.ltk, sizeof(enc.ltk)); |
| 1314 | get_random_bytes(&ediv, sizeof(ediv)); |
Marcel Holtmann | fe39c7b | 2014-02-27 16:00:28 -0800 | [diff] [blame] | 1315 | get_random_bytes(&rand, sizeof(rand)); |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1316 | |
| 1317 | smp_send_cmd(conn, SMP_CMD_ENCRYPT_INFO, sizeof(enc), &enc); |
| 1318 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1319 | authenticated = hcon->sec_level == BT_SECURITY_HIGH; |
Johan Hedberg | 524237c | 2014-02-22 19:06:31 +0200 | [diff] [blame] | 1320 | ltk = hci_add_ltk(hdev, &hcon->dst, hcon->dst_type, |
Johan Hedberg | 35d7027 | 2014-02-19 14:57:47 +0200 | [diff] [blame] | 1321 | HCI_SMP_LTK_SLAVE, authenticated, enc.ltk, |
Marcel Holtmann | fe39c7b | 2014-02-27 16:00:28 -0800 | [diff] [blame] | 1322 | smp->enc_key_size, ediv, rand); |
Johan Hedberg | 23d0e12 | 2014-02-19 14:57:46 +0200 | [diff] [blame] | 1323 | smp->slave_ltk = ltk; |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 1324 | |
Andrei Emeltchenko | 5811537 | 2012-03-12 12:13:06 +0200 | [diff] [blame] | 1325 | ident.ediv = ediv; |
Marcel Holtmann | fe39c7b | 2014-02-27 16:00:28 -0800 | [diff] [blame] | 1326 | ident.rand = rand; |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1327 | |
| 1328 | smp_send_cmd(conn, SMP_CMD_MASTER_IDENT, sizeof(ident), &ident); |
| 1329 | |
| 1330 | *keydist &= ~SMP_DIST_ENC_KEY; |
| 1331 | } |
| 1332 | |
| 1333 | if (*keydist & SMP_DIST_ID_KEY) { |
| 1334 | struct smp_cmd_ident_addr_info addrinfo; |
| 1335 | struct smp_cmd_ident_info idinfo; |
| 1336 | |
Johan Hedberg | 863efaf | 2014-02-22 19:06:32 +0200 | [diff] [blame] | 1337 | memcpy(idinfo.irk, hdev->irk, sizeof(idinfo.irk)); |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1338 | |
| 1339 | smp_send_cmd(conn, SMP_CMD_IDENT_INFO, sizeof(idinfo), &idinfo); |
| 1340 | |
Johan Hedberg | 82d4b35 | 2014-02-23 19:42:18 +0200 | [diff] [blame] | 1341 | /* The hci_conn contains the local identity address |
| 1342 | * after the connection has been established. |
| 1343 | * |
| 1344 | * This is true even when the connection has been |
| 1345 | * established using a resolvable random address. |
| 1346 | */ |
Johan Hedberg | 524237c | 2014-02-22 19:06:31 +0200 | [diff] [blame] | 1347 | bacpy(&addrinfo.bdaddr, &hcon->src); |
Johan Hedberg | 82d4b35 | 2014-02-23 19:42:18 +0200 | [diff] [blame] | 1348 | addrinfo.addr_type = hcon->src_type; |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1349 | |
| 1350 | smp_send_cmd(conn, SMP_CMD_IDENT_ADDR_INFO, sizeof(addrinfo), |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 1351 | &addrinfo); |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1352 | |
| 1353 | *keydist &= ~SMP_DIST_ID_KEY; |
| 1354 | } |
| 1355 | |
| 1356 | if (*keydist & SMP_DIST_SIGN) { |
| 1357 | struct smp_cmd_sign_info sign; |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1358 | struct smp_csrk *csrk; |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1359 | |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1360 | /* Generate a new random key */ |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1361 | get_random_bytes(sign.csrk, sizeof(sign.csrk)); |
| 1362 | |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1363 | csrk = kzalloc(sizeof(*csrk), GFP_KERNEL); |
| 1364 | if (csrk) { |
| 1365 | csrk->master = 0x00; |
| 1366 | memcpy(csrk->val, sign.csrk, sizeof(csrk->val)); |
| 1367 | } |
| 1368 | smp->slave_csrk = csrk; |
| 1369 | |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1370 | smp_send_cmd(conn, SMP_CMD_SIGN_INFO, sizeof(sign), &sign); |
| 1371 | |
| 1372 | *keydist &= ~SMP_DIST_SIGN; |
| 1373 | } |
| 1374 | |
Johan Hedberg | efabba3 | 2014-02-26 23:33:44 +0200 | [diff] [blame] | 1375 | /* If there are still keys to be received wait for them */ |
| 1376 | if ((smp->remote_key_dist & 0x07)) |
| 1377 | return 0; |
| 1378 | |
Johan Hedberg | 38ccdc9 | 2014-02-28 18:10:02 +0200 | [diff] [blame] | 1379 | /* Check if we should try to re-encrypt the link with the LTK. |
| 1380 | * SMP_FLAG_LTK_ENCRYPT flag is used to track whether we've |
| 1381 | * already tried this (in which case we shouldn't try again). |
| 1382 | * |
| 1383 | * The request will trigger an encryption key refresh event |
| 1384 | * which will cause a call to auth_cfm and eventually lead to |
| 1385 | * l2cap_core.c calling this smp_distribute_keys function again |
| 1386 | * and thereby completing the process. |
| 1387 | */ |
| 1388 | if (smp->ltk) |
| 1389 | ltk_encrypt = !test_and_set_bit(SMP_FLAG_LTK_ENCRYPT, |
| 1390 | &smp->smp_flags); |
| 1391 | else |
| 1392 | ltk_encrypt = false; |
Johan Hedberg | efabba3 | 2014-02-26 23:33:44 +0200 | [diff] [blame] | 1393 | |
Johan Hedberg | 38ccdc9 | 2014-02-28 18:10:02 +0200 | [diff] [blame] | 1394 | /* Re-encrypt the link with LTK if possible */ |
| 1395 | if (ltk_encrypt && hcon->out) { |
Johan Hedberg | e3098be | 2014-02-28 18:10:03 +0200 | [diff] [blame] | 1396 | queue_delayed_work(hdev->req_workqueue, &smp->reencrypt, |
| 1397 | SMP_REENCRYPT_TIMEOUT); |
Johan Hedberg | 38ccdc9 | 2014-02-28 18:10:02 +0200 | [diff] [blame] | 1398 | } else { |
| 1399 | clear_bit(HCI_CONN_LE_SMP_PEND, &hcon->flags); |
| 1400 | cancel_delayed_work_sync(&conn->security_timer); |
| 1401 | set_bit(SMP_FLAG_COMPLETE, &smp->smp_flags); |
| 1402 | smp_notify_keys(conn); |
| 1403 | smp_chan_destroy(conn); |
| 1404 | } |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 1405 | |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1406 | return 0; |
| 1407 | } |