2 BlueZ - Bluetooth protocol stack for Linux
4 Copyright (C) 2010 Nokia Corporation
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License version 2 as
8 published by the Free Software Foundation;
10 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
11 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
12 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
13 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
14 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
15 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
20 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
21 SOFTWARE IS DISCLAIMED.
24 #define MGMT_INDEX_NONE 0xFFFF
26 #define MGMT_STATUS_SUCCESS 0x00
27 #define MGMT_STATUS_UNKNOWN_COMMAND 0x01
28 #define MGMT_STATUS_NOT_CONNECTED 0x02
29 #define MGMT_STATUS_FAILED 0x03
30 #define MGMT_STATUS_CONNECT_FAILED 0x04
31 #define MGMT_STATUS_AUTH_FAILED 0x05
32 #define MGMT_STATUS_NOT_PAIRED 0x06
33 #define MGMT_STATUS_NO_RESOURCES 0x07
34 #define MGMT_STATUS_TIMEOUT 0x08
35 #define MGMT_STATUS_ALREADY_CONNECTED 0x09
36 #define MGMT_STATUS_BUSY 0x0a
37 #define MGMT_STATUS_REJECTED 0x0b
38 #define MGMT_STATUS_NOT_SUPPORTED 0x0c
39 #define MGMT_STATUS_INVALID_PARAMS 0x0d
40 #define MGMT_STATUS_DISCONNECTED 0x0e
41 #define MGMT_STATUS_NOT_POWERED 0x0f
49 #define MGMT_OP_READ_VERSION 0x0001
50 struct mgmt_rp_read_version
{
55 #define MGMT_OP_READ_INDEX_LIST 0x0003
56 struct mgmt_rp_read_index_list
{
57 __le16 num_controllers
;
61 /* Reserve one extra byte for names in management messages so that they
62 * are always guaranteed to be nul-terminated */
63 #define MGMT_MAX_NAME_LENGTH (HCI_MAX_NAME_LENGTH + 1)
64 #define MGMT_MAX_SHORT_NAME_LENGTH (10 + 1)
66 #define MGMT_SETTING_POWERED 0x00000001
67 #define MGMT_SETTING_CONNECTABLE 0x00000002
68 #define MGMT_SETTING_FAST_CONNECTABLE 0x00000004
69 #define MGMT_SETTING_DISCOVERABLE 0x00000008
70 #define MGMT_SETTING_PAIRABLE 0x00000010
71 #define MGMT_SETTING_LINK_SECURITY 0x00000020
72 #define MGMT_SETTING_SSP 0x00000040
73 #define MGMT_SETTING_BREDR 0x00000080
74 #define MGMT_SETTING_HS 0x00000100
75 #define MGMT_SETTING_LE 0x00000200
77 #define MGMT_OP_READ_INFO 0x0004
78 struct mgmt_rp_read_info
{
82 __le32 supported_settings
;
83 __le32 current_settings
;
85 __u8 name
[MGMT_MAX_NAME_LENGTH
];
86 __u8 short_name
[MGMT_MAX_SHORT_NAME_LENGTH
];
93 #define MGMT_OP_SET_POWERED 0x0005
95 #define MGMT_OP_SET_DISCOVERABLE 0x0006
96 struct mgmt_cp_set_discoverable
{
101 #define MGMT_OP_SET_CONNECTABLE 0x0007
103 #define MGMT_OP_SET_FAST_CONNECTABLE 0x0008
105 #define MGMT_OP_SET_PAIRABLE 0x0009
107 #define MGMT_OP_SET_LINK_SECURITY 0x000A
109 #define MGMT_OP_SET_SSP 0x000B
111 #define MGMT_OP_SET_HS 0x000C
113 #define MGMT_OP_SET_LE 0x000D
115 #define MGMT_OP_SET_DEV_CLASS 0x000E
116 struct mgmt_cp_set_dev_class
{
121 #define MGMT_OP_SET_LOCAL_NAME 0x000F
122 struct mgmt_cp_set_local_name
{
123 __u8 name
[MGMT_MAX_NAME_LENGTH
];
126 #define MGMT_OP_ADD_UUID 0x0010
127 struct mgmt_cp_add_uuid
{
132 #define MGMT_OP_REMOVE_UUID 0x0011
133 struct mgmt_cp_remove_uuid
{
137 struct mgmt_link_key_info
{
144 #define MGMT_OP_LOAD_LINK_KEYS 0x0012
145 struct mgmt_cp_load_link_keys
{
148 struct mgmt_link_key_info keys
[0];
151 #define MGMT_OP_REMOVE_KEYS 0x0013
152 struct mgmt_cp_remove_keys
{
156 struct mgmt_rp_remove_keys
{
161 #define MGMT_OP_DISCONNECT 0x0014
162 struct mgmt_cp_disconnect
{
165 struct mgmt_rp_disconnect
{
170 #define MGMT_ADDR_BREDR 0x00
171 #define MGMT_ADDR_LE_PUBLIC 0x01
172 #define MGMT_ADDR_LE_RANDOM 0x02
173 #define MGMT_ADDR_INVALID 0xff
175 struct mgmt_addr_info
{
180 #define MGMT_OP_GET_CONNECTIONS 0x0015
181 struct mgmt_rp_get_connections
{
183 struct mgmt_addr_info addr
[0];
186 #define MGMT_OP_PIN_CODE_REPLY 0x0016
187 struct mgmt_cp_pin_code_reply
{
192 struct mgmt_rp_pin_code_reply
{
197 #define MGMT_OP_PIN_CODE_NEG_REPLY 0x0017
198 struct mgmt_cp_pin_code_neg_reply
{
202 #define MGMT_OP_SET_IO_CAPABILITY 0x0018
203 struct mgmt_cp_set_io_capability
{
207 #define MGMT_OP_PAIR_DEVICE 0x0019
208 struct mgmt_cp_pair_device
{
209 struct mgmt_addr_info addr
;
212 struct mgmt_rp_pair_device
{
213 struct mgmt_addr_info addr
;
217 #define MGMT_OP_USER_CONFIRM_REPLY 0x001A
218 struct mgmt_cp_user_confirm_reply
{
221 struct mgmt_rp_user_confirm_reply
{
226 #define MGMT_OP_USER_CONFIRM_NEG_REPLY 0x001B
227 struct mgmt_cp_user_confirm_neg_reply
{
231 #define MGMT_OP_USER_PASSKEY_REPLY 0x001C
232 struct mgmt_cp_user_passkey_reply
{
236 struct mgmt_rp_user_passkey_reply
{
241 #define MGMT_OP_USER_PASSKEY_NEG_REPLY 0x001D
242 struct mgmt_cp_user_passkey_neg_reply
{
246 #define MGMT_OP_READ_LOCAL_OOB_DATA 0x001E
247 struct mgmt_rp_read_local_oob_data
{
252 #define MGMT_OP_ADD_REMOTE_OOB_DATA 0x001F
253 struct mgmt_cp_add_remote_oob_data
{
259 #define MGMT_OP_REMOVE_REMOTE_OOB_DATA 0x0020
260 struct mgmt_cp_remove_remote_oob_data
{
264 #define MGMT_OP_START_DISCOVERY 0x0021
265 struct mgmt_cp_start_discovery
{
269 #define MGMT_OP_STOP_DISCOVERY 0x0022
271 #define MGMT_OP_CONFIRM_NAME 0x0023
272 struct mgmt_cp_confirm_name
{
276 struct mgmt_rp_confirm_name
{
281 #define MGMT_OP_BLOCK_DEVICE 0x0024
282 struct mgmt_cp_block_device
{
286 #define MGMT_OP_UNBLOCK_DEVICE 0x0025
287 struct mgmt_cp_unblock_device
{
291 #define MGMT_EV_CMD_COMPLETE 0x0001
292 struct mgmt_ev_cmd_complete
{
297 #define MGMT_EV_CMD_STATUS 0x0002
298 struct mgmt_ev_cmd_status
{
303 #define MGMT_EV_CONTROLLER_ERROR 0x0003
304 struct mgmt_ev_controller_error
{
308 #define MGMT_EV_INDEX_ADDED 0x0004
310 #define MGMT_EV_INDEX_REMOVED 0x0005
312 #define MGMT_EV_NEW_SETTINGS 0x0006
314 #define MGMT_EV_CLASS_OF_DEV_CHANGED 0x0007
315 struct mgmt_ev_class_of_dev_changed
{
319 #define MGMT_EV_LOCAL_NAME_CHANGED 0x0008
320 struct mgmt_ev_local_name_changed
{
321 __u8 name
[MGMT_MAX_NAME_LENGTH
];
322 __u8 short_name
[MGMT_MAX_SHORT_NAME_LENGTH
];
325 #define MGMT_EV_NEW_LINK_KEY 0x0009
326 struct mgmt_ev_new_link_key
{
328 struct mgmt_link_key_info key
;
331 #define MGMT_EV_CONNECTED 0x000A
333 #define MGMT_EV_DISCONNECTED 0x000B
335 #define MGMT_EV_CONNECT_FAILED 0x000C
336 struct mgmt_ev_connect_failed
{
337 struct mgmt_addr_info addr
;
341 #define MGMT_EV_PIN_CODE_REQUEST 0x000D
342 struct mgmt_ev_pin_code_request
{
347 #define MGMT_EV_USER_CONFIRM_REQUEST 0x000E
348 struct mgmt_ev_user_confirm_request
{
354 #define MGMT_EV_USER_PASSKEY_REQUEST 0x000F
355 struct mgmt_ev_user_passkey_request
{
359 #define MGMT_EV_AUTH_FAILED 0x0010
360 struct mgmt_ev_auth_failed
{
365 #define MGMT_EV_DEVICE_FOUND 0x0011
366 struct mgmt_ev_device_found
{
367 struct mgmt_addr_info addr
;
371 __u8 eir
[HCI_MAX_EIR_LENGTH
];
374 #define MGMT_EV_REMOTE_NAME 0x0012
375 struct mgmt_ev_remote_name
{
377 __u8 name
[MGMT_MAX_NAME_LENGTH
];
380 #define MGMT_EV_DISCOVERING 0x0013
382 #define MGMT_EV_DEVICE_BLOCKED 0x0014
383 struct mgmt_ev_device_blocked
{
387 #define MGMT_EV_DEVICE_UNBLOCKED 0x0015
388 struct mgmt_ev_device_unblocked
{