blob: 09646f5ef36a02819bc63847a49d8526cb03fd6f [file] [log] [blame]
Johan Hedbergc02178d2010-12-08 00:21:05 +02001/*
2 BlueZ - Bluetooth protocol stack for Linux
3
4 Copyright (C) 2010 Nokia Corporation
Johan Hedbergea585ab2012-02-17 14:50:39 +02005 Copyright (C) 2011-2012 Intel Corporation
Johan Hedbergc02178d2010-12-08 00:21:05 +02006
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 Janc4e51eae2011-02-25 19:05:48 +010025#define MGMT_INDEX_NONE 0xFFFF
26
Johan Hedbergca69b792011-11-11 18:10:00 +020027#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 Hedberg28424702012-02-02 04:02:29 +020043#define MGMT_STATUS_CANCELLED 0x10
Johan Hedbergca69b792011-11-11 18:10:00 +020044
Johan Hedbergc02178d2010-12-08 00:21:05 +020045struct mgmt_hdr {
46 __le16 opcode;
Szymon Janc4e51eae2011-02-25 19:05:48 +010047 __le16 index;
Johan Hedbergc02178d2010-12-08 00:21:05 +020048 __le16 len;
49} __packed;
Johan Hedbergc02178d2010-12-08 00:21:05 +020050
Johan Hedberg9ef866a2012-02-01 23:42:38 +020051struct mgmt_addr_info {
52 bdaddr_t bdaddr;
53 __u8 type;
54} __packed;
55
Johan Hedberg02d98122010-12-13 21:07:04 +020056#define MGMT_OP_READ_VERSION 0x0001
57struct mgmt_rp_read_version {
58 __u8 version;
59 __le16 revision;
60} __packed;
61
Johan Hedberge70bb2e2012-02-13 16:59:33 +020062#define MGMT_OP_READ_COMMANDS 0x0002
63struct mgmt_rp_read_commands {
64 __le16 num_commands;
65 __le16 num_events;
66 __le16 opcodes[0];
67} __packed;
68
Johan Hedbergfaba42e2010-12-13 21:07:05 +020069#define MGMT_OP_READ_INDEX_LIST 0x0003
70struct mgmt_rp_read_index_list {
71 __le16 num_controllers;
72 __le16 index[0];
73} __packed;
74
Johan Hedbergdc4fe302011-03-16 14:29:36 +020075/* Reserve one extra byte for names in management messages so that they
76 * are always guaranteed to be nul-terminated */
77#define MGMT_MAX_NAME_LENGTH (HCI_MAX_NAME_LENGTH + 1)
Johan Hedberg490c5ba2012-02-22 19:19:09 +020078#define MGMT_MAX_SHORT_NAME_LENGTH (HCI_MAX_SHORT_NAME_LENGTH + 1)
Johan Hedberg69ab39e2011-12-15 00:47:35 +020079
80#define MGMT_SETTING_POWERED 0x00000001
81#define MGMT_SETTING_CONNECTABLE 0x00000002
82#define MGMT_SETTING_FAST_CONNECTABLE 0x00000004
83#define MGMT_SETTING_DISCOVERABLE 0x00000008
84#define MGMT_SETTING_PAIRABLE 0x00000010
85#define MGMT_SETTING_LINK_SECURITY 0x00000020
86#define MGMT_SETTING_SSP 0x00000040
87#define MGMT_SETTING_BREDR 0x00000080
88#define MGMT_SETTING_HS 0x00000100
89#define MGMT_SETTING_LE 0x00000200
Johan Hedbergdc4fe302011-03-16 14:29:36 +020090
Johan Hedbergf7b64e692010-12-13 21:07:06 +020091#define MGMT_OP_READ_INFO 0x0004
Johan Hedbergf7b64e692010-12-13 21:07:06 +020092struct mgmt_rp_read_info {
Johan Hedbergf7b64e692010-12-13 21:07:06 +020093 bdaddr_t bdaddr;
Johan Hedberg69ab39e2011-12-15 00:47:35 +020094 __u8 version;
95 __le16 manufacturer;
96 __le32 supported_settings;
97 __le32 current_settings;
Johan Hedbergf7b64e692010-12-13 21:07:06 +020098 __u8 dev_class[3];
Johan Hedbergdc4fe302011-03-16 14:29:36 +020099 __u8 name[MGMT_MAX_NAME_LENGTH];
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200100 __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH];
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200101} __packed;
102
Johan Hedberg72a734e2010-12-30 00:38:22 +0200103struct mgmt_mode {
Johan Hedberg72a734e2010-12-30 00:38:22 +0200104 __u8 val;
105} __packed;
106
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200107#define MGMT_OP_SET_POWERED 0x0005
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200108
Johan Hedberg73f22f62010-12-29 16:00:25 +0200109#define MGMT_OP_SET_DISCOVERABLE 0x0006
Johan Hedberg16ab91a2011-11-07 22:16:02 +0200110struct mgmt_cp_set_discoverable {
111 __u8 val;
112 __u16 timeout;
113} __packed;
Johan Hedberg73f22f62010-12-29 16:00:25 +0200114
Johan Hedberg9fbcbb42010-12-30 00:18:33 +0200115#define MGMT_OP_SET_CONNECTABLE 0x0007
Johan Hedberg9fbcbb42010-12-30 00:18:33 +0200116
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200117#define MGMT_OP_SET_FAST_CONNECTABLE 0x0008
Johan Hedbergf7c6869ce2011-12-15 00:47:36 +0200118
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200119#define MGMT_OP_SET_PAIRABLE 0x0009
Johan Hedbergc542a062011-01-26 13:11:03 +0200120
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200121#define MGMT_OP_SET_LINK_SECURITY 0x000A
122
123#define MGMT_OP_SET_SSP 0x000B
124
125#define MGMT_OP_SET_HS 0x000C
126
127#define MGMT_OP_SET_LE 0x000D
128
129#define MGMT_OP_SET_DEV_CLASS 0x000E
130struct mgmt_cp_set_dev_class {
131 __u8 major;
132 __u8 minor;
133} __packed;
134
135#define MGMT_OP_SET_LOCAL_NAME 0x000F
136struct mgmt_cp_set_local_name {
137 __u8 name[MGMT_MAX_NAME_LENGTH];
Marcel Holtmannc059e052012-02-21 08:14:26 +0100138 __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH];
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200139} __packed;
140
141#define MGMT_OP_ADD_UUID 0x0010
Johan Hedberg2aeb9a12011-01-04 12:08:51 +0200142struct mgmt_cp_add_uuid {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +0200143 __u8 uuid[16];
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200144 __u8 svc_hint;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +0200145} __packed;
146
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200147#define MGMT_OP_REMOVE_UUID 0x0011
Johan Hedberg2aeb9a12011-01-04 12:08:51 +0200148struct mgmt_cp_remove_uuid {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +0200149 __u8 uuid[16];
150} __packed;
151
Johan Hedberg86742e12011-11-07 23:13:38 +0200152struct mgmt_link_key_info {
Johan Hedbergd753fdc2012-02-17 14:06:34 +0200153 struct mgmt_addr_info addr;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +0200154 u8 type;
155 u8 val[16];
156 u8 pin_len;
157} __packed;
158
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200159#define MGMT_OP_LOAD_LINK_KEYS 0x0012
Johan Hedberg86742e12011-11-07 23:13:38 +0200160struct mgmt_cp_load_link_keys {
Johan Hedberg55ed8ca12011-01-17 14:41:05 +0200161 __u8 debug_keys;
162 __le16 key_count;
Johan Hedberg86742e12011-11-07 23:13:38 +0200163 struct mgmt_link_key_info keys[0];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +0200164} __packed;
165
Vinicius Costa Gomes27f27ed2012-01-30 19:29:11 -0300166struct mgmt_ltk_info {
167 struct mgmt_addr_info addr;
168 __u8 authenticated;
169 __u8 master;
170 __u8 enc_size;
171 __le16 ediv;
172 __u8 rand[8];
173 __u8 val[16];
174} __packed;
175
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200176#define MGMT_OP_LOAD_LONG_TERM_KEYS 0x0013
Vinicius Costa Gomes27f27ed2012-01-30 19:29:11 -0300177struct mgmt_cp_load_long_term_keys {
178 __le16 key_count;
179 struct mgmt_ltk_info keys[0];
180} __packed;
181
Johan Hedberg124f6e32012-02-09 13:50:12 +0200182#define MGMT_OP_DISCONNECT 0x0014
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200183struct mgmt_cp_disconnect {
Johan Hedberg88c3df12012-02-09 14:27:38 +0200184 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200185} __packed;
186struct mgmt_rp_disconnect {
Johan Hedberg88c3df12012-02-09 14:27:38 +0200187 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200188} __packed;
189
Johan Hedberg124f6e32012-02-09 13:50:12 +0200190#define MGMT_OP_GET_CONNECTIONS 0x0015
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200191struct mgmt_rp_get_connections {
192 __le16 conn_count;
193 struct mgmt_addr_info addr[0];
194} __packed;
195
Johan Hedberg124f6e32012-02-09 13:50:12 +0200196#define MGMT_OP_PIN_CODE_REPLY 0x0016
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200197struct mgmt_cp_pin_code_reply {
Johan Hedbergd8457692012-02-17 14:24:57 +0200198 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200199 __u8 pin_len;
200 __u8 pin_code[16];
201} __packed;
202struct mgmt_rp_pin_code_reply {
Johan Hedbergd8457692012-02-17 14:24:57 +0200203 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200204} __packed;
205
Johan Hedberg124f6e32012-02-09 13:50:12 +0200206#define MGMT_OP_PIN_CODE_NEG_REPLY 0x0017
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200207struct mgmt_cp_pin_code_neg_reply {
Johan Hedbergd8457692012-02-17 14:24:57 +0200208 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200209} __packed;
210
Johan Hedberg124f6e32012-02-09 13:50:12 +0200211#define MGMT_OP_SET_IO_CAPABILITY 0x0018
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200212struct mgmt_cp_set_io_capability {
213 __u8 io_capability;
214} __packed;
215
Johan Hedberg124f6e32012-02-09 13:50:12 +0200216#define MGMT_OP_PAIR_DEVICE 0x0019
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200217struct mgmt_cp_pair_device {
218 struct mgmt_addr_info addr;
219 __u8 io_cap;
220} __packed;
221struct mgmt_rp_pair_device {
222 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200223} __packed;
224
Johan Hedberg124f6e32012-02-09 13:50:12 +0200225#define MGMT_OP_CANCEL_PAIR_DEVICE 0x001A
226
227#define MGMT_OP_UNPAIR_DEVICE 0x001B
228struct mgmt_cp_unpair_device {
229 struct mgmt_addr_info addr;
230 __u8 disconnect;
231} __packed;
232struct mgmt_rp_unpair_device {
233 struct mgmt_addr_info addr;
Johan Hedberg124f6e32012-02-09 13:50:12 +0200234};
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200235
236#define MGMT_OP_USER_CONFIRM_REPLY 0x001C
237struct mgmt_cp_user_confirm_reply {
Johan Hedberg272d90d2012-02-09 15:26:12 +0200238 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200239} __packed;
240struct mgmt_rp_user_confirm_reply {
Johan Hedberg272d90d2012-02-09 15:26:12 +0200241 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200242} __packed;
243
244#define MGMT_OP_USER_CONFIRM_NEG_REPLY 0x001D
245struct mgmt_cp_user_confirm_neg_reply {
Johan Hedberg272d90d2012-02-09 15:26:12 +0200246 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200247} __packed;
248
249#define MGMT_OP_USER_PASSKEY_REPLY 0x001E
250struct mgmt_cp_user_passkey_reply {
Johan Hedberg272d90d2012-02-09 15:26:12 +0200251 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200252 __le32 passkey;
253} __packed;
254struct mgmt_rp_user_passkey_reply {
Johan Hedberg272d90d2012-02-09 15:26:12 +0200255 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200256} __packed;
257
258#define MGMT_OP_USER_PASSKEY_NEG_REPLY 0x001F
259struct mgmt_cp_user_passkey_neg_reply {
Johan Hedberg272d90d2012-02-09 15:26:12 +0200260 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200261} __packed;
262
263#define MGMT_OP_READ_LOCAL_OOB_DATA 0x0020
264struct mgmt_rp_read_local_oob_data {
265 __u8 hash[16];
266 __u8 randomizer[16];
267} __packed;
268
269#define MGMT_OP_ADD_REMOTE_OOB_DATA 0x0021
270struct mgmt_cp_add_remote_oob_data {
Johan Hedberg664ce4c2012-02-09 15:44:09 +0200271 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200272 __u8 hash[16];
273 __u8 randomizer[16];
274} __packed;
275
276#define MGMT_OP_REMOVE_REMOTE_OOB_DATA 0x0022
277struct mgmt_cp_remove_remote_oob_data {
Johan Hedberg664ce4c2012-02-09 15:44:09 +0200278 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200279} __packed;
280
281#define MGMT_OP_START_DISCOVERY 0x0023
282struct mgmt_cp_start_discovery {
283 __u8 type;
284} __packed;
285
286#define MGMT_OP_STOP_DISCOVERY 0x0024
Johan Hedbergd9306502012-02-20 23:25:18 +0200287struct mgmt_cp_stop_discovery {
288 __u8 type;
289} __packed;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200290
291#define MGMT_OP_CONFIRM_NAME 0x0025
292struct mgmt_cp_confirm_name {
Johan Hedberga198e7b2012-02-17 14:27:06 +0200293 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200294 __u8 name_known;
295} __packed;
296struct mgmt_rp_confirm_name {
Johan Hedberga198e7b2012-02-17 14:27:06 +0200297 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200298} __packed;
299
300#define MGMT_OP_BLOCK_DEVICE 0x0026
301struct mgmt_cp_block_device {
Johan Hedberg88c1fe42012-02-09 15:56:11 +0200302 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200303} __packed;
304
305#define MGMT_OP_UNBLOCK_DEVICE 0x0027
306struct mgmt_cp_unblock_device {
Johan Hedberg88c1fe42012-02-09 15:56:11 +0200307 struct mgmt_addr_info addr;
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200308} __packed;
309
Johan Hedbergc02178d2010-12-08 00:21:05 +0200310#define MGMT_EV_CMD_COMPLETE 0x0001
311struct mgmt_ev_cmd_complete {
312 __le16 opcode;
Johan Hedbergaee9b212012-02-18 15:07:59 +0200313 __u8 status;
Johan Hedbergc02178d2010-12-08 00:21:05 +0200314 __u8 data[0];
315} __packed;
316
317#define MGMT_EV_CMD_STATUS 0x0002
318struct mgmt_ev_cmd_status {
Johan Hedbergc02178d2010-12-08 00:21:05 +0200319 __le16 opcode;
Johan Hedberg3c6b7642012-02-18 14:49:58 +0200320 __u8 status;
Johan Hedbergc02178d2010-12-08 00:21:05 +0200321} __packed;
322
323#define MGMT_EV_CONTROLLER_ERROR 0x0003
324struct mgmt_ev_controller_error {
Johan Hedbergc02178d2010-12-08 00:21:05 +0200325 __u8 error_code;
326} __packed;
Johan Hedbergc71e97b2010-12-13 21:07:07 +0200327
328#define MGMT_EV_INDEX_ADDED 0x0004
Johan Hedbergc71e97b2010-12-13 21:07:07 +0200329
330#define MGMT_EV_INDEX_REMOVED 0x0005
Johan Hedberg5add6af2010-12-16 10:00:37 +0200331
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200332#define MGMT_EV_NEW_SETTINGS 0x0006
Johan Hedberg73f22f62010-12-29 16:00:25 +0200333
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200334#define MGMT_EV_CLASS_OF_DEV_CHANGED 0x0007
335struct mgmt_ev_class_of_dev_changed {
336 __u8 dev_class[3];
337};
Johan Hedberg9fbcbb42010-12-30 00:18:33 +0200338
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200339#define MGMT_EV_LOCAL_NAME_CHANGED 0x0008
340struct mgmt_ev_local_name_changed {
341 __u8 name[MGMT_MAX_NAME_LENGTH];
342 __u8 short_name[MGMT_MAX_SHORT_NAME_LENGTH];
343} __packed;
Johan Hedbergc542a062011-01-26 13:11:03 +0200344
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200345#define MGMT_EV_NEW_LINK_KEY 0x0009
Johan Hedberg86742e12011-11-07 23:13:38 +0200346struct mgmt_ev_new_link_key {
Johan Hedberg4df378a2011-04-28 11:29:03 -0700347 __u8 store_hint;
Johan Hedberg86742e12011-11-07 23:13:38 +0200348 struct mgmt_link_key_info key;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +0200349} __packed;
Johan Hedbergf7520542011-01-20 12:34:39 +0200350
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200351#define MGMT_EV_NEW_LONG_TERM_KEY 0x000A
352struct mgmt_ev_new_long_term_key {
353 __u8 store_hint;
354 struct mgmt_ltk_info key;
355} __packed;
356
357#define MGMT_EV_DEVICE_CONNECTED 0x000B
Johan Hedbergb644ba32012-01-17 21:48:47 +0200358struct mgmt_ev_device_connected {
359 struct mgmt_addr_info addr;
360 __le16 eir_len;
361 __u8 eir[0];
362} __packed;
Johan Hedbergf7520542011-01-20 12:34:39 +0200363
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200364#define MGMT_EV_DEVICE_DISCONNECTED 0x000C
Johan Hedberg17d5c042011-01-22 06:09:08 +0200365
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200366#define MGMT_EV_CONNECT_FAILED 0x000D
Johan Hedberg17d5c042011-01-22 06:09:08 +0200367struct mgmt_ev_connect_failed {
Johan Hedberg4c659c32011-11-07 23:13:39 +0200368 struct mgmt_addr_info addr;
Johan Hedberg17d5c042011-01-22 06:09:08 +0200369 __u8 status;
370} __packed;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200371
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200372#define MGMT_EV_PIN_CODE_REQUEST 0x000E
Johan Hedberg980e1a52011-01-22 06:10:07 +0200373struct mgmt_ev_pin_code_request {
Johan Hedbergd8457692012-02-17 14:24:57 +0200374 struct mgmt_addr_info addr;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +0200375 __u8 secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +0200376} __packed;
Johan Hedberga5c29682011-02-19 12:05:57 -0300377
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200378#define MGMT_EV_USER_CONFIRM_REQUEST 0x000F
Johan Hedberga5c29682011-02-19 12:05:57 -0300379struct mgmt_ev_user_confirm_request {
Johan Hedberg272d90d2012-02-09 15:26:12 +0200380 struct mgmt_addr_info addr;
Johan Hedberg55bc1a32011-04-28 11:28:56 -0700381 __u8 confirm_hint;
Johan Hedberga5c29682011-02-19 12:05:57 -0300382 __le32 value;
383} __packed;
Johan Hedberg2a611692011-02-19 12:06:00 -0300384
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200385#define MGMT_EV_USER_PASSKEY_REQUEST 0x0010
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200386struct mgmt_ev_user_passkey_request {
Johan Hedberg272d90d2012-02-09 15:26:12 +0200387 struct mgmt_addr_info addr;
Johan Hedbergf71d5a22011-12-15 00:47:40 +0200388} __packed;
389
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200390#define MGMT_EV_AUTH_FAILED 0x0011
Johan Hedberg2a611692011-02-19 12:06:00 -0300391struct mgmt_ev_auth_failed {
Johan Hedbergbab73cb2012-02-09 16:07:29 +0200392 struct mgmt_addr_info addr;
Johan Hedberg2a611692011-02-19 12:06:00 -0300393 __u8 status;
394} __packed;
Johan Hedbergb312b1612011-03-16 14:29:37 +0200395
Johan Hedberg9a395a82012-02-23 00:00:32 +0200396#define MGMT_DEV_FOUND_CONFIRM_NAME 0x01
397#define MGMT_DEV_FOUND_LEGACY_PAIRING 0x02
398
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200399#define MGMT_EV_DEVICE_FOUND 0x0012
Johan Hedberge17acd42011-03-30 23:57:16 +0300400struct mgmt_ev_device_found {
Johan Hedberg4c659c32011-11-07 23:13:39 +0200401 struct mgmt_addr_info addr;
Johan Hedberge17acd42011-03-30 23:57:16 +0300402 __s8 rssi;
Johan Hedberg9a395a82012-02-23 00:00:32 +0200403 __u8 flags[4];
Johan Hedberge319d2e2012-01-15 19:51:59 +0200404 __le16 eir_len;
405 __u8 eir[0];
Johan Hedberge17acd42011-03-30 23:57:16 +0300406} __packed;
Johan Hedberga88a9652011-03-30 13:18:12 +0300407
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200408#define MGMT_EV_DISCOVERING 0x0013
Johan Hedbergf963e8e2012-02-20 23:30:44 +0200409struct mgmt_ev_discovering {
410 __u8 type;
411 __u8 discovering;
412} __packed;
Johan Hedberg314b2382011-04-27 10:29:57 -0400413
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200414#define MGMT_EV_DEVICE_BLOCKED 0x0014
Antti Julku5e762442011-08-25 16:48:02 +0300415struct mgmt_ev_device_blocked {
Johan Hedberg88c1fe42012-02-09 15:56:11 +0200416 struct mgmt_addr_info addr;
Antti Julku5e762442011-08-25 16:48:02 +0300417} __packed;
418
Johan Hedberg9ef866a2012-02-01 23:42:38 +0200419#define MGMT_EV_DEVICE_UNBLOCKED 0x0015
Antti Julku5e762442011-08-25 16:48:02 +0300420struct mgmt_ev_device_unblocked {
Johan Hedberg88c1fe42012-02-09 15:56:11 +0200421 struct mgmt_addr_info addr;
Antti Julku5e762442011-08-25 16:48:02 +0300422} __packed;
Johan Hedbergb1078ad2012-02-09 17:21:16 +0200423
424#define MGMT_EV_DEVICE_UNPAIRED 0x0016
425struct mgmt_ev_device_unpaired {
426 struct mgmt_addr_info addr;
427} __packed;