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