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 | |
Johan Hedberg | 3b19146 | 2014-06-06 10:50:15 +0300 | [diff] [blame] | 32 | #include "ecc.h" |
Marcel Holtmann | ac4b723 | 2013-10-10 14:54:16 -0700 | [diff] [blame] | 33 | #include "smp.h" |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 34 | |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 35 | #define SMP_ALLOW_CMD(smp, code) set_bit(code, &smp->allow_cmd) |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 36 | |
Johan Hedberg | 3b19146 | 2014-06-06 10:50:15 +0300 | [diff] [blame] | 37 | /* Keys which are not distributed with Secure Connections */ |
| 38 | #define SMP_SC_NO_DIST (SMP_DIST_ENC_KEY | SMP_DIST_LINK_KEY); |
| 39 | |
Marcel Holtmann | 17b02e6 | 2012-03-01 14:32:37 -0800 | [diff] [blame] | 40 | #define SMP_TIMEOUT msecs_to_jiffies(30000) |
Vinicius Costa Gomes | 5d3de7d | 2011-06-14 13:37:41 -0300 | [diff] [blame] | 41 | |
Johan Hedberg | 0edb14d | 2014-05-26 13:29:28 +0300 | [diff] [blame] | 42 | #define AUTH_REQ_MASK(dev) (test_bit(HCI_SC_ENABLED, &(dev)->dev_flags) ? \ |
| 43 | 0x1f : 0x07) |
| 44 | #define KEY_DIST_MASK 0x07 |
Johan Hedberg | 065a13e | 2012-10-11 16:26:06 +0200 | [diff] [blame] | 45 | |
Johan Hedberg | cbbbe3e | 2014-06-06 11:30:08 +0300 | [diff] [blame] | 46 | /* Maximum message length that can be passed to aes_cmac */ |
| 47 | #define CMAC_MSG_MAX 80 |
| 48 | |
Johan Hedberg | 533e35d | 2014-06-16 19:25:18 +0300 | [diff] [blame] | 49 | enum { |
| 50 | SMP_FLAG_TK_VALID, |
| 51 | SMP_FLAG_CFM_PENDING, |
| 52 | SMP_FLAG_MITM_AUTH, |
| 53 | SMP_FLAG_COMPLETE, |
| 54 | SMP_FLAG_INITIATOR, |
Johan Hedberg | 6566877 | 2014-05-16 11:03:34 +0300 | [diff] [blame] | 55 | SMP_FLAG_SC, |
Johan Hedberg | d8f8edb | 2014-06-06 11:09:28 +0300 | [diff] [blame] | 56 | SMP_FLAG_REMOTE_PK, |
Johan Hedberg | 533e35d | 2014-06-16 19:25:18 +0300 | [diff] [blame] | 57 | }; |
Johan Hedberg | 4bc58f5 | 2014-05-20 09:45:47 +0300 | [diff] [blame] | 58 | |
| 59 | struct smp_chan { |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 60 | struct l2cap_conn *conn; |
| 61 | struct delayed_work security_timer; |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 62 | unsigned long allow_cmd; /* Bitmask of allowed commands */ |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 63 | |
Johan Hedberg | 4bc58f5 | 2014-05-20 09:45:47 +0300 | [diff] [blame] | 64 | u8 preq[7]; /* SMP Pairing Request */ |
| 65 | u8 prsp[7]; /* SMP Pairing Response */ |
| 66 | u8 prnd[16]; /* SMP Pairing Random (local) */ |
| 67 | u8 rrnd[16]; /* SMP Pairing Random (remote) */ |
| 68 | u8 pcnf[16]; /* SMP Pairing Confirm */ |
| 69 | u8 tk[16]; /* SMP Temporary Key */ |
| 70 | u8 enc_key_size; |
| 71 | u8 remote_key_dist; |
| 72 | bdaddr_t id_addr; |
| 73 | u8 id_addr_type; |
| 74 | u8 irk[16]; |
| 75 | struct smp_csrk *csrk; |
| 76 | struct smp_csrk *slave_csrk; |
| 77 | struct smp_ltk *ltk; |
| 78 | struct smp_ltk *slave_ltk; |
| 79 | struct smp_irk *remote_irk; |
Johan Hedberg | 6a77083 | 2014-06-06 11:54:04 +0300 | [diff] [blame] | 80 | u8 *link_key; |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 81 | unsigned long flags; |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 82 | u8 method; |
Johan Hedberg | 6a7bd10 | 2014-06-27 14:23:03 +0300 | [diff] [blame] | 83 | |
Johan Hedberg | 3b19146 | 2014-06-06 10:50:15 +0300 | [diff] [blame] | 84 | /* Secure Connections variables */ |
| 85 | u8 local_pk[64]; |
| 86 | u8 local_sk[32]; |
Johan Hedberg | d8f8edb | 2014-06-06 11:09:28 +0300 | [diff] [blame] | 87 | u8 remote_pk[64]; |
| 88 | u8 dhkey[32]; |
Johan Hedberg | 760b018 | 2014-06-06 11:44:05 +0300 | [diff] [blame] | 89 | u8 mackey[16]; |
Johan Hedberg | 3b19146 | 2014-06-06 10:50:15 +0300 | [diff] [blame] | 90 | |
Johan Hedberg | 6a7bd10 | 2014-06-27 14:23:03 +0300 | [diff] [blame] | 91 | struct crypto_blkcipher *tfm_aes; |
Johan Hedberg | 407cecf | 2014-05-02 14:19:47 +0300 | [diff] [blame] | 92 | struct crypto_hash *tfm_cmac; |
Johan Hedberg | 4bc58f5 | 2014-05-20 09:45:47 +0300 | [diff] [blame] | 93 | }; |
| 94 | |
Johan Hedberg | 8a2936f | 2014-06-16 19:25:19 +0300 | [diff] [blame] | 95 | static inline void swap_buf(const u8 *src, u8 *dst, size_t len) |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 96 | { |
Johan Hedberg | 8a2936f | 2014-06-16 19:25:19 +0300 | [diff] [blame] | 97 | size_t i; |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 98 | |
Johan Hedberg | 8a2936f | 2014-06-16 19:25:19 +0300 | [diff] [blame] | 99 | for (i = 0; i < len; i++) |
| 100 | dst[len - 1 - i] = src[i]; |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 101 | } |
| 102 | |
Johan Hedberg | cbbbe3e | 2014-06-06 11:30:08 +0300 | [diff] [blame] | 103 | static int aes_cmac(struct crypto_hash *tfm, const u8 k[16], const u8 *m, |
| 104 | size_t len, u8 mac[16]) |
| 105 | { |
| 106 | uint8_t tmp[16], mac_msb[16], msg_msb[CMAC_MSG_MAX]; |
| 107 | struct hash_desc desc; |
| 108 | struct scatterlist sg; |
| 109 | int err; |
| 110 | |
| 111 | if (len > CMAC_MSG_MAX) |
| 112 | return -EFBIG; |
| 113 | |
| 114 | if (!tfm) { |
| 115 | BT_ERR("tfm %p", tfm); |
| 116 | return -EINVAL; |
| 117 | } |
| 118 | |
| 119 | desc.tfm = tfm; |
| 120 | desc.flags = 0; |
| 121 | |
| 122 | crypto_hash_init(&desc); |
| 123 | |
| 124 | /* Swap key and message from LSB to MSB */ |
| 125 | swap_buf(k, tmp, 16); |
| 126 | swap_buf(m, msg_msb, len); |
| 127 | |
| 128 | BT_DBG("msg (len %zu) %*phN", len, (int) len, m); |
| 129 | BT_DBG("key %16phN", k); |
| 130 | |
| 131 | err = crypto_hash_setkey(tfm, tmp, 16); |
| 132 | if (err) { |
| 133 | BT_ERR("cipher setkey failed: %d", err); |
| 134 | return err; |
| 135 | } |
| 136 | |
| 137 | sg_init_one(&sg, msg_msb, len); |
| 138 | |
| 139 | err = crypto_hash_update(&desc, &sg, len); |
| 140 | if (err) { |
| 141 | BT_ERR("Hash update error %d", err); |
| 142 | return err; |
| 143 | } |
| 144 | |
| 145 | err = crypto_hash_final(&desc, mac_msb); |
| 146 | if (err) { |
| 147 | BT_ERR("Hash final error %d", err); |
| 148 | return err; |
| 149 | } |
| 150 | |
| 151 | swap_buf(mac_msb, mac, 16); |
| 152 | |
| 153 | BT_DBG("mac %16phN", mac); |
| 154 | |
| 155 | return 0; |
| 156 | } |
| 157 | |
| 158 | static int smp_f4(struct crypto_hash *tfm_cmac, const u8 u[32], const u8 v[32], |
| 159 | const u8 x[16], u8 z, u8 res[16]) |
| 160 | { |
| 161 | u8 m[65]; |
| 162 | int err; |
| 163 | |
| 164 | BT_DBG("u %32phN", u); |
| 165 | BT_DBG("v %32phN", v); |
| 166 | BT_DBG("x %16phN z %02x", x, z); |
| 167 | |
| 168 | m[0] = z; |
| 169 | memcpy(m + 1, v, 32); |
| 170 | memcpy(m + 33, u, 32); |
| 171 | |
| 172 | err = aes_cmac(tfm_cmac, x, m, sizeof(m), res); |
| 173 | if (err) |
| 174 | return err; |
| 175 | |
| 176 | BT_DBG("res %16phN", res); |
| 177 | |
| 178 | return err; |
| 179 | } |
| 180 | |
Johan Hedberg | 760b018 | 2014-06-06 11:44:05 +0300 | [diff] [blame] | 181 | static int smp_f5(struct crypto_hash *tfm_cmac, u8 w[32], u8 n1[16], u8 n2[16], |
| 182 | u8 a1[7], u8 a2[7], u8 mackey[16], u8 ltk[16]) |
| 183 | { |
| 184 | /* The btle, salt and length "magic" values are as defined in |
| 185 | * the SMP section of the Bluetooth core specification. In ASCII |
| 186 | * the btle value ends up being 'btle'. The salt is just a |
| 187 | * random number whereas length is the value 256 in little |
| 188 | * endian format. |
| 189 | */ |
| 190 | const u8 btle[4] = { 0x65, 0x6c, 0x74, 0x62 }; |
| 191 | const u8 salt[16] = { 0xbe, 0x83, 0x60, 0x5a, 0xdb, 0x0b, 0x37, 0x60, |
| 192 | 0x38, 0xa5, 0xf5, 0xaa, 0x91, 0x83, 0x88, 0x6c }; |
| 193 | const u8 length[2] = { 0x00, 0x01 }; |
| 194 | u8 m[53], t[16]; |
| 195 | int err; |
| 196 | |
| 197 | BT_DBG("w %32phN", w); |
| 198 | BT_DBG("n1 %16phN n2 %16phN", n1, n2); |
| 199 | BT_DBG("a1 %7phN a2 %7phN", a1, a2); |
| 200 | |
| 201 | err = aes_cmac(tfm_cmac, salt, w, 32, t); |
| 202 | if (err) |
| 203 | return err; |
| 204 | |
| 205 | BT_DBG("t %16phN", t); |
| 206 | |
| 207 | memcpy(m, length, 2); |
| 208 | memcpy(m + 2, a2, 7); |
| 209 | memcpy(m + 9, a1, 7); |
| 210 | memcpy(m + 16, n2, 16); |
| 211 | memcpy(m + 32, n1, 16); |
| 212 | memcpy(m + 48, btle, 4); |
| 213 | |
| 214 | m[52] = 0; /* Counter */ |
| 215 | |
| 216 | err = aes_cmac(tfm_cmac, t, m, sizeof(m), mackey); |
| 217 | if (err) |
| 218 | return err; |
| 219 | |
| 220 | BT_DBG("mackey %16phN", mackey); |
| 221 | |
| 222 | m[52] = 1; /* Counter */ |
| 223 | |
| 224 | err = aes_cmac(tfm_cmac, t, m, sizeof(m), ltk); |
| 225 | if (err) |
| 226 | return err; |
| 227 | |
| 228 | BT_DBG("ltk %16phN", ltk); |
| 229 | |
| 230 | return 0; |
| 231 | } |
| 232 | |
| 233 | static int smp_f6(struct crypto_hash *tfm_cmac, const u8 w[16], |
| 234 | const u8 n1[16], u8 n2[16], const u8 r[16], |
| 235 | const u8 io_cap[3], const u8 a1[7], const u8 a2[7], |
| 236 | u8 res[16]) |
| 237 | { |
| 238 | u8 m[65]; |
| 239 | int err; |
| 240 | |
| 241 | BT_DBG("w %16phN", w); |
| 242 | BT_DBG("n1 %16phN n2 %16phN", n1, n2); |
| 243 | BT_DBG("r %16phN io_cap %3phN a1 %7phN a2 %7phN", r, io_cap, a1, a2); |
| 244 | |
| 245 | memcpy(m, a2, 7); |
| 246 | memcpy(m + 7, a1, 7); |
| 247 | memcpy(m + 14, io_cap, 3); |
| 248 | memcpy(m + 17, r, 16); |
| 249 | memcpy(m + 33, n2, 16); |
| 250 | memcpy(m + 49, n1, 16); |
| 251 | |
| 252 | err = aes_cmac(tfm_cmac, w, m, sizeof(m), res); |
| 253 | if (err) |
| 254 | return err; |
| 255 | |
| 256 | BT_DBG("res %16phN", res); |
| 257 | |
| 258 | return err; |
| 259 | } |
| 260 | |
Johan Hedberg | 191dc7f | 2014-06-06 11:39:49 +0300 | [diff] [blame] | 261 | static int smp_g2(struct crypto_hash *tfm_cmac, const u8 u[32], const u8 v[32], |
| 262 | const u8 x[16], const u8 y[16], u32 *val) |
| 263 | { |
| 264 | u8 m[80], tmp[16]; |
| 265 | int err; |
| 266 | |
| 267 | BT_DBG("u %32phN", u); |
| 268 | BT_DBG("v %32phN", v); |
| 269 | BT_DBG("x %16phN y %16phN", x, y); |
| 270 | |
| 271 | memcpy(m, y, 16); |
| 272 | memcpy(m + 16, v, 32); |
| 273 | memcpy(m + 48, u, 32); |
| 274 | |
| 275 | err = aes_cmac(tfm_cmac, x, m, sizeof(m), tmp); |
| 276 | if (err) |
| 277 | return err; |
| 278 | |
| 279 | *val = get_unaligned_le32(tmp); |
| 280 | *val %= 1000000; |
| 281 | |
| 282 | BT_DBG("val %06u", *val); |
| 283 | |
| 284 | return 0; |
| 285 | } |
| 286 | |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 287 | static int smp_e(struct crypto_blkcipher *tfm, const u8 *k, u8 *r) |
| 288 | { |
| 289 | struct blkcipher_desc desc; |
| 290 | struct scatterlist sg; |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 291 | uint8_t tmp[16], data[16]; |
Johan Hedberg | 201a592 | 2013-12-02 10:49:04 +0200 | [diff] [blame] | 292 | int err; |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 293 | |
| 294 | if (tfm == NULL) { |
| 295 | BT_ERR("tfm %p", tfm); |
| 296 | return -EINVAL; |
| 297 | } |
| 298 | |
| 299 | desc.tfm = tfm; |
| 300 | desc.flags = 0; |
| 301 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 302 | /* The most significant octet of key corresponds to k[0] */ |
Johan Hedberg | 8a2936f | 2014-06-16 19:25:19 +0300 | [diff] [blame] | 303 | swap_buf(k, tmp, 16); |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 304 | |
| 305 | err = crypto_blkcipher_setkey(tfm, tmp, 16); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 306 | if (err) { |
| 307 | BT_ERR("cipher setkey failed: %d", err); |
| 308 | return err; |
| 309 | } |
| 310 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 311 | /* Most significant octet of plaintextData corresponds to data[0] */ |
Johan Hedberg | 8a2936f | 2014-06-16 19:25:19 +0300 | [diff] [blame] | 312 | swap_buf(r, data, 16); |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 313 | |
| 314 | sg_init_one(&sg, data, 16); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 315 | |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 316 | err = crypto_blkcipher_encrypt(&desc, &sg, &sg, 16); |
| 317 | if (err) |
| 318 | BT_ERR("Encrypt data error %d", err); |
| 319 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 320 | /* Most significant octet of encryptedData corresponds to data[0] */ |
Johan Hedberg | 8a2936f | 2014-06-16 19:25:19 +0300 | [diff] [blame] | 321 | swap_buf(data, r, 16); |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 322 | |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 323 | return err; |
| 324 | } |
| 325 | |
Johan Hedberg | 6a77083 | 2014-06-06 11:54:04 +0300 | [diff] [blame] | 326 | static int smp_h6(struct crypto_hash *tfm_cmac, const u8 w[16], |
| 327 | const u8 key_id[4], u8 res[16]) |
| 328 | { |
| 329 | int err; |
| 330 | |
| 331 | BT_DBG("w %16phN key_id %4phN", w, key_id); |
| 332 | |
| 333 | err = aes_cmac(tfm_cmac, w, key_id, 4, res); |
| 334 | if (err) |
| 335 | return err; |
| 336 | |
| 337 | BT_DBG("res %16phN", res); |
| 338 | |
| 339 | return err; |
| 340 | } |
| 341 | |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 342 | static int smp_ah(struct crypto_blkcipher *tfm, u8 irk[16], u8 r[3], u8 res[3]) |
| 343 | { |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 344 | u8 _res[16]; |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 345 | int err; |
| 346 | |
| 347 | /* r' = padding || r */ |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 348 | memcpy(_res, r, 3); |
| 349 | memset(_res + 3, 0, 13); |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 350 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 351 | err = smp_e(tfm, irk, _res); |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 352 | if (err) { |
| 353 | BT_ERR("Encrypt error"); |
| 354 | return err; |
| 355 | } |
| 356 | |
| 357 | /* The output of the random address function ah is: |
| 358 | * ah(h, r) = e(k, r') mod 2^24 |
| 359 | * The output of the security function e is then truncated to 24 bits |
| 360 | * by taking the least significant 24 bits of the output of e as the |
| 361 | * result of ah. |
| 362 | */ |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 363 | memcpy(res, _res, 3); |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 364 | |
| 365 | return 0; |
| 366 | } |
| 367 | |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 368 | bool smp_irk_matches(struct hci_dev *hdev, u8 irk[16], bdaddr_t *bdaddr) |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 369 | { |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 370 | struct l2cap_chan *chan = hdev->smp_data; |
| 371 | struct crypto_blkcipher *tfm; |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 372 | u8 hash[3]; |
| 373 | int err; |
| 374 | |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 375 | if (!chan || !chan->data) |
| 376 | return false; |
| 377 | |
| 378 | tfm = chan->data; |
| 379 | |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 380 | BT_DBG("RPA %pMR IRK %*phN", bdaddr, 16, irk); |
| 381 | |
| 382 | err = smp_ah(tfm, irk, &bdaddr->b[3], hash); |
| 383 | if (err) |
| 384 | return false; |
| 385 | |
| 386 | return !memcmp(bdaddr->b, hash, 3); |
| 387 | } |
| 388 | |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 389 | int smp_generate_rpa(struct hci_dev *hdev, u8 irk[16], bdaddr_t *rpa) |
Johan Hedberg | b1e2b3a | 2014-02-23 19:42:19 +0200 | [diff] [blame] | 390 | { |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 391 | struct l2cap_chan *chan = hdev->smp_data; |
| 392 | struct crypto_blkcipher *tfm; |
Johan Hedberg | b1e2b3a | 2014-02-23 19:42:19 +0200 | [diff] [blame] | 393 | int err; |
| 394 | |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 395 | if (!chan || !chan->data) |
| 396 | return -EOPNOTSUPP; |
| 397 | |
| 398 | tfm = chan->data; |
| 399 | |
Johan Hedberg | b1e2b3a | 2014-02-23 19:42:19 +0200 | [diff] [blame] | 400 | get_random_bytes(&rpa->b[3], 3); |
| 401 | |
| 402 | rpa->b[5] &= 0x3f; /* Clear two most significant bits */ |
| 403 | rpa->b[5] |= 0x40; /* Set second most significant bit */ |
| 404 | |
| 405 | err = smp_ah(tfm, irk, &rpa->b[3], rpa->b); |
| 406 | if (err < 0) |
| 407 | return err; |
| 408 | |
| 409 | BT_DBG("RPA %pMR", rpa); |
| 410 | |
| 411 | return 0; |
| 412 | } |
| 413 | |
Johan Hedberg | e491eaf | 2014-10-25 21:15:37 +0200 | [diff] [blame] | 414 | static int smp_c1(struct crypto_blkcipher *tfm_aes, u8 k[16], u8 r[16], |
| 415 | u8 preq[7], u8 pres[7], u8 _iat, bdaddr_t *ia, u8 _rat, |
| 416 | bdaddr_t *ra, u8 res[16]) |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 417 | { |
| 418 | u8 p1[16], p2[16]; |
| 419 | int err; |
| 420 | |
| 421 | memset(p1, 0, 16); |
| 422 | |
| 423 | /* p1 = pres || preq || _rat || _iat */ |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 424 | p1[0] = _iat; |
| 425 | p1[1] = _rat; |
| 426 | memcpy(p1 + 2, preq, 7); |
| 427 | memcpy(p1 + 9, pres, 7); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 428 | |
| 429 | /* p2 = padding || ia || ra */ |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 430 | memcpy(p2, ra, 6); |
| 431 | memcpy(p2 + 6, ia, 6); |
| 432 | memset(p2 + 12, 0, 4); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 433 | |
| 434 | /* res = r XOR p1 */ |
| 435 | u128_xor((u128 *) res, (u128 *) r, (u128 *) p1); |
| 436 | |
| 437 | /* res = e(k, res) */ |
Johan Hedberg | e491eaf | 2014-10-25 21:15:37 +0200 | [diff] [blame] | 438 | err = smp_e(tfm_aes, k, res); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 439 | if (err) { |
| 440 | BT_ERR("Encrypt data error"); |
| 441 | return err; |
| 442 | } |
| 443 | |
| 444 | /* res = res XOR p2 */ |
| 445 | u128_xor((u128 *) res, (u128 *) res, (u128 *) p2); |
| 446 | |
| 447 | /* res = e(k, res) */ |
Johan Hedberg | e491eaf | 2014-10-25 21:15:37 +0200 | [diff] [blame] | 448 | err = smp_e(tfm_aes, k, res); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 449 | if (err) |
| 450 | BT_ERR("Encrypt data error"); |
| 451 | |
| 452 | return err; |
| 453 | } |
| 454 | |
Johan Hedberg | e491eaf | 2014-10-25 21:15:37 +0200 | [diff] [blame] | 455 | static int smp_s1(struct crypto_blkcipher *tfm_aes, u8 k[16], u8 r1[16], |
| 456 | u8 r2[16], u8 _r[16]) |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 457 | { |
| 458 | int err; |
| 459 | |
| 460 | /* Just least significant octets from r1 and r2 are considered */ |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 461 | memcpy(_r, r2, 8); |
| 462 | memcpy(_r + 8, r1, 8); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 463 | |
Johan Hedberg | e491eaf | 2014-10-25 21:15:37 +0200 | [diff] [blame] | 464 | err = smp_e(tfm_aes, k, _r); |
Anderson Briglia | d22ef0b | 2011-06-09 18:50:44 -0300 | [diff] [blame] | 465 | if (err) |
| 466 | BT_ERR("Encrypt data error"); |
| 467 | |
| 468 | return err; |
| 469 | } |
| 470 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 471 | static void smp_send_cmd(struct l2cap_conn *conn, u8 code, u16 len, void *data) |
| 472 | { |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 473 | struct l2cap_chan *chan = conn->smp; |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 474 | struct smp_chan *smp; |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 475 | struct kvec iv[2]; |
| 476 | struct msghdr msg; |
| 477 | |
| 478 | if (!chan) |
| 479 | return; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 480 | |
| 481 | BT_DBG("code 0x%2.2x", code); |
| 482 | |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 483 | iv[0].iov_base = &code; |
| 484 | iv[0].iov_len = 1; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 485 | |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 486 | iv[1].iov_base = data; |
| 487 | iv[1].iov_len = len; |
| 488 | |
| 489 | memset(&msg, 0, sizeof(msg)); |
| 490 | |
| 491 | msg.msg_iov = (struct iovec *) &iv; |
| 492 | msg.msg_iovlen = 2; |
| 493 | |
| 494 | l2cap_chan_send(chan, &msg, 1 + len); |
Vinicius Costa Gomes | e2dcd11 | 2011-08-19 21:06:50 -0300 | [diff] [blame] | 495 | |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 496 | if (!chan->data) |
| 497 | return; |
| 498 | |
| 499 | smp = chan->data; |
| 500 | |
| 501 | cancel_delayed_work_sync(&smp->security_timer); |
Johan Hedberg | 1b0921d | 2014-09-05 22:19:48 +0300 | [diff] [blame] | 502 | schedule_delayed_work(&smp->security_timer, SMP_TIMEOUT); |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 503 | } |
| 504 | |
Johan Hedberg | d2eb9e1 | 2014-05-16 10:59:06 +0300 | [diff] [blame] | 505 | static u8 authreq_to_seclevel(u8 authreq) |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 506 | { |
Johan Hedberg | d2eb9e1 | 2014-05-16 10:59:06 +0300 | [diff] [blame] | 507 | if (authreq & SMP_AUTH_MITM) { |
| 508 | if (authreq & SMP_AUTH_SC) |
| 509 | return BT_SECURITY_FIPS; |
| 510 | else |
| 511 | return BT_SECURITY_HIGH; |
| 512 | } else { |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 513 | return BT_SECURITY_MEDIUM; |
Johan Hedberg | d2eb9e1 | 2014-05-16 10:59:06 +0300 | [diff] [blame] | 514 | } |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | static __u8 seclevel_to_authreq(__u8 sec_level) |
| 518 | { |
| 519 | switch (sec_level) { |
Johan Hedberg | d2eb9e1 | 2014-05-16 10:59:06 +0300 | [diff] [blame] | 520 | case BT_SECURITY_FIPS: |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 521 | case BT_SECURITY_HIGH: |
| 522 | return SMP_AUTH_MITM | SMP_AUTH_BONDING; |
| 523 | case BT_SECURITY_MEDIUM: |
| 524 | return SMP_AUTH_BONDING; |
| 525 | default: |
| 526 | return SMP_AUTH_NONE; |
| 527 | } |
| 528 | } |
| 529 | |
Vinicius Costa Gomes | b8e66ea | 2011-06-09 18:50:52 -0300 | [diff] [blame] | 530 | static void build_pairing_cmd(struct l2cap_conn *conn, |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 531 | struct smp_cmd_pairing *req, |
| 532 | struct smp_cmd_pairing *rsp, __u8 authreq) |
Vinicius Costa Gomes | b8e66ea | 2011-06-09 18:50:52 -0300 | [diff] [blame] | 533 | { |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 534 | struct l2cap_chan *chan = conn->smp; |
| 535 | struct smp_chan *smp = chan->data; |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 536 | struct hci_conn *hcon = conn->hcon; |
| 537 | struct hci_dev *hdev = hcon->hdev; |
| 538 | u8 local_dist = 0, remote_dist = 0; |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 539 | |
Johan Hedberg | b6ae845 | 2014-07-30 09:22:22 +0300 | [diff] [blame] | 540 | if (test_bit(HCI_BONDABLE, &conn->hcon->hdev->dev_flags)) { |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 541 | local_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN; |
| 542 | remote_dist = SMP_DIST_ENC_KEY | SMP_DIST_SIGN; |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 543 | authreq |= SMP_AUTH_BONDING; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 544 | } else { |
| 545 | authreq &= ~SMP_AUTH_BONDING; |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 546 | } |
| 547 | |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 548 | if (test_bit(HCI_RPA_RESOLVING, &hdev->dev_flags)) |
| 549 | remote_dist |= SMP_DIST_ID_KEY; |
| 550 | |
Johan Hedberg | 863efaf | 2014-02-22 19:06:32 +0200 | [diff] [blame] | 551 | if (test_bit(HCI_PRIVACY, &hdev->dev_flags)) |
| 552 | local_dist |= SMP_DIST_ID_KEY; |
| 553 | |
Johan Hedberg | df8e1a4 | 2014-06-06 10:39:56 +0300 | [diff] [blame] | 554 | if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags)) { |
| 555 | if ((authreq & SMP_AUTH_SC) && |
| 556 | test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) { |
| 557 | local_dist |= SMP_DIST_LINK_KEY; |
| 558 | remote_dist |= SMP_DIST_LINK_KEY; |
| 559 | } |
| 560 | } else { |
| 561 | authreq &= ~SMP_AUTH_SC; |
| 562 | } |
| 563 | |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 564 | if (rsp == NULL) { |
| 565 | req->io_capability = conn->hcon->io_capability; |
| 566 | req->oob_flag = SMP_OOB_NOT_PRESENT; |
| 567 | req->max_key_size = SMP_MAX_ENC_KEY_SIZE; |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 568 | req->init_key_dist = local_dist; |
| 569 | req->resp_key_dist = remote_dist; |
Johan Hedberg | 0edb14d | 2014-05-26 13:29:28 +0300 | [diff] [blame] | 570 | req->auth_req = (authreq & AUTH_REQ_MASK(hdev)); |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 571 | |
| 572 | smp->remote_key_dist = remote_dist; |
Vinicius Costa Gomes | 54790f7 | 2011-07-07 18:59:38 -0300 | [diff] [blame] | 573 | return; |
| 574 | } |
| 575 | |
| 576 | rsp->io_capability = conn->hcon->io_capability; |
| 577 | rsp->oob_flag = SMP_OOB_NOT_PRESENT; |
| 578 | rsp->max_key_size = SMP_MAX_ENC_KEY_SIZE; |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 579 | rsp->init_key_dist = req->init_key_dist & remote_dist; |
| 580 | rsp->resp_key_dist = req->resp_key_dist & local_dist; |
Johan Hedberg | 0edb14d | 2014-05-26 13:29:28 +0300 | [diff] [blame] | 581 | rsp->auth_req = (authreq & AUTH_REQ_MASK(hdev)); |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 582 | |
| 583 | smp->remote_key_dist = rsp->init_key_dist; |
Vinicius Costa Gomes | b8e66ea | 2011-06-09 18:50:52 -0300 | [diff] [blame] | 584 | } |
| 585 | |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 586 | static u8 check_enc_key_size(struct l2cap_conn *conn, __u8 max_key_size) |
| 587 | { |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 588 | struct l2cap_chan *chan = conn->smp; |
| 589 | struct smp_chan *smp = chan->data; |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 590 | |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 591 | if ((max_key_size > SMP_MAX_ENC_KEY_SIZE) || |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 592 | (max_key_size < SMP_MIN_ENC_KEY_SIZE)) |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 593 | return SMP_ENC_KEY_SIZE; |
| 594 | |
Vinicius Costa Gomes | f7aa611 | 2012-01-30 19:29:12 -0300 | [diff] [blame] | 595 | smp->enc_key_size = max_key_size; |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 596 | |
| 597 | return 0; |
| 598 | } |
| 599 | |
Johan Hedberg | 6f48e26 | 2014-08-11 22:06:44 +0300 | [diff] [blame] | 600 | static void smp_chan_destroy(struct l2cap_conn *conn) |
| 601 | { |
| 602 | struct l2cap_chan *chan = conn->smp; |
| 603 | struct smp_chan *smp = chan->data; |
| 604 | bool complete; |
| 605 | |
| 606 | BUG_ON(!smp); |
| 607 | |
| 608 | cancel_delayed_work_sync(&smp->security_timer); |
Johan Hedberg | 6f48e26 | 2014-08-11 22:06:44 +0300 | [diff] [blame] | 609 | |
Johan Hedberg | 6f48e26 | 2014-08-11 22:06:44 +0300 | [diff] [blame] | 610 | complete = test_bit(SMP_FLAG_COMPLETE, &smp->flags); |
| 611 | mgmt_smp_complete(conn->hcon, complete); |
| 612 | |
| 613 | kfree(smp->csrk); |
| 614 | kfree(smp->slave_csrk); |
Johan Hedberg | 6a77083 | 2014-06-06 11:54:04 +0300 | [diff] [blame] | 615 | kfree(smp->link_key); |
Johan Hedberg | 6f48e26 | 2014-08-11 22:06:44 +0300 | [diff] [blame] | 616 | |
| 617 | crypto_free_blkcipher(smp->tfm_aes); |
Johan Hedberg | 407cecf | 2014-05-02 14:19:47 +0300 | [diff] [blame] | 618 | crypto_free_hash(smp->tfm_cmac); |
Johan Hedberg | 6f48e26 | 2014-08-11 22:06:44 +0300 | [diff] [blame] | 619 | |
| 620 | /* If pairing failed clean up any keys we might have */ |
| 621 | if (!complete) { |
| 622 | if (smp->ltk) { |
Johan Hedberg | 970d0f1 | 2014-11-13 14:37:47 +0200 | [diff] [blame] | 623 | list_del_rcu(&smp->ltk->list); |
| 624 | kfree_rcu(smp->ltk, rcu); |
Johan Hedberg | 6f48e26 | 2014-08-11 22:06:44 +0300 | [diff] [blame] | 625 | } |
| 626 | |
| 627 | if (smp->slave_ltk) { |
Johan Hedberg | 970d0f1 | 2014-11-13 14:37:47 +0200 | [diff] [blame] | 628 | list_del_rcu(&smp->slave_ltk->list); |
| 629 | kfree_rcu(smp->slave_ltk, rcu); |
Johan Hedberg | 6f48e26 | 2014-08-11 22:06:44 +0300 | [diff] [blame] | 630 | } |
| 631 | |
| 632 | if (smp->remote_irk) { |
Johan Hedberg | adae20c | 2014-11-13 14:37:48 +0200 | [diff] [blame] | 633 | list_del_rcu(&smp->remote_irk->list); |
| 634 | kfree_rcu(smp->remote_irk, rcu); |
Johan Hedberg | 6f48e26 | 2014-08-11 22:06:44 +0300 | [diff] [blame] | 635 | } |
| 636 | } |
| 637 | |
| 638 | chan->data = NULL; |
| 639 | kfree(smp); |
| 640 | hci_conn_drop(conn->hcon); |
| 641 | } |
| 642 | |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 643 | static void smp_failure(struct l2cap_conn *conn, u8 reason) |
Brian Gix | 4f957a7 | 2011-11-23 08:28:36 -0800 | [diff] [blame] | 644 | { |
Johan Hedberg | bab73cb | 2012-02-09 16:07:29 +0200 | [diff] [blame] | 645 | struct hci_conn *hcon = conn->hcon; |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 646 | struct l2cap_chan *chan = conn->smp; |
Johan Hedberg | bab73cb | 2012-02-09 16:07:29 +0200 | [diff] [blame] | 647 | |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 648 | if (reason) |
Brian Gix | 4f957a7 | 2011-11-23 08:28:36 -0800 | [diff] [blame] | 649 | smp_send_cmd(conn, SMP_CMD_PAIRING_FAIL, sizeof(reason), |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 650 | &reason); |
Brian Gix | 4f957a7 | 2011-11-23 08:28:36 -0800 | [diff] [blame] | 651 | |
Marcel Holtmann | ce39fb4 | 2013-10-13 02:23:39 -0700 | [diff] [blame] | 652 | clear_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags); |
Johan Hedberg | e1e930f | 2014-09-08 17:09:49 -0700 | [diff] [blame] | 653 | mgmt_auth_failed(hcon, HCI_ERROR_AUTH_FAILURE); |
Vinicius Costa Gomes | f1c09c0 | 2012-02-01 18:27:56 -0300 | [diff] [blame] | 654 | |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 655 | if (chan->data) |
Vinicius Costa Gomes | f1c09c0 | 2012-02-01 18:27:56 -0300 | [diff] [blame] | 656 | smp_chan_destroy(conn); |
Brian Gix | 4f957a7 | 2011-11-23 08:28:36 -0800 | [diff] [blame] | 657 | } |
| 658 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 659 | #define JUST_WORKS 0x00 |
| 660 | #define JUST_CFM 0x01 |
| 661 | #define REQ_PASSKEY 0x02 |
| 662 | #define CFM_PASSKEY 0x03 |
| 663 | #define REQ_OOB 0x04 |
| 664 | #define OVERLAP 0xFF |
| 665 | |
| 666 | static const u8 gen_method[5][5] = { |
| 667 | { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY }, |
| 668 | { JUST_WORKS, JUST_CFM, REQ_PASSKEY, JUST_WORKS, REQ_PASSKEY }, |
| 669 | { CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, CFM_PASSKEY }, |
| 670 | { JUST_WORKS, JUST_CFM, JUST_WORKS, JUST_WORKS, JUST_CFM }, |
| 671 | { CFM_PASSKEY, CFM_PASSKEY, REQ_PASSKEY, JUST_WORKS, OVERLAP }, |
| 672 | }; |
| 673 | |
Johan Hedberg | 581370c | 2014-06-17 13:07:38 +0300 | [diff] [blame] | 674 | static u8 get_auth_method(struct smp_chan *smp, u8 local_io, u8 remote_io) |
| 675 | { |
Johan Hedberg | 2bcd400 | 2014-07-09 19:18:09 +0300 | [diff] [blame] | 676 | /* If either side has unknown io_caps, use JUST_CFM (which gets |
| 677 | * converted later to JUST_WORKS if we're initiators. |
| 678 | */ |
Johan Hedberg | 581370c | 2014-06-17 13:07:38 +0300 | [diff] [blame] | 679 | if (local_io > SMP_IO_KEYBOARD_DISPLAY || |
| 680 | remote_io > SMP_IO_KEYBOARD_DISPLAY) |
Johan Hedberg | 2bcd400 | 2014-07-09 19:18:09 +0300 | [diff] [blame] | 681 | return JUST_CFM; |
Johan Hedberg | 581370c | 2014-06-17 13:07:38 +0300 | [diff] [blame] | 682 | |
| 683 | return gen_method[remote_io][local_io]; |
| 684 | } |
| 685 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 686 | static int tk_request(struct l2cap_conn *conn, u8 remote_oob, u8 auth, |
| 687 | u8 local_io, u8 remote_io) |
| 688 | { |
| 689 | struct hci_conn *hcon = conn->hcon; |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 690 | struct l2cap_chan *chan = conn->smp; |
| 691 | struct smp_chan *smp = chan->data; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 692 | u32 passkey = 0; |
| 693 | int ret = 0; |
| 694 | |
| 695 | /* Initialize key for JUST WORKS */ |
| 696 | memset(smp->tk, 0, sizeof(smp->tk)); |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 697 | clear_bit(SMP_FLAG_TK_VALID, &smp->flags); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 698 | |
| 699 | BT_DBG("tk_request: auth:%d lcl:%d rem:%d", auth, local_io, remote_io); |
| 700 | |
Johan Hedberg | 2bcd400 | 2014-07-09 19:18:09 +0300 | [diff] [blame] | 701 | /* If neither side wants MITM, either "just" confirm an incoming |
| 702 | * request or use just-works for outgoing ones. The JUST_CFM |
| 703 | * will be converted to JUST_WORKS if necessary later in this |
| 704 | * function. If either side has MITM look up the method from the |
| 705 | * table. |
| 706 | */ |
Johan Hedberg | 581370c | 2014-06-17 13:07:38 +0300 | [diff] [blame] | 707 | if (!(auth & SMP_AUTH_MITM)) |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 708 | smp->method = JUST_CFM; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 709 | else |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 710 | smp->method = get_auth_method(smp, local_io, remote_io); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 711 | |
Johan Hedberg | a82505c | 2014-03-24 14:39:07 +0200 | [diff] [blame] | 712 | /* Don't confirm locally initiated pairing attempts */ |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 713 | if (smp->method == JUST_CFM && test_bit(SMP_FLAG_INITIATOR, |
| 714 | &smp->flags)) |
| 715 | smp->method = JUST_WORKS; |
Johan Hedberg | a82505c | 2014-03-24 14:39:07 +0200 | [diff] [blame] | 716 | |
Johan Hedberg | 02f3e25 | 2014-07-16 15:09:13 +0300 | [diff] [blame] | 717 | /* Don't bother user space with no IO capabilities */ |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 718 | if (smp->method == JUST_CFM && |
| 719 | hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT) |
| 720 | smp->method = JUST_WORKS; |
Johan Hedberg | 02f3e25 | 2014-07-16 15:09:13 +0300 | [diff] [blame] | 721 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 722 | /* If Just Works, Continue with Zero TK */ |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 723 | if (smp->method == JUST_WORKS) { |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 724 | set_bit(SMP_FLAG_TK_VALID, &smp->flags); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 725 | return 0; |
| 726 | } |
| 727 | |
| 728 | /* Not Just Works/Confirm results in MITM Authentication */ |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 729 | if (smp->method != JUST_CFM) { |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 730 | set_bit(SMP_FLAG_MITM_AUTH, &smp->flags); |
Johan Hedberg | 5eb596f | 2014-09-18 11:26:32 +0300 | [diff] [blame] | 731 | if (hcon->pending_sec_level < BT_SECURITY_HIGH) |
| 732 | hcon->pending_sec_level = BT_SECURITY_HIGH; |
| 733 | } |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 734 | |
| 735 | /* If both devices have Keyoard-Display I/O, the master |
| 736 | * Confirms and the slave Enters the passkey. |
| 737 | */ |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 738 | if (smp->method == OVERLAP) { |
Johan Hedberg | 40bef30 | 2014-07-16 11:42:27 +0300 | [diff] [blame] | 739 | if (hcon->role == HCI_ROLE_MASTER) |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 740 | smp->method = CFM_PASSKEY; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 741 | else |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 742 | smp->method = REQ_PASSKEY; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 743 | } |
| 744 | |
Johan Hedberg | 01ad34d | 2014-03-19 14:14:53 +0200 | [diff] [blame] | 745 | /* Generate random passkey. */ |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 746 | if (smp->method == CFM_PASSKEY) { |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 747 | memset(smp->tk, 0, sizeof(smp->tk)); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 748 | get_random_bytes(&passkey, sizeof(passkey)); |
| 749 | passkey %= 1000000; |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 750 | put_unaligned_le32(passkey, smp->tk); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 751 | BT_DBG("PassKey: %d", passkey); |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 752 | set_bit(SMP_FLAG_TK_VALID, &smp->flags); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 753 | } |
| 754 | |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 755 | if (smp->method == REQ_PASSKEY) |
Marcel Holtmann | ce39fb4 | 2013-10-13 02:23:39 -0700 | [diff] [blame] | 756 | ret = mgmt_user_passkey_request(hcon->hdev, &hcon->dst, |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 757 | hcon->type, hcon->dst_type); |
Johan Hedberg | 783e057 | 2014-05-31 18:48:26 +0300 | [diff] [blame^] | 758 | else if (smp->method == JUST_CFM) |
Johan Hedberg | 4eb65e6 | 2014-03-24 14:39:05 +0200 | [diff] [blame] | 759 | ret = mgmt_user_confirm_request(hcon->hdev, &hcon->dst, |
| 760 | hcon->type, hcon->dst_type, |
| 761 | passkey, 1); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 762 | else |
Johan Hedberg | 01ad34d | 2014-03-19 14:14:53 +0200 | [diff] [blame] | 763 | ret = mgmt_user_passkey_notify(hcon->hdev, &hcon->dst, |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 764 | hcon->type, hcon->dst_type, |
Johan Hedberg | 39adbff | 2014-03-20 08:18:14 +0200 | [diff] [blame] | 765 | passkey, 0); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 766 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 767 | return ret; |
| 768 | } |
| 769 | |
Johan Hedberg | 1cc6114 | 2014-05-20 09:45:52 +0300 | [diff] [blame] | 770 | static u8 smp_confirm(struct smp_chan *smp) |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 771 | { |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 772 | struct l2cap_conn *conn = smp->conn; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 773 | struct smp_cmd_pairing_confirm cp; |
| 774 | int ret; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 775 | |
| 776 | BT_DBG("conn %p", conn); |
| 777 | |
Johan Hedberg | e491eaf | 2014-10-25 21:15:37 +0200 | [diff] [blame] | 778 | ret = smp_c1(smp->tfm_aes, smp->tk, smp->prnd, smp->preq, smp->prsp, |
Johan Hedberg | b1cd5fd | 2014-02-28 12:54:17 +0200 | [diff] [blame] | 779 | conn->hcon->init_addr_type, &conn->hcon->init_addr, |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 780 | conn->hcon->resp_addr_type, &conn->hcon->resp_addr, |
| 781 | cp.confirm_val); |
Johan Hedberg | 1cc6114 | 2014-05-20 09:45:52 +0300 | [diff] [blame] | 782 | if (ret) |
| 783 | return SMP_UNSPECIFIED; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 784 | |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 785 | clear_bit(SMP_FLAG_CFM_PENDING, &smp->flags); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 786 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 787 | smp_send_cmd(smp->conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cp), &cp); |
| 788 | |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 789 | if (conn->hcon->out) |
| 790 | SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM); |
| 791 | else |
| 792 | SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM); |
| 793 | |
Johan Hedberg | 1cc6114 | 2014-05-20 09:45:52 +0300 | [diff] [blame] | 794 | return 0; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 795 | } |
| 796 | |
Johan Hedberg | 861580a | 2014-05-20 09:45:51 +0300 | [diff] [blame] | 797 | static u8 smp_random(struct smp_chan *smp) |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 798 | { |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 799 | struct l2cap_conn *conn = smp->conn; |
| 800 | struct hci_conn *hcon = conn->hcon; |
Johan Hedberg | 861580a | 2014-05-20 09:45:51 +0300 | [diff] [blame] | 801 | u8 confirm[16]; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 802 | int ret; |
| 803 | |
Johan Hedberg | ec70f36 | 2014-06-27 14:23:04 +0300 | [diff] [blame] | 804 | if (IS_ERR_OR_NULL(smp->tfm_aes)) |
Johan Hedberg | 861580a | 2014-05-20 09:45:51 +0300 | [diff] [blame] | 805 | return SMP_UNSPECIFIED; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 806 | |
| 807 | BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave"); |
| 808 | |
Johan Hedberg | e491eaf | 2014-10-25 21:15:37 +0200 | [diff] [blame] | 809 | ret = smp_c1(smp->tfm_aes, smp->tk, smp->rrnd, smp->preq, smp->prsp, |
Johan Hedberg | b1cd5fd | 2014-02-28 12:54:17 +0200 | [diff] [blame] | 810 | hcon->init_addr_type, &hcon->init_addr, |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 811 | hcon->resp_addr_type, &hcon->resp_addr, confirm); |
Johan Hedberg | 861580a | 2014-05-20 09:45:51 +0300 | [diff] [blame] | 812 | if (ret) |
| 813 | return SMP_UNSPECIFIED; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 814 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 815 | if (memcmp(smp->pcnf, confirm, sizeof(smp->pcnf)) != 0) { |
| 816 | BT_ERR("Pairing failed (confirmation values mismatch)"); |
Johan Hedberg | 861580a | 2014-05-20 09:45:51 +0300 | [diff] [blame] | 817 | return SMP_CONFIRM_FAILED; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 818 | } |
| 819 | |
| 820 | if (hcon->out) { |
Marcel Holtmann | fe39c7b | 2014-02-27 16:00:28 -0800 | [diff] [blame] | 821 | u8 stk[16]; |
| 822 | __le64 rand = 0; |
| 823 | __le16 ediv = 0; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 824 | |
Johan Hedberg | e491eaf | 2014-10-25 21:15:37 +0200 | [diff] [blame] | 825 | smp_s1(smp->tfm_aes, smp->tk, smp->rrnd, smp->prnd, stk); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 826 | |
Vinicius Costa Gomes | f7aa611 | 2012-01-30 19:29:12 -0300 | [diff] [blame] | 827 | memset(stk + smp->enc_key_size, 0, |
Gustavo F. Padovan | 0412468 | 2012-03-08 01:25:00 -0300 | [diff] [blame] | 828 | SMP_MAX_ENC_KEY_SIZE - smp->enc_key_size); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 829 | |
Johan Hedberg | 861580a | 2014-05-20 09:45:51 +0300 | [diff] [blame] | 830 | if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags)) |
| 831 | return SMP_UNSPECIFIED; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 832 | |
| 833 | hci_le_start_enc(hcon, ediv, rand, stk); |
Vinicius Costa Gomes | f7aa611 | 2012-01-30 19:29:12 -0300 | [diff] [blame] | 834 | hcon->enc_key_size = smp->enc_key_size; |
Johan Hedberg | fe59a05 | 2014-07-01 19:14:12 +0300 | [diff] [blame] | 835 | set_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 836 | } else { |
Johan Hedberg | fff3490 | 2014-06-10 15:19:50 +0300 | [diff] [blame] | 837 | u8 stk[16], auth; |
Marcel Holtmann | fe39c7b | 2014-02-27 16:00:28 -0800 | [diff] [blame] | 838 | __le64 rand = 0; |
| 839 | __le16 ediv = 0; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 840 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 841 | smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd), |
| 842 | smp->prnd); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 843 | |
Johan Hedberg | e491eaf | 2014-10-25 21:15:37 +0200 | [diff] [blame] | 844 | smp_s1(smp->tfm_aes, smp->tk, smp->prnd, smp->rrnd, stk); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 845 | |
Vinicius Costa Gomes | f7aa611 | 2012-01-30 19:29:12 -0300 | [diff] [blame] | 846 | memset(stk + smp->enc_key_size, 0, |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 847 | SMP_MAX_ENC_KEY_SIZE - smp->enc_key_size); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 848 | |
Johan Hedberg | fff3490 | 2014-06-10 15:19:50 +0300 | [diff] [blame] | 849 | if (hcon->pending_sec_level == BT_SECURITY_HIGH) |
| 850 | auth = 1; |
| 851 | else |
| 852 | auth = 0; |
| 853 | |
Johan Hedberg | 7d5843b | 2014-06-16 19:25:15 +0300 | [diff] [blame] | 854 | /* Even though there's no _SLAVE suffix this is the |
| 855 | * slave STK we're adding for later lookup (the master |
| 856 | * STK never needs to be stored). |
| 857 | */ |
Marcel Holtmann | ce39fb4 | 2013-10-13 02:23:39 -0700 | [diff] [blame] | 858 | hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, |
Johan Hedberg | 2ceba53 | 2014-06-16 19:25:16 +0300 | [diff] [blame] | 859 | SMP_STK, auth, stk, smp->enc_key_size, ediv, rand); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 860 | } |
| 861 | |
Johan Hedberg | 861580a | 2014-05-20 09:45:51 +0300 | [diff] [blame] | 862 | return 0; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 863 | } |
| 864 | |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 865 | static void smp_notify_keys(struct l2cap_conn *conn) |
| 866 | { |
| 867 | struct l2cap_chan *chan = conn->smp; |
| 868 | struct smp_chan *smp = chan->data; |
| 869 | struct hci_conn *hcon = conn->hcon; |
| 870 | struct hci_dev *hdev = hcon->hdev; |
| 871 | struct smp_cmd_pairing *req = (void *) &smp->preq[1]; |
| 872 | struct smp_cmd_pairing *rsp = (void *) &smp->prsp[1]; |
| 873 | bool persistent; |
| 874 | |
| 875 | if (smp->remote_irk) { |
| 876 | mgmt_new_irk(hdev, smp->remote_irk); |
| 877 | /* Now that user space can be considered to know the |
| 878 | * identity address track the connection based on it |
| 879 | * from now on. |
| 880 | */ |
| 881 | bacpy(&hcon->dst, &smp->remote_irk->bdaddr); |
| 882 | hcon->dst_type = smp->remote_irk->addr_type; |
Johan Hedberg | f3d82d0 | 2014-09-05 22:19:50 +0300 | [diff] [blame] | 883 | queue_work(hdev->workqueue, &conn->id_addr_update_work); |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 884 | |
| 885 | /* When receiving an indentity resolving key for |
| 886 | * a remote device that does not use a resolvable |
| 887 | * private address, just remove the key so that |
| 888 | * it is possible to use the controller white |
| 889 | * list for scanning. |
| 890 | * |
| 891 | * Userspace will have been told to not store |
| 892 | * this key at this point. So it is safe to |
| 893 | * just remove it. |
| 894 | */ |
| 895 | if (!bacmp(&smp->remote_irk->rpa, BDADDR_ANY)) { |
Johan Hedberg | adae20c | 2014-11-13 14:37:48 +0200 | [diff] [blame] | 896 | list_del_rcu(&smp->remote_irk->list); |
| 897 | kfree_rcu(smp->remote_irk, rcu); |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 898 | smp->remote_irk = NULL; |
| 899 | } |
| 900 | } |
| 901 | |
| 902 | /* The LTKs and CSRKs should be persistent only if both sides |
| 903 | * had the bonding bit set in their authentication requests. |
| 904 | */ |
| 905 | persistent = !!((req->auth_req & rsp->auth_req) & SMP_AUTH_BONDING); |
| 906 | |
| 907 | if (smp->csrk) { |
| 908 | smp->csrk->bdaddr_type = hcon->dst_type; |
| 909 | bacpy(&smp->csrk->bdaddr, &hcon->dst); |
| 910 | mgmt_new_csrk(hdev, smp->csrk, persistent); |
| 911 | } |
| 912 | |
| 913 | if (smp->slave_csrk) { |
| 914 | smp->slave_csrk->bdaddr_type = hcon->dst_type; |
| 915 | bacpy(&smp->slave_csrk->bdaddr, &hcon->dst); |
| 916 | mgmt_new_csrk(hdev, smp->slave_csrk, persistent); |
| 917 | } |
| 918 | |
| 919 | if (smp->ltk) { |
| 920 | smp->ltk->bdaddr_type = hcon->dst_type; |
| 921 | bacpy(&smp->ltk->bdaddr, &hcon->dst); |
| 922 | mgmt_new_ltk(hdev, smp->ltk, persistent); |
| 923 | } |
| 924 | |
| 925 | if (smp->slave_ltk) { |
| 926 | smp->slave_ltk->bdaddr_type = hcon->dst_type; |
| 927 | bacpy(&smp->slave_ltk->bdaddr, &hcon->dst); |
| 928 | mgmt_new_ltk(hdev, smp->slave_ltk, persistent); |
| 929 | } |
Johan Hedberg | 6a77083 | 2014-06-06 11:54:04 +0300 | [diff] [blame] | 930 | |
| 931 | if (smp->link_key) { |
| 932 | hci_add_link_key(hdev, smp->conn->hcon, &hcon->dst, |
| 933 | smp->link_key, HCI_LK_AUTH_COMBINATION_P256, |
| 934 | 0, NULL); |
| 935 | } |
| 936 | } |
| 937 | |
| 938 | static void sc_generate_link_key(struct smp_chan *smp) |
| 939 | { |
| 940 | /* These constants are as specified in the core specification. |
| 941 | * In ASCII they spell out to 'tmp1' and 'lebr'. |
| 942 | */ |
| 943 | const u8 tmp1[4] = { 0x31, 0x70, 0x6d, 0x74 }; |
| 944 | const u8 lebr[4] = { 0x72, 0x62, 0x65, 0x6c }; |
| 945 | |
| 946 | smp->link_key = kzalloc(16, GFP_KERNEL); |
| 947 | if (!smp->link_key) |
| 948 | return; |
| 949 | |
| 950 | if (smp_h6(smp->tfm_cmac, smp->tk, tmp1, smp->link_key)) { |
| 951 | kfree(smp->link_key); |
| 952 | smp->link_key = NULL; |
| 953 | return; |
| 954 | } |
| 955 | |
| 956 | if (smp_h6(smp->tfm_cmac, smp->link_key, lebr, smp->link_key)) { |
| 957 | kfree(smp->link_key); |
| 958 | smp->link_key = NULL; |
| 959 | return; |
| 960 | } |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 961 | } |
| 962 | |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 963 | static void smp_allow_key_dist(struct smp_chan *smp) |
| 964 | { |
| 965 | /* Allow the first expected phase 3 PDU. The rest of the PDUs |
| 966 | * will be allowed in each PDU handler to ensure we receive |
| 967 | * them in the correct order. |
| 968 | */ |
| 969 | if (smp->remote_key_dist & SMP_DIST_ENC_KEY) |
| 970 | SMP_ALLOW_CMD(smp, SMP_CMD_ENCRYPT_INFO); |
| 971 | else if (smp->remote_key_dist & SMP_DIST_ID_KEY) |
| 972 | SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_INFO); |
| 973 | else if (smp->remote_key_dist & SMP_DIST_SIGN) |
| 974 | SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO); |
| 975 | } |
| 976 | |
Johan Hedberg | d6268e8 | 2014-09-05 22:19:51 +0300 | [diff] [blame] | 977 | static void smp_distribute_keys(struct smp_chan *smp) |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 978 | { |
| 979 | struct smp_cmd_pairing *req, *rsp; |
Johan Hedberg | 86d1407 | 2014-08-11 22:06:43 +0300 | [diff] [blame] | 980 | struct l2cap_conn *conn = smp->conn; |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 981 | struct hci_conn *hcon = conn->hcon; |
| 982 | struct hci_dev *hdev = hcon->hdev; |
| 983 | __u8 *keydist; |
| 984 | |
| 985 | BT_DBG("conn %p", conn); |
| 986 | |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 987 | rsp = (void *) &smp->prsp[1]; |
| 988 | |
| 989 | /* The responder sends its keys first */ |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 990 | if (hcon->out && (smp->remote_key_dist & KEY_DIST_MASK)) { |
| 991 | smp_allow_key_dist(smp); |
Johan Hedberg | 86d1407 | 2014-08-11 22:06:43 +0300 | [diff] [blame] | 992 | return; |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 993 | } |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 994 | |
| 995 | req = (void *) &smp->preq[1]; |
| 996 | |
| 997 | if (hcon->out) { |
| 998 | keydist = &rsp->init_key_dist; |
| 999 | *keydist &= req->init_key_dist; |
| 1000 | } else { |
| 1001 | keydist = &rsp->resp_key_dist; |
| 1002 | *keydist &= req->resp_key_dist; |
| 1003 | } |
| 1004 | |
Johan Hedberg | 6a77083 | 2014-06-06 11:54:04 +0300 | [diff] [blame] | 1005 | if (test_bit(SMP_FLAG_SC, &smp->flags)) { |
| 1006 | if (*keydist & SMP_DIST_LINK_KEY) |
| 1007 | sc_generate_link_key(smp); |
| 1008 | |
| 1009 | /* Clear the keys which are generated but not distributed */ |
| 1010 | *keydist &= ~SMP_SC_NO_DIST; |
| 1011 | } |
| 1012 | |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 1013 | BT_DBG("keydist 0x%x", *keydist); |
| 1014 | |
| 1015 | if (*keydist & SMP_DIST_ENC_KEY) { |
| 1016 | struct smp_cmd_encrypt_info enc; |
| 1017 | struct smp_cmd_master_ident ident; |
| 1018 | struct smp_ltk *ltk; |
| 1019 | u8 authenticated; |
| 1020 | __le16 ediv; |
| 1021 | __le64 rand; |
| 1022 | |
| 1023 | get_random_bytes(enc.ltk, sizeof(enc.ltk)); |
| 1024 | get_random_bytes(&ediv, sizeof(ediv)); |
| 1025 | get_random_bytes(&rand, sizeof(rand)); |
| 1026 | |
| 1027 | smp_send_cmd(conn, SMP_CMD_ENCRYPT_INFO, sizeof(enc), &enc); |
| 1028 | |
| 1029 | authenticated = hcon->sec_level == BT_SECURITY_HIGH; |
| 1030 | ltk = hci_add_ltk(hdev, &hcon->dst, hcon->dst_type, |
| 1031 | SMP_LTK_SLAVE, authenticated, enc.ltk, |
| 1032 | smp->enc_key_size, ediv, rand); |
| 1033 | smp->slave_ltk = ltk; |
| 1034 | |
| 1035 | ident.ediv = ediv; |
| 1036 | ident.rand = rand; |
| 1037 | |
| 1038 | smp_send_cmd(conn, SMP_CMD_MASTER_IDENT, sizeof(ident), &ident); |
| 1039 | |
| 1040 | *keydist &= ~SMP_DIST_ENC_KEY; |
| 1041 | } |
| 1042 | |
| 1043 | if (*keydist & SMP_DIST_ID_KEY) { |
| 1044 | struct smp_cmd_ident_addr_info addrinfo; |
| 1045 | struct smp_cmd_ident_info idinfo; |
| 1046 | |
| 1047 | memcpy(idinfo.irk, hdev->irk, sizeof(idinfo.irk)); |
| 1048 | |
| 1049 | smp_send_cmd(conn, SMP_CMD_IDENT_INFO, sizeof(idinfo), &idinfo); |
| 1050 | |
| 1051 | /* The hci_conn contains the local identity address |
| 1052 | * after the connection has been established. |
| 1053 | * |
| 1054 | * This is true even when the connection has been |
| 1055 | * established using a resolvable random address. |
| 1056 | */ |
| 1057 | bacpy(&addrinfo.bdaddr, &hcon->src); |
| 1058 | addrinfo.addr_type = hcon->src_type; |
| 1059 | |
| 1060 | smp_send_cmd(conn, SMP_CMD_IDENT_ADDR_INFO, sizeof(addrinfo), |
| 1061 | &addrinfo); |
| 1062 | |
| 1063 | *keydist &= ~SMP_DIST_ID_KEY; |
| 1064 | } |
| 1065 | |
| 1066 | if (*keydist & SMP_DIST_SIGN) { |
| 1067 | struct smp_cmd_sign_info sign; |
| 1068 | struct smp_csrk *csrk; |
| 1069 | |
| 1070 | /* Generate a new random key */ |
| 1071 | get_random_bytes(sign.csrk, sizeof(sign.csrk)); |
| 1072 | |
| 1073 | csrk = kzalloc(sizeof(*csrk), GFP_KERNEL); |
| 1074 | if (csrk) { |
| 1075 | csrk->master = 0x00; |
| 1076 | memcpy(csrk->val, sign.csrk, sizeof(csrk->val)); |
| 1077 | } |
| 1078 | smp->slave_csrk = csrk; |
| 1079 | |
| 1080 | smp_send_cmd(conn, SMP_CMD_SIGN_INFO, sizeof(sign), &sign); |
| 1081 | |
| 1082 | *keydist &= ~SMP_DIST_SIGN; |
| 1083 | } |
| 1084 | |
| 1085 | /* If there are still keys to be received wait for them */ |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1086 | if (smp->remote_key_dist & KEY_DIST_MASK) { |
| 1087 | smp_allow_key_dist(smp); |
Johan Hedberg | 86d1407 | 2014-08-11 22:06:43 +0300 | [diff] [blame] | 1088 | return; |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1089 | } |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 1090 | |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 1091 | set_bit(SMP_FLAG_COMPLETE, &smp->flags); |
| 1092 | smp_notify_keys(conn); |
| 1093 | |
| 1094 | smp_chan_destroy(conn); |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 1095 | } |
| 1096 | |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 1097 | static void smp_timeout(struct work_struct *work) |
| 1098 | { |
| 1099 | struct smp_chan *smp = container_of(work, struct smp_chan, |
| 1100 | security_timer.work); |
| 1101 | struct l2cap_conn *conn = smp->conn; |
| 1102 | |
| 1103 | BT_DBG("conn %p", conn); |
| 1104 | |
Johan Hedberg | 1e91c29 | 2014-08-18 20:33:29 +0300 | [diff] [blame] | 1105 | hci_disconnect(conn->hcon, HCI_ERROR_REMOTE_USER_TERM); |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 1106 | } |
| 1107 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1108 | static struct smp_chan *smp_chan_create(struct l2cap_conn *conn) |
| 1109 | { |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1110 | struct l2cap_chan *chan = conn->smp; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1111 | struct smp_chan *smp; |
| 1112 | |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 1113 | smp = kzalloc(sizeof(*smp), GFP_ATOMIC); |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1114 | if (!smp) |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1115 | return NULL; |
| 1116 | |
Johan Hedberg | 6a7bd10 | 2014-06-27 14:23:03 +0300 | [diff] [blame] | 1117 | smp->tfm_aes = crypto_alloc_blkcipher("ecb(aes)", 0, CRYPTO_ALG_ASYNC); |
| 1118 | if (IS_ERR(smp->tfm_aes)) { |
| 1119 | BT_ERR("Unable to create ECB crypto context"); |
| 1120 | kfree(smp); |
| 1121 | return NULL; |
| 1122 | } |
| 1123 | |
Johan Hedberg | 407cecf | 2014-05-02 14:19:47 +0300 | [diff] [blame] | 1124 | smp->tfm_cmac = crypto_alloc_hash("cmac(aes)", 0, CRYPTO_ALG_ASYNC); |
| 1125 | if (IS_ERR(smp->tfm_cmac)) { |
| 1126 | BT_ERR("Unable to create CMAC crypto context"); |
| 1127 | crypto_free_blkcipher(smp->tfm_aes); |
| 1128 | kfree(smp); |
| 1129 | return NULL; |
| 1130 | } |
| 1131 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1132 | smp->conn = conn; |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1133 | chan->data = smp; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1134 | |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1135 | SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_FAIL); |
| 1136 | |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 1137 | INIT_DELAYED_WORK(&smp->security_timer, smp_timeout); |
| 1138 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1139 | hci_conn_hold(conn->hcon); |
| 1140 | |
| 1141 | return smp; |
| 1142 | } |
| 1143 | |
Johan Hedberg | 760b018 | 2014-06-06 11:44:05 +0300 | [diff] [blame] | 1144 | static int sc_mackey_and_ltk(struct smp_chan *smp, u8 mackey[16], u8 ltk[16]) |
| 1145 | { |
| 1146 | struct hci_conn *hcon = smp->conn->hcon; |
| 1147 | u8 *na, *nb, a[7], b[7]; |
| 1148 | |
| 1149 | if (hcon->out) { |
| 1150 | na = smp->prnd; |
| 1151 | nb = smp->rrnd; |
| 1152 | } else { |
| 1153 | na = smp->rrnd; |
| 1154 | nb = smp->prnd; |
| 1155 | } |
| 1156 | |
| 1157 | memcpy(a, &hcon->init_addr, 6); |
| 1158 | memcpy(b, &hcon->resp_addr, 6); |
| 1159 | a[6] = hcon->init_addr_type; |
| 1160 | b[6] = hcon->resp_addr_type; |
| 1161 | |
| 1162 | return smp_f5(smp->tfm_cmac, smp->dhkey, na, nb, a, b, mackey, ltk); |
| 1163 | } |
| 1164 | |
| 1165 | static int sc_user_reply(struct smp_chan *smp, u16 mgmt_op, __le32 passkey) |
| 1166 | { |
| 1167 | struct hci_conn *hcon = smp->conn->hcon; |
| 1168 | struct smp_cmd_dhkey_check check; |
| 1169 | u8 a[7], b[7], *local_addr, *remote_addr; |
| 1170 | u8 io_cap[3], r[16]; |
| 1171 | |
| 1172 | switch (mgmt_op) { |
| 1173 | case MGMT_OP_USER_PASSKEY_NEG_REPLY: |
| 1174 | smp_failure(smp->conn, SMP_PASSKEY_ENTRY_FAILED); |
| 1175 | return 0; |
| 1176 | case MGMT_OP_USER_CONFIRM_NEG_REPLY: |
| 1177 | smp_failure(smp->conn, SMP_NUMERIC_COMP_FAILED); |
| 1178 | return 0; |
| 1179 | } |
| 1180 | |
| 1181 | memcpy(a, &hcon->init_addr, 6); |
| 1182 | memcpy(b, &hcon->resp_addr, 6); |
| 1183 | a[6] = hcon->init_addr_type; |
| 1184 | b[6] = hcon->resp_addr_type; |
| 1185 | |
| 1186 | if (hcon->out) { |
| 1187 | local_addr = a; |
| 1188 | remote_addr = b; |
| 1189 | memcpy(io_cap, &smp->preq[1], 3); |
| 1190 | } else { |
| 1191 | local_addr = b; |
| 1192 | remote_addr = a; |
| 1193 | memcpy(io_cap, &smp->prsp[1], 3); |
| 1194 | } |
| 1195 | |
| 1196 | memcpy(r, &passkey, sizeof(passkey)); |
| 1197 | memset(r + sizeof(passkey), 0, sizeof(r) - sizeof(passkey)); |
| 1198 | |
| 1199 | smp_f6(smp->tfm_cmac, smp->mackey, smp->prnd, smp->rrnd, r, io_cap, |
| 1200 | local_addr, remote_addr, check.e); |
| 1201 | |
| 1202 | smp_send_cmd(smp->conn, SMP_CMD_DHKEY_CHECK, sizeof(check), &check); |
| 1203 | |
| 1204 | return 0; |
| 1205 | } |
| 1206 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1207 | int smp_user_confirm_reply(struct hci_conn *hcon, u16 mgmt_op, __le32 passkey) |
| 1208 | { |
Johan Hedberg | b10e801 | 2014-06-27 14:23:07 +0300 | [diff] [blame] | 1209 | struct l2cap_conn *conn = hcon->l2cap_data; |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1210 | struct l2cap_chan *chan; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1211 | struct smp_chan *smp; |
| 1212 | u32 value; |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1213 | int err; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1214 | |
| 1215 | BT_DBG(""); |
| 1216 | |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1217 | if (!conn) |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1218 | return -ENOTCONN; |
| 1219 | |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1220 | chan = conn->smp; |
| 1221 | if (!chan) |
| 1222 | return -ENOTCONN; |
| 1223 | |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1224 | l2cap_chan_lock(chan); |
| 1225 | if (!chan->data) { |
| 1226 | err = -ENOTCONN; |
| 1227 | goto unlock; |
| 1228 | } |
| 1229 | |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1230 | smp = chan->data; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1231 | |
Johan Hedberg | 760b018 | 2014-06-06 11:44:05 +0300 | [diff] [blame] | 1232 | if (test_bit(SMP_FLAG_SC, &smp->flags)) { |
| 1233 | err = sc_user_reply(smp, mgmt_op, passkey); |
| 1234 | goto unlock; |
| 1235 | } |
| 1236 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1237 | switch (mgmt_op) { |
| 1238 | case MGMT_OP_USER_PASSKEY_REPLY: |
| 1239 | value = le32_to_cpu(passkey); |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 1240 | memset(smp->tk, 0, sizeof(smp->tk)); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1241 | BT_DBG("PassKey: %d", value); |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 1242 | put_unaligned_le32(value, smp->tk); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1243 | /* Fall Through */ |
| 1244 | case MGMT_OP_USER_CONFIRM_REPLY: |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 1245 | set_bit(SMP_FLAG_TK_VALID, &smp->flags); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1246 | break; |
| 1247 | case MGMT_OP_USER_PASSKEY_NEG_REPLY: |
| 1248 | case MGMT_OP_USER_CONFIRM_NEG_REPLY: |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 1249 | smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED); |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1250 | err = 0; |
| 1251 | goto unlock; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1252 | default: |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 1253 | smp_failure(conn, SMP_PASSKEY_ENTRY_FAILED); |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1254 | err = -EOPNOTSUPP; |
| 1255 | goto unlock; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1256 | } |
| 1257 | |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1258 | err = 0; |
| 1259 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1260 | /* If it is our turn to send Pairing Confirm, do so now */ |
Johan Hedberg | 1cc6114 | 2014-05-20 09:45:52 +0300 | [diff] [blame] | 1261 | if (test_bit(SMP_FLAG_CFM_PENDING, &smp->flags)) { |
| 1262 | u8 rsp = smp_confirm(smp); |
| 1263 | if (rsp) |
| 1264 | smp_failure(conn, rsp); |
| 1265 | } |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1266 | |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1267 | unlock: |
| 1268 | l2cap_chan_unlock(chan); |
| 1269 | return err; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1270 | } |
| 1271 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1272 | 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] | 1273 | { |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 1274 | struct smp_cmd_pairing rsp, *req = (void *) skb->data; |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1275 | struct l2cap_chan *chan = conn->smp; |
Johan Hedberg | b3c6410 | 2014-07-10 11:02:07 +0300 | [diff] [blame] | 1276 | struct hci_dev *hdev = conn->hcon->hdev; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1277 | struct smp_chan *smp; |
Johan Hedberg | c7262e7 | 2014-06-17 13:07:37 +0300 | [diff] [blame] | 1278 | u8 key_size, auth, sec_level; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1279 | int ret; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1280 | |
| 1281 | BT_DBG("conn %p", conn); |
| 1282 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1283 | if (skb->len < sizeof(*req)) |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 1284 | return SMP_INVALID_PARAMS; |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1285 | |
Johan Hedberg | 40bef30 | 2014-07-16 11:42:27 +0300 | [diff] [blame] | 1286 | if (conn->hcon->role != HCI_ROLE_SLAVE) |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1287 | return SMP_CMD_NOTSUPP; |
| 1288 | |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1289 | if (!chan->data) |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1290 | smp = smp_chan_create(conn); |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1291 | else |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1292 | smp = chan->data; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1293 | |
Andrei Emeltchenko | d08fd0e | 2012-07-19 17:03:43 +0300 | [diff] [blame] | 1294 | if (!smp) |
| 1295 | return SMP_UNSPECIFIED; |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 1296 | |
Johan Hedberg | c05b933 | 2014-09-10 17:37:42 -0700 | [diff] [blame] | 1297 | /* We didn't start the pairing, so match remote */ |
Johan Hedberg | 0edb14d | 2014-05-26 13:29:28 +0300 | [diff] [blame] | 1298 | auth = req->auth_req & AUTH_REQ_MASK(hdev); |
Johan Hedberg | c05b933 | 2014-09-10 17:37:42 -0700 | [diff] [blame] | 1299 | |
Johan Hedberg | b6ae845 | 2014-07-30 09:22:22 +0300 | [diff] [blame] | 1300 | if (!test_bit(HCI_BONDABLE, &hdev->dev_flags) && |
Johan Hedberg | c05b933 | 2014-09-10 17:37:42 -0700 | [diff] [blame] | 1301 | (auth & SMP_AUTH_BONDING)) |
Johan Hedberg | b3c6410 | 2014-07-10 11:02:07 +0300 | [diff] [blame] | 1302 | return SMP_PAIRING_NOTSUPP; |
| 1303 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 1304 | smp->preq[0] = SMP_CMD_PAIRING_REQ; |
| 1305 | memcpy(&smp->preq[1], req, sizeof(*req)); |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 1306 | skb_pull(skb, sizeof(*req)); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1307 | |
Johan Hedberg | 5be5e27 | 2014-09-10 17:58:54 -0700 | [diff] [blame] | 1308 | if (conn->hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT) |
Johan Hedberg | 1afc2a1 | 2014-09-10 17:37:44 -0700 | [diff] [blame] | 1309 | sec_level = BT_SECURITY_MEDIUM; |
| 1310 | else |
| 1311 | sec_level = authreq_to_seclevel(auth); |
| 1312 | |
Johan Hedberg | c7262e7 | 2014-06-17 13:07:37 +0300 | [diff] [blame] | 1313 | if (sec_level > conn->hcon->pending_sec_level) |
| 1314 | conn->hcon->pending_sec_level = sec_level; |
Ido Yariv | fdde0a2 | 2012-03-05 20:09:38 +0200 | [diff] [blame] | 1315 | |
Stephen Hemminger | 49c922b | 2014-10-27 21:12:20 -0700 | [diff] [blame] | 1316 | /* If we need MITM check that it can be achieved */ |
Johan Hedberg | 2ed8f65 | 2014-06-17 13:07:39 +0300 | [diff] [blame] | 1317 | if (conn->hcon->pending_sec_level >= BT_SECURITY_HIGH) { |
| 1318 | u8 method; |
| 1319 | |
| 1320 | method = get_auth_method(smp, conn->hcon->io_capability, |
| 1321 | req->io_capability); |
| 1322 | if (method == JUST_WORKS || method == JUST_CFM) |
| 1323 | return SMP_AUTH_REQUIREMENTS; |
| 1324 | } |
| 1325 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1326 | build_pairing_cmd(conn, req, &rsp, auth); |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 1327 | |
Johan Hedberg | 6566877 | 2014-05-16 11:03:34 +0300 | [diff] [blame] | 1328 | if (rsp.auth_req & SMP_AUTH_SC) |
| 1329 | set_bit(SMP_FLAG_SC, &smp->flags); |
| 1330 | |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 1331 | key_size = min(req->max_key_size, rsp.max_key_size); |
| 1332 | if (check_enc_key_size(conn, key_size)) |
| 1333 | return SMP_ENC_KEY_SIZE; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1334 | |
Johan Hedberg | e84a6b1 | 2013-12-02 10:49:03 +0200 | [diff] [blame] | 1335 | get_random_bytes(smp->prnd, sizeof(smp->prnd)); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1336 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 1337 | smp->prsp[0] = SMP_CMD_PAIRING_RSP; |
| 1338 | memcpy(&smp->prsp[1], &rsp, sizeof(rsp)); |
Anderson Briglia | f01ead3 | 2011-06-09 18:50:45 -0300 | [diff] [blame] | 1339 | |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 1340 | smp_send_cmd(conn, SMP_CMD_PAIRING_RSP, sizeof(rsp), &rsp); |
Johan Hedberg | 3b19146 | 2014-06-06 10:50:15 +0300 | [diff] [blame] | 1341 | |
| 1342 | clear_bit(SMP_FLAG_INITIATOR, &smp->flags); |
| 1343 | |
| 1344 | if (test_bit(SMP_FLAG_SC, &smp->flags)) { |
| 1345 | SMP_ALLOW_CMD(smp, SMP_CMD_PUBLIC_KEY); |
| 1346 | /* Clear bits which are generated but not distributed */ |
| 1347 | smp->remote_key_dist &= ~SMP_SC_NO_DIST; |
| 1348 | /* Wait for Public Key from Initiating Device */ |
| 1349 | return 0; |
| 1350 | } else { |
| 1351 | SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_CONFIRM); |
| 1352 | } |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1353 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1354 | /* Request setup of TK */ |
| 1355 | ret = tk_request(conn, 0, auth, rsp.io_capability, req->io_capability); |
| 1356 | if (ret) |
| 1357 | return SMP_UNSPECIFIED; |
| 1358 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1359 | return 0; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1360 | } |
| 1361 | |
Johan Hedberg | 3b19146 | 2014-06-06 10:50:15 +0300 | [diff] [blame] | 1362 | static u8 sc_send_public_key(struct smp_chan *smp) |
| 1363 | { |
| 1364 | BT_DBG(""); |
| 1365 | |
| 1366 | /* Generate local key pair for Secure Connections */ |
| 1367 | if (!ecc_make_key(smp->local_pk, smp->local_sk)) |
| 1368 | return SMP_UNSPECIFIED; |
| 1369 | |
| 1370 | BT_DBG("Local Public Key X: %32phN", smp->local_pk); |
| 1371 | BT_DBG("Local Public Key Y: %32phN", &smp->local_pk[32]); |
| 1372 | BT_DBG("Local Private Key: %32phN", smp->local_sk); |
| 1373 | |
| 1374 | smp_send_cmd(smp->conn, SMP_CMD_PUBLIC_KEY, 64, smp->local_pk); |
| 1375 | |
| 1376 | return 0; |
| 1377 | } |
| 1378 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1379 | 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] | 1380 | { |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 1381 | struct smp_cmd_pairing *req, *rsp = (void *) skb->data; |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1382 | struct l2cap_chan *chan = conn->smp; |
| 1383 | struct smp_chan *smp = chan->data; |
Johan Hedberg | 0edb14d | 2014-05-26 13:29:28 +0300 | [diff] [blame] | 1384 | struct hci_dev *hdev = conn->hcon->hdev; |
Johan Hedberg | 3a7dbfb | 2014-09-10 17:37:41 -0700 | [diff] [blame] | 1385 | u8 key_size, auth; |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 1386 | int ret; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1387 | |
| 1388 | BT_DBG("conn %p", conn); |
| 1389 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1390 | if (skb->len < sizeof(*rsp)) |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 1391 | return SMP_INVALID_PARAMS; |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1392 | |
Johan Hedberg | 40bef30 | 2014-07-16 11:42:27 +0300 | [diff] [blame] | 1393 | if (conn->hcon->role != HCI_ROLE_MASTER) |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1394 | return SMP_CMD_NOTSUPP; |
| 1395 | |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 1396 | skb_pull(skb, sizeof(*rsp)); |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1397 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 1398 | req = (void *) &smp->preq[1]; |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 1399 | |
| 1400 | key_size = min(req->max_key_size, rsp->max_key_size); |
| 1401 | if (check_enc_key_size(conn, key_size)) |
| 1402 | return SMP_ENC_KEY_SIZE; |
| 1403 | |
Johan Hedberg | 0edb14d | 2014-05-26 13:29:28 +0300 | [diff] [blame] | 1404 | auth = rsp->auth_req & AUTH_REQ_MASK(hdev); |
Johan Hedberg | c05b933 | 2014-09-10 17:37:42 -0700 | [diff] [blame] | 1405 | |
Johan Hedberg | 6566877 | 2014-05-16 11:03:34 +0300 | [diff] [blame] | 1406 | if ((req->auth_req & SMP_AUTH_SC) && (auth & SMP_AUTH_SC)) |
| 1407 | set_bit(SMP_FLAG_SC, &smp->flags); |
Johan Hedberg | d2eb9e1 | 2014-05-16 10:59:06 +0300 | [diff] [blame] | 1408 | else if (conn->hcon->pending_sec_level > BT_SECURITY_HIGH) |
| 1409 | conn->hcon->pending_sec_level = BT_SECURITY_HIGH; |
Johan Hedberg | 6566877 | 2014-05-16 11:03:34 +0300 | [diff] [blame] | 1410 | |
Stephen Hemminger | 49c922b | 2014-10-27 21:12:20 -0700 | [diff] [blame] | 1411 | /* If we need MITM check that it can be achieved */ |
Johan Hedberg | 2ed8f65 | 2014-06-17 13:07:39 +0300 | [diff] [blame] | 1412 | if (conn->hcon->pending_sec_level >= BT_SECURITY_HIGH) { |
| 1413 | u8 method; |
| 1414 | |
| 1415 | method = get_auth_method(smp, req->io_capability, |
| 1416 | rsp->io_capability); |
| 1417 | if (method == JUST_WORKS || method == JUST_CFM) |
| 1418 | return SMP_AUTH_REQUIREMENTS; |
| 1419 | } |
| 1420 | |
Johan Hedberg | e84a6b1 | 2013-12-02 10:49:03 +0200 | [diff] [blame] | 1421 | get_random_bytes(smp->prnd, sizeof(smp->prnd)); |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 1422 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1423 | smp->prsp[0] = SMP_CMD_PAIRING_RSP; |
| 1424 | memcpy(&smp->prsp[1], rsp, sizeof(*rsp)); |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 1425 | |
Johan Hedberg | fdcc4be | 2014-03-14 10:53:50 +0200 | [diff] [blame] | 1426 | /* Update remote key distribution in case the remote cleared |
| 1427 | * some bits that we had enabled in our request. |
| 1428 | */ |
| 1429 | smp->remote_key_dist &= rsp->resp_key_dist; |
| 1430 | |
Johan Hedberg | 3b19146 | 2014-06-06 10:50:15 +0300 | [diff] [blame] | 1431 | if (test_bit(SMP_FLAG_SC, &smp->flags)) { |
| 1432 | /* Clear bits which are generated but not distributed */ |
| 1433 | smp->remote_key_dist &= ~SMP_SC_NO_DIST; |
| 1434 | SMP_ALLOW_CMD(smp, SMP_CMD_PUBLIC_KEY); |
| 1435 | return sc_send_public_key(smp); |
| 1436 | } |
| 1437 | |
Johan Hedberg | c05b933 | 2014-09-10 17:37:42 -0700 | [diff] [blame] | 1438 | auth |= req->auth_req; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1439 | |
Johan Hedberg | 476585e | 2012-06-06 18:54:15 +0800 | [diff] [blame] | 1440 | ret = tk_request(conn, 0, auth, req->io_capability, rsp->io_capability); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1441 | if (ret) |
| 1442 | return SMP_UNSPECIFIED; |
| 1443 | |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 1444 | set_bit(SMP_FLAG_CFM_PENDING, &smp->flags); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1445 | |
| 1446 | /* Can't compose response until we have been confirmed */ |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 1447 | if (test_bit(SMP_FLAG_TK_VALID, &smp->flags)) |
Johan Hedberg | 1cc6114 | 2014-05-20 09:45:52 +0300 | [diff] [blame] | 1448 | return smp_confirm(smp); |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1449 | |
| 1450 | return 0; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1451 | } |
| 1452 | |
Johan Hedberg | dcee2b3 | 2014-06-06 11:36:38 +0300 | [diff] [blame] | 1453 | static u8 sc_check_confirm(struct smp_chan *smp) |
| 1454 | { |
| 1455 | struct l2cap_conn *conn = smp->conn; |
| 1456 | |
| 1457 | BT_DBG(""); |
| 1458 | |
| 1459 | /* Public Key exchange must happen before any other steps */ |
| 1460 | if (!test_bit(SMP_FLAG_REMOTE_PK, &smp->flags)) |
| 1461 | return SMP_UNSPECIFIED; |
| 1462 | |
| 1463 | if (conn->hcon->out) { |
| 1464 | smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd), |
| 1465 | smp->prnd); |
| 1466 | SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM); |
| 1467 | } |
| 1468 | |
| 1469 | return 0; |
| 1470 | } |
| 1471 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1472 | 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] | 1473 | { |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1474 | struct l2cap_chan *chan = conn->smp; |
| 1475 | struct smp_chan *smp = chan->data; |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 1476 | |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1477 | BT_DBG("conn %p %s", conn, conn->hcon->out ? "master" : "slave"); |
| 1478 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1479 | if (skb->len < sizeof(smp->pcnf)) |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 1480 | return SMP_INVALID_PARAMS; |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1481 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 1482 | memcpy(smp->pcnf, skb->data, sizeof(smp->pcnf)); |
| 1483 | skb_pull(skb, sizeof(smp->pcnf)); |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 1484 | |
Johan Hedberg | dcee2b3 | 2014-06-06 11:36:38 +0300 | [diff] [blame] | 1485 | if (test_bit(SMP_FLAG_SC, &smp->flags)) |
| 1486 | return sc_check_confirm(smp); |
| 1487 | |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1488 | if (conn->hcon->out) { |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 1489 | smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd), |
| 1490 | smp->prnd); |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1491 | SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM); |
| 1492 | return 0; |
| 1493 | } |
| 1494 | |
| 1495 | if (test_bit(SMP_FLAG_TK_VALID, &smp->flags)) |
Johan Hedberg | 1cc6114 | 2014-05-20 09:45:52 +0300 | [diff] [blame] | 1496 | return smp_confirm(smp); |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 1497 | else |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 1498 | set_bit(SMP_FLAG_CFM_PENDING, &smp->flags); |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1499 | |
| 1500 | return 0; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1501 | } |
| 1502 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1503 | 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] | 1504 | { |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1505 | struct l2cap_chan *chan = conn->smp; |
| 1506 | struct smp_chan *smp = chan->data; |
Johan Hedberg | 191dc7f | 2014-06-06 11:39:49 +0300 | [diff] [blame] | 1507 | struct hci_conn *hcon = conn->hcon; |
| 1508 | u8 *pkax, *pkbx, *na, *nb; |
| 1509 | u32 passkey; |
| 1510 | int err; |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 1511 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1512 | BT_DBG("conn %p", conn); |
Anderson Briglia | 7d24ddc | 2011-06-09 18:50:46 -0300 | [diff] [blame] | 1513 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1514 | if (skb->len < sizeof(smp->rrnd)) |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 1515 | return SMP_INVALID_PARAMS; |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1516 | |
Johan Hedberg | 943a732 | 2014-03-18 12:58:24 +0200 | [diff] [blame] | 1517 | memcpy(smp->rrnd, skb->data, sizeof(smp->rrnd)); |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1518 | skb_pull(skb, sizeof(smp->rrnd)); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1519 | |
Johan Hedberg | 191dc7f | 2014-06-06 11:39:49 +0300 | [diff] [blame] | 1520 | if (!test_bit(SMP_FLAG_SC, &smp->flags)) |
| 1521 | return smp_random(smp); |
| 1522 | |
| 1523 | if (hcon->out) { |
| 1524 | u8 cfm[16]; |
| 1525 | |
| 1526 | err = smp_f4(smp->tfm_cmac, smp->remote_pk, smp->local_pk, |
| 1527 | smp->rrnd, 0, cfm); |
| 1528 | if (err) |
| 1529 | return SMP_UNSPECIFIED; |
| 1530 | |
| 1531 | if (memcmp(smp->pcnf, cfm, 16)) |
| 1532 | return SMP_CONFIRM_FAILED; |
| 1533 | |
| 1534 | pkax = smp->local_pk; |
| 1535 | pkbx = smp->remote_pk; |
| 1536 | na = smp->prnd; |
| 1537 | nb = smp->rrnd; |
| 1538 | } else { |
| 1539 | smp_send_cmd(conn, SMP_CMD_PAIRING_RANDOM, sizeof(smp->prnd), |
| 1540 | smp->prnd); |
| 1541 | SMP_ALLOW_CMD(smp, SMP_CMD_DHKEY_CHECK); |
| 1542 | |
| 1543 | pkax = smp->remote_pk; |
| 1544 | pkbx = smp->local_pk; |
| 1545 | na = smp->rrnd; |
| 1546 | nb = smp->prnd; |
| 1547 | } |
| 1548 | |
Johan Hedberg | 760b018 | 2014-06-06 11:44:05 +0300 | [diff] [blame] | 1549 | /* Generate MacKey and LTK */ |
| 1550 | err = sc_mackey_and_ltk(smp, smp->mackey, smp->tk); |
| 1551 | if (err) |
| 1552 | return SMP_UNSPECIFIED; |
| 1553 | |
Johan Hedberg | 191dc7f | 2014-06-06 11:39:49 +0300 | [diff] [blame] | 1554 | err = smp_g2(smp->tfm_cmac, pkax, pkbx, na, nb, &passkey); |
| 1555 | if (err) |
| 1556 | return SMP_UNSPECIFIED; |
| 1557 | |
| 1558 | err = mgmt_user_confirm_request(hcon->hdev, &hcon->dst, |
| 1559 | hcon->type, hcon->dst_type, |
| 1560 | passkey, 0); |
| 1561 | if (err) |
| 1562 | return SMP_UNSPECIFIED; |
| 1563 | |
| 1564 | return 0; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1565 | } |
| 1566 | |
Marcel Holtmann | f81cd82 | 2014-07-01 10:59:24 +0200 | [diff] [blame] | 1567 | static bool smp_ltk_encrypt(struct l2cap_conn *conn, u8 sec_level) |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 1568 | { |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1569 | struct smp_ltk *key; |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 1570 | struct hci_conn *hcon = conn->hcon; |
| 1571 | |
Johan Hedberg | f3a73d9 | 2014-05-29 15:02:59 +0300 | [diff] [blame] | 1572 | key = hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, hcon->role); |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 1573 | if (!key) |
Marcel Holtmann | f81cd82 | 2014-07-01 10:59:24 +0200 | [diff] [blame] | 1574 | return false; |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 1575 | |
Johan Hedberg | a6f7833 | 2014-09-10 17:37:45 -0700 | [diff] [blame] | 1576 | if (smp_ltk_sec_level(key) < sec_level) |
Marcel Holtmann | f81cd82 | 2014-07-01 10:59:24 +0200 | [diff] [blame] | 1577 | return false; |
Johan Hedberg | 4dab786 | 2012-06-07 14:58:37 +0800 | [diff] [blame] | 1578 | |
Johan Hedberg | 51a8efd | 2012-01-16 06:10:31 +0200 | [diff] [blame] | 1579 | if (test_and_set_bit(HCI_CONN_ENCRYPT_PEND, &hcon->flags)) |
Marcel Holtmann | f81cd82 | 2014-07-01 10:59:24 +0200 | [diff] [blame] | 1580 | return true; |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 1581 | |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1582 | hci_le_start_enc(hcon, key->ediv, key->rand, key->val); |
| 1583 | hcon->enc_key_size = key->enc_size; |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 1584 | |
Johan Hedberg | fe59a05 | 2014-07-01 19:14:12 +0300 | [diff] [blame] | 1585 | /* We never store STKs for master role, so clear this flag */ |
| 1586 | clear_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags); |
| 1587 | |
Marcel Holtmann | f81cd82 | 2014-07-01 10:59:24 +0200 | [diff] [blame] | 1588 | return true; |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 1589 | } |
Marcel Holtmann | f156046 | 2013-10-13 05:43:25 -0700 | [diff] [blame] | 1590 | |
Johan Hedberg | 35dc6f8 | 2014-11-13 10:55:18 +0200 | [diff] [blame] | 1591 | bool smp_sufficient_security(struct hci_conn *hcon, u8 sec_level, |
| 1592 | enum smp_key_pref key_pref) |
Johan Hedberg | 854f472 | 2014-07-01 18:40:20 +0300 | [diff] [blame] | 1593 | { |
| 1594 | if (sec_level == BT_SECURITY_LOW) |
| 1595 | return true; |
| 1596 | |
Johan Hedberg | 35dc6f8 | 2014-11-13 10:55:18 +0200 | [diff] [blame] | 1597 | /* If we're encrypted with an STK but the caller prefers using |
| 1598 | * LTK claim insufficient security. This way we allow the |
| 1599 | * connection to be re-encrypted with an LTK, even if the LTK |
| 1600 | * provides the same level of security. Only exception is if we |
| 1601 | * don't have an LTK (e.g. because of key distribution bits). |
Johan Hedberg | 9ab65d60 | 2014-07-01 19:14:13 +0300 | [diff] [blame] | 1602 | */ |
Johan Hedberg | 35dc6f8 | 2014-11-13 10:55:18 +0200 | [diff] [blame] | 1603 | if (key_pref == SMP_USE_LTK && |
| 1604 | test_bit(HCI_CONN_STK_ENCRYPT, &hcon->flags) && |
Johan Hedberg | f3a73d9 | 2014-05-29 15:02:59 +0300 | [diff] [blame] | 1605 | hci_find_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, hcon->role)) |
Johan Hedberg | 9ab65d60 | 2014-07-01 19:14:13 +0300 | [diff] [blame] | 1606 | return false; |
| 1607 | |
Johan Hedberg | 854f472 | 2014-07-01 18:40:20 +0300 | [diff] [blame] | 1608 | if (hcon->sec_level >= sec_level) |
| 1609 | return true; |
| 1610 | |
| 1611 | return false; |
| 1612 | } |
| 1613 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1614 | 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] | 1615 | { |
| 1616 | struct smp_cmd_security_req *rp = (void *) skb->data; |
| 1617 | struct smp_cmd_pairing cp; |
Vinicius Costa Gomes | f1cb9af | 2011-01-26 21:42:57 -0300 | [diff] [blame] | 1618 | struct hci_conn *hcon = conn->hcon; |
Johan Hedberg | 0edb14d | 2014-05-26 13:29:28 +0300 | [diff] [blame] | 1619 | struct hci_dev *hdev = hcon->hdev; |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1620 | struct smp_chan *smp; |
Johan Hedberg | c05b933 | 2014-09-10 17:37:42 -0700 | [diff] [blame] | 1621 | u8 sec_level, auth; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1622 | |
| 1623 | BT_DBG("conn %p", conn); |
| 1624 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1625 | if (skb->len < sizeof(*rp)) |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 1626 | return SMP_INVALID_PARAMS; |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1627 | |
Johan Hedberg | 40bef30 | 2014-07-16 11:42:27 +0300 | [diff] [blame] | 1628 | if (hcon->role != HCI_ROLE_MASTER) |
Johan Hedberg | 86ca9ea | 2013-11-05 11:30:39 +0200 | [diff] [blame] | 1629 | return SMP_CMD_NOTSUPP; |
| 1630 | |
Johan Hedberg | 0edb14d | 2014-05-26 13:29:28 +0300 | [diff] [blame] | 1631 | auth = rp->auth_req & AUTH_REQ_MASK(hdev); |
Johan Hedberg | c05b933 | 2014-09-10 17:37:42 -0700 | [diff] [blame] | 1632 | |
Johan Hedberg | 5be5e27 | 2014-09-10 17:58:54 -0700 | [diff] [blame] | 1633 | if (hcon->io_capability == HCI_IO_NO_INPUT_OUTPUT) |
Johan Hedberg | 1afc2a1 | 2014-09-10 17:37:44 -0700 | [diff] [blame] | 1634 | sec_level = BT_SECURITY_MEDIUM; |
| 1635 | else |
| 1636 | sec_level = authreq_to_seclevel(auth); |
| 1637 | |
Johan Hedberg | 35dc6f8 | 2014-11-13 10:55:18 +0200 | [diff] [blame] | 1638 | if (smp_sufficient_security(hcon, sec_level, SMP_USE_LTK)) |
Johan Hedberg | 854f472 | 2014-07-01 18:40:20 +0300 | [diff] [blame] | 1639 | return 0; |
| 1640 | |
Johan Hedberg | c7262e7 | 2014-06-17 13:07:37 +0300 | [diff] [blame] | 1641 | if (sec_level > hcon->pending_sec_level) |
| 1642 | hcon->pending_sec_level = sec_level; |
Vinicius Costa Gomes | feb45eb | 2011-08-25 20:02:35 -0300 | [diff] [blame] | 1643 | |
Johan Hedberg | 4dab786 | 2012-06-07 14:58:37 +0800 | [diff] [blame] | 1644 | if (smp_ltk_encrypt(conn, hcon->pending_sec_level)) |
Vinicius Costa Gomes | 988c599 | 2011-08-25 20:02:28 -0300 | [diff] [blame] | 1645 | return 0; |
| 1646 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1647 | smp = smp_chan_create(conn); |
Johan Hedberg | c29d244 | 2014-06-16 19:25:14 +0300 | [diff] [blame] | 1648 | if (!smp) |
| 1649 | return SMP_UNSPECIFIED; |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 1650 | |
Johan Hedberg | b6ae845 | 2014-07-30 09:22:22 +0300 | [diff] [blame] | 1651 | if (!test_bit(HCI_BONDABLE, &hcon->hdev->dev_flags) && |
Johan Hedberg | c05b933 | 2014-09-10 17:37:42 -0700 | [diff] [blame] | 1652 | (auth & SMP_AUTH_BONDING)) |
Johan Hedberg | 616d55b | 2014-07-29 14:18:48 +0300 | [diff] [blame] | 1653 | return SMP_PAIRING_NOTSUPP; |
| 1654 | |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1655 | skb_pull(skb, sizeof(*rp)); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1656 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1657 | memset(&cp, 0, sizeof(cp)); |
Johan Hedberg | c05b933 | 2014-09-10 17:37:42 -0700 | [diff] [blame] | 1658 | build_pairing_cmd(conn, &cp, NULL, auth); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1659 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 1660 | smp->preq[0] = SMP_CMD_PAIRING_REQ; |
| 1661 | memcpy(&smp->preq[1], &cp, sizeof(cp)); |
Anderson Briglia | f01ead3 | 2011-06-09 18:50:45 -0300 | [diff] [blame] | 1662 | |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1663 | smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp); |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1664 | SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP); |
Vinicius Costa Gomes | f1cb9af | 2011-01-26 21:42:57 -0300 | [diff] [blame] | 1665 | |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 1666 | return 0; |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 1667 | } |
| 1668 | |
Vinicius Costa Gomes | cc11092 | 2012-08-23 21:32:43 -0300 | [diff] [blame] | 1669 | int smp_conn_security(struct hci_conn *hcon, __u8 sec_level) |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1670 | { |
Vinicius Costa Gomes | cc11092 | 2012-08-23 21:32:43 -0300 | [diff] [blame] | 1671 | struct l2cap_conn *conn = hcon->l2cap_data; |
Johan Hedberg | c68b7f1 | 2014-09-06 06:59:10 +0300 | [diff] [blame] | 1672 | struct l2cap_chan *chan; |
Johan Hedberg | 0a66cf2 | 2014-03-24 14:39:03 +0200 | [diff] [blame] | 1673 | struct smp_chan *smp; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1674 | __u8 authreq; |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1675 | int ret; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1676 | |
Vinicius Costa Gomes | 3a0259b | 2011-06-09 18:50:43 -0300 | [diff] [blame] | 1677 | BT_DBG("conn %p hcon %p level 0x%2.2x", conn, hcon, sec_level); |
| 1678 | |
Johan Hedberg | 0a66cf2 | 2014-03-24 14:39:03 +0200 | [diff] [blame] | 1679 | /* This may be NULL if there's an unexpected disconnection */ |
| 1680 | if (!conn) |
| 1681 | return 1; |
| 1682 | |
Johan Hedberg | c68b7f1 | 2014-09-06 06:59:10 +0300 | [diff] [blame] | 1683 | chan = conn->smp; |
| 1684 | |
Johan Hedberg | 757aee0 | 2013-04-24 13:05:32 +0300 | [diff] [blame] | 1685 | if (!test_bit(HCI_LE_ENABLED, &hcon->hdev->dev_flags)) |
Andre Guedes | 2e65c9d | 2011-06-30 19:20:56 -0300 | [diff] [blame] | 1686 | return 1; |
| 1687 | |
Johan Hedberg | 35dc6f8 | 2014-11-13 10:55:18 +0200 | [diff] [blame] | 1688 | if (smp_sufficient_security(hcon, sec_level, SMP_USE_LTK)) |
Vinicius Costa Gomes | f1cb9af | 2011-01-26 21:42:57 -0300 | [diff] [blame] | 1689 | return 1; |
| 1690 | |
Johan Hedberg | c7262e7 | 2014-06-17 13:07:37 +0300 | [diff] [blame] | 1691 | if (sec_level > hcon->pending_sec_level) |
| 1692 | hcon->pending_sec_level = sec_level; |
| 1693 | |
Johan Hedberg | 40bef30 | 2014-07-16 11:42:27 +0300 | [diff] [blame] | 1694 | if (hcon->role == HCI_ROLE_MASTER) |
Johan Hedberg | c7262e7 | 2014-06-17 13:07:37 +0300 | [diff] [blame] | 1695 | if (smp_ltk_encrypt(conn, hcon->pending_sec_level)) |
| 1696 | return 0; |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 1697 | |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1698 | l2cap_chan_lock(chan); |
| 1699 | |
| 1700 | /* If SMP is already in progress ignore this request */ |
| 1701 | if (chan->data) { |
| 1702 | ret = 0; |
| 1703 | goto unlock; |
| 1704 | } |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 1705 | |
Vinicius Costa Gomes | 8aab475 | 2011-09-05 14:31:31 -0300 | [diff] [blame] | 1706 | smp = smp_chan_create(conn); |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1707 | if (!smp) { |
| 1708 | ret = 1; |
| 1709 | goto unlock; |
| 1710 | } |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1711 | |
| 1712 | authreq = seclevel_to_authreq(sec_level); |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 1713 | |
Johan Hedberg | d2eb9e1 | 2014-05-16 10:59:06 +0300 | [diff] [blame] | 1714 | if (test_bit(HCI_SC_ENABLED, &hcon->hdev->dev_flags)) |
| 1715 | authreq |= SMP_AUTH_SC; |
| 1716 | |
Johan Hedberg | 79897d2 | 2014-06-01 09:45:24 +0300 | [diff] [blame] | 1717 | /* Require MITM if IO Capability allows or the security level |
| 1718 | * requires it. |
Johan Hedberg | 2e23364 | 2014-03-18 15:42:30 +0200 | [diff] [blame] | 1719 | */ |
Johan Hedberg | 79897d2 | 2014-06-01 09:45:24 +0300 | [diff] [blame] | 1720 | if (hcon->io_capability != HCI_IO_NO_INPUT_OUTPUT || |
Johan Hedberg | c7262e7 | 2014-06-17 13:07:37 +0300 | [diff] [blame] | 1721 | hcon->pending_sec_level > BT_SECURITY_MEDIUM) |
Johan Hedberg | 2e23364 | 2014-03-18 15:42:30 +0200 | [diff] [blame] | 1722 | authreq |= SMP_AUTH_MITM; |
| 1723 | |
Johan Hedberg | 40bef30 | 2014-07-16 11:42:27 +0300 | [diff] [blame] | 1724 | if (hcon->role == HCI_ROLE_MASTER) { |
Vinicius Costa Gomes | d26a234 | 2011-08-19 21:06:51 -0300 | [diff] [blame] | 1725 | struct smp_cmd_pairing cp; |
Anderson Briglia | f01ead3 | 2011-06-09 18:50:45 -0300 | [diff] [blame] | 1726 | |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1727 | build_pairing_cmd(conn, &cp, NULL, authreq); |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 1728 | smp->preq[0] = SMP_CMD_PAIRING_REQ; |
| 1729 | memcpy(&smp->preq[1], &cp, sizeof(cp)); |
Anderson Briglia | f01ead3 | 2011-06-09 18:50:45 -0300 | [diff] [blame] | 1730 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1731 | smp_send_cmd(conn, SMP_CMD_PAIRING_REQ, sizeof(cp), &cp); |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1732 | SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RSP); |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1733 | } else { |
| 1734 | struct smp_cmd_security_req cp; |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 1735 | cp.auth_req = authreq; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1736 | smp_send_cmd(conn, SMP_CMD_SECURITY_REQ, sizeof(cp), &cp); |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1737 | SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_REQ); |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1738 | } |
| 1739 | |
Johan Hedberg | 4a74d65 | 2014-05-20 09:45:50 +0300 | [diff] [blame] | 1740 | set_bit(SMP_FLAG_INITIATOR, &smp->flags); |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1741 | ret = 0; |
Johan Hedberg | edca792 | 2014-03-24 15:54:11 +0200 | [diff] [blame] | 1742 | |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 1743 | unlock: |
| 1744 | l2cap_chan_unlock(chan); |
| 1745 | return ret; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 1746 | } |
| 1747 | |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1748 | static int smp_cmd_encrypt_info(struct l2cap_conn *conn, struct sk_buff *skb) |
| 1749 | { |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 1750 | struct smp_cmd_encrypt_info *rp = (void *) skb->data; |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1751 | struct l2cap_chan *chan = conn->smp; |
| 1752 | struct smp_chan *smp = chan->data; |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 1753 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1754 | BT_DBG("conn %p", conn); |
| 1755 | |
| 1756 | if (skb->len < sizeof(*rp)) |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 1757 | return SMP_INVALID_PARAMS; |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1758 | |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1759 | SMP_ALLOW_CMD(smp, SMP_CMD_MASTER_IDENT); |
Johan Hedberg | 6131ddc | 2014-02-18 10:19:37 +0200 | [diff] [blame] | 1760 | |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 1761 | skb_pull(skb, sizeof(*rp)); |
| 1762 | |
Vinicius Costa Gomes | 1c1def0 | 2011-09-05 14:31:30 -0300 | [diff] [blame] | 1763 | memcpy(smp->tk, rp->ltk, sizeof(smp->tk)); |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 1764 | |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1765 | return 0; |
| 1766 | } |
| 1767 | |
| 1768 | static int smp_cmd_master_ident(struct l2cap_conn *conn, struct sk_buff *skb) |
| 1769 | { |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 1770 | struct smp_cmd_master_ident *rp = (void *) skb->data; |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1771 | struct l2cap_chan *chan = conn->smp; |
| 1772 | struct smp_chan *smp = chan->data; |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1773 | struct hci_dev *hdev = conn->hcon->hdev; |
| 1774 | struct hci_conn *hcon = conn->hcon; |
Johan Hedberg | 23d0e12 | 2014-02-19 14:57:46 +0200 | [diff] [blame] | 1775 | struct smp_ltk *ltk; |
Vinicius Costa Gomes | c9839a1 | 2012-02-02 21:08:01 -0300 | [diff] [blame] | 1776 | u8 authenticated; |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1777 | |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1778 | BT_DBG("conn %p", conn); |
| 1779 | |
| 1780 | if (skb->len < sizeof(*rp)) |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 1781 | return SMP_INVALID_PARAMS; |
Johan Hedberg | c46b98b | 2014-02-18 10:19:29 +0200 | [diff] [blame] | 1782 | |
Johan Hedberg | 9747a9f | 2014-02-26 23:33:43 +0200 | [diff] [blame] | 1783 | /* Mark the information as received */ |
| 1784 | smp->remote_key_dist &= ~SMP_DIST_ENC_KEY; |
| 1785 | |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1786 | if (smp->remote_key_dist & SMP_DIST_ID_KEY) |
| 1787 | SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_INFO); |
Johan Hedberg | 196332f | 2014-09-09 16:21:46 -0700 | [diff] [blame] | 1788 | else if (smp->remote_key_dist & SMP_DIST_SIGN) |
| 1789 | SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO); |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1790 | |
Vinicius Costa Gomes | 16b9083 | 2011-07-07 18:59:39 -0300 | [diff] [blame] | 1791 | skb_pull(skb, sizeof(*rp)); |
| 1792 | |
Marcel Holtmann | ce39fb4 | 2013-10-13 02:23:39 -0700 | [diff] [blame] | 1793 | authenticated = (hcon->sec_level == BT_SECURITY_HIGH); |
Johan Hedberg | 2ceba53 | 2014-06-16 19:25:16 +0300 | [diff] [blame] | 1794 | ltk = hci_add_ltk(hdev, &hcon->dst, hcon->dst_type, SMP_LTK, |
Johan Hedberg | 23d0e12 | 2014-02-19 14:57:46 +0200 | [diff] [blame] | 1795 | authenticated, smp->tk, smp->enc_key_size, |
| 1796 | rp->ediv, rp->rand); |
| 1797 | smp->ltk = ltk; |
Johan Hedberg | c6e81e9 | 2014-09-05 22:19:54 +0300 | [diff] [blame] | 1798 | if (!(smp->remote_key_dist & KEY_DIST_MASK)) |
Johan Hedberg | d6268e8 | 2014-09-05 22:19:51 +0300 | [diff] [blame] | 1799 | smp_distribute_keys(smp); |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 1800 | |
| 1801 | return 0; |
| 1802 | } |
| 1803 | |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1804 | static int smp_cmd_ident_info(struct l2cap_conn *conn, struct sk_buff *skb) |
| 1805 | { |
| 1806 | struct smp_cmd_ident_info *info = (void *) skb->data; |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1807 | struct l2cap_chan *chan = conn->smp; |
| 1808 | struct smp_chan *smp = chan->data; |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1809 | |
| 1810 | BT_DBG(""); |
| 1811 | |
| 1812 | if (skb->len < sizeof(*info)) |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 1813 | return SMP_INVALID_PARAMS; |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1814 | |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1815 | SMP_ALLOW_CMD(smp, SMP_CMD_IDENT_ADDR_INFO); |
Johan Hedberg | 6131ddc | 2014-02-18 10:19:37 +0200 | [diff] [blame] | 1816 | |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1817 | skb_pull(skb, sizeof(*info)); |
| 1818 | |
| 1819 | memcpy(smp->irk, info->irk, 16); |
| 1820 | |
| 1821 | return 0; |
| 1822 | } |
| 1823 | |
| 1824 | static int smp_cmd_ident_addr_info(struct l2cap_conn *conn, |
| 1825 | struct sk_buff *skb) |
| 1826 | { |
| 1827 | struct smp_cmd_ident_addr_info *info = (void *) skb->data; |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1828 | struct l2cap_chan *chan = conn->smp; |
| 1829 | struct smp_chan *smp = chan->data; |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1830 | struct hci_conn *hcon = conn->hcon; |
| 1831 | bdaddr_t rpa; |
| 1832 | |
| 1833 | BT_DBG(""); |
| 1834 | |
| 1835 | if (skb->len < sizeof(*info)) |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 1836 | return SMP_INVALID_PARAMS; |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1837 | |
Johan Hedberg | 9747a9f | 2014-02-26 23:33:43 +0200 | [diff] [blame] | 1838 | /* Mark the information as received */ |
| 1839 | smp->remote_key_dist &= ~SMP_DIST_ID_KEY; |
| 1840 | |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 1841 | if (smp->remote_key_dist & SMP_DIST_SIGN) |
| 1842 | SMP_ALLOW_CMD(smp, SMP_CMD_SIGN_INFO); |
| 1843 | |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1844 | skb_pull(skb, sizeof(*info)); |
| 1845 | |
Johan Hedberg | a9a58f8 | 2014-02-25 22:24:37 +0200 | [diff] [blame] | 1846 | /* Strictly speaking the Core Specification (4.1) allows sending |
| 1847 | * an empty address which would force us to rely on just the IRK |
| 1848 | * as "identity information". However, since such |
| 1849 | * implementations are not known of and in order to not over |
| 1850 | * complicate our implementation, simply pretend that we never |
| 1851 | * received an IRK for such a device. |
| 1852 | */ |
| 1853 | if (!bacmp(&info->bdaddr, BDADDR_ANY)) { |
| 1854 | BT_ERR("Ignoring IRK with no identity address"); |
Johan Hedberg | 31dd624 | 2014-06-27 14:23:02 +0300 | [diff] [blame] | 1855 | goto distribute; |
Johan Hedberg | a9a58f8 | 2014-02-25 22:24:37 +0200 | [diff] [blame] | 1856 | } |
| 1857 | |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1858 | bacpy(&smp->id_addr, &info->bdaddr); |
| 1859 | smp->id_addr_type = info->addr_type; |
| 1860 | |
| 1861 | if (hci_bdaddr_is_rpa(&hcon->dst, hcon->dst_type)) |
| 1862 | bacpy(&rpa, &hcon->dst); |
| 1863 | else |
| 1864 | bacpy(&rpa, BDADDR_ANY); |
| 1865 | |
Johan Hedberg | 23d0e12 | 2014-02-19 14:57:46 +0200 | [diff] [blame] | 1866 | smp->remote_irk = hci_add_irk(conn->hcon->hdev, &smp->id_addr, |
| 1867 | smp->id_addr_type, smp->irk, &rpa); |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1868 | |
Johan Hedberg | 31dd624 | 2014-06-27 14:23:02 +0300 | [diff] [blame] | 1869 | distribute: |
Johan Hedberg | c6e81e9 | 2014-09-05 22:19:54 +0300 | [diff] [blame] | 1870 | if (!(smp->remote_key_dist & KEY_DIST_MASK)) |
| 1871 | smp_distribute_keys(smp); |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 1872 | |
| 1873 | return 0; |
| 1874 | } |
| 1875 | |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1876 | static int smp_cmd_sign_info(struct l2cap_conn *conn, struct sk_buff *skb) |
| 1877 | { |
| 1878 | struct smp_cmd_sign_info *rp = (void *) skb->data; |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 1879 | struct l2cap_chan *chan = conn->smp; |
| 1880 | struct smp_chan *smp = chan->data; |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1881 | struct smp_csrk *csrk; |
| 1882 | |
| 1883 | BT_DBG("conn %p", conn); |
| 1884 | |
| 1885 | if (skb->len < sizeof(*rp)) |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 1886 | return SMP_INVALID_PARAMS; |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1887 | |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1888 | /* Mark the information as received */ |
| 1889 | smp->remote_key_dist &= ~SMP_DIST_SIGN; |
| 1890 | |
| 1891 | skb_pull(skb, sizeof(*rp)); |
| 1892 | |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1893 | csrk = kzalloc(sizeof(*csrk), GFP_KERNEL); |
| 1894 | if (csrk) { |
| 1895 | csrk->master = 0x01; |
| 1896 | memcpy(csrk->val, rp->csrk, sizeof(csrk->val)); |
| 1897 | } |
| 1898 | smp->csrk = csrk; |
Johan Hedberg | d6268e8 | 2014-09-05 22:19:51 +0300 | [diff] [blame] | 1899 | smp_distribute_keys(smp); |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 1900 | |
| 1901 | return 0; |
| 1902 | } |
| 1903 | |
Johan Hedberg | d8f8edb | 2014-06-06 11:09:28 +0300 | [diff] [blame] | 1904 | static int smp_cmd_public_key(struct l2cap_conn *conn, struct sk_buff *skb) |
| 1905 | { |
| 1906 | struct smp_cmd_public_key *key = (void *) skb->data; |
| 1907 | struct hci_conn *hcon = conn->hcon; |
| 1908 | struct l2cap_chan *chan = conn->smp; |
| 1909 | struct smp_chan *smp = chan->data; |
Johan Hedberg | cbbbe3e | 2014-06-06 11:30:08 +0300 | [diff] [blame] | 1910 | struct smp_cmd_pairing_confirm cfm; |
Johan Hedberg | d8f8edb | 2014-06-06 11:09:28 +0300 | [diff] [blame] | 1911 | int err; |
| 1912 | |
| 1913 | BT_DBG("conn %p", conn); |
| 1914 | |
| 1915 | if (skb->len < sizeof(*key)) |
| 1916 | return SMP_INVALID_PARAMS; |
| 1917 | |
| 1918 | memcpy(smp->remote_pk, key, 64); |
| 1919 | |
| 1920 | /* Non-initiating device sends its public key after receiving |
| 1921 | * the key from the initiating device. |
| 1922 | */ |
| 1923 | if (!hcon->out) { |
| 1924 | err = sc_send_public_key(smp); |
| 1925 | if (err) |
| 1926 | return err; |
| 1927 | } |
| 1928 | |
| 1929 | BT_DBG("Remote Public Key X: %32phN", smp->remote_pk); |
| 1930 | BT_DBG("Remote Public Key Y: %32phN", &smp->remote_pk[32]); |
| 1931 | |
| 1932 | if (!ecdh_shared_secret(smp->remote_pk, smp->local_sk, smp->dhkey)) |
| 1933 | return SMP_UNSPECIFIED; |
| 1934 | |
| 1935 | BT_DBG("DHKey %32phN", smp->dhkey); |
| 1936 | |
| 1937 | set_bit(SMP_FLAG_REMOTE_PK, &smp->flags); |
| 1938 | |
Johan Hedberg | cbbbe3e | 2014-06-06 11:30:08 +0300 | [diff] [blame] | 1939 | /* The Initiating device waits for the non-initiating device to |
| 1940 | * send the confirm value. |
| 1941 | */ |
| 1942 | if (conn->hcon->out) |
| 1943 | return 0; |
| 1944 | |
| 1945 | err = smp_f4(smp->tfm_cmac, smp->local_pk, smp->remote_pk, smp->prnd, |
| 1946 | 0, cfm.confirm_val); |
| 1947 | if (err) |
| 1948 | return SMP_UNSPECIFIED; |
| 1949 | |
| 1950 | smp_send_cmd(conn, SMP_CMD_PAIRING_CONFIRM, sizeof(cfm), &cfm); |
| 1951 | SMP_ALLOW_CMD(smp, SMP_CMD_PAIRING_RANDOM); |
| 1952 | |
Johan Hedberg | d8f8edb | 2014-06-06 11:09:28 +0300 | [diff] [blame] | 1953 | return 0; |
| 1954 | } |
| 1955 | |
Johan Hedberg | 6433a9a | 2014-06-06 11:47:30 +0300 | [diff] [blame] | 1956 | static int smp_cmd_dhkey_check(struct l2cap_conn *conn, struct sk_buff *skb) |
| 1957 | { |
| 1958 | struct smp_cmd_dhkey_check *check = (void *) skb->data; |
| 1959 | struct l2cap_chan *chan = conn->smp; |
| 1960 | struct hci_conn *hcon = conn->hcon; |
| 1961 | struct smp_chan *smp = chan->data; |
| 1962 | u8 a[7], b[7], *local_addr, *remote_addr; |
| 1963 | u8 io_cap[3], r[16], e[16]; |
| 1964 | int err; |
| 1965 | |
| 1966 | BT_DBG("conn %p", conn); |
| 1967 | |
| 1968 | if (skb->len < sizeof(*check)) |
| 1969 | return SMP_INVALID_PARAMS; |
| 1970 | |
| 1971 | memcpy(a, &hcon->init_addr, 6); |
| 1972 | memcpy(b, &hcon->resp_addr, 6); |
| 1973 | a[6] = hcon->init_addr_type; |
| 1974 | b[6] = hcon->resp_addr_type; |
| 1975 | |
| 1976 | if (hcon->out) { |
| 1977 | local_addr = a; |
| 1978 | remote_addr = b; |
| 1979 | memcpy(io_cap, &smp->prsp[1], 3); |
| 1980 | } else { |
| 1981 | local_addr = b; |
| 1982 | remote_addr = a; |
| 1983 | memcpy(io_cap, &smp->preq[1], 3); |
| 1984 | } |
| 1985 | |
| 1986 | memset(r, 0, sizeof(r)); |
| 1987 | |
| 1988 | err = smp_f6(smp->tfm_cmac, smp->mackey, smp->rrnd, smp->prnd, r, |
| 1989 | io_cap, remote_addr, local_addr, e); |
| 1990 | if (err) |
| 1991 | return SMP_UNSPECIFIED; |
| 1992 | |
| 1993 | if (memcmp(check->e, e, 16)) |
| 1994 | return SMP_DHKEY_CHECK_FAILED; |
| 1995 | |
| 1996 | smp->ltk = hci_add_ltk(hcon->hdev, &hcon->dst, hcon->dst_type, |
| 1997 | SMP_LTK_P256, 0, smp->tk, smp->enc_key_size, |
| 1998 | 0, 0); |
| 1999 | |
| 2000 | if (hcon->out) { |
| 2001 | hci_le_start_enc(hcon, 0, 0, smp->tk); |
| 2002 | hcon->enc_key_size = smp->enc_key_size; |
| 2003 | } |
| 2004 | |
| 2005 | return 0; |
| 2006 | } |
| 2007 | |
Johan Hedberg | 4befb86 | 2014-08-11 22:06:38 +0300 | [diff] [blame] | 2008 | static int smp_sig_channel(struct l2cap_chan *chan, struct sk_buff *skb) |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2009 | { |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 2010 | struct l2cap_conn *conn = chan->conn; |
Marcel Holtmann | 7b9899d | 2013-10-03 00:00:57 -0700 | [diff] [blame] | 2011 | struct hci_conn *hcon = conn->hcon; |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 2012 | struct smp_chan *smp; |
Marcel Holtmann | 92381f5 | 2013-10-03 01:23:08 -0700 | [diff] [blame] | 2013 | __u8 code, reason; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2014 | int err = 0; |
| 2015 | |
Marcel Holtmann | 7b9899d | 2013-10-03 00:00:57 -0700 | [diff] [blame] | 2016 | if (hcon->type != LE_LINK) { |
| 2017 | kfree_skb(skb); |
Johan Hedberg | 3432711 | 2013-10-16 11:37:01 +0300 | [diff] [blame] | 2018 | return 0; |
Marcel Holtmann | 7b9899d | 2013-10-03 00:00:57 -0700 | [diff] [blame] | 2019 | } |
| 2020 | |
Johan Hedberg | 8ae9b98 | 2014-08-11 22:06:39 +0300 | [diff] [blame] | 2021 | if (skb->len < 1) |
Marcel Holtmann | 92381f5 | 2013-10-03 01:23:08 -0700 | [diff] [blame] | 2022 | return -EILSEQ; |
Marcel Holtmann | 92381f5 | 2013-10-03 01:23:08 -0700 | [diff] [blame] | 2023 | |
Marcel Holtmann | 06ae331 | 2013-10-18 03:43:00 -0700 | [diff] [blame] | 2024 | if (!test_bit(HCI_LE_ENABLED, &hcon->hdev->dev_flags)) { |
Andre Guedes | 2e65c9d | 2011-06-30 19:20:56 -0300 | [diff] [blame] | 2025 | reason = SMP_PAIRING_NOTSUPP; |
| 2026 | goto done; |
| 2027 | } |
| 2028 | |
Marcel Holtmann | 92381f5 | 2013-10-03 01:23:08 -0700 | [diff] [blame] | 2029 | code = skb->data[0]; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2030 | skb_pull(skb, sizeof(code)); |
| 2031 | |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 2032 | smp = chan->data; |
| 2033 | |
| 2034 | if (code > SMP_CMD_MAX) |
| 2035 | goto drop; |
| 2036 | |
Johan Hedberg | 24bd0bd | 2014-09-10 17:37:43 -0700 | [diff] [blame] | 2037 | if (smp && !test_and_clear_bit(code, &smp->allow_cmd)) |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 2038 | goto drop; |
| 2039 | |
| 2040 | /* If we don't have a context the only allowed commands are |
| 2041 | * pairing request and security request. |
Johan Hedberg | 8cf9fa1 | 2013-01-29 10:44:23 -0600 | [diff] [blame] | 2042 | */ |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 2043 | if (!smp && code != SMP_CMD_PAIRING_REQ && code != SMP_CMD_SECURITY_REQ) |
| 2044 | goto drop; |
Johan Hedberg | 8cf9fa1 | 2013-01-29 10:44:23 -0600 | [diff] [blame] | 2045 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2046 | switch (code) { |
| 2047 | case SMP_CMD_PAIRING_REQ: |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 2048 | reason = smp_cmd_pairing_req(conn, skb); |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2049 | break; |
| 2050 | |
| 2051 | case SMP_CMD_PAIRING_FAIL: |
Johan Hedberg | 84794e1 | 2013-11-06 11:24:57 +0200 | [diff] [blame] | 2052 | smp_failure(conn, 0); |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 2053 | err = -EPERM; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2054 | break; |
| 2055 | |
| 2056 | case SMP_CMD_PAIRING_RSP: |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 2057 | reason = smp_cmd_pairing_rsp(conn, skb); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 2058 | break; |
| 2059 | |
| 2060 | case SMP_CMD_SECURITY_REQ: |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 2061 | reason = smp_cmd_security_req(conn, skb); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 2062 | break; |
| 2063 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2064 | case SMP_CMD_PAIRING_CONFIRM: |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 2065 | reason = smp_cmd_pairing_confirm(conn, skb); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 2066 | break; |
| 2067 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2068 | case SMP_CMD_PAIRING_RANDOM: |
Vinicius Costa Gomes | da85e5e | 2011-06-09 18:50:53 -0300 | [diff] [blame] | 2069 | reason = smp_cmd_pairing_random(conn, skb); |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 2070 | break; |
| 2071 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2072 | case SMP_CMD_ENCRYPT_INFO: |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 2073 | reason = smp_cmd_encrypt_info(conn, skb); |
| 2074 | break; |
| 2075 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2076 | case SMP_CMD_MASTER_IDENT: |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 2077 | reason = smp_cmd_master_ident(conn, skb); |
| 2078 | break; |
| 2079 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2080 | case SMP_CMD_IDENT_INFO: |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 2081 | reason = smp_cmd_ident_info(conn, skb); |
| 2082 | break; |
| 2083 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2084 | case SMP_CMD_IDENT_ADDR_INFO: |
Johan Hedberg | fd349c0 | 2014-02-18 10:19:36 +0200 | [diff] [blame] | 2085 | reason = smp_cmd_ident_addr_info(conn, skb); |
| 2086 | break; |
| 2087 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2088 | case SMP_CMD_SIGN_INFO: |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 2089 | reason = smp_cmd_sign_info(conn, skb); |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 2090 | break; |
| 2091 | |
Johan Hedberg | d8f8edb | 2014-06-06 11:09:28 +0300 | [diff] [blame] | 2092 | case SMP_CMD_PUBLIC_KEY: |
| 2093 | reason = smp_cmd_public_key(conn, skb); |
| 2094 | break; |
| 2095 | |
Johan Hedberg | 6433a9a | 2014-06-06 11:47:30 +0300 | [diff] [blame] | 2096 | case SMP_CMD_DHKEY_CHECK: |
| 2097 | reason = smp_cmd_dhkey_check(conn, skb); |
| 2098 | break; |
| 2099 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2100 | default: |
| 2101 | BT_DBG("Unknown command code 0x%2.2x", code); |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2102 | reason = SMP_CMD_NOTSUPP; |
Vinicius Costa Gomes | 3a0259b | 2011-06-09 18:50:43 -0300 | [diff] [blame] | 2103 | goto done; |
| 2104 | } |
| 2105 | |
| 2106 | done: |
Johan Hedberg | 9b7b18e | 2014-08-18 20:33:31 +0300 | [diff] [blame] | 2107 | if (!err) { |
| 2108 | if (reason) |
| 2109 | smp_failure(conn, reason); |
Johan Hedberg | 8ae9b98 | 2014-08-11 22:06:39 +0300 | [diff] [blame] | 2110 | kfree_skb(skb); |
Johan Hedberg | 9b7b18e | 2014-08-18 20:33:31 +0300 | [diff] [blame] | 2111 | } |
| 2112 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2113 | return err; |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 2114 | |
| 2115 | drop: |
| 2116 | BT_ERR("%s unexpected SMP command 0x%02x from %pMR", hcon->hdev->name, |
| 2117 | code, &hcon->dst); |
| 2118 | kfree_skb(skb); |
| 2119 | return 0; |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 2120 | } |
Vinicius Costa Gomes | 7034b91 | 2011-07-07 18:59:34 -0300 | [diff] [blame] | 2121 | |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2122 | static void smp_teardown_cb(struct l2cap_chan *chan, int err) |
| 2123 | { |
| 2124 | struct l2cap_conn *conn = chan->conn; |
| 2125 | |
| 2126 | BT_DBG("chan %p", chan); |
| 2127 | |
Johan Hedberg | fc75cc8 | 2014-09-05 22:19:52 +0300 | [diff] [blame] | 2128 | if (chan->data) |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 2129 | smp_chan_destroy(conn); |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 2130 | |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2131 | conn->smp = NULL; |
| 2132 | l2cap_chan_put(chan); |
| 2133 | } |
| 2134 | |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 2135 | static void smp_resume_cb(struct l2cap_chan *chan) |
| 2136 | { |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 2137 | struct smp_chan *smp = chan->data; |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 2138 | struct l2cap_conn *conn = chan->conn; |
| 2139 | struct hci_conn *hcon = conn->hcon; |
| 2140 | |
| 2141 | BT_DBG("chan %p", chan); |
| 2142 | |
Johan Hedberg | 86d1407 | 2014-08-11 22:06:43 +0300 | [diff] [blame] | 2143 | if (!smp) |
| 2144 | return; |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 2145 | |
Johan Hedberg | 84bc0db | 2014-09-05 22:19:49 +0300 | [diff] [blame] | 2146 | if (!test_bit(HCI_CONN_ENCRYPT, &hcon->flags)) |
| 2147 | return; |
| 2148 | |
Johan Hedberg | 86d1407 | 2014-08-11 22:06:43 +0300 | [diff] [blame] | 2149 | cancel_delayed_work(&smp->security_timer); |
| 2150 | |
Johan Hedberg | d6268e8 | 2014-09-05 22:19:51 +0300 | [diff] [blame] | 2151 | smp_distribute_keys(smp); |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 2152 | } |
| 2153 | |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2154 | static void smp_ready_cb(struct l2cap_chan *chan) |
| 2155 | { |
| 2156 | struct l2cap_conn *conn = chan->conn; |
| 2157 | |
| 2158 | BT_DBG("chan %p", chan); |
| 2159 | |
| 2160 | conn->smp = chan; |
| 2161 | l2cap_chan_hold(chan); |
| 2162 | } |
| 2163 | |
Johan Hedberg | 4befb86 | 2014-08-11 22:06:38 +0300 | [diff] [blame] | 2164 | static int smp_recv_cb(struct l2cap_chan *chan, struct sk_buff *skb) |
| 2165 | { |
| 2166 | int err; |
| 2167 | |
| 2168 | BT_DBG("chan %p", chan); |
| 2169 | |
| 2170 | err = smp_sig_channel(chan, skb); |
| 2171 | if (err) { |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 2172 | struct smp_chan *smp = chan->data; |
Johan Hedberg | 4befb86 | 2014-08-11 22:06:38 +0300 | [diff] [blame] | 2173 | |
Johan Hedberg | b68fda6 | 2014-08-11 22:06:40 +0300 | [diff] [blame] | 2174 | if (smp) |
| 2175 | cancel_delayed_work_sync(&smp->security_timer); |
Johan Hedberg | 4befb86 | 2014-08-11 22:06:38 +0300 | [diff] [blame] | 2176 | |
Johan Hedberg | 1e91c29 | 2014-08-18 20:33:29 +0300 | [diff] [blame] | 2177 | hci_disconnect(chan->conn->hcon, HCI_ERROR_AUTH_FAILURE); |
Johan Hedberg | 4befb86 | 2014-08-11 22:06:38 +0300 | [diff] [blame] | 2178 | } |
| 2179 | |
| 2180 | return err; |
| 2181 | } |
| 2182 | |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2183 | static struct sk_buff *smp_alloc_skb_cb(struct l2cap_chan *chan, |
| 2184 | unsigned long hdr_len, |
| 2185 | unsigned long len, int nb) |
| 2186 | { |
| 2187 | struct sk_buff *skb; |
| 2188 | |
| 2189 | skb = bt_skb_alloc(hdr_len + len, GFP_KERNEL); |
| 2190 | if (!skb) |
| 2191 | return ERR_PTR(-ENOMEM); |
| 2192 | |
| 2193 | skb->priority = HCI_PRIO_MAX; |
| 2194 | bt_cb(skb)->chan = chan; |
| 2195 | |
| 2196 | return skb; |
| 2197 | } |
| 2198 | |
| 2199 | static const struct l2cap_ops smp_chan_ops = { |
| 2200 | .name = "Security Manager", |
| 2201 | .ready = smp_ready_cb, |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 2202 | .recv = smp_recv_cb, |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2203 | .alloc_skb = smp_alloc_skb_cb, |
| 2204 | .teardown = smp_teardown_cb, |
Johan Hedberg | 44f1a7a | 2014-08-11 22:06:36 +0300 | [diff] [blame] | 2205 | .resume = smp_resume_cb, |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2206 | |
| 2207 | .new_connection = l2cap_chan_no_new_connection, |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2208 | .state_change = l2cap_chan_no_state_change, |
| 2209 | .close = l2cap_chan_no_close, |
| 2210 | .defer = l2cap_chan_no_defer, |
| 2211 | .suspend = l2cap_chan_no_suspend, |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2212 | .set_shutdown = l2cap_chan_no_set_shutdown, |
| 2213 | .get_sndtimeo = l2cap_chan_no_get_sndtimeo, |
| 2214 | .memcpy_fromiovec = l2cap_chan_no_memcpy_fromiovec, |
| 2215 | }; |
| 2216 | |
| 2217 | static inline struct l2cap_chan *smp_new_conn_cb(struct l2cap_chan *pchan) |
| 2218 | { |
| 2219 | struct l2cap_chan *chan; |
| 2220 | |
| 2221 | BT_DBG("pchan %p", pchan); |
| 2222 | |
| 2223 | chan = l2cap_chan_create(); |
| 2224 | if (!chan) |
| 2225 | return NULL; |
| 2226 | |
| 2227 | chan->chan_type = pchan->chan_type; |
| 2228 | chan->ops = &smp_chan_ops; |
| 2229 | chan->scid = pchan->scid; |
| 2230 | chan->dcid = chan->scid; |
| 2231 | chan->imtu = pchan->imtu; |
| 2232 | chan->omtu = pchan->omtu; |
| 2233 | chan->mode = pchan->mode; |
| 2234 | |
Johan Hedberg | abe8490 | 2014-11-12 22:22:21 +0200 | [diff] [blame] | 2235 | /* Other L2CAP channels may request SMP routines in order to |
| 2236 | * change the security level. This means that the SMP channel |
| 2237 | * lock must be considered in its own category to avoid lockdep |
| 2238 | * warnings. |
| 2239 | */ |
| 2240 | atomic_set(&chan->nesting, L2CAP_NESTING_SMP); |
| 2241 | |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2242 | BT_DBG("created chan %p", chan); |
| 2243 | |
| 2244 | return chan; |
| 2245 | } |
| 2246 | |
| 2247 | static const struct l2cap_ops smp_root_chan_ops = { |
| 2248 | .name = "Security Manager Root", |
| 2249 | .new_connection = smp_new_conn_cb, |
| 2250 | |
| 2251 | /* None of these are implemented for the root channel */ |
| 2252 | .close = l2cap_chan_no_close, |
| 2253 | .alloc_skb = l2cap_chan_no_alloc_skb, |
| 2254 | .recv = l2cap_chan_no_recv, |
| 2255 | .state_change = l2cap_chan_no_state_change, |
| 2256 | .teardown = l2cap_chan_no_teardown, |
| 2257 | .ready = l2cap_chan_no_ready, |
| 2258 | .defer = l2cap_chan_no_defer, |
| 2259 | .suspend = l2cap_chan_no_suspend, |
| 2260 | .resume = l2cap_chan_no_resume, |
| 2261 | .set_shutdown = l2cap_chan_no_set_shutdown, |
| 2262 | .get_sndtimeo = l2cap_chan_no_get_sndtimeo, |
| 2263 | .memcpy_fromiovec = l2cap_chan_no_memcpy_fromiovec, |
| 2264 | }; |
| 2265 | |
Johan Hedberg | 711eafe | 2014-08-08 09:32:52 +0300 | [diff] [blame] | 2266 | int smp_register(struct hci_dev *hdev) |
| 2267 | { |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2268 | struct l2cap_chan *chan; |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 2269 | struct crypto_blkcipher *tfm_aes; |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2270 | |
Johan Hedberg | 711eafe | 2014-08-08 09:32:52 +0300 | [diff] [blame] | 2271 | BT_DBG("%s", hdev->name); |
| 2272 | |
Johan Hedberg | adae20c | 2014-11-13 14:37:48 +0200 | [diff] [blame] | 2273 | tfm_aes = crypto_alloc_blkcipher("ecb(aes)", 0, 0); |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 2274 | if (IS_ERR(tfm_aes)) { |
| 2275 | int err = PTR_ERR(tfm_aes); |
Johan Hedberg | 711eafe | 2014-08-08 09:32:52 +0300 | [diff] [blame] | 2276 | BT_ERR("Unable to create crypto context"); |
Johan Hedberg | 711eafe | 2014-08-08 09:32:52 +0300 | [diff] [blame] | 2277 | return err; |
| 2278 | } |
| 2279 | |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2280 | chan = l2cap_chan_create(); |
| 2281 | if (!chan) { |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 2282 | crypto_free_blkcipher(tfm_aes); |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2283 | return -ENOMEM; |
| 2284 | } |
| 2285 | |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 2286 | chan->data = tfm_aes; |
| 2287 | |
Johan Hedberg | 5d88cc7 | 2014-08-08 09:37:18 +0300 | [diff] [blame] | 2288 | l2cap_add_scid(chan, L2CAP_CID_SMP); |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2289 | |
| 2290 | l2cap_chan_set_defaults(chan); |
| 2291 | |
| 2292 | bacpy(&chan->src, &hdev->bdaddr); |
| 2293 | chan->src_type = BDADDR_LE_PUBLIC; |
| 2294 | chan->state = BT_LISTEN; |
| 2295 | chan->mode = L2CAP_MODE_BASIC; |
| 2296 | chan->imtu = L2CAP_DEFAULT_MTU; |
| 2297 | chan->ops = &smp_root_chan_ops; |
| 2298 | |
Johan Hedberg | abe8490 | 2014-11-12 22:22:21 +0200 | [diff] [blame] | 2299 | /* Set correct nesting level for a parent/listening channel */ |
| 2300 | atomic_set(&chan->nesting, L2CAP_NESTING_PARENT); |
| 2301 | |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2302 | hdev->smp_data = chan; |
| 2303 | |
Johan Hedberg | 711eafe | 2014-08-08 09:32:52 +0300 | [diff] [blame] | 2304 | return 0; |
| 2305 | } |
| 2306 | |
| 2307 | void smp_unregister(struct hci_dev *hdev) |
| 2308 | { |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2309 | struct l2cap_chan *chan = hdev->smp_data; |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 2310 | struct crypto_blkcipher *tfm_aes; |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2311 | |
| 2312 | if (!chan) |
| 2313 | return; |
| 2314 | |
| 2315 | BT_DBG("%s chan %p", hdev->name, chan); |
Johan Hedberg | 711eafe | 2014-08-08 09:32:52 +0300 | [diff] [blame] | 2316 | |
Johan Hedberg | defce9e | 2014-08-08 09:37:17 +0300 | [diff] [blame] | 2317 | tfm_aes = chan->data; |
| 2318 | if (tfm_aes) { |
| 2319 | chan->data = NULL; |
| 2320 | crypto_free_blkcipher(tfm_aes); |
Johan Hedberg | 711eafe | 2014-08-08 09:32:52 +0300 | [diff] [blame] | 2321 | } |
Johan Hedberg | 70db83c | 2014-08-08 09:37:16 +0300 | [diff] [blame] | 2322 | |
| 2323 | hdev->smp_data = NULL; |
| 2324 | l2cap_chan_put(chan); |
Johan Hedberg | 711eafe | 2014-08-08 09:32:52 +0300 | [diff] [blame] | 2325 | } |