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 | 96570ff | 2013-05-29 09:51:29 +0300 | [diff] [blame] | 45 | #define MGMT_STATUS_RFKILLED 0x12 |
Johan Hedberg | 55e76b3 | 2015-03-10 22:34:40 +0200 | [diff] [blame] | 46 | #define MGMT_STATUS_ALREADY_PAIRED 0x13 |
Marcel Holtmann | c927a10 | 2015-03-14 19:28:03 -0700 | [diff] [blame] | 47 | #define MGMT_STATUS_PERMISSION_DENIED 0x14 |
Johan Hedberg | ca69b79 | 2011-11-11 18:10:00 +0200 | [diff] [blame] | 48 | |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 49 | struct mgmt_hdr { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 50 | __le16 opcode; |
| 51 | __le16 index; |
| 52 | __le16 len; |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 53 | } __packed; |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 54 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 55 | struct mgmt_addr_info { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 56 | bdaddr_t bdaddr; |
| 57 | __u8 type; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 58 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 59 | #define MGMT_ADDR_INFO_SIZE 7 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 60 | |
Johan Hedberg | 02d9812 | 2010-12-13 21:07:04 +0200 | [diff] [blame] | 61 | #define MGMT_OP_READ_VERSION 0x0001 |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 62 | #define MGMT_READ_VERSION_SIZE 0 |
Johan Hedberg | 02d9812 | 2010-12-13 21:07:04 +0200 | [diff] [blame] | 63 | struct mgmt_rp_read_version { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 64 | __u8 version; |
| 65 | __le16 revision; |
Johan Hedberg | 02d9812 | 2010-12-13 21:07:04 +0200 | [diff] [blame] | 66 | } __packed; |
| 67 | |
Johan Hedberg | e70bb2e | 2012-02-13 16:59:33 +0200 | [diff] [blame] | 68 | #define MGMT_OP_READ_COMMANDS 0x0002 |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 69 | #define MGMT_READ_COMMANDS_SIZE 0 |
Johan Hedberg | e70bb2e | 2012-02-13 16:59:33 +0200 | [diff] [blame] | 70 | struct mgmt_rp_read_commands { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 71 | __le16 num_commands; |
| 72 | __le16 num_events; |
| 73 | __le16 opcodes[0]; |
Johan Hedberg | e70bb2e | 2012-02-13 16:59:33 +0200 | [diff] [blame] | 74 | } __packed; |
| 75 | |
Johan Hedberg | faba42e | 2010-12-13 21:07:05 +0200 | [diff] [blame] | 76 | #define MGMT_OP_READ_INDEX_LIST 0x0003 |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 77 | #define MGMT_READ_INDEX_LIST_SIZE 0 |
Johan Hedberg | faba42e | 2010-12-13 21:07:05 +0200 | [diff] [blame] | 78 | struct mgmt_rp_read_index_list { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 79 | __le16 num_controllers; |
| 80 | __le16 index[0]; |
Johan Hedberg | faba42e | 2010-12-13 21:07:05 +0200 | [diff] [blame] | 81 | } __packed; |
| 82 | |
Johan Hedberg | dc4fe30 | 2011-03-16 14:29:36 +0200 | [diff] [blame] | 83 | /* Reserve one extra byte for names in management messages so that they |
| 84 | * are always guaranteed to be nul-terminated */ |
| 85 | #define MGMT_MAX_NAME_LENGTH (HCI_MAX_NAME_LENGTH + 1) |
Johan Hedberg | 490c5ba | 2012-02-22 19:19:09 +0200 | [diff] [blame] | 86 | #define MGMT_MAX_SHORT_NAME_LENGTH (HCI_MAX_SHORT_NAME_LENGTH + 1) |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 87 | |
| 88 | #define MGMT_SETTING_POWERED 0x00000001 |
| 89 | #define MGMT_SETTING_CONNECTABLE 0x00000002 |
| 90 | #define MGMT_SETTING_FAST_CONNECTABLE 0x00000004 |
| 91 | #define MGMT_SETTING_DISCOVERABLE 0x00000008 |
Johan Hedberg | b293947 | 2014-07-30 09:22:23 +0300 | [diff] [blame] | 92 | #define MGMT_SETTING_BONDABLE 0x00000010 |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 93 | #define MGMT_SETTING_LINK_SECURITY 0x00000020 |
| 94 | #define MGMT_SETTING_SSP 0x00000040 |
| 95 | #define MGMT_SETTING_BREDR 0x00000080 |
| 96 | #define MGMT_SETTING_HS 0x00000100 |
| 97 | #define MGMT_SETTING_LE 0x00000200 |
Johan Hedberg | eeca6f8 | 2013-09-25 13:26:09 +0300 | [diff] [blame] | 98 | #define MGMT_SETTING_ADVERTISING 0x00000400 |
Marcel Holtmann | e98d2ce | 2014-01-10 02:07:22 -0800 | [diff] [blame] | 99 | #define MGMT_SETTING_SECURE_CONN 0x00000800 |
Marcel Holtmann | b1de97d | 2014-01-31 11:55:21 -0800 | [diff] [blame] | 100 | #define MGMT_SETTING_DEBUG_KEYS 0x00001000 |
Johan Hedberg | 755a900 | 2014-02-22 19:06:34 +0200 | [diff] [blame] | 101 | #define MGMT_SETTING_PRIVACY 0x00002000 |
Marcel Holtmann | 9fc3bfb | 2014-07-04 00:46:56 +0200 | [diff] [blame] | 102 | #define MGMT_SETTING_CONFIGURATION 0x00004000 |
Marcel Holtmann | 93690c2 | 2015-03-06 10:11:21 -0800 | [diff] [blame] | 103 | #define MGMT_SETTING_STATIC_ADDRESS 0x00008000 |
Johan Hedberg | dc4fe30 | 2011-03-16 14:29:36 +0200 | [diff] [blame] | 104 | |
Johan Hedberg | f7b64e6 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 105 | #define MGMT_OP_READ_INFO 0x0004 |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 106 | #define MGMT_READ_INFO_SIZE 0 |
Johan Hedberg | f7b64e6 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 107 | struct mgmt_rp_read_info { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 108 | bdaddr_t bdaddr; |
| 109 | __u8 version; |
| 110 | __le16 manufacturer; |
| 111 | __le32 supported_settings; |
| 112 | __le32 current_settings; |
| 113 | __u8 dev_class[3]; |
| 114 | __u8 name[MGMT_MAX_NAME_LENGTH]; |
| 115 | __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; |
Johan Hedberg | f7b64e6 | 2010-12-13 21:07:06 +0200 | [diff] [blame] | 116 | } __packed; |
| 117 | |
Johan Hedberg | 72a734e | 2010-12-30 00:38:22 +0200 | [diff] [blame] | 118 | struct mgmt_mode { |
Johan Hedberg | 72a734e | 2010-12-30 00:38:22 +0200 | [diff] [blame] | 119 | __u8 val; |
| 120 | } __packed; |
| 121 | |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 122 | #define MGMT_SETTING_SIZE 1 |
| 123 | |
Johan Hedberg | eec8d2b | 2010-12-16 10:17:38 +0200 | [diff] [blame] | 124 | #define MGMT_OP_SET_POWERED 0x0005 |
Johan Hedberg | eec8d2b | 2010-12-16 10:17:38 +0200 | [diff] [blame] | 125 | |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 126 | #define MGMT_OP_SET_DISCOVERABLE 0x0006 |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 127 | struct mgmt_cp_set_discoverable { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 128 | __u8 val; |
Andrei Emeltchenko | c732a2a | 2012-03-19 09:42:31 +0200 | [diff] [blame] | 129 | __le16 timeout; |
Johan Hedberg | 16ab91a | 2011-11-07 22:16:02 +0200 | [diff] [blame] | 130 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 131 | #define MGMT_SET_DISCOVERABLE_SIZE 3 |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 132 | |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 133 | #define MGMT_OP_SET_CONNECTABLE 0x0007 |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 134 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 135 | #define MGMT_OP_SET_FAST_CONNECTABLE 0x0008 |
Johan Hedberg | f7c6869 | 2011-12-15 00:47:36 +0200 | [diff] [blame] | 136 | |
Johan Hedberg | b293947 | 2014-07-30 09:22:23 +0300 | [diff] [blame] | 137 | #define MGMT_OP_SET_BONDABLE 0x0009 |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 138 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 139 | #define MGMT_OP_SET_LINK_SECURITY 0x000A |
| 140 | |
| 141 | #define MGMT_OP_SET_SSP 0x000B |
| 142 | |
| 143 | #define MGMT_OP_SET_HS 0x000C |
| 144 | |
| 145 | #define MGMT_OP_SET_LE 0x000D |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 146 | #define MGMT_OP_SET_DEV_CLASS 0x000E |
| 147 | struct mgmt_cp_set_dev_class { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 148 | __u8 major; |
| 149 | __u8 minor; |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 150 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 151 | #define MGMT_SET_DEV_CLASS_SIZE 2 |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 152 | |
| 153 | #define MGMT_OP_SET_LOCAL_NAME 0x000F |
| 154 | struct mgmt_cp_set_local_name { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 155 | __u8 name[MGMT_MAX_NAME_LENGTH]; |
| 156 | __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 157 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 158 | #define MGMT_SET_LOCAL_NAME_SIZE 260 |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 159 | |
| 160 | #define MGMT_OP_ADD_UUID 0x0010 |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 161 | struct mgmt_cp_add_uuid { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 162 | __u8 uuid[16]; |
| 163 | __u8 svc_hint; |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 164 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 165 | #define MGMT_ADD_UUID_SIZE 17 |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 166 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 167 | #define MGMT_OP_REMOVE_UUID 0x0011 |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 168 | struct mgmt_cp_remove_uuid { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 169 | __u8 uuid[16]; |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 170 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 171 | #define MGMT_REMOVE_UUID_SIZE 16 |
Johan Hedberg | 2aeb9a1 | 2011-01-04 12:08:51 +0200 | [diff] [blame] | 172 | |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 173 | struct mgmt_link_key_info { |
Johan Hedberg | d753fdc | 2012-02-17 14:06:34 +0200 | [diff] [blame] | 174 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | 044e124 | 2012-03-06 23:45:42 -0300 | [diff] [blame] | 175 | __u8 type; |
| 176 | __u8 val[16]; |
| 177 | __u8 pin_len; |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 178 | } __packed; |
| 179 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 180 | #define MGMT_OP_LOAD_LINK_KEYS 0x0012 |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 181 | struct mgmt_cp_load_link_keys { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 182 | __u8 debug_keys; |
| 183 | __le16 key_count; |
| 184 | struct mgmt_link_key_info keys[0]; |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 185 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 186 | #define MGMT_LOAD_LINK_KEYS_SIZE 3 |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 187 | |
Johan Hedberg | d7b2545 | 2014-05-23 13:19:53 +0300 | [diff] [blame] | 188 | #define MGMT_LTK_UNAUTHENTICATED 0x00 |
| 189 | #define MGMT_LTK_AUTHENTICATED 0x01 |
Johan Hedberg | 23fb8de | 2014-05-23 13:15:37 +0300 | [diff] [blame] | 190 | #define MGMT_LTK_P256_UNAUTH 0x02 |
| 191 | #define MGMT_LTK_P256_AUTH 0x03 |
| 192 | #define MGMT_LTK_P256_DEBUG 0x04 |
Johan Hedberg | d7b2545 | 2014-05-23 13:19:53 +0300 | [diff] [blame] | 193 | |
Vinicius Costa Gomes | 27f27ed | 2012-01-30 19:29:11 -0300 | [diff] [blame] | 194 | struct mgmt_ltk_info { |
| 195 | struct mgmt_addr_info addr; |
Marcel Holtmann | d40f3ee | 2014-01-31 18:42:17 -0800 | [diff] [blame] | 196 | __u8 type; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 197 | __u8 master; |
| 198 | __u8 enc_size; |
| 199 | __le16 ediv; |
Marcel Holtmann | fe39c7b | 2014-02-27 16:00:28 -0800 | [diff] [blame] | 200 | __le64 rand; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 201 | __u8 val[16]; |
Vinicius Costa Gomes | 27f27ed | 2012-01-30 19:29:11 -0300 | [diff] [blame] | 202 | } __packed; |
| 203 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 204 | #define MGMT_OP_LOAD_LONG_TERM_KEYS 0x0013 |
Vinicius Costa Gomes | 27f27ed | 2012-01-30 19:29:11 -0300 | [diff] [blame] | 205 | struct mgmt_cp_load_long_term_keys { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 206 | __le16 key_count; |
| 207 | struct mgmt_ltk_info keys[0]; |
Vinicius Costa Gomes | 27f27ed | 2012-01-30 19:29:11 -0300 | [diff] [blame] | 208 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 209 | #define MGMT_LOAD_LONG_TERM_KEYS_SIZE 2 |
Vinicius Costa Gomes | 27f27ed | 2012-01-30 19:29:11 -0300 | [diff] [blame] | 210 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 211 | #define MGMT_OP_DISCONNECT 0x0014 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 212 | struct mgmt_cp_disconnect { |
Johan Hedberg | 88c3df1 | 2012-02-09 14:27:38 +0200 | [diff] [blame] | 213 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 214 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 215 | #define MGMT_DISCONNECT_SIZE MGMT_ADDR_INFO_SIZE |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 216 | struct mgmt_rp_disconnect { |
Johan Hedberg | 88c3df1 | 2012-02-09 14:27:38 +0200 | [diff] [blame] | 217 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 218 | } __packed; |
| 219 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 220 | #define MGMT_OP_GET_CONNECTIONS 0x0015 |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 221 | #define MGMT_GET_CONNECTIONS_SIZE 0 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 222 | struct mgmt_rp_get_connections { |
| 223 | __le16 conn_count; |
| 224 | struct mgmt_addr_info addr[0]; |
| 225 | } __packed; |
| 226 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 227 | #define MGMT_OP_PIN_CODE_REPLY 0x0016 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 228 | struct mgmt_cp_pin_code_reply { |
Johan Hedberg | d845769 | 2012-02-17 14:24:57 +0200 | [diff] [blame] | 229 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 230 | __u8 pin_len; |
| 231 | __u8 pin_code[16]; |
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_PIN_CODE_REPLY_SIZE (MGMT_ADDR_INFO_SIZE + 17) |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 234 | struct mgmt_rp_pin_code_reply { |
Johan Hedberg | d845769 | 2012-02-17 14:24:57 +0200 | [diff] [blame] | 235 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 236 | } __packed; |
| 237 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 238 | #define MGMT_OP_PIN_CODE_NEG_REPLY 0x0017 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 239 | struct mgmt_cp_pin_code_neg_reply { |
Johan Hedberg | d845769 | 2012-02-17 14:24:57 +0200 | [diff] [blame] | 240 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 241 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 242 | #define MGMT_PIN_CODE_NEG_REPLY_SIZE MGMT_ADDR_INFO_SIZE |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 243 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 244 | #define MGMT_OP_SET_IO_CAPABILITY 0x0018 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 245 | struct mgmt_cp_set_io_capability { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 246 | __u8 io_capability; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 247 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 248 | #define MGMT_SET_IO_CAPABILITY_SIZE 1 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 249 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 250 | #define MGMT_OP_PAIR_DEVICE 0x0019 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 251 | struct mgmt_cp_pair_device { |
| 252 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 253 | __u8 io_cap; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 254 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 255 | #define MGMT_PAIR_DEVICE_SIZE (MGMT_ADDR_INFO_SIZE + 1) |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 256 | struct mgmt_rp_pair_device { |
| 257 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 258 | } __packed; |
| 259 | |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 260 | #define MGMT_OP_CANCEL_PAIR_DEVICE 0x001A |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 261 | #define MGMT_CANCEL_PAIR_DEVICE_SIZE MGMT_ADDR_INFO_SIZE |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 262 | |
| 263 | #define MGMT_OP_UNPAIR_DEVICE 0x001B |
| 264 | struct mgmt_cp_unpair_device { |
| 265 | struct mgmt_addr_info addr; |
| 266 | __u8 disconnect; |
| 267 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 268 | #define MGMT_UNPAIR_DEVICE_SIZE (MGMT_ADDR_INFO_SIZE + 1) |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 269 | struct mgmt_rp_unpair_device { |
| 270 | struct mgmt_addr_info addr; |
Johan Hedberg | 124f6e3 | 2012-02-09 13:50:12 +0200 | [diff] [blame] | 271 | }; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 272 | |
| 273 | #define MGMT_OP_USER_CONFIRM_REPLY 0x001C |
| 274 | struct mgmt_cp_user_confirm_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 275 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 276 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 277 | #define MGMT_USER_CONFIRM_REPLY_SIZE MGMT_ADDR_INFO_SIZE |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 278 | struct mgmt_rp_user_confirm_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 279 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 280 | } __packed; |
| 281 | |
| 282 | #define MGMT_OP_USER_CONFIRM_NEG_REPLY 0x001D |
| 283 | struct mgmt_cp_user_confirm_neg_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 284 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 285 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 286 | #define MGMT_USER_CONFIRM_NEG_REPLY_SIZE MGMT_ADDR_INFO_SIZE |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 287 | |
| 288 | #define MGMT_OP_USER_PASSKEY_REPLY 0x001E |
| 289 | struct mgmt_cp_user_passkey_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 290 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 291 | __le32 passkey; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 292 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 293 | #define MGMT_USER_PASSKEY_REPLY_SIZE (MGMT_ADDR_INFO_SIZE + 4) |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 294 | struct mgmt_rp_user_passkey_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 295 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 296 | } __packed; |
| 297 | |
| 298 | #define MGMT_OP_USER_PASSKEY_NEG_REPLY 0x001F |
| 299 | struct mgmt_cp_user_passkey_neg_reply { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 300 | struct mgmt_addr_info addr; |
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_USER_PASSKEY_NEG_REPLY_SIZE MGMT_ADDR_INFO_SIZE |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 303 | |
| 304 | #define MGMT_OP_READ_LOCAL_OOB_DATA 0x0020 |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 305 | #define MGMT_READ_LOCAL_OOB_DATA_SIZE 0 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 306 | struct mgmt_rp_read_local_oob_data { |
Marcel Holtmann | 4d2d279 | 2014-01-10 02:07:26 -0800 | [diff] [blame] | 307 | __u8 hash192[16]; |
Johan Hedberg | 38da170 | 2014-11-17 20:52:20 +0200 | [diff] [blame] | 308 | __u8 rand192[16]; |
Marcel Holtmann | 4d2d279 | 2014-01-10 02:07:26 -0800 | [diff] [blame] | 309 | __u8 hash256[16]; |
Johan Hedberg | 38da170 | 2014-11-17 20:52:20 +0200 | [diff] [blame] | 310 | __u8 rand256[16]; |
Marcel Holtmann | 4d2d279 | 2014-01-10 02:07:26 -0800 | [diff] [blame] | 311 | } __packed; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 312 | |
| 313 | #define MGMT_OP_ADD_REMOTE_OOB_DATA 0x0021 |
| 314 | struct mgmt_cp_add_remote_oob_data { |
Johan Hedberg | 664ce4c | 2012-02-09 15:44:09 +0200 | [diff] [blame] | 315 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 316 | __u8 hash[16]; |
Johan Hedberg | 38da170 | 2014-11-17 20:52:20 +0200 | [diff] [blame] | 317 | __u8 rand[16]; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 318 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 319 | #define MGMT_ADD_REMOTE_OOB_DATA_SIZE (MGMT_ADDR_INFO_SIZE + 32) |
Marcel Holtmann | ec10911 | 2014-01-10 02:07:30 -0800 | [diff] [blame] | 320 | struct mgmt_cp_add_remote_oob_ext_data { |
| 321 | struct mgmt_addr_info addr; |
| 322 | __u8 hash192[16]; |
Johan Hedberg | 38da170 | 2014-11-17 20:52:20 +0200 | [diff] [blame] | 323 | __u8 rand192[16]; |
Marcel Holtmann | ec10911 | 2014-01-10 02:07:30 -0800 | [diff] [blame] | 324 | __u8 hash256[16]; |
Johan Hedberg | 38da170 | 2014-11-17 20:52:20 +0200 | [diff] [blame] | 325 | __u8 rand256[16]; |
Marcel Holtmann | ec10911 | 2014-01-10 02:07:30 -0800 | [diff] [blame] | 326 | } __packed; |
| 327 | #define MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE (MGMT_ADDR_INFO_SIZE + 64) |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 328 | |
| 329 | #define MGMT_OP_REMOVE_REMOTE_OOB_DATA 0x0022 |
| 330 | struct mgmt_cp_remove_remote_oob_data { |
Johan Hedberg | 664ce4c | 2012-02-09 15:44:09 +0200 | [diff] [blame] | 331 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 332 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 333 | #define MGMT_REMOVE_REMOTE_OOB_DATA_SIZE MGMT_ADDR_INFO_SIZE |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 334 | |
| 335 | #define MGMT_OP_START_DISCOVERY 0x0023 |
| 336 | struct mgmt_cp_start_discovery { |
| 337 | __u8 type; |
| 338 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 339 | #define MGMT_START_DISCOVERY_SIZE 1 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 340 | |
| 341 | #define MGMT_OP_STOP_DISCOVERY 0x0024 |
Johan Hedberg | d930650 | 2012-02-20 23:25:18 +0200 | [diff] [blame] | 342 | struct mgmt_cp_stop_discovery { |
| 343 | __u8 type; |
| 344 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 345 | #define MGMT_STOP_DISCOVERY_SIZE 1 |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 346 | |
| 347 | #define MGMT_OP_CONFIRM_NAME 0x0025 |
| 348 | struct mgmt_cp_confirm_name { |
Johan Hedberg | a198e7b | 2012-02-17 14:27:06 +0200 | [diff] [blame] | 349 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 350 | __u8 name_known; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 351 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 352 | #define MGMT_CONFIRM_NAME_SIZE (MGMT_ADDR_INFO_SIZE + 1) |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 353 | struct mgmt_rp_confirm_name { |
Johan Hedberg | a198e7b | 2012-02-17 14:27:06 +0200 | [diff] [blame] | 354 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 355 | } __packed; |
| 356 | |
| 357 | #define MGMT_OP_BLOCK_DEVICE 0x0026 |
| 358 | struct mgmt_cp_block_device { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 359 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 360 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 361 | #define MGMT_BLOCK_DEVICE_SIZE MGMT_ADDR_INFO_SIZE |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 362 | |
| 363 | #define MGMT_OP_UNBLOCK_DEVICE 0x0027 |
| 364 | struct mgmt_cp_unblock_device { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 365 | struct mgmt_addr_info addr; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 366 | } __packed; |
Johan Hedberg | 9d1acbf | 2012-03-01 22:23:42 +0200 | [diff] [blame] | 367 | #define MGMT_UNBLOCK_DEVICE_SIZE MGMT_ADDR_INFO_SIZE |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 368 | |
Marcel Holtmann | cdbaccc | 2012-03-11 20:00:29 -0700 | [diff] [blame] | 369 | #define MGMT_OP_SET_DEVICE_ID 0x0028 |
| 370 | struct mgmt_cp_set_device_id { |
| 371 | __le16 source; |
| 372 | __le16 vendor; |
| 373 | __le16 product; |
| 374 | __le16 version; |
| 375 | } __packed; |
| 376 | #define MGMT_SET_DEVICE_ID_SIZE 8 |
| 377 | |
Johan Hedberg | 4375f10 | 2013-09-25 13:26:10 +0300 | [diff] [blame] | 378 | #define MGMT_OP_SET_ADVERTISING 0x0029 |
| 379 | |
Johan Hedberg | 0663ca2 | 2013-10-02 13:43:14 +0300 | [diff] [blame] | 380 | #define MGMT_OP_SET_BREDR 0x002A |
| 381 | |
Marcel Holtmann | d13eafc | 2013-10-02 04:41:30 -0700 | [diff] [blame] | 382 | #define MGMT_OP_SET_STATIC_ADDRESS 0x002B |
| 383 | struct mgmt_cp_set_static_address { |
| 384 | bdaddr_t bdaddr; |
| 385 | } __packed; |
| 386 | #define MGMT_SET_STATIC_ADDRESS_SIZE 6 |
| 387 | |
Marcel Holtmann | 14b49b9 | 2013-10-11 08:23:20 -0700 | [diff] [blame] | 388 | #define MGMT_OP_SET_SCAN_PARAMS 0x002C |
| 389 | struct mgmt_cp_set_scan_params { |
| 390 | __le16 interval; |
| 391 | __le16 window; |
| 392 | } __packed; |
| 393 | #define MGMT_SET_SCAN_PARAMS_SIZE 4 |
| 394 | |
Marcel Holtmann | eac83dc | 2014-01-10 02:07:23 -0800 | [diff] [blame] | 395 | #define MGMT_OP_SET_SECURE_CONN 0x002D |
| 396 | |
Marcel Holtmann | 4e39ac8 | 2014-01-31 11:55:22 -0800 | [diff] [blame] | 397 | #define MGMT_OP_SET_DEBUG_KEYS 0x002E |
| 398 | |
Johan Hedberg | 755a900 | 2014-02-22 19:06:34 +0200 | [diff] [blame] | 399 | #define MGMT_OP_SET_PRIVACY 0x002F |
| 400 | struct mgmt_cp_set_privacy { |
| 401 | __u8 privacy; |
| 402 | __u8 irk[16]; |
| 403 | } __packed; |
| 404 | #define MGMT_SET_PRIVACY_SIZE 17 |
| 405 | |
Johan Hedberg | 41edf16 | 2014-02-18 10:19:35 +0200 | [diff] [blame] | 406 | struct mgmt_irk_info { |
| 407 | struct mgmt_addr_info addr; |
| 408 | __u8 val[16]; |
| 409 | } __packed; |
| 410 | |
| 411 | #define MGMT_OP_LOAD_IRKS 0x0030 |
| 412 | struct mgmt_cp_load_irks { |
| 413 | __le16 irk_count; |
| 414 | struct mgmt_irk_info irks[0]; |
| 415 | } __packed; |
| 416 | #define MGMT_LOAD_IRKS_SIZE 2 |
| 417 | |
Andrzej Kaczmarek | dd98380 | 2014-05-14 13:43:03 +0200 | [diff] [blame] | 418 | #define MGMT_OP_GET_CONN_INFO 0x0031 |
| 419 | struct mgmt_cp_get_conn_info { |
| 420 | struct mgmt_addr_info addr; |
| 421 | } __packed; |
| 422 | #define MGMT_GET_CONN_INFO_SIZE MGMT_ADDR_INFO_SIZE |
| 423 | struct mgmt_rp_get_conn_info { |
| 424 | struct mgmt_addr_info addr; |
| 425 | __s8 rssi; |
| 426 | __s8 tx_power; |
| 427 | __s8 max_tx_power; |
| 428 | } __packed; |
| 429 | |
Johan Hedberg | 9586842 | 2014-06-28 17:54:07 +0300 | [diff] [blame] | 430 | #define MGMT_OP_GET_CLOCK_INFO 0x0032 |
| 431 | struct mgmt_cp_get_clock_info { |
| 432 | struct mgmt_addr_info addr; |
| 433 | } __packed; |
| 434 | #define MGMT_GET_CLOCK_INFO_SIZE MGMT_ADDR_INFO_SIZE |
| 435 | struct mgmt_rp_get_clock_info { |
| 436 | struct mgmt_addr_info addr; |
| 437 | __le32 local_clock; |
| 438 | __le32 piconet_clock; |
| 439 | __le16 accuracy; |
| 440 | } __packed; |
| 441 | |
Marcel Holtmann | 2faade5 | 2014-06-29 19:44:03 +0200 | [diff] [blame] | 442 | #define MGMT_OP_ADD_DEVICE 0x0033 |
| 443 | struct mgmt_cp_add_device { |
| 444 | struct mgmt_addr_info addr; |
| 445 | __u8 action; |
| 446 | } __packed; |
| 447 | #define MGMT_ADD_DEVICE_SIZE (MGMT_ADDR_INFO_SIZE + 1) |
| 448 | |
| 449 | #define MGMT_OP_REMOVE_DEVICE 0x0034 |
| 450 | struct mgmt_cp_remove_device { |
| 451 | struct mgmt_addr_info addr; |
| 452 | } __packed; |
| 453 | #define MGMT_REMOVE_DEVICE_SIZE MGMT_ADDR_INFO_SIZE |
| 454 | |
Johan Hedberg | a26f3dc | 2014-07-02 17:37:29 +0300 | [diff] [blame] | 455 | struct mgmt_conn_param { |
| 456 | struct mgmt_addr_info addr; |
| 457 | __le16 min_interval; |
| 458 | __le16 max_interval; |
| 459 | __le16 latency; |
| 460 | __le16 timeout; |
| 461 | } __packed; |
| 462 | |
| 463 | #define MGMT_OP_LOAD_CONN_PARAM 0x0035 |
| 464 | struct mgmt_cp_load_conn_param { |
| 465 | __le16 param_count; |
| 466 | struct mgmt_conn_param params[0]; |
| 467 | } __packed; |
| 468 | #define MGMT_LOAD_CONN_PARAM_SIZE 2 |
| 469 | |
Marcel Holtmann | 73d1df2 | 2014-07-02 22:10:52 +0200 | [diff] [blame] | 470 | #define MGMT_OP_READ_UNCONF_INDEX_LIST 0x0036 |
| 471 | #define MGMT_READ_UNCONF_INDEX_LIST_SIZE 0 |
| 472 | struct mgmt_rp_read_unconf_index_list { |
| 473 | __le16 num_controllers; |
| 474 | __le16 index[0]; |
| 475 | } __packed; |
| 476 | |
Marcel Holtmann | 46ebeb26 | 2014-07-04 13:23:38 +0200 | [diff] [blame] | 477 | #define MGMT_OPTION_EXTERNAL_CONFIG 0x00000001 |
| 478 | #define MGMT_OPTION_PUBLIC_ADDRESS 0x00000002 |
Marcel Holtmann | 9fc3bfb | 2014-07-04 00:46:56 +0200 | [diff] [blame] | 479 | |
| 480 | #define MGMT_OP_READ_CONFIG_INFO 0x0037 |
| 481 | #define MGMT_READ_CONFIG_INFO_SIZE 0 |
| 482 | struct mgmt_rp_read_config_info { |
| 483 | __le16 manufacturer; |
| 484 | __le32 supported_options; |
| 485 | __le32 missing_options; |
| 486 | } __packed; |
| 487 | |
Marcel Holtmann | dbece37 | 2014-07-04 18:11:55 +0200 | [diff] [blame] | 488 | #define MGMT_OP_SET_EXTERNAL_CONFIG 0x0038 |
| 489 | struct mgmt_cp_set_external_config { |
| 490 | __u8 config; |
| 491 | } __packed; |
| 492 | #define MGMT_SET_EXTERNAL_CONFIG_SIZE 1 |
| 493 | |
Marcel Holtmann | 9713c17 | 2014-07-06 12:11:15 +0200 | [diff] [blame] | 494 | #define MGMT_OP_SET_PUBLIC_ADDRESS 0x0039 |
| 495 | struct mgmt_cp_set_public_address { |
| 496 | bdaddr_t bdaddr; |
| 497 | } __packed; |
| 498 | #define MGMT_SET_PUBLIC_ADDRESS_SIZE 6 |
| 499 | |
Jakub Pawlowski | 7e61df5 | 2014-12-05 10:55:54 +0100 | [diff] [blame] | 500 | #define MGMT_OP_START_SERVICE_DISCOVERY 0x003A |
| 501 | struct mgmt_cp_start_service_discovery { |
| 502 | __u8 type; |
| 503 | __s8 rssi; |
| 504 | __le16 uuid_count; |
| 505 | __u8 uuids[0][16]; |
| 506 | } __packed; |
| 507 | #define MGMT_START_SERVICE_DISCOVERY_SIZE 4 |
| 508 | |
Marcel Holtmann | 4f0f155 | 2015-03-14 22:43:19 -0700 | [diff] [blame] | 509 | #define MGMT_OP_READ_LOCAL_OOB_EXT_DATA 0x003B |
| 510 | struct mgmt_cp_read_local_oob_ext_data { |
| 511 | __u8 type; |
| 512 | } __packed; |
| 513 | #define MGMT_READ_LOCAL_OOB_EXT_DATA_SIZE 1 |
| 514 | struct mgmt_rp_read_local_oob_ext_data { |
| 515 | __u8 type; |
| 516 | __le16 eir_len; |
| 517 | __u8 eir[0]; |
| 518 | } __packed; |
| 519 | |
Marcel Holtmann | 96f1474 | 2015-03-14 19:27:57 -0700 | [diff] [blame] | 520 | #define MGMT_OP_READ_EXT_INDEX_LIST 0x003C |
| 521 | #define MGMT_READ_EXT_INDEX_LIST_SIZE 0 |
| 522 | struct mgmt_rp_read_ext_index_list { |
| 523 | __le16 num_controllers; |
| 524 | struct { |
| 525 | __le16 index; |
| 526 | __u8 type; |
| 527 | __u8 bus; |
| 528 | } entry[0]; |
| 529 | } __packed; |
| 530 | |
Marcel Holtmann | d3d5305 | 2015-03-14 20:53:25 -0700 | [diff] [blame] | 531 | #define MGMT_OP_READ_ADV_FEATURES 0x0003D |
| 532 | #define MGMT_READ_ADV_FEATURES_SIZE 0 |
| 533 | struct mgmt_rp_read_adv_features { |
| 534 | __le32 supported_flags; |
| 535 | __u8 max_adv_data_len; |
| 536 | __u8 max_scan_rsp_len; |
| 537 | __u8 max_instances; |
| 538 | __u8 num_instances; |
| 539 | __u8 instance[0]; |
| 540 | } __packed; |
| 541 | |
Arman Uguray | 841a666 | 2015-03-23 15:57:09 -0700 | [diff] [blame] | 542 | #define MGMT_OP_ADD_ADVERTISING 0x003E |
| 543 | struct mgmt_cp_add_advertising { |
| 544 | __u8 instance; |
| 545 | __le32 flags; |
| 546 | __le16 duration; |
| 547 | __le16 timeout; |
| 548 | __u8 adv_data_len; |
| 549 | __u8 scan_rsp_len; |
| 550 | __u8 data[0]; |
| 551 | } __packed; |
| 552 | #define MGMT_ADD_ADVERTISING_SIZE 11 |
| 553 | struct mgmt_rp_add_advertising { |
| 554 | __u8 instance; |
| 555 | } __packed; |
| 556 | |
Arman Uguray | 4950999 | 2015-03-25 18:53:39 -0700 | [diff] [blame] | 557 | #define MGMT_ADV_FLAG_CONNECTABLE BIT(0) |
| 558 | #define MGMT_ADV_FLAG_DISCOV BIT(1) |
| 559 | #define MGMT_ADV_FLAG_LIMITED_DISCOV BIT(2) |
| 560 | #define MGMT_ADV_FLAG_MANAGED_FLAGS BIT(3) |
| 561 | #define MGMT_ADV_FLAG_TX_POWER BIT(4) |
| 562 | #define MGMT_ADV_FLAG_APPEARANCE BIT(5) |
| 563 | #define MGMT_ADV_FLAG_LOCAL_NAME BIT(6) |
| 564 | |
Arman Uguray | 841a666 | 2015-03-23 15:57:09 -0700 | [diff] [blame] | 565 | #define MGMT_OP_REMOVE_ADVERTISING 0x003F |
| 566 | struct mgmt_cp_remove_advertising { |
| 567 | __u8 instance; |
| 568 | } __packed; |
| 569 | #define MGMT_REMOVE_ADVERTISING_SIZE 1 |
| 570 | struct mgmt_rp_remove_advertising { |
| 571 | __u8 instance; |
| 572 | } __packed; |
| 573 | |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 574 | #define MGMT_EV_CMD_COMPLETE 0x0001 |
| 575 | struct mgmt_ev_cmd_complete { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 576 | __le16 opcode; |
| 577 | __u8 status; |
| 578 | __u8 data[0]; |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 579 | } __packed; |
| 580 | |
| 581 | #define MGMT_EV_CMD_STATUS 0x0002 |
| 582 | struct mgmt_ev_cmd_status { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 583 | __le16 opcode; |
| 584 | __u8 status; |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 585 | } __packed; |
| 586 | |
| 587 | #define MGMT_EV_CONTROLLER_ERROR 0x0003 |
| 588 | struct mgmt_ev_controller_error { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 589 | __u8 error_code; |
Johan Hedberg | c02178d | 2010-12-08 00:21:05 +0200 | [diff] [blame] | 590 | } __packed; |
Johan Hedberg | c71e97b | 2010-12-13 21:07:07 +0200 | [diff] [blame] | 591 | |
| 592 | #define MGMT_EV_INDEX_ADDED 0x0004 |
Johan Hedberg | c71e97b | 2010-12-13 21:07:07 +0200 | [diff] [blame] | 593 | |
| 594 | #define MGMT_EV_INDEX_REMOVED 0x0005 |
Johan Hedberg | 5add6af | 2010-12-16 10:00:37 +0200 | [diff] [blame] | 595 | |
Johan Hedberg | 69ab39e | 2011-12-15 00:47:35 +0200 | [diff] [blame] | 596 | #define MGMT_EV_NEW_SETTINGS 0x0006 |
Johan Hedberg | 73f22f6 | 2010-12-29 16:00:25 +0200 | [diff] [blame] | 597 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 598 | #define MGMT_EV_CLASS_OF_DEV_CHANGED 0x0007 |
| 599 | struct mgmt_ev_class_of_dev_changed { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 600 | __u8 dev_class[3]; |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 601 | }; |
Johan Hedberg | 9fbcbb4 | 2010-12-30 00:18:33 +0200 | [diff] [blame] | 602 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 603 | #define MGMT_EV_LOCAL_NAME_CHANGED 0x0008 |
| 604 | struct mgmt_ev_local_name_changed { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 605 | __u8 name[MGMT_MAX_NAME_LENGTH]; |
| 606 | __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH]; |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 607 | } __packed; |
Johan Hedberg | c542a06 | 2011-01-26 13:11:03 +0200 | [diff] [blame] | 608 | |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 609 | #define MGMT_EV_NEW_LINK_KEY 0x0009 |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 610 | struct mgmt_ev_new_link_key { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 611 | __u8 store_hint; |
Johan Hedberg | 86742e1 | 2011-11-07 23:13:38 +0200 | [diff] [blame] | 612 | struct mgmt_link_key_info key; |
Johan Hedberg | 55ed8ca1 | 2011-01-17 14:41:05 +0200 | [diff] [blame] | 613 | } __packed; |
Johan Hedberg | f752054 | 2011-01-20 12:34:39 +0200 | [diff] [blame] | 614 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 615 | #define MGMT_EV_NEW_LONG_TERM_KEY 0x000A |
| 616 | struct mgmt_ev_new_long_term_key { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 617 | __u8 store_hint; |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 618 | struct mgmt_ltk_info key; |
| 619 | } __packed; |
| 620 | |
| 621 | #define MGMT_EV_DEVICE_CONNECTED 0x000B |
Johan Hedberg | b644ba3 | 2012-01-17 21:48:47 +0200 | [diff] [blame] | 622 | struct mgmt_ev_device_connected { |
| 623 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 624 | __le32 flags; |
| 625 | __le16 eir_len; |
| 626 | __u8 eir[0]; |
Johan Hedberg | b644ba3 | 2012-01-17 21:48:47 +0200 | [diff] [blame] | 627 | } __packed; |
Johan Hedberg | f752054 | 2011-01-20 12:34:39 +0200 | [diff] [blame] | 628 | |
Mikel Astiz | f0d6a0e | 2012-08-09 09:52:30 +0200 | [diff] [blame] | 629 | #define MGMT_DEV_DISCONN_UNKNOWN 0x00 |
| 630 | #define MGMT_DEV_DISCONN_TIMEOUT 0x01 |
| 631 | #define MGMT_DEV_DISCONN_LOCAL_HOST 0x02 |
| 632 | #define MGMT_DEV_DISCONN_REMOTE 0x03 |
| 633 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 634 | #define MGMT_EV_DEVICE_DISCONNECTED 0x000C |
Mikel Astiz | f0d6a0e | 2012-08-09 09:52:30 +0200 | [diff] [blame] | 635 | struct mgmt_ev_device_disconnected { |
| 636 | struct mgmt_addr_info addr; |
| 637 | __u8 reason; |
| 638 | } __packed; |
Johan Hedberg | 17d5c04 | 2011-01-22 06:09:08 +0200 | [diff] [blame] | 639 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 640 | #define MGMT_EV_CONNECT_FAILED 0x000D |
Johan Hedberg | 17d5c04 | 2011-01-22 06:09:08 +0200 | [diff] [blame] | 641 | struct mgmt_ev_connect_failed { |
Johan Hedberg | 4c659c3 | 2011-11-07 23:13:39 +0200 | [diff] [blame] | 642 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 643 | __u8 status; |
Johan Hedberg | 17d5c04 | 2011-01-22 06:09:08 +0200 | [diff] [blame] | 644 | } __packed; |
Johan Hedberg | 980e1a5 | 2011-01-22 06:10:07 +0200 | [diff] [blame] | 645 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 646 | #define MGMT_EV_PIN_CODE_REQUEST 0x000E |
Johan Hedberg | 980e1a5 | 2011-01-22 06:10:07 +0200 | [diff] [blame] | 647 | struct mgmt_ev_pin_code_request { |
Johan Hedberg | d845769 | 2012-02-17 14:24:57 +0200 | [diff] [blame] | 648 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 649 | __u8 secure; |
Johan Hedberg | 980e1a5 | 2011-01-22 06:10:07 +0200 | [diff] [blame] | 650 | } __packed; |
Johan Hedberg | a5c2968 | 2011-02-19 12:05:57 -0300 | [diff] [blame] | 651 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 652 | #define MGMT_EV_USER_CONFIRM_REQUEST 0x000F |
Johan Hedberg | a5c2968 | 2011-02-19 12:05:57 -0300 | [diff] [blame] | 653 | struct mgmt_ev_user_confirm_request { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 654 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 655 | __u8 confirm_hint; |
| 656 | __le32 value; |
Johan Hedberg | a5c2968 | 2011-02-19 12:05:57 -0300 | [diff] [blame] | 657 | } __packed; |
Johan Hedberg | 2a61169 | 2011-02-19 12:06:00 -0300 | [diff] [blame] | 658 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 659 | #define MGMT_EV_USER_PASSKEY_REQUEST 0x0010 |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 660 | struct mgmt_ev_user_passkey_request { |
Johan Hedberg | 272d90d | 2012-02-09 15:26:12 +0200 | [diff] [blame] | 661 | struct mgmt_addr_info addr; |
Johan Hedberg | f71d5a2 | 2011-12-15 00:47:40 +0200 | [diff] [blame] | 662 | } __packed; |
| 663 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 664 | #define MGMT_EV_AUTH_FAILED 0x0011 |
Johan Hedberg | 2a61169 | 2011-02-19 12:06:00 -0300 | [diff] [blame] | 665 | struct mgmt_ev_auth_failed { |
Johan Hedberg | bab73cb | 2012-02-09 16:07:29 +0200 | [diff] [blame] | 666 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 667 | __u8 status; |
Johan Hedberg | 2a61169 | 2011-02-19 12:06:00 -0300 | [diff] [blame] | 668 | } __packed; |
Johan Hedberg | b312b161 | 2011-03-16 14:29:37 +0200 | [diff] [blame] | 669 | |
Johan Hedberg | 9a395a8 | 2012-02-23 00:00:32 +0200 | [diff] [blame] | 670 | #define MGMT_DEV_FOUND_CONFIRM_NAME 0x01 |
| 671 | #define MGMT_DEV_FOUND_LEGACY_PAIRING 0x02 |
Marcel Holtmann | af58925 | 2014-07-01 14:11:20 +0200 | [diff] [blame] | 672 | #define MGMT_DEV_FOUND_NOT_CONNECTABLE 0x04 |
Johan Hedberg | 9a395a8 | 2012-02-23 00:00:32 +0200 | [diff] [blame] | 673 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 674 | #define MGMT_EV_DEVICE_FOUND 0x0012 |
Johan Hedberg | e17acd4 | 2011-03-30 23:57:16 +0300 | [diff] [blame] | 675 | struct mgmt_ev_device_found { |
Johan Hedberg | 4c659c3 | 2011-11-07 23:13:39 +0200 | [diff] [blame] | 676 | struct mgmt_addr_info addr; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 677 | __s8 rssi; |
Jefferson Delfes | af7985b | 2012-06-11 09:18:51 -0400 | [diff] [blame] | 678 | __le32 flags; |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 679 | __le16 eir_len; |
| 680 | __u8 eir[0]; |
Johan Hedberg | e17acd4 | 2011-03-30 23:57:16 +0300 | [diff] [blame] | 681 | } __packed; |
Johan Hedberg | a88a965 | 2011-03-30 13:18:12 +0300 | [diff] [blame] | 682 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 683 | #define MGMT_EV_DISCOVERING 0x0013 |
Johan Hedberg | f963e8e | 2012-02-20 23:30:44 +0200 | [diff] [blame] | 684 | struct mgmt_ev_discovering { |
Gustavo F. Padovan | c476250 | 2012-03-06 23:39:50 -0300 | [diff] [blame] | 685 | __u8 type; |
| 686 | __u8 discovering; |
Johan Hedberg | f963e8e | 2012-02-20 23:30:44 +0200 | [diff] [blame] | 687 | } __packed; |
Johan Hedberg | 314b238 | 2011-04-27 10:29:57 -0400 | [diff] [blame] | 688 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 689 | #define MGMT_EV_DEVICE_BLOCKED 0x0014 |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 690 | struct mgmt_ev_device_blocked { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 691 | struct mgmt_addr_info addr; |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 692 | } __packed; |
| 693 | |
Johan Hedberg | 9ef866a | 2012-02-01 23:42:38 +0200 | [diff] [blame] | 694 | #define MGMT_EV_DEVICE_UNBLOCKED 0x0015 |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 695 | struct mgmt_ev_device_unblocked { |
Johan Hedberg | 88c1fe4 | 2012-02-09 15:56:11 +0200 | [diff] [blame] | 696 | struct mgmt_addr_info addr; |
Antti Julku | 5e76244 | 2011-08-25 16:48:02 +0300 | [diff] [blame] | 697 | } __packed; |
Johan Hedberg | b1078ad | 2012-02-09 17:21:16 +0200 | [diff] [blame] | 698 | |
| 699 | #define MGMT_EV_DEVICE_UNPAIRED 0x0016 |
| 700 | struct mgmt_ev_device_unpaired { |
| 701 | struct mgmt_addr_info addr; |
| 702 | } __packed; |
Johan Hedberg | 92a2525 | 2012-09-06 18:39:26 +0300 | [diff] [blame] | 703 | |
| 704 | #define MGMT_EV_PASSKEY_NOTIFY 0x0017 |
| 705 | struct mgmt_ev_passkey_notify { |
| 706 | struct mgmt_addr_info addr; |
| 707 | __le32 passkey; |
| 708 | __u8 entered; |
| 709 | } __packed; |
Johan Hedberg | 95fbac8 | 2014-02-19 15:18:31 +0200 | [diff] [blame] | 710 | |
| 711 | #define MGMT_EV_NEW_IRK 0x0018 |
| 712 | struct mgmt_ev_new_irk { |
| 713 | __u8 store_hint; |
| 714 | bdaddr_t rpa; |
| 715 | struct mgmt_irk_info irk; |
| 716 | } __packed; |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 717 | |
Johan Hedberg | 4cd3928 | 2015-02-27 10:11:13 +0200 | [diff] [blame] | 718 | #define MGMT_CSRK_LOCAL_UNAUTHENTICATED 0x00 |
| 719 | #define MGMT_CSRK_REMOTE_UNAUTHENTICATED 0x01 |
| 720 | #define MGMT_CSRK_LOCAL_AUTHENTICATED 0x02 |
| 721 | #define MGMT_CSRK_REMOTE_AUTHENTICATED 0x03 |
| 722 | |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 723 | struct mgmt_csrk_info { |
| 724 | struct mgmt_addr_info addr; |
Johan Hedberg | 4cd3928 | 2015-02-27 10:11:13 +0200 | [diff] [blame] | 725 | __u8 type; |
Marcel Holtmann | 7ee4ea3 | 2014-03-09 12:19:17 -0700 | [diff] [blame] | 726 | __u8 val[16]; |
| 727 | } __packed; |
| 728 | |
| 729 | #define MGMT_EV_NEW_CSRK 0x0019 |
| 730 | struct mgmt_ev_new_csrk { |
| 731 | __u8 store_hint; |
| 732 | struct mgmt_csrk_info key; |
| 733 | } __packed; |
Marcel Holtmann | 8afef09 | 2014-06-29 22:28:34 +0200 | [diff] [blame] | 734 | |
| 735 | #define MGMT_EV_DEVICE_ADDED 0x001a |
| 736 | struct mgmt_ev_device_added { |
| 737 | struct mgmt_addr_info addr; |
| 738 | __u8 action; |
| 739 | } __packed; |
| 740 | |
| 741 | #define MGMT_EV_DEVICE_REMOVED 0x001b |
| 742 | struct mgmt_ev_device_removed { |
| 743 | struct mgmt_addr_info addr; |
| 744 | } __packed; |
Andre Guedes | ffb5a827 | 2014-07-01 18:10:11 -0300 | [diff] [blame] | 745 | |
| 746 | #define MGMT_EV_NEW_CONN_PARAM 0x001c |
| 747 | struct mgmt_ev_new_conn_param { |
| 748 | struct mgmt_addr_info addr; |
| 749 | __u8 store_hint; |
| 750 | __le16 min_interval; |
| 751 | __le16 max_interval; |
| 752 | __le16 latency; |
| 753 | __le16 timeout; |
| 754 | } __packed; |
Marcel Holtmann | 0602a8a | 2014-07-02 21:30:54 +0200 | [diff] [blame] | 755 | |
| 756 | #define MGMT_EV_UNCONF_INDEX_ADDED 0x001d |
Marcel Holtmann | edd3896 | 2014-07-02 21:30:55 +0200 | [diff] [blame] | 757 | |
| 758 | #define MGMT_EV_UNCONF_INDEX_REMOVED 0x001e |
Marcel Holtmann | f4537c0 | 2014-07-04 19:06:23 +0200 | [diff] [blame] | 759 | |
| 760 | #define MGMT_EV_NEW_CONFIG_OPTIONS 0x001f |
Marcel Holtmann | ced8554 | 2015-03-14 19:27:56 -0700 | [diff] [blame] | 761 | |
| 762 | struct mgmt_ev_ext_index { |
| 763 | __u8 type; |
| 764 | __u8 bus; |
| 765 | } __packed; |
| 766 | |
| 767 | #define MGMT_EV_EXT_INDEX_ADDED 0x0020 |
| 768 | |
| 769 | #define MGMT_EV_EXT_INDEX_REMOVED 0x0021 |
Marcel Holtmann | 72000df | 2015-03-16 16:11:21 -0700 | [diff] [blame] | 770 | |
| 771 | #define MGMT_EV_LOCAL_OOB_DATA_UPDATED 0x0022 |
| 772 | struct mgmt_ev_local_oob_data_updated { |
| 773 | __u8 type; |
| 774 | __le16 eir_len; |
| 775 | __u8 eir[0]; |
| 776 | } __packed; |
Arman Uguray | 841a666 | 2015-03-23 15:57:09 -0700 | [diff] [blame] | 777 | |
| 778 | #define MGMT_EV_ADVERTISING_ADDED 0x0023 |
| 779 | struct mgmt_ev_advertising_added { |
| 780 | __u8 instance; |
| 781 | } __packed; |
| 782 | |
| 783 | #define MGMT_EV_ADVERTISING_REMOVED 0x0024 |
| 784 | struct mgmt_ev_advertising_removed { |
| 785 | __u8 instance; |
| 786 | } __packed; |