Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 1 | /* |
| 2 | BlueZ - Bluetooth protocol stack for Linux |
| 3 | |
| 4 | Copyright (C) 2010 Nokia Corporation |
| 5 | |
| 6 | This program is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License version 2 as |
| 8 | published by the Free Software Foundation; |
| 9 | |
| 10 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS |
| 11 | OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 12 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS. |
| 13 | IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY |
| 14 | CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES |
| 15 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN |
| 16 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF |
| 17 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
| 18 | |
| 19 | ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS, |
| 20 | COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS |
| 21 | SOFTWARE IS DISCLAIMED. |
| 22 | */ |
| 23 | |
Szymon Janc | 4e51eae | 2011-02-25 19:05:48 +0100 | [diff] [blame] | 24 | #define MGMT_INDEX_NONE 0xFFFF |
| 25 | |
Johan Hedberg | ca69b79 | 2011-11-11 18:10:00 +0200 | [diff] [blame] | 26 | #define MGMT_STATUS_SUCCESS 0x00 |
| 27 | #define MGMT_STATUS_UNKNOWN_COMMAND 0x01 |
| 28 | #define MGMT_STATUS_NOT_CONNECTED 0x02 |
| 29 | #define MGMT_STATUS_FAILED 0x03 |
| 30 | #define MGMT_STATUS_CONNECT_FAILED 0x04 |
| 31 | #define MGMT_STATUS_AUTH_FAILED 0x05 |
| 32 | #define MGMT_STATUS_NOT_PAIRED 0x06 |
| 33 | #define MGMT_STATUS_NO_RESOURCES 0x07 |
| 34 | #define MGMT_STATUS_TIMEOUT 0x08 |
| 35 | #define MGMT_STATUS_ALREADY_CONNECTED 0x09 |
| 36 | #define MGMT_STATUS_BUSY 0x0a |
| 37 | #define MGMT_STATUS_REJECTED 0x0b |
| 38 | #define MGMT_STATUS_NOT_SUPPORTED 0x0c |
| 39 | #define MGMT_STATUS_INVALID_PARAMS 0x0d |
| 40 | #define MGMT_STATUS_DISCONNECTED 0x0e |
| 41 | #define MGMT_STATUS_NOT_POWERED 0x0f |
Johan Hedberg | 2842470 | 2012-02-02 04:02:29 +0200 | [diff] [blame] | 42 | #define MGMT_STATUS_CANCELLED 0x10 |
Johan Hedberg | ca69b79 | 2011-11-11 18:10:00 +0200 | [diff] [blame] | 43 | |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 44 | struct mgmt_hdr { |
| 45 | __le16 opcode; |
Szymon Janc | 4e51eae | 2011-02-25 19:05:48 +0100 | [diff] [blame] | 46 | __le16 index; |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 47 | __le16 len; |
| 48 | } __packed; |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 49 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 50 | #define MGMT_ADDR_BREDR 0x00 |
| 51 | #define MGMT_ADDR_LE_PUBLIC 0x01 |
| 52 | #define MGMT_ADDR_LE_RANDOM 0x02 |
| 53 | #define MGMT_ADDR_INVALID 0xff |
| 54 | |
| 55 | struct mgmt_addr_info { |
| 56 | bdaddr_t bdaddr; |
| 57 | __u8 type; |
| 58 | } __packed; |
| 59 | |
Johan Hedberg | 02d9812 | 2010-12-13 21:07:04 +0200 | [diff] [blame] | 60 | #define MGMT_OP_READ_VERSION 0x0001 |
| 61 | struct mgmt_rp_read_version { |
| 62 | __u8 version; |
| 63 | __le16 revision; |
| 64 | } __packed; |
| 65 | |
Johan Hedberg | faba42e | 2010-12-13 21:07:05 +0200 | [diff] [blame] | 66 | #define MGMT_OP_READ_INDEX_LIST 0x0003 |
| 67 | struct mgmt_rp_read_index_list { |
| 68 | __le16 num_controllers; |
| 69 | __le16 index[0]; |
| 70 | } __packed; |
| 71 | |
Johan Hedberg | dc4fe30 | 2011-03-16 14:29:36 +0200 | [diff] [blame] | 72 | /* Reserve one extra byte for names in management messages so that they |
| 73 | * are always guaranteed to be nul-terminated */ |
| 74 | #define MGMT_MAX_NAME_LENGTH (HCI_MAX_NAME_LENGTH + 1) |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 75 | #define MGMT_MAX_SHORT_NAME_LENGTH (10 + 1) |
| 76 | |
| 77 | #define MGMT_SETTING_POWERED 0x00000001 |
| 78 | #define MGMT_SETTING_CONNECTABLE 0x00000002 |
| 79 | #define MGMT_SETTING_FAST_CONNECTABLE 0x00000004 |
| 80 | #define MGMT_SETTING_DISCOVERABLE 0x00000008 |
| 81 | #define MGMT_SETTING_PAIRABLE 0x00000010 |
| 82 | #define MGMT_SETTING_LINK_SECURITY 0x00000020 |
| 83 | #define MGMT_SETTING_SSP 0x00000040 |
| 84 | #define MGMT_SETTING_BREDR 0x00000080 |
| 85 | #define MGMT_SETTING_HS 0x00000100 |
| 86 | #define MGMT_SETTING_LE 0x00000200 |
Johan Hedberg | dc4fe30 | 2011-03-16 14:29:36 +0200 | [diff] [blame] | 87 | |
Johan Hedberg | f7b64e69 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 88 | #define MGMT_OP_READ_INFO 0x0004 |
Johan Hedberg | f7b64e69 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 89 | struct mgmt_rp_read_info { |
Johan Hedberg | f7b64e69 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 90 | bdaddr_t bdaddr; |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 91 | __u8 version; |
| 92 | __le16 manufacturer; |
| 93 | __le32 supported_settings; |
| 94 | __le32 current_settings; |
Johan Hedberg | f7b64e69 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 95 | __u8 dev_class[3]; |
Johan Hedberg | dc4fe30 | 2011-03-16 14:29:36 +0200 | [diff] [blame] | 96 | __u8 name[MGMT_MAX_NAME_LENGTH]; |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 97 | __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; |
Johan Hedberg | f7b64e69 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 98 | } __packed; |
| 99 | |
Johan Hedberg | 72a734e | 2010-12-30 00:38:22 +0200 | [diff] [blame] | 100 | struct mgmt_mode { |
Johan Hedberg | 72a734e | 2010-12-30 00:38:22 +0200 | [diff] [blame] | 101 | __u8 val; |
| 102 | } __packed; |
| 103 | |
Johan Hedberg | eec8d2b | 2010-12-16 10:17:38 +0200 | [diff] [blame] | 104 | #define MGMT_OP_SET_POWERED 0x0005 |
Johan Hedberg | eec8d2b | 2010-12-16 10:17:38 +0200 | [diff] [blame] | 105 | |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 106 | #define MGMT_OP_SET_DISCOVERABLE 0x0006 |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 107 | struct mgmt_cp_set_discoverable { |
| 108 | __u8 val; |
| 109 | __u16 timeout; |
| 110 | } __packed; |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 111 | |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 112 | #define MGMT_OP_SET_CONNECTABLE 0x0007 |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 113 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 114 | #define MGMT_OP_SET_FAST_CONNECTABLE 0x0008 |
Johan Hedberg | f7c6869ce | 2011-12-15 00:47:36 +0200 | [diff] [blame] | 115 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 116 | #define MGMT_OP_SET_PAIRABLE 0x0009 |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 117 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 118 | #define MGMT_OP_SET_LINK_SECURITY 0x000A |
| 119 | |
| 120 | #define MGMT_OP_SET_SSP 0x000B |
| 121 | |
| 122 | #define MGMT_OP_SET_HS 0x000C |
| 123 | |
| 124 | #define MGMT_OP_SET_LE 0x000D |
| 125 | |
| 126 | #define MGMT_OP_SET_DEV_CLASS 0x000E |
| 127 | struct mgmt_cp_set_dev_class { |
| 128 | __u8 major; |
| 129 | __u8 minor; |
| 130 | } __packed; |
| 131 | |
| 132 | #define MGMT_OP_SET_LOCAL_NAME 0x000F |
| 133 | struct mgmt_cp_set_local_name { |
| 134 | __u8 name[MGMT_MAX_NAME_LENGTH]; |
| 135 | } __packed; |
| 136 | |
| 137 | #define MGMT_OP_ADD_UUID 0x0010 |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 138 | struct mgmt_cp_add_uuid { |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 139 | __u8 uuid[16]; |
Johan Hedberg | 1aff6f0 | 2011-01-13 21:56:52 +0200 | [diff] [blame] | 140 | __u8 svc_hint; |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 141 | } __packed; |
| 142 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 143 | #define MGMT_OP_REMOVE_UUID 0x0011 |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 144 | struct mgmt_cp_remove_uuid { |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 145 | __u8 uuid[16]; |
| 146 | } __packed; |
| 147 | |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 148 | struct mgmt_link_key_info { |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 149 | bdaddr_t bdaddr; |
| 150 | u8 type; |
| 151 | u8 val[16]; |
| 152 | u8 pin_len; |
| 153 | } __packed; |
| 154 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 155 | #define MGMT_OP_LOAD_LINK_KEYS 0x0012 |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 156 | struct mgmt_cp_load_link_keys { |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 157 | __u8 debug_keys; |
| 158 | __le16 key_count; |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 159 | struct mgmt_link_key_info keys[0]; |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 160 | } __packed; |
| 161 | |
Vinicius Costa Gomes | 27f27ed | 2012-01-30 19:29:11 -0300 | [diff] [blame] | 162 | struct mgmt_ltk_info { |
| 163 | struct mgmt_addr_info addr; |
| 164 | __u8 authenticated; |
| 165 | __u8 master; |
| 166 | __u8 enc_size; |
| 167 | __le16 ediv; |
| 168 | __u8 rand[8]; |
| 169 | __u8 val[16]; |
| 170 | } __packed; |
| 171 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 172 | #define MGMT_OP_LOAD_LONG_TERM_KEYS 0x0013 |
Vinicius Costa Gomes | 27f27ed | 2012-01-30 19:29:11 -0300 | [diff] [blame] | 173 | struct mgmt_cp_load_long_term_keys { |
| 174 | __le16 key_count; |
| 175 | struct mgmt_ltk_info keys[0]; |
| 176 | } __packed; |
| 177 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 178 | #define MGMT_OP_DISCONNECT 0x0014 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 179 | struct mgmt_cp_disconnect { |
Johan Hedberg | 88c3df1 | 2012-02-09 14:27:38 +0200 | [diff] [blame] | 180 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 181 | } __packed; |
| 182 | struct mgmt_rp_disconnect { |
Johan Hedberg | 88c3df1 | 2012-02-09 14:27:38 +0200 | [diff] [blame] | 183 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 184 | __u8 status; |
| 185 | } __packed; |
| 186 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 187 | #define MGMT_OP_GET_CONNECTIONS 0x0015 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 188 | struct mgmt_rp_get_connections { |
| 189 | __le16 conn_count; |
| 190 | struct mgmt_addr_info addr[0]; |
| 191 | } __packed; |
| 192 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 193 | #define MGMT_OP_PIN_CODE_REPLY 0x0016 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 194 | struct mgmt_cp_pin_code_reply { |
| 195 | bdaddr_t bdaddr; |
| 196 | __u8 pin_len; |
| 197 | __u8 pin_code[16]; |
| 198 | } __packed; |
| 199 | struct mgmt_rp_pin_code_reply { |
| 200 | bdaddr_t bdaddr; |
| 201 | uint8_t status; |
| 202 | } __packed; |
| 203 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 204 | #define MGMT_OP_PIN_CODE_NEG_REPLY 0x0017 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 205 | struct mgmt_cp_pin_code_neg_reply { |
| 206 | bdaddr_t bdaddr; |
| 207 | } __packed; |
| 208 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 209 | #define MGMT_OP_SET_IO_CAPABILITY 0x0018 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 210 | struct mgmt_cp_set_io_capability { |
| 211 | __u8 io_capability; |
| 212 | } __packed; |
| 213 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 214 | #define MGMT_OP_PAIR_DEVICE 0x0019 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 215 | struct mgmt_cp_pair_device { |
| 216 | struct mgmt_addr_info addr; |
| 217 | __u8 io_cap; |
| 218 | } __packed; |
| 219 | struct mgmt_rp_pair_device { |
| 220 | struct mgmt_addr_info addr; |
| 221 | __u8 status; |
| 222 | } __packed; |
| 223 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 224 | #define MGMT_OP_CANCEL_PAIR_DEVICE 0x001A |
| 225 | |
| 226 | #define MGMT_OP_UNPAIR_DEVICE 0x001B |
| 227 | struct mgmt_cp_unpair_device { |
| 228 | struct mgmt_addr_info addr; |
| 229 | __u8 disconnect; |
| 230 | } __packed; |
| 231 | struct mgmt_rp_unpair_device { |
| 232 | struct mgmt_addr_info addr; |
| 233 | __u8 status; |
| 234 | }; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 235 | |
| 236 | #define MGMT_OP_USER_CONFIRM_REPLY 0x001C |
| 237 | struct mgmt_cp_user_confirm_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 238 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 239 | } __packed; |
| 240 | struct mgmt_rp_user_confirm_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 241 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 242 | __u8 status; |
| 243 | } __packed; |
| 244 | |
| 245 | #define MGMT_OP_USER_CONFIRM_NEG_REPLY 0x001D |
| 246 | struct mgmt_cp_user_confirm_neg_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 247 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 248 | } __packed; |
| 249 | |
| 250 | #define MGMT_OP_USER_PASSKEY_REPLY 0x001E |
| 251 | struct mgmt_cp_user_passkey_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 252 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 253 | __le32 passkey; |
| 254 | } __packed; |
| 255 | struct mgmt_rp_user_passkey_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 256 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 257 | __u8 status; |
| 258 | } __packed; |
| 259 | |
| 260 | #define MGMT_OP_USER_PASSKEY_NEG_REPLY 0x001F |
| 261 | struct mgmt_cp_user_passkey_neg_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 262 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 263 | } __packed; |
| 264 | |
| 265 | #define MGMT_OP_READ_LOCAL_OOB_DATA 0x0020 |
| 266 | struct mgmt_rp_read_local_oob_data { |
| 267 | __u8 hash[16]; |
| 268 | __u8 randomizer[16]; |
| 269 | } __packed; |
| 270 | |
| 271 | #define MGMT_OP_ADD_REMOTE_OOB_DATA 0x0021 |
| 272 | struct mgmt_cp_add_remote_oob_data { |
Johan Hedberg | 664ce4c | 2012-02-09 15:44:09 +0200 | [diff] [blame] | 273 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 274 | __u8 hash[16]; |
| 275 | __u8 randomizer[16]; |
| 276 | } __packed; |
| 277 | |
| 278 | #define MGMT_OP_REMOVE_REMOTE_OOB_DATA 0x0022 |
| 279 | struct mgmt_cp_remove_remote_oob_data { |
Johan Hedberg | 664ce4c | 2012-02-09 15:44:09 +0200 | [diff] [blame] | 280 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 281 | } __packed; |
| 282 | |
| 283 | #define MGMT_OP_START_DISCOVERY 0x0023 |
| 284 | struct mgmt_cp_start_discovery { |
| 285 | __u8 type; |
| 286 | } __packed; |
| 287 | |
| 288 | #define MGMT_OP_STOP_DISCOVERY 0x0024 |
| 289 | |
| 290 | #define MGMT_OP_CONFIRM_NAME 0x0025 |
| 291 | struct mgmt_cp_confirm_name { |
| 292 | bdaddr_t bdaddr; |
| 293 | __u8 name_known; |
| 294 | } __packed; |
| 295 | struct mgmt_rp_confirm_name { |
| 296 | bdaddr_t bdaddr; |
| 297 | __u8 status; |
| 298 | } __packed; |
| 299 | |
| 300 | #define MGMT_OP_BLOCK_DEVICE 0x0026 |
| 301 | struct mgmt_cp_block_device { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame^] | 302 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 303 | } __packed; |
| 304 | |
| 305 | #define MGMT_OP_UNBLOCK_DEVICE 0x0027 |
| 306 | struct mgmt_cp_unblock_device { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame^] | 307 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 308 | } __packed; |
| 309 | |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 310 | #define MGMT_EV_CMD_COMPLETE 0x0001 |
| 311 | struct mgmt_ev_cmd_complete { |
| 312 | __le16 opcode; |
| 313 | __u8 data[0]; |
| 314 | } __packed; |
| 315 | |
| 316 | #define MGMT_EV_CMD_STATUS 0x0002 |
| 317 | struct mgmt_ev_cmd_status { |
| 318 | __u8 status; |
| 319 | __le16 opcode; |
| 320 | } __packed; |
| 321 | |
| 322 | #define MGMT_EV_CONTROLLER_ERROR 0x0003 |
| 323 | struct mgmt_ev_controller_error { |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 324 | __u8 error_code; |
| 325 | } __packed; |
Johan Hedberg | c71e97b | 2010-12-13 21:07:07 +0200 | [diff] [blame] | 326 | |
| 327 | #define MGMT_EV_INDEX_ADDED 0x0004 |
Johan Hedberg | c71e97b | 2010-12-13 21:07:07 +0200 | [diff] [blame] | 328 | |
| 329 | #define MGMT_EV_INDEX_REMOVED 0x0005 |
Johan Hedberg | 5add6af | 2010-12-16 10:00:37 +0200 | [diff] [blame] | 330 | |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 331 | #define MGMT_EV_NEW_SETTINGS 0x0006 |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 332 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 333 | #define MGMT_EV_CLASS_OF_DEV_CHANGED 0x0007 |
| 334 | struct mgmt_ev_class_of_dev_changed { |
| 335 | __u8 dev_class[3]; |
| 336 | }; |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 337 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 338 | #define MGMT_EV_LOCAL_NAME_CHANGED 0x0008 |
| 339 | struct mgmt_ev_local_name_changed { |
| 340 | __u8 name[MGMT_MAX_NAME_LENGTH]; |
| 341 | __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; |
| 342 | } __packed; |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 343 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 344 | #define MGMT_EV_NEW_LINK_KEY 0x0009 |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 345 | struct mgmt_ev_new_link_key { |
Johan Hedberg | 4df378a | 2011-04-28 11:29:03 -0700 | [diff] [blame] | 346 | __u8 store_hint; |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 347 | struct mgmt_link_key_info key; |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 348 | } __packed; |
Johan Hedberg | f752054 | 2011-01-20 12:34:39 +0200 | [diff] [blame] | 349 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 350 | #define MGMT_EV_NEW_LONG_TERM_KEY 0x000A |
| 351 | struct mgmt_ev_new_long_term_key { |
| 352 | __u8 store_hint; |
| 353 | struct mgmt_ltk_info key; |
| 354 | } __packed; |
| 355 | |
| 356 | #define MGMT_EV_DEVICE_CONNECTED 0x000B |
Johan Hedberg | b644ba3 | 2012-01-17 21:48:47 +0200 | [diff] [blame] | 357 | struct mgmt_ev_device_connected { |
| 358 | struct mgmt_addr_info addr; |
| 359 | __le16 eir_len; |
| 360 | __u8 eir[0]; |
| 361 | } __packed; |
Johan Hedberg | f752054 | 2011-01-20 12:34:39 +0200 | [diff] [blame] | 362 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 363 | #define MGMT_EV_DEVICE_DISCONNECTED 0x000C |
Johan Hedberg | 17d5c04 | 2011-01-22 06:09:08 +0200 | [diff] [blame] | 364 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 365 | #define MGMT_EV_CONNECT_FAILED 0x000D |
Johan Hedberg | 17d5c04 | 2011-01-22 06:09:08 +0200 | [diff] [blame] | 366 | struct mgmt_ev_connect_failed { |
Johan Hedberg | 4c659c3 | 2011-11-07 23:13:39 +0200 | [diff] [blame] | 367 | struct mgmt_addr_info addr; |
Johan Hedberg | 17d5c04 | 2011-01-22 06:09:08 +0200 | [diff] [blame] | 368 | __u8 status; |
| 369 | } __packed; |
Johan Hedberg | 980e1a5 | 2011-01-22 06:10:07 +0200 | [diff] [blame] | 370 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 371 | #define MGMT_EV_PIN_CODE_REQUEST 0x000E |
Johan Hedberg | 980e1a5 | 2011-01-22 06:10:07 +0200 | [diff] [blame] | 372 | struct mgmt_ev_pin_code_request { |
Johan Hedberg | 980e1a5 | 2011-01-22 06:10:07 +0200 | [diff] [blame] | 373 | bdaddr_t bdaddr; |
Waldemar Rymarkiewicz | a770bb5 | 2011-04-28 12:07:59 +0200 | [diff] [blame] | 374 | __u8 secure; |
Johan Hedberg | 980e1a5 | 2011-01-22 06:10:07 +0200 | [diff] [blame] | 375 | } __packed; |
Johan Hedberg | a5c2968 | 2011-02-19 12:05:57 -0300 | [diff] [blame] | 376 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 377 | #define MGMT_EV_USER_CONFIRM_REQUEST 0x000F |
Johan Hedberg | a5c2968 | 2011-02-19 12:05:57 -0300 | [diff] [blame] | 378 | struct mgmt_ev_user_confirm_request { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 379 | struct mgmt_addr_info addr; |
Johan Hedberg | 55bc1a3 | 2011-04-28 11:28:56 -0700 | [diff] [blame] | 380 | __u8 confirm_hint; |
Johan Hedberg | a5c2968 | 2011-02-19 12:05:57 -0300 | [diff] [blame] | 381 | __le32 value; |
| 382 | } __packed; |
Johan Hedberg | 2a61169 | 2011-02-19 12:06:00 -0300 | [diff] [blame] | 383 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 384 | #define MGMT_EV_USER_PASSKEY_REQUEST 0x0010 |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 385 | struct mgmt_ev_user_passkey_request { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 386 | struct mgmt_addr_info addr; |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 387 | } __packed; |
| 388 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 389 | #define MGMT_EV_AUTH_FAILED 0x0011 |
Johan Hedberg | 2a61169 | 2011-02-19 12:06:00 -0300 | [diff] [blame] | 390 | struct mgmt_ev_auth_failed { |
Johan Hedberg | 2a61169 | 2011-02-19 12:06:00 -0300 | [diff] [blame] | 391 | bdaddr_t bdaddr; |
| 392 | __u8 status; |
| 393 | } __packed; |
Johan Hedberg | b312b161 | 2011-03-16 14:29:37 +0200 | [diff] [blame] | 394 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 395 | #define MGMT_EV_DEVICE_FOUND 0x0012 |
Johan Hedberg | e17acd4 | 2011-03-30 23:57:16 +0300 | [diff] [blame] | 396 | struct mgmt_ev_device_found { |
Johan Hedberg | 4c659c3 | 2011-11-07 23:13:39 +0200 | [diff] [blame] | 397 | struct mgmt_addr_info addr; |
Johan Hedberg | e17acd4 | 2011-03-30 23:57:16 +0300 | [diff] [blame] | 398 | __s8 rssi; |
Johan Hedberg | d85bb26 | 2011-12-19 14:29:06 +0200 | [diff] [blame] | 399 | __u8 confirm_name; |
Johan Hedberg | e319d2e | 2012-01-15 19:51:59 +0200 | [diff] [blame] | 400 | __le16 eir_len; |
| 401 | __u8 eir[0]; |
Johan Hedberg | e17acd4 | 2011-03-30 23:57:16 +0300 | [diff] [blame] | 402 | } __packed; |
Johan Hedberg | a88a965 | 2011-03-30 13:18:12 +0300 | [diff] [blame] | 403 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 404 | #define MGMT_EV_DISCOVERING 0x0013 |
Johan Hedberg | 314b238 | 2011-04-27 10:29:57 -0400 | [diff] [blame] | 405 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 406 | #define MGMT_EV_DEVICE_BLOCKED 0x0014 |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 407 | struct mgmt_ev_device_blocked { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame^] | 408 | struct mgmt_addr_info addr; |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 409 | } __packed; |
| 410 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 411 | #define MGMT_EV_DEVICE_UNBLOCKED 0x0015 |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 412 | struct mgmt_ev_device_unblocked { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame^] | 413 | struct mgmt_addr_info addr; |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 414 | } __packed; |