mgmt.h 5.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
   BlueZ - Bluetooth protocol stack for Linux

   Copyright (C) 2010  Nokia Corporation

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License version 2 as
   published by the Free Software Foundation;

   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
   OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
   IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
   CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
   WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

   ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
   COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
   SOFTWARE IS DISCLAIMED.
*/

struct mgmt_hdr {
	__le16 opcode;
	__le16 len;
} __packed;
#define MGMT_HDR_SIZE			4

30 31 32 33 34 35
#define MGMT_OP_READ_VERSION		0x0001
struct mgmt_rp_read_version {
	__u8 version;
	__le16 revision;
} __packed;

36 37 38 39 40 41
#define MGMT_OP_READ_INDEX_LIST		0x0003
struct mgmt_rp_read_index_list {
	__le16 num_controllers;
	__le16 index[0];
} __packed;

42 43 44 45 46 47 48 49
#define MGMT_OP_READ_INFO		0x0004
struct mgmt_cp_read_info {
	__le16 index;
} __packed;
struct mgmt_rp_read_info {
	__le16 index;
	__u8 type;
	__u8 powered;
50
	__u8 connectable;
51 52 53 54 55 56 57 58 59 60 61
	__u8 discoverable;
	__u8 pairable;
	__u8 sec_mode;
	bdaddr_t bdaddr;
	__u8 dev_class[3];
	__u8 features[8];
	__u16 manufacturer;
	__u8 hci_ver;
	__u16 hci_rev;
} __packed;

62
struct mgmt_mode {
63
	__le16 index;
64
	__u8 val;
65 66
} __packed;

67 68
#define MGMT_OP_SET_POWERED		0x0005

69 70
#define MGMT_OP_SET_DISCOVERABLE	0x0006

71 72
#define MGMT_OP_SET_CONNECTABLE		0x0007

73 74
#define MGMT_OP_SET_PAIRABLE		0x0008

75 76 77 78
#define MGMT_OP_ADD_UUID		0x0009
struct mgmt_cp_add_uuid {
	__le16 index;
	__u8 uuid[16];
79
	__u8 svc_hint;
80 81 82 83 84 85 86 87
} __packed;

#define MGMT_OP_REMOVE_UUID		0x000A
struct mgmt_cp_remove_uuid {
	__le16 index;
	__u8 uuid[16];
} __packed;

88 89 90 91 92 93 94 95 96 97 98 99 100
#define MGMT_OP_SET_DEV_CLASS		0x000B
struct mgmt_cp_set_dev_class {
	__le16 index;
	__u8 major;
	__u8 minor;
} __packed;

#define MGMT_OP_SET_SERVICE_CACHE	0x000C
struct mgmt_cp_set_service_cache {
	__le16 index;
	__u8 enable;
} __packed;

101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
struct mgmt_key_info {
	bdaddr_t bdaddr;
	u8 type;
	u8 val[16];
	u8 pin_len;
} __packed;

#define MGMT_OP_LOAD_KEYS		0x000D
struct mgmt_cp_load_keys {
	__le16 index;
	__u8 debug_keys;
	__le16 key_count;
	struct mgmt_key_info keys[0];
} __packed;

#define MGMT_OP_REMOVE_KEY		0x000E
struct mgmt_cp_remove_key {
	__le16 index;
	bdaddr_t bdaddr;
	__u8 disconnect;
} __packed;
122 123 124 125 126 127 128 129 130 131

#define MGMT_OP_DISCONNECT		0x000F
struct mgmt_cp_disconnect {
	__le16 index;
	bdaddr_t bdaddr;
} __packed;
struct mgmt_rp_disconnect {
	__le16 index;
	bdaddr_t bdaddr;
} __packed;
132

133 134 135 136 137 138 139 140 141 142
#define MGMT_OP_GET_CONNECTIONS		0x0010
struct mgmt_cp_get_connections {
	__le16 index;
} __packed;
struct mgmt_rp_get_connections {
	__le16 index;
	__le16 conn_count;
	bdaddr_t conn[0];
} __packed;

143 144 145 146 147 148 149
#define MGMT_OP_PIN_CODE_REPLY		0x0011
struct mgmt_cp_pin_code_reply {
	__le16 index;
	bdaddr_t bdaddr;
	__u8 pin_len;
	__u8 pin_code[16];
} __packed;
150 151 152 153 154
struct mgmt_rp_pin_code_reply {
	__le16 index;
	bdaddr_t bdaddr;
	uint8_t status;
} __packed;
155 156 157 158 159 160 161

#define MGMT_OP_PIN_CODE_NEG_REPLY	0x0012
struct mgmt_cp_pin_code_neg_reply {
	__le16 index;
	bdaddr_t bdaddr;
} __packed;

162 163 164 165 166 167
#define MGMT_OP_SET_IO_CAPABILITY	0x0013
struct mgmt_cp_set_io_capability {
	__le16 index;
	__u8 io_capability;
} __packed;

168 169 170 171 172 173 174 175 176 177 178 179
#define MGMT_OP_PAIR_DEVICE		0x0014
struct mgmt_cp_pair_device {
	__le16 index;
	bdaddr_t bdaddr;
	__u8 io_cap;
} __packed;
struct mgmt_rp_pair_device {
	__le16 index;
	bdaddr_t bdaddr;
	__u8 status;
} __packed;

180 181 182 183 184 185 186 187 188 189 190 191 192
#define MGMT_OP_USER_CONFIRM_REPLY	0x0015
struct mgmt_cp_user_confirm_reply {
	__le16 index;
	bdaddr_t bdaddr;
} __packed;
struct mgmt_rp_user_confirm_reply {
	__le16 index;
	bdaddr_t bdaddr;
	__u8 status;
} __packed;

#define MGMT_OP_USER_CONFIRM_NEG_REPLY	0x0016

193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209
#define MGMT_EV_CMD_COMPLETE		0x0001
struct mgmt_ev_cmd_complete {
	__le16 opcode;
	__u8 data[0];
} __packed;

#define MGMT_EV_CMD_STATUS		0x0002
struct mgmt_ev_cmd_status {
	__u8 status;
	__le16 opcode;
} __packed;

#define MGMT_EV_CONTROLLER_ERROR	0x0003
struct mgmt_ev_controller_error {
	__le16 index;
	__u8 error_code;
} __packed;
210 211 212 213 214 215 216 217 218 219

#define MGMT_EV_INDEX_ADDED		0x0004
struct mgmt_ev_index_added {
	__le16 index;
} __packed;

#define MGMT_EV_INDEX_REMOVED		0x0005
struct mgmt_ev_index_removed {
	__le16 index;
} __packed;
220 221

#define MGMT_EV_POWERED			0x0006
222 223

#define MGMT_EV_DISCOVERABLE		0x0007
224 225

#define MGMT_EV_CONNECTABLE		0x0008
226 227

#define MGMT_EV_PAIRABLE		0x0009
228 229 230 231 232 233 234

#define MGMT_EV_NEW_KEY			0x000A
struct mgmt_ev_new_key {
	__le16 index;
	struct mgmt_key_info key;
	__u8 old_key_type;
} __packed;
235 236 237 238 239 240 241 242 243 244 245 246

#define MGMT_EV_CONNECTED		0x000B
struct mgmt_ev_connected {
	__le16 index;
	bdaddr_t bdaddr;
} __packed;

#define MGMT_EV_DISCONNECTED		0x000C
struct mgmt_ev_disconnected {
	__le16 index;
	bdaddr_t bdaddr;
} __packed;
247 248 249 250 251 252 253

#define MGMT_EV_CONNECT_FAILED		0x000D
struct mgmt_ev_connect_failed {
	__le16 index;
	bdaddr_t bdaddr;
	__u8 status;
} __packed;
254 255 256 257 258 259

#define MGMT_EV_PIN_CODE_REQUEST	0x000E
struct mgmt_ev_pin_code_request {
	__le16 index;
	bdaddr_t bdaddr;
} __packed;
260 261 262 263 264 265 266

#define MGMT_EV_USER_CONFIRM_REQUEST	0x000F
struct mgmt_ev_user_confirm_request {
	__le16 index;
	bdaddr_t bdaddr;
	__le32 value;
} __packed;