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 | |
Ville Tervo | aff2cae | 2011-02-10 22:38:54 -0300 | [diff] [blame] | 23 | #ifndef __SMP_H |
| 24 | #define __SMP_H |
| 25 | |
| 26 | struct smp_command_hdr { |
| 27 | __u8 code; |
| 28 | } __packed; |
| 29 | |
| 30 | #define SMP_CMD_PAIRING_REQ 0x01 |
| 31 | #define SMP_CMD_PAIRING_RSP 0x02 |
| 32 | struct smp_cmd_pairing { |
| 33 | __u8 io_capability; |
| 34 | __u8 oob_flag; |
| 35 | __u8 auth_req; |
| 36 | __u8 max_key_size; |
| 37 | __u8 init_key_dist; |
| 38 | __u8 resp_key_dist; |
| 39 | } __packed; |
| 40 | |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 41 | #define SMP_IO_DISPLAY_ONLY 0x00 |
| 42 | #define SMP_IO_DISPLAY_YESNO 0x01 |
| 43 | #define SMP_IO_KEYBOARD_ONLY 0x02 |
| 44 | #define SMP_IO_NO_INPUT_OUTPUT 0x03 |
| 45 | #define SMP_IO_KEYBOARD_DISPLAY 0x04 |
| 46 | |
| 47 | #define SMP_OOB_NOT_PRESENT 0x00 |
| 48 | #define SMP_OOB_PRESENT 0x01 |
| 49 | |
| 50 | #define SMP_DIST_ENC_KEY 0x01 |
| 51 | #define SMP_DIST_ID_KEY 0x02 |
| 52 | #define SMP_DIST_SIGN 0x04 |
Johan Hedberg | e65392e | 2014-05-08 14:02:22 +0300 | [diff] [blame] | 53 | #define SMP_DIST_LINK_KEY 0x08 |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 54 | |
| 55 | #define SMP_AUTH_NONE 0x00 |
| 56 | #define SMP_AUTH_BONDING 0x01 |
| 57 | #define SMP_AUTH_MITM 0x04 |
Johan Hedberg | e65392e | 2014-05-08 14:02:22 +0300 | [diff] [blame] | 58 | #define SMP_AUTH_SC 0x08 |
| 59 | #define SMP_AUTH_KEYPRESS 0x10 |
Anderson Briglia | 88ba43b | 2011-06-09 18:50:42 -0300 | [diff] [blame] | 60 | |
Ville Tervo | aff2cae | 2011-02-10 22:38:54 -0300 | [diff] [blame] | 61 | #define SMP_CMD_PAIRING_CONFIRM 0x03 |
| 62 | struct smp_cmd_pairing_confirm { |
| 63 | __u8 confirm_val[16]; |
| 64 | } __packed; |
| 65 | |
| 66 | #define SMP_CMD_PAIRING_RANDOM 0x04 |
| 67 | struct smp_cmd_pairing_random { |
| 68 | __u8 rand_val[16]; |
| 69 | } __packed; |
| 70 | |
| 71 | #define SMP_CMD_PAIRING_FAIL 0x05 |
| 72 | struct smp_cmd_pairing_fail { |
| 73 | __u8 reason; |
| 74 | } __packed; |
| 75 | |
| 76 | #define SMP_CMD_ENCRYPT_INFO 0x06 |
| 77 | struct smp_cmd_encrypt_info { |
| 78 | __u8 ltk[16]; |
| 79 | } __packed; |
| 80 | |
| 81 | #define SMP_CMD_MASTER_IDENT 0x07 |
| 82 | struct smp_cmd_master_ident { |
Andrei Emeltchenko | 5811537 | 2012-03-12 12:13:06 +0200 | [diff] [blame] | 83 | __le16 ediv; |
Marcel Holtmann | fe39c7b | 2014-02-27 16:00:28 -0800 | [diff] [blame] | 84 | __le64 rand; |
Ville Tervo | aff2cae | 2011-02-10 22:38:54 -0300 | [diff] [blame] | 85 | } __packed; |
| 86 | |
| 87 | #define SMP_CMD_IDENT_INFO 0x08 |
| 88 | struct smp_cmd_ident_info { |
| 89 | __u8 irk[16]; |
| 90 | } __packed; |
| 91 | |
| 92 | #define SMP_CMD_IDENT_ADDR_INFO 0x09 |
| 93 | struct smp_cmd_ident_addr_info { |
| 94 | __u8 addr_type; |
| 95 | bdaddr_t bdaddr; |
| 96 | } __packed; |
| 97 | |
| 98 | #define SMP_CMD_SIGN_INFO 0x0a |
| 99 | struct smp_cmd_sign_info { |
| 100 | __u8 csrk[16]; |
| 101 | } __packed; |
| 102 | |
| 103 | #define SMP_CMD_SECURITY_REQ 0x0b |
| 104 | struct smp_cmd_security_req { |
| 105 | __u8 auth_req; |
| 106 | } __packed; |
| 107 | |
Johan Hedberg | e65392e | 2014-05-08 14:02:22 +0300 | [diff] [blame] | 108 | #define SMP_CMD_PUBLIC_KEY 0x0c |
| 109 | struct smp_cmd_public_key { |
| 110 | __u8 x[32]; |
| 111 | __u8 y[32]; |
| 112 | } __packed; |
| 113 | |
| 114 | #define SMP_CMD_DHKEY_CHECK 0x0d |
| 115 | struct smp_cmd_dhkey_check { |
| 116 | __u8 e[16]; |
| 117 | } __packed; |
| 118 | |
| 119 | #define SMP_CMD_KEYPRESS_NOTIFY 0x0e |
| 120 | struct smp_cmd_keypress_notify { |
| 121 | __u8 value; |
| 122 | } __packed; |
| 123 | |
| 124 | #define SMP_CMD_MAX 0x0e |
Johan Hedberg | b28b494 | 2014-09-05 22:19:55 +0300 | [diff] [blame] | 125 | |
Ville Tervo | aff2cae | 2011-02-10 22:38:54 -0300 | [diff] [blame] | 126 | #define SMP_PASSKEY_ENTRY_FAILED 0x01 |
| 127 | #define SMP_OOB_NOT_AVAIL 0x02 |
| 128 | #define SMP_AUTH_REQUIREMENTS 0x03 |
| 129 | #define SMP_CONFIRM_FAILED 0x04 |
| 130 | #define SMP_PAIRING_NOTSUPP 0x05 |
| 131 | #define SMP_ENC_KEY_SIZE 0x06 |
Andrei Emeltchenko | b93a682 | 2012-07-19 17:03:44 +0300 | [diff] [blame] | 132 | #define SMP_CMD_NOTSUPP 0x07 |
| 133 | #define SMP_UNSPECIFIED 0x08 |
Ville Tervo | aff2cae | 2011-02-10 22:38:54 -0300 | [diff] [blame] | 134 | #define SMP_REPEATED_ATTEMPTS 0x09 |
Johan Hedberg | 38e4a91 | 2014-05-08 14:19:11 +0300 | [diff] [blame] | 135 | #define SMP_INVALID_PARAMS 0x0a |
Johan Hedberg | e65392e | 2014-05-08 14:02:22 +0300 | [diff] [blame] | 136 | #define SMP_DHKEY_CHECK_FAILED 0x0b |
| 137 | #define SMP_NUMERIC_COMP_FAILED 0x0c |
| 138 | #define SMP_BREDR_PAIRING_IN_PROGRESS 0x0d |
| 139 | #define SMP_CROSS_TRANSP_NOT_ALLOWED 0x0e |
Ville Tervo | aff2cae | 2011-02-10 22:38:54 -0300 | [diff] [blame] | 140 | |
Vinicius Costa Gomes | 3158c50 | 2011-06-14 13:37:42 -0300 | [diff] [blame] | 141 | #define SMP_MIN_ENC_KEY_SIZE 7 |
| 142 | #define SMP_MAX_ENC_KEY_SIZE 16 |
| 143 | |
Johan Hedberg | 2ceba53 | 2014-06-16 19:25:16 +0300 | [diff] [blame] | 144 | /* LTK types used in internal storage (struct smp_ltk) */ |
| 145 | enum { |
| 146 | SMP_STK, |
| 147 | SMP_LTK, |
| 148 | SMP_LTK_SLAVE, |
Johan Hedberg | 23fb8de | 2014-05-23 13:15:37 +0300 | [diff] [blame] | 149 | SMP_LTK_P256, |
| 150 | SMP_LTK_P256_DEBUG, |
Johan Hedberg | 2ceba53 | 2014-06-16 19:25:16 +0300 | [diff] [blame] | 151 | }; |
| 152 | |
Johan Hedberg | 23fb8de | 2014-05-23 13:15:37 +0300 | [diff] [blame] | 153 | static inline bool smp_ltk_is_sc(struct smp_ltk *key) |
| 154 | { |
| 155 | switch (key->type) { |
| 156 | case SMP_LTK_P256: |
| 157 | case SMP_LTK_P256_DEBUG: |
| 158 | return true; |
| 159 | } |
| 160 | |
| 161 | return false; |
| 162 | } |
| 163 | |
Johan Hedberg | a6f7833 | 2014-09-10 17:37:45 -0700 | [diff] [blame] | 164 | static inline u8 smp_ltk_sec_level(struct smp_ltk *key) |
| 165 | { |
Johan Hedberg | 8f5eeca | 2014-05-23 13:36:10 +0300 | [diff] [blame] | 166 | if (key->authenticated) { |
| 167 | if (smp_ltk_is_sc(key)) |
| 168 | return BT_SECURITY_FIPS; |
| 169 | else |
| 170 | return BT_SECURITY_HIGH; |
| 171 | } |
Johan Hedberg | a6f7833 | 2014-09-10 17:37:45 -0700 | [diff] [blame] | 172 | |
| 173 | return BT_SECURITY_MEDIUM; |
| 174 | } |
| 175 | |
Johan Hedberg | 35dc6f8 | 2014-11-13 10:55:18 +0200 | [diff] [blame] | 176 | /* Key preferences for smp_sufficient security */ |
| 177 | enum smp_key_pref { |
| 178 | SMP_ALLOW_STK, |
| 179 | SMP_USE_LTK, |
| 180 | }; |
| 181 | |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 182 | /* SMP Commands */ |
Johan Hedberg | 35dc6f8 | 2014-11-13 10:55:18 +0200 | [diff] [blame] | 183 | bool smp_sufficient_security(struct hci_conn *hcon, u8 sec_level, |
| 184 | enum smp_key_pref key_pref); |
Vinicius Costa Gomes | cc11092 | 2012-08-23 21:32:43 -0300 | [diff] [blame] | 185 | int smp_conn_security(struct hci_conn *hcon, __u8 sec_level); |
Brian Gix | 2b64d15 | 2011-12-21 16:12:12 -0800 | [diff] [blame] | 186 | int smp_user_confirm_reply(struct hci_conn *conn, u16 mgmt_op, __le32 passkey); |
Anderson Briglia | eb492e0 | 2011-06-09 18:50:40 -0300 | [diff] [blame] | 187 | |
Johan Hedberg | cd08279 | 2014-12-02 13:37:41 +0200 | [diff] [blame] | 188 | bool smp_irk_matches(struct hci_dev *hdev, const u8 irk[16], |
| 189 | const bdaddr_t *bdaddr); |
| 190 | int smp_generate_rpa(struct hci_dev *hdev, const u8 irk[16], bdaddr_t *rpa); |
Johan Hedberg | 6047805 | 2014-02-18 10:19:31 +0200 | [diff] [blame] | 191 | |
Johan Hedberg | 711eafe | 2014-08-08 09:32:52 +0300 | [diff] [blame] | 192 | int smp_register(struct hci_dev *hdev); |
| 193 | void smp_unregister(struct hci_dev *hdev); |
| 194 | |
Johan Hedberg | 0a2b0f0 | 2014-12-30 09:50:39 +0200 | [diff] [blame] | 195 | #if IS_ENABLED(CONFIG_BT_SELFTEST_SMP) |
| 196 | |
| 197 | int bt_selftest_smp(void); |
| 198 | |
| 199 | #else |
| 200 | |
| 201 | static inline int bt_selftest_smp(void) |
| 202 | { |
| 203 | return 0; |
| 204 | } |
| 205 | |
| 206 | #endif |
| 207 | |
Ville Tervo | aff2cae | 2011-02-10 22:38:54 -0300 | [diff] [blame] | 208 | #endif /* __SMP_H */ |