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 | e70bb2e | 2012-02-13 16:59:33 +0200 | [diff] [blame] | 66 | #define MGMT_OP_READ_COMMANDS 0x0002 |
| 67 | struct mgmt_rp_read_commands { |
| 68 | __le16 num_commands; |
| 69 | __le16 num_events; |
| 70 | __le16 opcodes[0]; |
| 71 | } __packed; |
| 72 | |
Johan Hedberg | faba42e | 2010-12-13 21:07:05 +0200 | [diff] [blame] | 73 | #define MGMT_OP_READ_INDEX_LIST 0x0003 |
| 74 | struct mgmt_rp_read_index_list { |
| 75 | __le16 num_controllers; |
| 76 | __le16 index[0]; |
| 77 | } __packed; |
| 78 | |
Johan Hedberg | dc4fe30 | 2011-03-16 14:29:36 +0200 | [diff] [blame] | 79 | /* Reserve one extra byte for names in management messages so that they |
| 80 | * are always guaranteed to be nul-terminated */ |
| 81 | #define MGMT_MAX_NAME_LENGTH (HCI_MAX_NAME_LENGTH + 1) |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 82 | #define MGMT_MAX_SHORT_NAME_LENGTH (10 + 1) |
| 83 | |
| 84 | #define MGMT_SETTING_POWERED 0x00000001 |
| 85 | #define MGMT_SETTING_CONNECTABLE 0x00000002 |
| 86 | #define MGMT_SETTING_FAST_CONNECTABLE 0x00000004 |
| 87 | #define MGMT_SETTING_DISCOVERABLE 0x00000008 |
| 88 | #define MGMT_SETTING_PAIRABLE 0x00000010 |
| 89 | #define MGMT_SETTING_LINK_SECURITY 0x00000020 |
| 90 | #define MGMT_SETTING_SSP 0x00000040 |
| 91 | #define MGMT_SETTING_BREDR 0x00000080 |
| 92 | #define MGMT_SETTING_HS 0x00000100 |
| 93 | #define MGMT_SETTING_LE 0x00000200 |
Johan Hedberg | dc4fe30 | 2011-03-16 14:29:36 +0200 | [diff] [blame] | 94 | |
Johan Hedberg | f7b64e69 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 95 | #define MGMT_OP_READ_INFO 0x0004 |
Johan Hedberg | f7b64e69 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 96 | struct mgmt_rp_read_info { |
Johan Hedberg | f7b64e69 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 97 | bdaddr_t bdaddr; |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 98 | __u8 version; |
| 99 | __le16 manufacturer; |
| 100 | __le32 supported_settings; |
| 101 | __le32 current_settings; |
Johan Hedberg | f7b64e69 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 102 | __u8 dev_class[3]; |
Johan Hedberg | dc4fe30 | 2011-03-16 14:29:36 +0200 | [diff] [blame] | 103 | __u8 name[MGMT_MAX_NAME_LENGTH]; |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 104 | __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; |
Johan Hedberg | f7b64e69 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 105 | } __packed; |
| 106 | |
Johan Hedberg | 72a734e | 2010-12-30 00:38:22 +0200 | [diff] [blame] | 107 | struct mgmt_mode { |
Johan Hedberg | 72a734e | 2010-12-30 00:38:22 +0200 | [diff] [blame] | 108 | __u8 val; |
| 109 | } __packed; |
| 110 | |
Johan Hedberg | eec8d2b | 2010-12-16 10:17:38 +0200 | [diff] [blame] | 111 | #define MGMT_OP_SET_POWERED 0x0005 |
Johan Hedberg | eec8d2b | 2010-12-16 10:17:38 +0200 | [diff] [blame] | 112 | |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 113 | #define MGMT_OP_SET_DISCOVERABLE 0x0006 |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 114 | struct mgmt_cp_set_discoverable { |
| 115 | __u8 val; |
| 116 | __u16 timeout; |
| 117 | } __packed; |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 118 | |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 119 | #define MGMT_OP_SET_CONNECTABLE 0x0007 |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 120 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 121 | #define MGMT_OP_SET_FAST_CONNECTABLE 0x0008 |
Johan Hedberg | f7c6869ce | 2011-12-15 00:47:36 +0200 | [diff] [blame] | 122 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 123 | #define MGMT_OP_SET_PAIRABLE 0x0009 |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 124 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 125 | #define MGMT_OP_SET_LINK_SECURITY 0x000A |
| 126 | |
| 127 | #define MGMT_OP_SET_SSP 0x000B |
| 128 | |
| 129 | #define MGMT_OP_SET_HS 0x000C |
| 130 | |
| 131 | #define MGMT_OP_SET_LE 0x000D |
| 132 | |
| 133 | #define MGMT_OP_SET_DEV_CLASS 0x000E |
| 134 | struct mgmt_cp_set_dev_class { |
| 135 | __u8 major; |
| 136 | __u8 minor; |
| 137 | } __packed; |
| 138 | |
| 139 | #define MGMT_OP_SET_LOCAL_NAME 0x000F |
| 140 | struct mgmt_cp_set_local_name { |
| 141 | __u8 name[MGMT_MAX_NAME_LENGTH]; |
| 142 | } __packed; |
| 143 | |
| 144 | #define MGMT_OP_ADD_UUID 0x0010 |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 145 | struct mgmt_cp_add_uuid { |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 146 | __u8 uuid[16]; |
Johan Hedberg | 1aff6f0 | 2011-01-13 21:56:52 +0200 | [diff] [blame] | 147 | __u8 svc_hint; |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 148 | } __packed; |
| 149 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 150 | #define MGMT_OP_REMOVE_UUID 0x0011 |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 151 | struct mgmt_cp_remove_uuid { |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 152 | __u8 uuid[16]; |
| 153 | } __packed; |
| 154 | |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 155 | struct mgmt_link_key_info { |
Johan Hedberg | d753fdc | 2012-02-17 14:06:34 +0200 | [diff] [blame] | 156 | struct mgmt_addr_info addr; |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 157 | u8 type; |
| 158 | u8 val[16]; |
| 159 | u8 pin_len; |
| 160 | } __packed; |
| 161 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 162 | #define MGMT_OP_LOAD_LINK_KEYS 0x0012 |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 163 | struct mgmt_cp_load_link_keys { |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 164 | __u8 debug_keys; |
| 165 | __le16 key_count; |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 166 | struct mgmt_link_key_info keys[0]; |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 167 | } __packed; |
| 168 | |
Vinicius Costa Gomes | 27f27ed | 2012-01-30 19:29:11 -0300 | [diff] [blame] | 169 | struct mgmt_ltk_info { |
| 170 | struct mgmt_addr_info addr; |
| 171 | __u8 authenticated; |
| 172 | __u8 master; |
| 173 | __u8 enc_size; |
| 174 | __le16 ediv; |
| 175 | __u8 rand[8]; |
| 176 | __u8 val[16]; |
| 177 | } __packed; |
| 178 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 179 | #define MGMT_OP_LOAD_LONG_TERM_KEYS 0x0013 |
Vinicius Costa Gomes | 27f27ed | 2012-01-30 19:29:11 -0300 | [diff] [blame] | 180 | struct mgmt_cp_load_long_term_keys { |
| 181 | __le16 key_count; |
| 182 | struct mgmt_ltk_info keys[0]; |
| 183 | } __packed; |
| 184 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 185 | #define MGMT_OP_DISCONNECT 0x0014 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 186 | struct mgmt_cp_disconnect { |
Johan Hedberg | 88c3df1 | 2012-02-09 14:27:38 +0200 | [diff] [blame] | 187 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 188 | } __packed; |
| 189 | struct mgmt_rp_disconnect { |
Johan Hedberg | 88c3df1 | 2012-02-09 14:27:38 +0200 | [diff] [blame] | 190 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 191 | __u8 status; |
| 192 | } __packed; |
| 193 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 194 | #define MGMT_OP_GET_CONNECTIONS 0x0015 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 195 | struct mgmt_rp_get_connections { |
| 196 | __le16 conn_count; |
| 197 | struct mgmt_addr_info addr[0]; |
| 198 | } __packed; |
| 199 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 200 | #define MGMT_OP_PIN_CODE_REPLY 0x0016 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 201 | struct mgmt_cp_pin_code_reply { |
Johan Hedberg | d845769 | 2012-02-17 14:24:57 +0200 | [diff] [blame^] | 202 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 203 | __u8 pin_len; |
| 204 | __u8 pin_code[16]; |
| 205 | } __packed; |
| 206 | struct mgmt_rp_pin_code_reply { |
Johan Hedberg | d845769 | 2012-02-17 14:24:57 +0200 | [diff] [blame^] | 207 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 208 | uint8_t status; |
| 209 | } __packed; |
| 210 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 211 | #define MGMT_OP_PIN_CODE_NEG_REPLY 0x0017 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 212 | struct mgmt_cp_pin_code_neg_reply { |
Johan Hedberg | d845769 | 2012-02-17 14:24:57 +0200 | [diff] [blame^] | 213 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 214 | } __packed; |
| 215 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 216 | #define MGMT_OP_SET_IO_CAPABILITY 0x0018 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 217 | struct mgmt_cp_set_io_capability { |
| 218 | __u8 io_capability; |
| 219 | } __packed; |
| 220 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 221 | #define MGMT_OP_PAIR_DEVICE 0x0019 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 222 | struct mgmt_cp_pair_device { |
| 223 | struct mgmt_addr_info addr; |
| 224 | __u8 io_cap; |
| 225 | } __packed; |
| 226 | struct mgmt_rp_pair_device { |
| 227 | struct mgmt_addr_info addr; |
| 228 | __u8 status; |
| 229 | } __packed; |
| 230 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 231 | #define MGMT_OP_CANCEL_PAIR_DEVICE 0x001A |
| 232 | |
| 233 | #define MGMT_OP_UNPAIR_DEVICE 0x001B |
| 234 | struct mgmt_cp_unpair_device { |
| 235 | struct mgmt_addr_info addr; |
| 236 | __u8 disconnect; |
| 237 | } __packed; |
| 238 | struct mgmt_rp_unpair_device { |
| 239 | struct mgmt_addr_info addr; |
| 240 | __u8 status; |
| 241 | }; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 242 | |
| 243 | #define MGMT_OP_USER_CONFIRM_REPLY 0x001C |
| 244 | struct mgmt_cp_user_confirm_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 245 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 246 | } __packed; |
| 247 | struct mgmt_rp_user_confirm_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 248 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 249 | __u8 status; |
| 250 | } __packed; |
| 251 | |
| 252 | #define MGMT_OP_USER_CONFIRM_NEG_REPLY 0x001D |
| 253 | struct mgmt_cp_user_confirm_neg_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 254 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 255 | } __packed; |
| 256 | |
| 257 | #define MGMT_OP_USER_PASSKEY_REPLY 0x001E |
| 258 | struct mgmt_cp_user_passkey_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 259 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 260 | __le32 passkey; |
| 261 | } __packed; |
| 262 | struct mgmt_rp_user_passkey_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 263 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 264 | __u8 status; |
| 265 | } __packed; |
| 266 | |
| 267 | #define MGMT_OP_USER_PASSKEY_NEG_REPLY 0x001F |
| 268 | struct mgmt_cp_user_passkey_neg_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 269 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 270 | } __packed; |
| 271 | |
| 272 | #define MGMT_OP_READ_LOCAL_OOB_DATA 0x0020 |
| 273 | struct mgmt_rp_read_local_oob_data { |
| 274 | __u8 hash[16]; |
| 275 | __u8 randomizer[16]; |
| 276 | } __packed; |
| 277 | |
| 278 | #define MGMT_OP_ADD_REMOTE_OOB_DATA 0x0021 |
| 279 | struct mgmt_cp_add_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 | __u8 hash[16]; |
| 282 | __u8 randomizer[16]; |
| 283 | } __packed; |
| 284 | |
| 285 | #define MGMT_OP_REMOVE_REMOTE_OOB_DATA 0x0022 |
| 286 | struct mgmt_cp_remove_remote_oob_data { |
Johan Hedberg | 664ce4c | 2012-02-09 15:44:09 +0200 | [diff] [blame] | 287 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 288 | } __packed; |
| 289 | |
| 290 | #define MGMT_OP_START_DISCOVERY 0x0023 |
| 291 | struct mgmt_cp_start_discovery { |
| 292 | __u8 type; |
| 293 | } __packed; |
| 294 | |
| 295 | #define MGMT_OP_STOP_DISCOVERY 0x0024 |
| 296 | |
| 297 | #define MGMT_OP_CONFIRM_NAME 0x0025 |
| 298 | struct mgmt_cp_confirm_name { |
| 299 | bdaddr_t bdaddr; |
| 300 | __u8 name_known; |
| 301 | } __packed; |
| 302 | struct mgmt_rp_confirm_name { |
| 303 | bdaddr_t bdaddr; |
| 304 | __u8 status; |
| 305 | } __packed; |
| 306 | |
| 307 | #define MGMT_OP_BLOCK_DEVICE 0x0026 |
| 308 | struct mgmt_cp_block_device { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 309 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 310 | } __packed; |
| 311 | |
| 312 | #define MGMT_OP_UNBLOCK_DEVICE 0x0027 |
| 313 | struct mgmt_cp_unblock_device { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 314 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 315 | } __packed; |
| 316 | |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 317 | #define MGMT_EV_CMD_COMPLETE 0x0001 |
| 318 | struct mgmt_ev_cmd_complete { |
| 319 | __le16 opcode; |
| 320 | __u8 data[0]; |
| 321 | } __packed; |
| 322 | |
| 323 | #define MGMT_EV_CMD_STATUS 0x0002 |
| 324 | struct mgmt_ev_cmd_status { |
| 325 | __u8 status; |
| 326 | __le16 opcode; |
| 327 | } __packed; |
| 328 | |
| 329 | #define MGMT_EV_CONTROLLER_ERROR 0x0003 |
| 330 | struct mgmt_ev_controller_error { |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 331 | __u8 error_code; |
| 332 | } __packed; |
Johan Hedberg | c71e97b | 2010-12-13 21:07:07 +0200 | [diff] [blame] | 333 | |
| 334 | #define MGMT_EV_INDEX_ADDED 0x0004 |
Johan Hedberg | c71e97b | 2010-12-13 21:07:07 +0200 | [diff] [blame] | 335 | |
| 336 | #define MGMT_EV_INDEX_REMOVED 0x0005 |
Johan Hedberg | 5add6af | 2010-12-16 10:00:37 +0200 | [diff] [blame] | 337 | |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 338 | #define MGMT_EV_NEW_SETTINGS 0x0006 |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 339 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 340 | #define MGMT_EV_CLASS_OF_DEV_CHANGED 0x0007 |
| 341 | struct mgmt_ev_class_of_dev_changed { |
| 342 | __u8 dev_class[3]; |
| 343 | }; |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 344 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 345 | #define MGMT_EV_LOCAL_NAME_CHANGED 0x0008 |
| 346 | struct mgmt_ev_local_name_changed { |
| 347 | __u8 name[MGMT_MAX_NAME_LENGTH]; |
| 348 | __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; |
| 349 | } __packed; |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 350 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 351 | #define MGMT_EV_NEW_LINK_KEY 0x0009 |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 352 | struct mgmt_ev_new_link_key { |
Johan Hedberg | 4df378a | 2011-04-28 11:29:03 -0700 | [diff] [blame] | 353 | __u8 store_hint; |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 354 | struct mgmt_link_key_info key; |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 355 | } __packed; |
Johan Hedberg | f752054 | 2011-01-20 12:34:39 +0200 | [diff] [blame] | 356 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 357 | #define MGMT_EV_NEW_LONG_TERM_KEY 0x000A |
| 358 | struct mgmt_ev_new_long_term_key { |
| 359 | __u8 store_hint; |
| 360 | struct mgmt_ltk_info key; |
| 361 | } __packed; |
| 362 | |
| 363 | #define MGMT_EV_DEVICE_CONNECTED 0x000B |
Johan Hedberg | b644ba3 | 2012-01-17 21:48:47 +0200 | [diff] [blame] | 364 | struct mgmt_ev_device_connected { |
| 365 | struct mgmt_addr_info addr; |
| 366 | __le16 eir_len; |
| 367 | __u8 eir[0]; |
| 368 | } __packed; |
Johan Hedberg | f752054 | 2011-01-20 12:34:39 +0200 | [diff] [blame] | 369 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 370 | #define MGMT_EV_DEVICE_DISCONNECTED 0x000C |
Johan Hedberg | 17d5c04 | 2011-01-22 06:09:08 +0200 | [diff] [blame] | 371 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 372 | #define MGMT_EV_CONNECT_FAILED 0x000D |
Johan Hedberg | 17d5c04 | 2011-01-22 06:09:08 +0200 | [diff] [blame] | 373 | struct mgmt_ev_connect_failed { |
Johan Hedberg | 4c659c3 | 2011-11-07 23:13:39 +0200 | [diff] [blame] | 374 | struct mgmt_addr_info addr; |
Johan Hedberg | 17d5c04 | 2011-01-22 06:09:08 +0200 | [diff] [blame] | 375 | __u8 status; |
| 376 | } __packed; |
Johan Hedberg | 980e1a5 | 2011-01-22 06:10:07 +0200 | [diff] [blame] | 377 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 378 | #define MGMT_EV_PIN_CODE_REQUEST 0x000E |
Johan Hedberg | 980e1a5 | 2011-01-22 06:10:07 +0200 | [diff] [blame] | 379 | struct mgmt_ev_pin_code_request { |
Johan Hedberg | d845769 | 2012-02-17 14:24:57 +0200 | [diff] [blame^] | 380 | struct mgmt_addr_info addr; |
Waldemar Rymarkiewicz | a770bb5 | 2011-04-28 12:07:59 +0200 | [diff] [blame] | 381 | __u8 secure; |
Johan Hedberg | 980e1a5 | 2011-01-22 06:10:07 +0200 | [diff] [blame] | 382 | } __packed; |
Johan Hedberg | a5c2968 | 2011-02-19 12:05:57 -0300 | [diff] [blame] | 383 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 384 | #define MGMT_EV_USER_CONFIRM_REQUEST 0x000F |
Johan Hedberg | a5c2968 | 2011-02-19 12:05:57 -0300 | [diff] [blame] | 385 | struct mgmt_ev_user_confirm_request { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 386 | struct mgmt_addr_info addr; |
Johan Hedberg | 55bc1a3 | 2011-04-28 11:28:56 -0700 | [diff] [blame] | 387 | __u8 confirm_hint; |
Johan Hedberg | a5c2968 | 2011-02-19 12:05:57 -0300 | [diff] [blame] | 388 | __le32 value; |
| 389 | } __packed; |
Johan Hedberg | 2a61169 | 2011-02-19 12:06:00 -0300 | [diff] [blame] | 390 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 391 | #define MGMT_EV_USER_PASSKEY_REQUEST 0x0010 |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 392 | struct mgmt_ev_user_passkey_request { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 393 | struct mgmt_addr_info addr; |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 394 | } __packed; |
| 395 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 396 | #define MGMT_EV_AUTH_FAILED 0x0011 |
Johan Hedberg | 2a61169 | 2011-02-19 12:06:00 -0300 | [diff] [blame] | 397 | struct mgmt_ev_auth_failed { |
Johan Hedberg | bab73cb | 2012-02-09 16:07:29 +0200 | [diff] [blame] | 398 | struct mgmt_addr_info addr; |
Johan Hedberg | 2a61169 | 2011-02-19 12:06:00 -0300 | [diff] [blame] | 399 | __u8 status; |
| 400 | } __packed; |
Johan Hedberg | b312b161 | 2011-03-16 14:29:37 +0200 | [diff] [blame] | 401 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 402 | #define MGMT_EV_DEVICE_FOUND 0x0012 |
Johan Hedberg | e17acd4 | 2011-03-30 23:57:16 +0300 | [diff] [blame] | 403 | struct mgmt_ev_device_found { |
Johan Hedberg | 4c659c3 | 2011-11-07 23:13:39 +0200 | [diff] [blame] | 404 | struct mgmt_addr_info addr; |
Johan Hedberg | e17acd4 | 2011-03-30 23:57:16 +0300 | [diff] [blame] | 405 | __s8 rssi; |
Johan Hedberg | d85bb26 | 2011-12-19 14:29:06 +0200 | [diff] [blame] | 406 | __u8 confirm_name; |
Johan Hedberg | e319d2e | 2012-01-15 19:51:59 +0200 | [diff] [blame] | 407 | __le16 eir_len; |
| 408 | __u8 eir[0]; |
Johan Hedberg | e17acd4 | 2011-03-30 23:57:16 +0300 | [diff] [blame] | 409 | } __packed; |
Johan Hedberg | a88a965 | 2011-03-30 13:18:12 +0300 | [diff] [blame] | 410 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 411 | #define MGMT_EV_DISCOVERING 0x0013 |
Johan Hedberg | 314b238 | 2011-04-27 10:29:57 -0400 | [diff] [blame] | 412 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 413 | #define MGMT_EV_DEVICE_BLOCKED 0x0014 |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 414 | struct mgmt_ev_device_blocked { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 415 | struct mgmt_addr_info addr; |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 416 | } __packed; |
| 417 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 418 | #define MGMT_EV_DEVICE_UNBLOCKED 0x0015 |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 419 | struct mgmt_ev_device_unblocked { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 420 | struct mgmt_addr_info addr; |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 421 | } __packed; |
Johan Hedberg | b1078ad | 2012-02-09 17:21:16 +0200 | [diff] [blame] | 422 | |
| 423 | #define MGMT_EV_DEVICE_UNPAIRED 0x0016 |
| 424 | struct mgmt_ev_device_unpaired { |
| 425 | struct mgmt_addr_info addr; |
| 426 | } __packed; |