blob: 04efc56d164158de513a5b5ca70c8df153edef33 [file] [log] [blame]
Johan Hedberg03811012010-12-08 00:21:06 +02001/*
2 BlueZ - Bluetooth protocol stack for Linux
Johan Hedbergea585ab2012-02-17 14:50:39 +02003
Johan Hedberg03811012010-12-08 00:21:06 +02004 Copyright (C) 2010 Nokia Corporation
Johan Hedbergea585ab2012-02-17 14:50:39 +02005 Copyright (C) 2011-2012 Intel Corporation
Johan Hedberg03811012010-12-08 00:21:06 +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
25/* Bluetooth HCI Management interface */
26
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040027#include <linux/module.h>
Johan Hedberg03811012010-12-08 00:21:06 +020028#include <asm/unaligned.h>
29
30#include <net/bluetooth/bluetooth.h>
31#include <net/bluetooth/hci_core.h>
Johan Hedberg71290692015-02-20 13:26:23 +020032#include <net/bluetooth/hci_sock.h>
Johan Hedberg4bc58f52014-05-20 09:45:47 +030033#include <net/bluetooth/l2cap.h>
Johan Hedberg03811012010-12-08 00:21:06 +020034#include <net/bluetooth/mgmt.h>
Marcel Holtmannac4b7232013-10-10 14:54:16 -070035
Johan Hedberg0857dd32014-12-19 13:40:20 +020036#include "hci_request.h"
Marcel Holtmannac4b7232013-10-10 14:54:16 -070037#include "smp.h"
Johan Hedberga380b6c2015-03-17 13:48:48 +020038#include "mgmt_util.h"
Johan Hedberg03811012010-12-08 00:21:06 +020039
Johan Hedberg2da9c552012-02-17 14:39:28 +020040#define MGMT_VERSION 1
Marcel Holtmannbeb1c212015-03-10 14:04:52 -070041#define MGMT_REVISION 9
Johan Hedberg02d98122010-12-13 21:07:04 +020042
Johan Hedberge70bb2e2012-02-13 16:59:33 +020043static const u16 mgmt_commands[] = {
44 MGMT_OP_READ_INDEX_LIST,
45 MGMT_OP_READ_INFO,
46 MGMT_OP_SET_POWERED,
47 MGMT_OP_SET_DISCOVERABLE,
48 MGMT_OP_SET_CONNECTABLE,
49 MGMT_OP_SET_FAST_CONNECTABLE,
Johan Hedbergb2939472014-07-30 09:22:23 +030050 MGMT_OP_SET_BONDABLE,
Johan Hedberge70bb2e2012-02-13 16:59:33 +020051 MGMT_OP_SET_LINK_SECURITY,
52 MGMT_OP_SET_SSP,
53 MGMT_OP_SET_HS,
54 MGMT_OP_SET_LE,
55 MGMT_OP_SET_DEV_CLASS,
56 MGMT_OP_SET_LOCAL_NAME,
57 MGMT_OP_ADD_UUID,
58 MGMT_OP_REMOVE_UUID,
59 MGMT_OP_LOAD_LINK_KEYS,
60 MGMT_OP_LOAD_LONG_TERM_KEYS,
61 MGMT_OP_DISCONNECT,
62 MGMT_OP_GET_CONNECTIONS,
63 MGMT_OP_PIN_CODE_REPLY,
64 MGMT_OP_PIN_CODE_NEG_REPLY,
65 MGMT_OP_SET_IO_CAPABILITY,
66 MGMT_OP_PAIR_DEVICE,
67 MGMT_OP_CANCEL_PAIR_DEVICE,
68 MGMT_OP_UNPAIR_DEVICE,
69 MGMT_OP_USER_CONFIRM_REPLY,
70 MGMT_OP_USER_CONFIRM_NEG_REPLY,
71 MGMT_OP_USER_PASSKEY_REPLY,
72 MGMT_OP_USER_PASSKEY_NEG_REPLY,
73 MGMT_OP_READ_LOCAL_OOB_DATA,
74 MGMT_OP_ADD_REMOTE_OOB_DATA,
75 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
76 MGMT_OP_START_DISCOVERY,
77 MGMT_OP_STOP_DISCOVERY,
78 MGMT_OP_CONFIRM_NAME,
79 MGMT_OP_BLOCK_DEVICE,
80 MGMT_OP_UNBLOCK_DEVICE,
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -070081 MGMT_OP_SET_DEVICE_ID,
Johan Hedberg4375f102013-09-25 13:26:10 +030082 MGMT_OP_SET_ADVERTISING,
Johan Hedberg0663ca22013-10-02 13:43:14 +030083 MGMT_OP_SET_BREDR,
Marcel Holtmannd13eafc2013-10-02 04:41:30 -070084 MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann7f72134e2013-10-11 14:44:58 -070085 MGMT_OP_SET_SCAN_PARAMS,
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -080086 MGMT_OP_SET_SECURE_CONN,
Marcel Holtmann4e39ac82014-01-31 11:55:22 -080087 MGMT_OP_SET_DEBUG_KEYS,
Johan Hedberg62b04cd2014-02-23 19:42:27 +020088 MGMT_OP_SET_PRIVACY,
Johan Hedberg41edf162014-02-18 10:19:35 +020089 MGMT_OP_LOAD_IRKS,
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +020090 MGMT_OP_GET_CONN_INFO,
Johan Hedberg95868422014-06-28 17:54:07 +030091 MGMT_OP_GET_CLOCK_INFO,
Marcel Holtmann2faade52014-06-29 19:44:03 +020092 MGMT_OP_ADD_DEVICE,
93 MGMT_OP_REMOVE_DEVICE,
Johan Hedberga26f3dc2014-07-02 17:37:29 +030094 MGMT_OP_LOAD_CONN_PARAM,
Marcel Holtmann73d1df22014-07-02 22:10:52 +020095 MGMT_OP_READ_UNCONF_INDEX_LIST,
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +020096 MGMT_OP_READ_CONFIG_INFO,
Marcel Holtmanndbece372014-07-04 18:11:55 +020097 MGMT_OP_SET_EXTERNAL_CONFIG,
Marcel Holtmann9713c172014-07-06 12:11:15 +020098 MGMT_OP_SET_PUBLIC_ADDRESS,
Jakub Pawlowski66ea9422014-12-05 10:55:59 +010099 MGMT_OP_START_SERVICE_DISCOVERY,
Marcel Holtmann4f0f1552015-03-14 22:43:19 -0700100 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
Marcel Holtmann96f14742015-03-14 19:27:57 -0700101 MGMT_OP_READ_EXT_INDEX_LIST,
Marcel Holtmannd3d53052015-03-14 20:53:25 -0700102 MGMT_OP_READ_ADV_FEATURES,
Arman Uguray24b4f382015-03-23 15:57:12 -0700103 MGMT_OP_ADD_ADVERTISING,
Arman Ugurayda9293352015-03-23 15:57:13 -0700104 MGMT_OP_REMOVE_ADVERTISING,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200105};
106
107static const u16 mgmt_events[] = {
108 MGMT_EV_CONTROLLER_ERROR,
109 MGMT_EV_INDEX_ADDED,
110 MGMT_EV_INDEX_REMOVED,
111 MGMT_EV_NEW_SETTINGS,
112 MGMT_EV_CLASS_OF_DEV_CHANGED,
113 MGMT_EV_LOCAL_NAME_CHANGED,
114 MGMT_EV_NEW_LINK_KEY,
115 MGMT_EV_NEW_LONG_TERM_KEY,
116 MGMT_EV_DEVICE_CONNECTED,
117 MGMT_EV_DEVICE_DISCONNECTED,
118 MGMT_EV_CONNECT_FAILED,
119 MGMT_EV_PIN_CODE_REQUEST,
120 MGMT_EV_USER_CONFIRM_REQUEST,
121 MGMT_EV_USER_PASSKEY_REQUEST,
122 MGMT_EV_AUTH_FAILED,
123 MGMT_EV_DEVICE_FOUND,
124 MGMT_EV_DISCOVERING,
125 MGMT_EV_DEVICE_BLOCKED,
126 MGMT_EV_DEVICE_UNBLOCKED,
127 MGMT_EV_DEVICE_UNPAIRED,
Johan Hedberg92a25252012-09-06 18:39:26 +0300128 MGMT_EV_PASSKEY_NOTIFY,
Marcel Holtmann1b60ef22014-02-21 21:35:30 -0800129 MGMT_EV_NEW_IRK,
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -0700130 MGMT_EV_NEW_CSRK,
Marcel Holtmann8afef092014-06-29 22:28:34 +0200131 MGMT_EV_DEVICE_ADDED,
132 MGMT_EV_DEVICE_REMOVED,
Andre Guedesffb5a8272014-07-01 18:10:11 -0300133 MGMT_EV_NEW_CONN_PARAM,
Marcel Holtmann0602a8a2014-07-02 21:30:54 +0200134 MGMT_EV_UNCONF_INDEX_ADDED,
Marcel Holtmannedd38962014-07-02 21:30:55 +0200135 MGMT_EV_UNCONF_INDEX_REMOVED,
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200136 MGMT_EV_NEW_CONFIG_OPTIONS,
Marcel Holtmannced85542015-03-14 19:27:56 -0700137 MGMT_EV_EXT_INDEX_ADDED,
138 MGMT_EV_EXT_INDEX_REMOVED,
Marcel Holtmann72000df2015-03-16 16:11:21 -0700139 MGMT_EV_LOCAL_OOB_DATA_UPDATED,
Arman Uguray24b4f382015-03-23 15:57:12 -0700140 MGMT_EV_ADVERTISING_ADDED,
141 MGMT_EV_ADVERTISING_REMOVED,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200142};
143
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700144static const u16 mgmt_untrusted_commands[] = {
145 MGMT_OP_READ_INDEX_LIST,
146 MGMT_OP_READ_INFO,
147 MGMT_OP_READ_UNCONF_INDEX_LIST,
148 MGMT_OP_READ_CONFIG_INFO,
149 MGMT_OP_READ_EXT_INDEX_LIST,
150};
151
152static const u16 mgmt_untrusted_events[] = {
153 MGMT_EV_INDEX_ADDED,
154 MGMT_EV_INDEX_REMOVED,
155 MGMT_EV_NEW_SETTINGS,
156 MGMT_EV_CLASS_OF_DEV_CHANGED,
157 MGMT_EV_LOCAL_NAME_CHANGED,
158 MGMT_EV_UNCONF_INDEX_ADDED,
159 MGMT_EV_UNCONF_INDEX_REMOVED,
160 MGMT_EV_NEW_CONFIG_OPTIONS,
161 MGMT_EV_EXT_INDEX_ADDED,
162 MGMT_EV_EXT_INDEX_REMOVED,
163};
164
Marcel Holtmann17b02e62012-03-01 14:32:37 -0800165#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000)
Johan Hedberg7d785252011-12-15 00:47:39 +0200166
Johan Hedbergd25b78e2015-01-27 12:55:52 +0200167#define ZERO_KEY "\x00\x00\x00\x00\x00\x00\x00\x00" \
168 "\x00\x00\x00\x00\x00\x00\x00\x00"
169
Johan Hedbergca69b792011-11-11 18:10:00 +0200170/* HCI to MGMT error code conversion table */
171static u8 mgmt_status_table[] = {
172 MGMT_STATUS_SUCCESS,
173 MGMT_STATUS_UNKNOWN_COMMAND, /* Unknown Command */
174 MGMT_STATUS_NOT_CONNECTED, /* No Connection */
175 MGMT_STATUS_FAILED, /* Hardware Failure */
176 MGMT_STATUS_CONNECT_FAILED, /* Page Timeout */
177 MGMT_STATUS_AUTH_FAILED, /* Authentication Failed */
Johan Hedbergeadd6632014-01-13 17:15:53 +0200178 MGMT_STATUS_AUTH_FAILED, /* PIN or Key Missing */
Johan Hedbergca69b792011-11-11 18:10:00 +0200179 MGMT_STATUS_NO_RESOURCES, /* Memory Full */
180 MGMT_STATUS_TIMEOUT, /* Connection Timeout */
181 MGMT_STATUS_NO_RESOURCES, /* Max Number of Connections */
182 MGMT_STATUS_NO_RESOURCES, /* Max Number of SCO Connections */
183 MGMT_STATUS_ALREADY_CONNECTED, /* ACL Connection Exists */
184 MGMT_STATUS_BUSY, /* Command Disallowed */
185 MGMT_STATUS_NO_RESOURCES, /* Rejected Limited Resources */
186 MGMT_STATUS_REJECTED, /* Rejected Security */
187 MGMT_STATUS_REJECTED, /* Rejected Personal */
188 MGMT_STATUS_TIMEOUT, /* Host Timeout */
189 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Feature */
190 MGMT_STATUS_INVALID_PARAMS, /* Invalid Parameters */
191 MGMT_STATUS_DISCONNECTED, /* OE User Ended Connection */
192 MGMT_STATUS_NO_RESOURCES, /* OE Low Resources */
193 MGMT_STATUS_DISCONNECTED, /* OE Power Off */
194 MGMT_STATUS_DISCONNECTED, /* Connection Terminated */
195 MGMT_STATUS_BUSY, /* Repeated Attempts */
196 MGMT_STATUS_REJECTED, /* Pairing Not Allowed */
197 MGMT_STATUS_FAILED, /* Unknown LMP PDU */
198 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Remote Feature */
199 MGMT_STATUS_REJECTED, /* SCO Offset Rejected */
200 MGMT_STATUS_REJECTED, /* SCO Interval Rejected */
201 MGMT_STATUS_REJECTED, /* Air Mode Rejected */
202 MGMT_STATUS_INVALID_PARAMS, /* Invalid LMP Parameters */
203 MGMT_STATUS_FAILED, /* Unspecified Error */
204 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported LMP Parameter Value */
205 MGMT_STATUS_FAILED, /* Role Change Not Allowed */
206 MGMT_STATUS_TIMEOUT, /* LMP Response Timeout */
207 MGMT_STATUS_FAILED, /* LMP Error Transaction Collision */
208 MGMT_STATUS_FAILED, /* LMP PDU Not Allowed */
209 MGMT_STATUS_REJECTED, /* Encryption Mode Not Accepted */
210 MGMT_STATUS_FAILED, /* Unit Link Key Used */
211 MGMT_STATUS_NOT_SUPPORTED, /* QoS Not Supported */
212 MGMT_STATUS_TIMEOUT, /* Instant Passed */
213 MGMT_STATUS_NOT_SUPPORTED, /* Pairing Not Supported */
214 MGMT_STATUS_FAILED, /* Transaction Collision */
215 MGMT_STATUS_INVALID_PARAMS, /* Unacceptable Parameter */
216 MGMT_STATUS_REJECTED, /* QoS Rejected */
217 MGMT_STATUS_NOT_SUPPORTED, /* Classification Not Supported */
218 MGMT_STATUS_REJECTED, /* Insufficient Security */
219 MGMT_STATUS_INVALID_PARAMS, /* Parameter Out Of Range */
220 MGMT_STATUS_BUSY, /* Role Switch Pending */
221 MGMT_STATUS_FAILED, /* Slot Violation */
222 MGMT_STATUS_FAILED, /* Role Switch Failed */
223 MGMT_STATUS_INVALID_PARAMS, /* EIR Too Large */
224 MGMT_STATUS_NOT_SUPPORTED, /* Simple Pairing Not Supported */
225 MGMT_STATUS_BUSY, /* Host Busy Pairing */
226 MGMT_STATUS_REJECTED, /* Rejected, No Suitable Channel */
227 MGMT_STATUS_BUSY, /* Controller Busy */
228 MGMT_STATUS_INVALID_PARAMS, /* Unsuitable Connection Interval */
229 MGMT_STATUS_TIMEOUT, /* Directed Advertising Timeout */
230 MGMT_STATUS_AUTH_FAILED, /* Terminated Due to MIC Failure */
231 MGMT_STATUS_CONNECT_FAILED, /* Connection Establishment Failed */
232 MGMT_STATUS_CONNECT_FAILED, /* MAC Connection Failed */
233};
234
235static u8 mgmt_status(u8 hci_status)
236{
237 if (hci_status < ARRAY_SIZE(mgmt_status_table))
238 return mgmt_status_table[hci_status];
239
240 return MGMT_STATUS_FAILED;
241}
242
Marcel Holtmannc08b1a12015-03-14 19:27:59 -0700243static int mgmt_index_event(u16 event, struct hci_dev *hdev, void *data,
244 u16 len, int flag)
Marcel Holtmannf9207332015-03-14 19:27:55 -0700245{
Marcel Holtmannc08b1a12015-03-14 19:27:59 -0700246 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
247 flag, NULL);
Marcel Holtmannf9207332015-03-14 19:27:55 -0700248}
249
Marcel Holtmann72000df2015-03-16 16:11:21 -0700250static int mgmt_limited_event(u16 event, struct hci_dev *hdev, void *data,
251 u16 len, int flag, struct sock *skip_sk)
252{
253 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
254 flag, skip_sk);
255}
256
Marcel Holtmannf6b77122015-03-14 19:28:05 -0700257static int mgmt_generic_event(u16 event, struct hci_dev *hdev, void *data,
258 u16 len, struct sock *skip_sk)
259{
260 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
261 HCI_MGMT_GENERIC_EVENTS, skip_sk);
262}
263
Johan Hedberg7a00ff42015-03-06 21:08:56 +0200264static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 len,
265 struct sock *skip_sk)
266{
267 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
Marcel Holtmannc08b1a12015-03-14 19:27:59 -0700268 HCI_SOCK_TRUSTED, skip_sk);
Johan Hedberg7a00ff42015-03-06 21:08:56 +0200269}
270
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300271static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
272 u16 data_len)
Johan Hedberga38528f2011-01-22 06:46:43 +0200273{
274 struct mgmt_rp_read_version rp;
275
276 BT_DBG("sock %p", sk);
277
278 rp.version = MGMT_VERSION;
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700279 rp.revision = cpu_to_le16(MGMT_REVISION);
Johan Hedberga38528f2011-01-22 06:46:43 +0200280
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200281 return mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0,
282 &rp, sizeof(rp));
Johan Hedberga38528f2011-01-22 06:46:43 +0200283}
284
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300285static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
286 u16 data_len)
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200287{
288 struct mgmt_rp_read_commands *rp;
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700289 u16 num_commands, num_events;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200290 size_t rp_size;
291 int i, err;
292
293 BT_DBG("sock %p", sk);
294
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700295 if (hci_sock_test_flag(sk, HCI_SOCK_TRUSTED)) {
296 num_commands = ARRAY_SIZE(mgmt_commands);
297 num_events = ARRAY_SIZE(mgmt_events);
298 } else {
299 num_commands = ARRAY_SIZE(mgmt_untrusted_commands);
300 num_events = ARRAY_SIZE(mgmt_untrusted_events);
301 }
302
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200303 rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));
304
305 rp = kmalloc(rp_size, GFP_KERNEL);
306 if (!rp)
307 return -ENOMEM;
308
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700309 rp->num_commands = cpu_to_le16(num_commands);
310 rp->num_events = cpu_to_le16(num_events);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200311
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700312 if (hci_sock_test_flag(sk, HCI_SOCK_TRUSTED)) {
313 __le16 *opcode = rp->opcodes;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200314
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700315 for (i = 0; i < num_commands; i++, opcode++)
316 put_unaligned_le16(mgmt_commands[i], opcode);
317
318 for (i = 0; i < num_events; i++, opcode++)
319 put_unaligned_le16(mgmt_events[i], opcode);
320 } else {
321 __le16 *opcode = rp->opcodes;
322
323 for (i = 0; i < num_commands; i++, opcode++)
324 put_unaligned_le16(mgmt_untrusted_commands[i], opcode);
325
326 for (i = 0; i < num_events; i++, opcode++)
327 put_unaligned_le16(mgmt_untrusted_events[i], opcode);
328 }
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200329
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200330 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0,
331 rp, rp_size);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200332 kfree(rp);
333
334 return err;
335}
336
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300337static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
338 u16 data_len)
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200339{
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200340 struct mgmt_rp_read_index_list *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200341 struct hci_dev *d;
Johan Hedberga38528f2011-01-22 06:46:43 +0200342 size_t rp_len;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200343 u16 count;
Johan Hedberg476e44c2012-10-19 20:10:46 +0300344 int err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200345
346 BT_DBG("sock %p", sk);
347
348 read_lock(&hci_dev_list_lock);
349
350 count = 0;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300351 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200352 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700353 !hci_dev_test_flag(d, HCI_UNCONFIGURED))
Marcel Holtmann1514b892013-10-06 08:25:01 -0700354 count++;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200355 }
356
Johan Hedberga38528f2011-01-22 06:46:43 +0200357 rp_len = sizeof(*rp) + (2 * count);
358 rp = kmalloc(rp_len, GFP_ATOMIC);
359 if (!rp) {
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100360 read_unlock(&hci_dev_list_lock);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200361 return -ENOMEM;
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100362 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200363
Johan Hedberg476e44c2012-10-19 20:10:46 +0300364 count = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200365 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700366 if (hci_dev_test_flag(d, HCI_SETUP) ||
367 hci_dev_test_flag(d, HCI_CONFIG) ||
368 hci_dev_test_flag(d, HCI_USER_CHANNEL))
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200369 continue;
370
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200371 /* Devices marked as raw-only are neither configured
372 * nor unconfigured controllers.
373 */
374 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
Marcel Holtmann0736cfa2013-08-26 21:40:51 -0700375 continue;
376
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200377 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700378 !hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
Marcel Holtmann1514b892013-10-06 08:25:01 -0700379 rp->index[count++] = cpu_to_le16(d->id);
380 BT_DBG("Added hci%u", d->id);
381 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200382 }
383
Johan Hedberg476e44c2012-10-19 20:10:46 +0300384 rp->num_controllers = cpu_to_le16(count);
385 rp_len = sizeof(*rp) + (2 * count);
386
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200387 read_unlock(&hci_dev_list_lock);
388
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200389 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST,
390 0, rp, rp_len);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200391
Johan Hedberga38528f2011-01-22 06:46:43 +0200392 kfree(rp);
393
394 return err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200395}
396
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200397static int read_unconf_index_list(struct sock *sk, struct hci_dev *hdev,
398 void *data, u16 data_len)
399{
400 struct mgmt_rp_read_unconf_index_list *rp;
401 struct hci_dev *d;
402 size_t rp_len;
403 u16 count;
404 int err;
405
406 BT_DBG("sock %p", sk);
407
408 read_lock(&hci_dev_list_lock);
409
410 count = 0;
411 list_for_each_entry(d, &hci_dev_list, list) {
412 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700413 hci_dev_test_flag(d, HCI_UNCONFIGURED))
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200414 count++;
415 }
416
417 rp_len = sizeof(*rp) + (2 * count);
418 rp = kmalloc(rp_len, GFP_ATOMIC);
419 if (!rp) {
420 read_unlock(&hci_dev_list_lock);
421 return -ENOMEM;
422 }
423
424 count = 0;
425 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700426 if (hci_dev_test_flag(d, HCI_SETUP) ||
427 hci_dev_test_flag(d, HCI_CONFIG) ||
428 hci_dev_test_flag(d, HCI_USER_CHANNEL))
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200429 continue;
430
431 /* Devices marked as raw-only are neither configured
432 * nor unconfigured controllers.
433 */
434 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
435 continue;
436
437 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700438 hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200439 rp->index[count++] = cpu_to_le16(d->id);
440 BT_DBG("Added hci%u", d->id);
441 }
442 }
443
444 rp->num_controllers = cpu_to_le16(count);
445 rp_len = sizeof(*rp) + (2 * count);
446
447 read_unlock(&hci_dev_list_lock);
448
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200449 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
450 MGMT_OP_READ_UNCONF_INDEX_LIST, 0, rp, rp_len);
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200451
452 kfree(rp);
453
454 return err;
455}
456
Marcel Holtmann96f14742015-03-14 19:27:57 -0700457static int read_ext_index_list(struct sock *sk, struct hci_dev *hdev,
458 void *data, u16 data_len)
459{
460 struct mgmt_rp_read_ext_index_list *rp;
461 struct hci_dev *d;
462 size_t rp_len;
463 u16 count;
464 int err;
465
466 BT_DBG("sock %p", sk);
467
468 read_lock(&hci_dev_list_lock);
469
470 count = 0;
471 list_for_each_entry(d, &hci_dev_list, list) {
472 if (d->dev_type == HCI_BREDR || d->dev_type == HCI_AMP)
473 count++;
474 }
475
476 rp_len = sizeof(*rp) + (sizeof(rp->entry[0]) * count);
477 rp = kmalloc(rp_len, GFP_ATOMIC);
478 if (!rp) {
479 read_unlock(&hci_dev_list_lock);
480 return -ENOMEM;
481 }
482
483 count = 0;
484 list_for_each_entry(d, &hci_dev_list, list) {
485 if (hci_dev_test_flag(d, HCI_SETUP) ||
486 hci_dev_test_flag(d, HCI_CONFIG) ||
487 hci_dev_test_flag(d, HCI_USER_CHANNEL))
488 continue;
489
490 /* Devices marked as raw-only are neither configured
491 * nor unconfigured controllers.
492 */
493 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
494 continue;
495
496 if (d->dev_type == HCI_BREDR) {
497 if (hci_dev_test_flag(d, HCI_UNCONFIGURED))
498 rp->entry[count].type = 0x01;
499 else
500 rp->entry[count].type = 0x00;
501 } else if (d->dev_type == HCI_AMP) {
502 rp->entry[count].type = 0x02;
503 } else {
504 continue;
505 }
506
507 rp->entry[count].bus = d->bus;
508 rp->entry[count++].index = cpu_to_le16(d->id);
509 BT_DBG("Added hci%u", d->id);
510 }
511
512 rp->num_controllers = cpu_to_le16(count);
513 rp_len = sizeof(*rp) + (sizeof(rp->entry[0]) * count);
514
515 read_unlock(&hci_dev_list_lock);
516
517 /* If this command is called at least once, then all the
518 * default index and unconfigured index events are disabled
519 * and from now on only extended index events are used.
520 */
521 hci_sock_set_flag(sk, HCI_MGMT_EXT_INDEX_EVENTS);
522 hci_sock_clear_flag(sk, HCI_MGMT_INDEX_EVENTS);
523 hci_sock_clear_flag(sk, HCI_MGMT_UNCONF_INDEX_EVENTS);
524
525 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
526 MGMT_OP_READ_EXT_INDEX_LIST, 0, rp, rp_len);
527
528 kfree(rp);
529
530 return err;
531}
532
Marcel Holtmanndbece372014-07-04 18:11:55 +0200533static bool is_configured(struct hci_dev *hdev)
534{
535 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700536 !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
Marcel Holtmanndbece372014-07-04 18:11:55 +0200537 return false;
538
539 if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
540 !bacmp(&hdev->public_addr, BDADDR_ANY))
541 return false;
542
543 return true;
544}
545
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200546static __le32 get_missing_options(struct hci_dev *hdev)
547{
548 u32 options = 0;
549
Marcel Holtmanndbece372014-07-04 18:11:55 +0200550 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700551 !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200552 options |= MGMT_OPTION_EXTERNAL_CONFIG;
553
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200554 if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
555 !bacmp(&hdev->public_addr, BDADDR_ANY))
556 options |= MGMT_OPTION_PUBLIC_ADDRESS;
557
558 return cpu_to_le32(options);
559}
560
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200561static int new_options(struct hci_dev *hdev, struct sock *skip)
562{
563 __le32 options = get_missing_options(hdev);
564
Marcel Holtmannf6b77122015-03-14 19:28:05 -0700565 return mgmt_generic_event(MGMT_EV_NEW_CONFIG_OPTIONS, hdev, &options,
566 sizeof(options), skip);
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200567}
568
Marcel Holtmanndbece372014-07-04 18:11:55 +0200569static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
570{
571 __le32 options = get_missing_options(hdev);
572
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200573 return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &options,
574 sizeof(options));
Marcel Holtmanndbece372014-07-04 18:11:55 +0200575}
576
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200577static int read_config_info(struct sock *sk, struct hci_dev *hdev,
578 void *data, u16 data_len)
579{
580 struct mgmt_rp_read_config_info rp;
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200581 u32 options = 0;
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200582
583 BT_DBG("sock %p %s", sk, hdev->name);
584
585 hci_dev_lock(hdev);
586
587 memset(&rp, 0, sizeof(rp));
588 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200589
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200590 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
591 options |= MGMT_OPTION_EXTERNAL_CONFIG;
592
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200593 if (hdev->set_bdaddr)
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200594 options |= MGMT_OPTION_PUBLIC_ADDRESS;
595
596 rp.supported_options = cpu_to_le32(options);
597 rp.missing_options = get_missing_options(hdev);
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200598
599 hci_dev_unlock(hdev);
600
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200601 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0,
602 &rp, sizeof(rp));
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200603}
604
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200605static u32 get_supported_settings(struct hci_dev *hdev)
Johan Hedberg03811012010-12-08 00:21:06 +0200606{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200607 u32 settings = 0;
Johan Hedberg03811012010-12-08 00:21:06 +0200608
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200609 settings |= MGMT_SETTING_POWERED;
Johan Hedbergb2939472014-07-30 09:22:23 +0300610 settings |= MGMT_SETTING_BONDABLE;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800611 settings |= MGMT_SETTING_DEBUG_KEYS;
Johan Hedberg3742abf2014-07-08 16:07:34 +0300612 settings |= MGMT_SETTING_CONNECTABLE;
613 settings |= MGMT_SETTING_DISCOVERABLE;
Johan Hedberg03811012010-12-08 00:21:06 +0200614
Andre Guedesed3fa312012-07-24 15:03:46 -0300615 if (lmp_bredr_capable(hdev)) {
Johan Hedberg1a47aee2013-03-15 17:07:06 -0500616 if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
617 settings |= MGMT_SETTING_FAST_CONNECTABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200618 settings |= MGMT_SETTING_BREDR;
619 settings |= MGMT_SETTING_LINK_SECURITY;
Marcel Holtmanna82974c2013-10-11 09:48:47 -0700620
621 if (lmp_ssp_capable(hdev)) {
622 settings |= MGMT_SETTING_SSP;
623 settings |= MGMT_SETTING_HS;
624 }
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800625
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -0800626 if (lmp_sc_capable(hdev))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800627 settings |= MGMT_SETTING_SECURE_CONN;
Marcel Holtmann848566b2013-10-01 22:59:22 -0700628 }
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100629
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300630 if (lmp_le_capable(hdev)) {
Marcel Holtmann9d428202012-05-03 07:12:31 +0200631 settings |= MGMT_SETTING_LE;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300632 settings |= MGMT_SETTING_ADVERTISING;
Johan Hedberga3209692014-05-26 11:23:35 +0300633 settings |= MGMT_SETTING_SECURE_CONN;
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200634 settings |= MGMT_SETTING_PRIVACY;
Marcel Holtmann93690c22015-03-06 10:11:21 -0800635 settings |= MGMT_SETTING_STATIC_ADDRESS;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300636 }
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200637
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200638 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
639 hdev->set_bdaddr)
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200640 settings |= MGMT_SETTING_CONFIGURATION;
641
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200642 return settings;
643}
Johan Hedbergebc99fe2011-01-04 11:54:26 +0200644
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200645static u32 get_current_settings(struct hci_dev *hdev)
646{
647 u32 settings = 0;
Johan Hedbergdc4fe302011-03-16 14:29:36 +0200648
Johan Hedbergf1f0eb02012-02-21 17:15:41 +0200649 if (hdev_is_powered(hdev))
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100650 settings |= MGMT_SETTING_POWERED;
651
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700652 if (hci_dev_test_flag(hdev, HCI_CONNECTABLE))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200653 settings |= MGMT_SETTING_CONNECTABLE;
654
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700655 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
Johan Hedberg1a4d3c42013-03-15 17:07:08 -0500656 settings |= MGMT_SETTING_FAST_CONNECTABLE;
657
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700658 if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200659 settings |= MGMT_SETTING_DISCOVERABLE;
660
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700661 if (hci_dev_test_flag(hdev, HCI_BONDABLE))
Johan Hedbergb2939472014-07-30 09:22:23 +0300662 settings |= MGMT_SETTING_BONDABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200663
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700664 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200665 settings |= MGMT_SETTING_BREDR;
666
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700667 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200668 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200669
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700670 if (hci_dev_test_flag(hdev, HCI_LINK_SECURITY))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200671 settings |= MGMT_SETTING_LINK_SECURITY;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200672
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700673 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200674 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200675
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700676 if (hci_dev_test_flag(hdev, HCI_HS_ENABLED))
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200677 settings |= MGMT_SETTING_HS;
678
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700679 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300680 settings |= MGMT_SETTING_ADVERTISING;
681
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700682 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800683 settings |= MGMT_SETTING_SECURE_CONN;
684
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700685 if (hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS))
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800686 settings |= MGMT_SETTING_DEBUG_KEYS;
687
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700688 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200689 settings |= MGMT_SETTING_PRIVACY;
690
Marcel Holtmann93690c22015-03-06 10:11:21 -0800691 /* The current setting for static address has two purposes. The
692 * first is to indicate if the static address will be used and
693 * the second is to indicate if it is actually set.
694 *
695 * This means if the static address is not configured, this flag
Marcel Holtmann08dc0e92015-03-25 18:32:13 -0700696 * will never be set. If the address is configured, then if the
Marcel Holtmann93690c22015-03-06 10:11:21 -0800697 * address is actually used decides if the flag is set or not.
698 *
699 * For single mode LE only controllers and dual-mode controllers
700 * with BR/EDR disabled, the existence of the static address will
701 * be evaluated.
702 */
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -0700703 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700704 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
Marcel Holtmann93690c22015-03-06 10:11:21 -0800705 !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
706 if (bacmp(&hdev->static_addr, BDADDR_ANY))
707 settings |= MGMT_SETTING_STATIC_ADDRESS;
708 }
709
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200710 return settings;
Johan Hedbergc542a062011-01-26 13:11:03 +0200711}
712
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300713#define PNP_INFO_SVCLASS_ID 0x1200
714
Johan Hedberg213202e2013-01-27 00:31:33 +0200715static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
716{
717 u8 *ptr = data, *uuids_start = NULL;
718 struct bt_uuid *uuid;
719
720 if (len < 4)
721 return ptr;
722
723 list_for_each_entry(uuid, &hdev->uuids, list) {
724 u16 uuid16;
725
726 if (uuid->size != 16)
727 continue;
728
729 uuid16 = get_unaligned_le16(&uuid->uuid[12]);
730 if (uuid16 < 0x1100)
731 continue;
732
733 if (uuid16 == PNP_INFO_SVCLASS_ID)
734 continue;
735
736 if (!uuids_start) {
737 uuids_start = ptr;
738 uuids_start[0] = 1;
739 uuids_start[1] = EIR_UUID16_ALL;
740 ptr += 2;
741 }
742
743 /* Stop if not enough space to put next UUID */
744 if ((ptr - data) + sizeof(u16) > len) {
745 uuids_start[1] = EIR_UUID16_SOME;
746 break;
747 }
748
749 *ptr++ = (uuid16 & 0x00ff);
750 *ptr++ = (uuid16 & 0xff00) >> 8;
751 uuids_start[0] += sizeof(uuid16);
752 }
753
754 return ptr;
755}
756
Johan Hedbergcdf19632013-01-27 00:31:34 +0200757static u8 *create_uuid32_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
758{
759 u8 *ptr = data, *uuids_start = NULL;
760 struct bt_uuid *uuid;
761
762 if (len < 6)
763 return ptr;
764
765 list_for_each_entry(uuid, &hdev->uuids, list) {
766 if (uuid->size != 32)
767 continue;
768
769 if (!uuids_start) {
770 uuids_start = ptr;
771 uuids_start[0] = 1;
772 uuids_start[1] = EIR_UUID32_ALL;
773 ptr += 2;
774 }
775
776 /* Stop if not enough space to put next UUID */
777 if ((ptr - data) + sizeof(u32) > len) {
778 uuids_start[1] = EIR_UUID32_SOME;
779 break;
780 }
781
782 memcpy(ptr, &uuid->uuid[12], sizeof(u32));
783 ptr += sizeof(u32);
784 uuids_start[0] += sizeof(u32);
785 }
786
787 return ptr;
788}
789
Johan Hedbergc00d5752013-01-27 00:31:35 +0200790static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
791{
792 u8 *ptr = data, *uuids_start = NULL;
793 struct bt_uuid *uuid;
794
795 if (len < 18)
796 return ptr;
797
798 list_for_each_entry(uuid, &hdev->uuids, list) {
799 if (uuid->size != 128)
800 continue;
801
802 if (!uuids_start) {
803 uuids_start = ptr;
804 uuids_start[0] = 1;
805 uuids_start[1] = EIR_UUID128_ALL;
806 ptr += 2;
807 }
808
809 /* Stop if not enough space to put next UUID */
810 if ((ptr - data) + 16 > len) {
811 uuids_start[1] = EIR_UUID128_SOME;
812 break;
813 }
814
815 memcpy(ptr, uuid->uuid, 16);
816 ptr += 16;
817 uuids_start[0] += 16;
818 }
819
820 return ptr;
821}
822
Johan Hedberg333ae952015-03-17 13:48:47 +0200823static struct mgmt_pending_cmd *pending_find(u16 opcode, struct hci_dev *hdev)
824{
825 return mgmt_pending_find(HCI_CHANNEL_CONTROL, opcode, hdev);
826}
827
Johan Hedberg333ae952015-03-17 13:48:47 +0200828static struct mgmt_pending_cmd *pending_find_data(u16 opcode,
829 struct hci_dev *hdev,
830 const void *data)
831{
832 return mgmt_pending_find_data(HCI_CHANNEL_CONTROL, opcode, hdev, data);
833}
834
Florian Grandel91aa9bb2015-06-18 03:16:36 +0200835static u8 get_current_adv_instance(struct hci_dev *hdev)
836{
837 /* The "Set Advertising" setting supersedes the "Add Advertising"
838 * setting. Here we set the advertising data based on which
839 * setting was set. When neither apply, default to the global settings,
840 * represented by instance "0".
841 */
842 if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
843 !hci_dev_test_flag(hdev, HCI_ADVERTISING))
Florian Grandel3ff37e62015-06-18 03:16:39 +0200844 return hdev->cur_adv_instance;
Florian Grandel91aa9bb2015-06-18 03:16:36 +0200845
846 return 0x00;
847}
848
Arman Uguray4117ed72015-03-23 15:57:14 -0700849static u8 create_default_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700850{
Marcel Holtmann7a5f4992013-10-16 00:16:49 -0700851 u8 ad_len = 0;
852 size_t name_len;
853
854 name_len = strlen(hdev->dev_name);
855 if (name_len > 0) {
856 size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2;
857
858 if (name_len > max_len) {
859 name_len = max_len;
860 ptr[1] = EIR_NAME_SHORT;
861 } else
862 ptr[1] = EIR_NAME_COMPLETE;
863
864 ptr[0] = name_len + 1;
865
866 memcpy(ptr + 2, hdev->dev_name, name_len);
867
868 ad_len += (name_len + 2);
869 ptr += (name_len + 2);
870 }
871
872 return ad_len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700873}
874
Florian Grandelca21fbe2015-06-18 03:16:43 +0200875static u8 create_instance_scan_rsp_data(struct hci_dev *hdev, u8 instance,
876 u8 *ptr)
Arman Uguray4117ed72015-03-23 15:57:14 -0700877{
Florian Grandelca21fbe2015-06-18 03:16:43 +0200878 struct adv_info *adv_instance;
879
880 adv_instance = hci_find_adv_instance(hdev, instance);
881 if (!adv_instance)
882 return 0;
883
Arman Uguray4117ed72015-03-23 15:57:14 -0700884 /* TODO: Set the appropriate entries based on advertising instance flags
885 * here once flags other than 0 are supported.
886 */
Florian Grandelca21fbe2015-06-18 03:16:43 +0200887 memcpy(ptr, adv_instance->scan_rsp_data,
888 adv_instance->scan_rsp_len);
Arman Uguray4117ed72015-03-23 15:57:14 -0700889
Florian Grandelca21fbe2015-06-18 03:16:43 +0200890 return adv_instance->scan_rsp_len;
Arman Uguray4117ed72015-03-23 15:57:14 -0700891}
892
Florian Grandelefae0022015-06-18 03:16:37 +0200893static void update_inst_scan_rsp_data(struct hci_request *req, u8 instance)
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700894{
895 struct hci_dev *hdev = req->hdev;
896 struct hci_cp_le_set_scan_rsp_data cp;
897 u8 len;
898
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700899 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700900 return;
901
902 memset(&cp, 0, sizeof(cp));
903
Arman Uguray4117ed72015-03-23 15:57:14 -0700904 if (instance)
Florian Grandelca21fbe2015-06-18 03:16:43 +0200905 len = create_instance_scan_rsp_data(hdev, instance, cp.data);
Arman Uguray4117ed72015-03-23 15:57:14 -0700906 else
907 len = create_default_scan_rsp_data(hdev, cp.data);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700908
Johan Hedbergeb438b52013-10-16 15:31:07 +0300909 if (hdev->scan_rsp_data_len == len &&
Arman Uguray4117ed72015-03-23 15:57:14 -0700910 !memcmp(cp.data, hdev->scan_rsp_data, len))
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700911 return;
912
Johan Hedbergeb438b52013-10-16 15:31:07 +0300913 memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
914 hdev->scan_rsp_data_len = len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700915
916 cp.length = len;
917
918 hci_req_add(req, HCI_OP_LE_SET_SCAN_RSP_DATA, sizeof(cp), &cp);
919}
920
Arman Uguray4117ed72015-03-23 15:57:14 -0700921static void update_scan_rsp_data(struct hci_request *req)
922{
Florian Grandelefae0022015-06-18 03:16:37 +0200923 update_inst_scan_rsp_data(req, get_current_adv_instance(req->hdev));
Arman Uguray4117ed72015-03-23 15:57:14 -0700924}
925
Johan Hedberg9a43e252013-10-20 19:00:07 +0300926static u8 get_adv_discov_flags(struct hci_dev *hdev)
927{
Johan Hedberg3b0602c2015-03-06 21:08:55 +0200928 struct mgmt_pending_cmd *cmd;
Johan Hedberg9a43e252013-10-20 19:00:07 +0300929
930 /* If there's a pending mgmt command the flags will not yet have
931 * their final values, so check for this first.
932 */
Johan Hedberg333ae952015-03-17 13:48:47 +0200933 cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg9a43e252013-10-20 19:00:07 +0300934 if (cmd) {
935 struct mgmt_mode *cp = cmd->param;
936 if (cp->val == 0x01)
937 return LE_AD_GENERAL;
938 else if (cp->val == 0x02)
939 return LE_AD_LIMITED;
940 } else {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700941 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
Johan Hedberg9a43e252013-10-20 19:00:07 +0300942 return LE_AD_LIMITED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700943 else if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
Johan Hedberg9a43e252013-10-20 19:00:07 +0300944 return LE_AD_GENERAL;
945 }
946
947 return 0;
948}
949
Arman Uguraye7a685d2015-03-25 18:53:40 -0700950static bool get_connectable(struct hci_dev *hdev)
951{
952 struct mgmt_pending_cmd *cmd;
953
954 /* If there's a pending mgmt command the flag will not yet have
955 * it's final value, so check for this first.
956 */
957 cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
958 if (cmd) {
959 struct mgmt_mode *cp = cmd->param;
960
961 return cp->val;
962 }
963
964 return hci_dev_test_flag(hdev, HCI_CONNECTABLE);
965}
966
967static u32 get_adv_instance_flags(struct hci_dev *hdev, u8 instance)
968{
969 u32 flags;
Florian Grandel411b4122015-06-18 03:16:40 +0200970 struct adv_info *adv_instance;
Arman Uguraye7a685d2015-03-25 18:53:40 -0700971
Florian Grandelbea28e62015-06-18 03:16:41 +0200972 if (instance == 0x00) {
973 /* Instance 0 always manages the "Tx Power" and "Flags"
974 * fields
975 */
976 flags = MGMT_ADV_FLAG_TX_POWER | MGMT_ADV_FLAG_MANAGED_FLAGS;
Arman Uguraye7a685d2015-03-25 18:53:40 -0700977
Florian Grandelbea28e62015-06-18 03:16:41 +0200978 /* For instance 0, the HCI_ADVERTISING_CONNECTABLE setting
979 * corresponds to the "connectable" instance flag.
980 */
981 if (hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE))
982 flags |= MGMT_ADV_FLAG_CONNECTABLE;
Florian Grandel411b4122015-06-18 03:16:40 +0200983
Florian Grandelbea28e62015-06-18 03:16:41 +0200984 return flags;
Florian Grandel411b4122015-06-18 03:16:40 +0200985 }
Arman Uguraye7a685d2015-03-25 18:53:40 -0700986
Florian Grandelbea28e62015-06-18 03:16:41 +0200987 adv_instance = hci_find_adv_instance(hdev, instance);
Arman Uguraye7a685d2015-03-25 18:53:40 -0700988
Florian Grandelbea28e62015-06-18 03:16:41 +0200989 /* Return 0 when we got an invalid instance identifier. */
990 if (!adv_instance)
991 return 0;
Arman Uguraye7a685d2015-03-25 18:53:40 -0700992
Florian Grandelbea28e62015-06-18 03:16:41 +0200993 return adv_instance->flags;
Arman Uguraye7a685d2015-03-25 18:53:40 -0700994}
995
Florian Grandel7b683b72015-06-18 03:16:42 +0200996static u8 get_cur_adv_instance_scan_rsp_len(struct hci_dev *hdev)
Arman Ugurayc7d48832015-03-28 12:38:59 -0700997{
Florian Grandel7b683b72015-06-18 03:16:42 +0200998 u8 instance = get_current_adv_instance(hdev);
999 struct adv_info *adv_instance;
1000
1001 /* Ignore instance 0 */
1002 if (instance == 0x00)
1003 return 0;
1004
1005 adv_instance = hci_find_adv_instance(hdev, instance);
1006 if (!adv_instance)
Arman Ugurayc7d48832015-03-28 12:38:59 -07001007 return 0;
1008
1009 /* TODO: Take into account the "appearance" and "local-name" flags here.
1010 * These are currently being ignored as they are not supported.
1011 */
Florian Grandel7b683b72015-06-18 03:16:42 +02001012 return adv_instance->scan_rsp_len;
Arman Ugurayc7d48832015-03-28 12:38:59 -07001013}
1014
Arman Ugurayfdf51782015-03-25 18:53:46 -07001015static u8 create_instance_adv_data(struct hci_dev *hdev, u8 instance, u8 *ptr)
1016{
Florian Grandelf63ba242015-06-18 03:16:44 +02001017 struct adv_info *adv_instance = NULL;
Arman Ugurayfdf51782015-03-25 18:53:46 -07001018 u8 ad_len = 0, flags = 0;
Florian Grandelf63ba242015-06-18 03:16:44 +02001019 u32 instance_flags;
1020
1021 /* Return 0 when the current instance identifier is invalid. */
1022 if (instance) {
1023 adv_instance = hci_find_adv_instance(hdev, instance);
1024 if (!adv_instance)
1025 return 0;
1026 }
1027
1028 instance_flags = get_adv_instance_flags(hdev, instance);
Arman Ugurayfdf51782015-03-25 18:53:46 -07001029
1030 /* The Add Advertising command allows userspace to set both the general
1031 * and limited discoverable flags.
1032 */
1033 if (instance_flags & MGMT_ADV_FLAG_DISCOV)
1034 flags |= LE_AD_GENERAL;
1035
1036 if (instance_flags & MGMT_ADV_FLAG_LIMITED_DISCOV)
1037 flags |= LE_AD_LIMITED;
1038
1039 if (flags || (instance_flags & MGMT_ADV_FLAG_MANAGED_FLAGS)) {
1040 /* If a discovery flag wasn't provided, simply use the global
1041 * settings.
1042 */
1043 if (!flags)
1044 flags |= get_adv_discov_flags(hdev);
1045
1046 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1047 flags |= LE_AD_NO_BREDR;
1048
1049 /* If flags would still be empty, then there is no need to
1050 * include the "Flags" AD field".
1051 */
1052 if (flags) {
1053 ptr[0] = 0x02;
1054 ptr[1] = EIR_FLAGS;
1055 ptr[2] = flags;
1056
1057 ad_len += 3;
1058 ptr += 3;
1059 }
1060 }
1061
Florian Grandelf63ba242015-06-18 03:16:44 +02001062 if (adv_instance) {
1063 memcpy(ptr, adv_instance->adv_data,
1064 adv_instance->adv_data_len);
1065 ad_len += adv_instance->adv_data_len;
1066 ptr += adv_instance->adv_data_len;
Marcel Holtmann38c8af62015-04-03 13:23:12 -07001067 }
1068
Arman Ugurayfdf51782015-03-25 18:53:46 -07001069 /* Provide Tx Power only if we can provide a valid value for it */
1070 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID &&
1071 (instance_flags & MGMT_ADV_FLAG_TX_POWER)) {
1072 ptr[0] = 0x02;
1073 ptr[1] = EIR_TX_POWER;
1074 ptr[2] = (u8)hdev->adv_tx_power;
1075
1076 ad_len += 3;
1077 ptr += 3;
1078 }
1079
Arman Ugurayfdf51782015-03-25 18:53:46 -07001080 return ad_len;
1081}
1082
Florian Grandelefae0022015-06-18 03:16:37 +02001083static void update_inst_adv_data(struct hci_request *req, u8 instance)
Arman Ugurayfdf51782015-03-25 18:53:46 -07001084{
1085 struct hci_dev *hdev = req->hdev;
1086 struct hci_cp_le_set_adv_data cp;
1087 u8 len;
1088
1089 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1090 return;
1091
1092 memset(&cp, 0, sizeof(cp));
1093
1094 len = create_instance_adv_data(hdev, instance, cp.data);
1095
1096 /* There's nothing to do if the data hasn't changed */
1097 if (hdev->adv_data_len == len &&
1098 memcmp(cp.data, hdev->adv_data, len) == 0)
1099 return;
1100
1101 memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
1102 hdev->adv_data_len = len;
1103
1104 cp.length = len;
1105
1106 hci_req_add(req, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);
1107}
1108
Arman Uguraye7a685d2015-03-25 18:53:40 -07001109static void update_adv_data(struct hci_request *req)
1110{
Florian Grandelefae0022015-06-18 03:16:37 +02001111 update_inst_adv_data(req, get_current_adv_instance(req->hdev));
Arman Uguray24b4f382015-03-23 15:57:12 -07001112}
1113
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001114int mgmt_update_adv_data(struct hci_dev *hdev)
1115{
1116 struct hci_request req;
1117
1118 hci_req_init(&req, hdev);
1119 update_adv_data(&req);
1120
1121 return hci_req_run(&req, NULL);
1122}
1123
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001124static void create_eir(struct hci_dev *hdev, u8 *data)
1125{
1126 u8 *ptr = data;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001127 size_t name_len;
1128
1129 name_len = strlen(hdev->dev_name);
1130
1131 if (name_len > 0) {
1132 /* EIR Data type */
1133 if (name_len > 48) {
1134 name_len = 48;
1135 ptr[1] = EIR_NAME_SHORT;
1136 } else
1137 ptr[1] = EIR_NAME_COMPLETE;
1138
1139 /* EIR Data length */
1140 ptr[0] = name_len + 1;
1141
1142 memcpy(ptr + 2, hdev->dev_name, name_len);
1143
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001144 ptr += (name_len + 2);
1145 }
1146
Johan Hedbergbbaf4442012-11-08 01:22:59 +01001147 if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -07001148 ptr[0] = 2;
1149 ptr[1] = EIR_TX_POWER;
1150 ptr[2] = (u8) hdev->inq_tx_power;
1151
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -07001152 ptr += 3;
1153 }
1154
Marcel Holtmann2b9be132012-03-11 19:32:12 -07001155 if (hdev->devid_source > 0) {
1156 ptr[0] = 9;
1157 ptr[1] = EIR_DEVICE_ID;
1158
1159 put_unaligned_le16(hdev->devid_source, ptr + 2);
1160 put_unaligned_le16(hdev->devid_vendor, ptr + 4);
1161 put_unaligned_le16(hdev->devid_product, ptr + 6);
1162 put_unaligned_le16(hdev->devid_version, ptr + 8);
1163
Marcel Holtmann2b9be132012-03-11 19:32:12 -07001164 ptr += 10;
1165 }
1166
Johan Hedberg213202e2013-01-27 00:31:33 +02001167 ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergcdf19632013-01-27 00:31:34 +02001168 ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergc00d5752013-01-27 00:31:35 +02001169 ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001170}
1171
Johan Hedberg890ea892013-03-15 17:06:52 -05001172static void update_eir(struct hci_request *req)
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001173{
Johan Hedberg890ea892013-03-15 17:06:52 -05001174 struct hci_dev *hdev = req->hdev;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001175 struct hci_cp_write_eir cp;
1176
Johan Hedberg504c8dc2012-02-23 13:30:41 +02001177 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05001178 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +02001179
Johan Hedberg976eb202012-10-24 21:12:01 +03001180 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05001181 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001182
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001183 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberg890ea892013-03-15 17:06:52 -05001184 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001185
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001186 if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
Johan Hedberg890ea892013-03-15 17:06:52 -05001187 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001188
1189 memset(&cp, 0, sizeof(cp));
1190
1191 create_eir(hdev, cp.data);
1192
1193 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -05001194 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001195
1196 memcpy(hdev->eir, cp.data, sizeof(cp.data));
1197
Johan Hedberg890ea892013-03-15 17:06:52 -05001198 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001199}
1200
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001201static u8 get_service_classes(struct hci_dev *hdev)
1202{
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -03001203 struct bt_uuid *uuid;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001204 u8 val = 0;
1205
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -03001206 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001207 val |= uuid->svc_hint;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001208
1209 return val;
1210}
1211
Johan Hedberg890ea892013-03-15 17:06:52 -05001212static void update_class(struct hci_request *req)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001213{
Johan Hedberg890ea892013-03-15 17:06:52 -05001214 struct hci_dev *hdev = req->hdev;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001215 u8 cod[3];
1216
1217 BT_DBG("%s", hdev->name);
1218
Johan Hedberg504c8dc2012-02-23 13:30:41 +02001219 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05001220 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +02001221
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001222 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedbergf87ea1d2013-10-19 23:38:17 +03001223 return;
1224
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001225 if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
Johan Hedberg890ea892013-03-15 17:06:52 -05001226 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001227
1228 cod[0] = hdev->minor_class;
1229 cod[1] = hdev->major_class;
1230 cod[2] = get_service_classes(hdev);
1231
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001232 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
Marcel Holtmann6acd7db2013-10-15 06:33:53 -07001233 cod[1] |= 0x20;
1234
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001235 if (memcmp(cod, hdev->dev_class, 3) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -05001236 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001237
Johan Hedberg890ea892013-03-15 17:06:52 -05001238 hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001239}
1240
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001241static void disable_advertising(struct hci_request *req)
1242{
1243 u8 enable = 0x00;
1244
1245 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
1246}
1247
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001248static void enable_advertising(struct hci_request *req)
1249{
1250 struct hci_dev *hdev = req->hdev;
1251 struct hci_cp_le_set_adv_param cp;
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001252 u8 own_addr_type, enable = 0x01;
Johan Hedberga4858cb2014-02-25 19:56:31 +02001253 bool connectable;
Arman Uguraye7a685d2015-03-25 18:53:40 -07001254 u8 instance;
1255 u32 flags;
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001256
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001257 if (hci_conn_num(hdev, LE_LINK) > 0)
1258 return;
1259
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001260 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001261 disable_advertising(req);
1262
Johan Hedberg5ce194c2014-07-08 15:07:49 +03001263 /* Clear the HCI_LE_ADV bit temporarily so that the
Johan Hedberg8d972502014-02-28 12:54:14 +02001264 * hci_update_random_address knows that it's safe to go ahead
1265 * and write a new random address. The flag will be set back on
1266 * as soon as the SET_ADV_ENABLE HCI command completes.
1267 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001268 hci_dev_clear_flag(hdev, HCI_LE_ADV);
Johan Hedberg8d972502014-02-28 12:54:14 +02001269
Arman Uguraye7a685d2015-03-25 18:53:40 -07001270 instance = get_current_adv_instance(hdev);
1271 flags = get_adv_instance_flags(hdev, instance);
Arman Ugurayfaccb952015-03-28 12:38:58 -07001272
1273 /* If the "connectable" instance flag was not set, then choose between
1274 * ADV_IND and ADV_NONCONN_IND based on the global connectable setting.
1275 */
1276 connectable = (flags & MGMT_ADV_FLAG_CONNECTABLE) ||
1277 get_connectable(hdev);
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001278
Johan Hedberga4858cb2014-02-25 19:56:31 +02001279 /* Set require_privacy to true only when non-connectable
1280 * advertising is used. In that case it is fine to use a
1281 * non-resolvable private address.
1282 */
1283 if (hci_update_random_address(req, !connectable, &own_addr_type) < 0)
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001284 return;
1285
Marcel Holtmann41c90c12014-02-23 20:25:55 -08001286 memset(&cp, 0, sizeof(cp));
Georg Lukas628531c2014-07-26 13:59:57 +02001287 cp.min_interval = cpu_to_le16(hdev->le_adv_min_interval);
1288 cp.max_interval = cpu_to_le16(hdev->le_adv_max_interval);
Arman Ugurayc7d48832015-03-28 12:38:59 -07001289
1290 if (connectable)
1291 cp.type = LE_ADV_IND;
Florian Grandel7b683b72015-06-18 03:16:42 +02001292 else if (get_cur_adv_instance_scan_rsp_len(hdev))
Arman Ugurayc7d48832015-03-28 12:38:59 -07001293 cp.type = LE_ADV_SCAN_IND;
1294 else
1295 cp.type = LE_ADV_NONCONN_IND;
1296
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001297 cp.own_address_type = own_addr_type;
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001298 cp.channel_map = hdev->le_adv_channel_map;
1299
1300 hci_req_add(req, HCI_OP_LE_SET_ADV_PARAM, sizeof(cp), &cp);
1301
1302 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
1303}
1304
Johan Hedberg7d785252011-12-15 00:47:39 +02001305static void service_cache_off(struct work_struct *work)
1306{
1307 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001308 service_cache.work);
Johan Hedberg890ea892013-03-15 17:06:52 -05001309 struct hci_request req;
Johan Hedberg7d785252011-12-15 00:47:39 +02001310
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001311 if (!hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
Johan Hedberg7d785252011-12-15 00:47:39 +02001312 return;
1313
Johan Hedberg890ea892013-03-15 17:06:52 -05001314 hci_req_init(&req, hdev);
1315
Johan Hedberg7d785252011-12-15 00:47:39 +02001316 hci_dev_lock(hdev);
1317
Johan Hedberg890ea892013-03-15 17:06:52 -05001318 update_eir(&req);
1319 update_class(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02001320
1321 hci_dev_unlock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05001322
1323 hci_req_run(&req, NULL);
Johan Hedberg7d785252011-12-15 00:47:39 +02001324}
1325
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001326static void rpa_expired(struct work_struct *work)
1327{
1328 struct hci_dev *hdev = container_of(work, struct hci_dev,
1329 rpa_expired.work);
1330 struct hci_request req;
1331
1332 BT_DBG("");
1333
Marcel Holtmanna1536da2015-03-13 02:11:01 -07001334 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001335
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001336 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001337 return;
1338
1339 /* The generation of a new RPA and programming it into the
1340 * controller happens in the enable_advertising() function.
1341 */
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001342 hci_req_init(&req, hdev);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001343 enable_advertising(&req);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001344 hci_req_run(&req, NULL);
1345}
1346
Johan Hedberg6a919082012-02-28 06:17:26 +02001347static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +02001348{
Marcel Holtmann238be782015-03-13 02:11:06 -07001349 if (hci_dev_test_and_set_flag(hdev, HCI_MGMT))
Johan Hedberg6a919082012-02-28 06:17:26 +02001350 return;
1351
Johan Hedberg4f87da82012-03-02 19:55:56 +02001352 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001353 INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
Johan Hedberg7d785252011-12-15 00:47:39 +02001354
Johan Hedberg4f87da82012-03-02 19:55:56 +02001355 /* Non-mgmt controlled devices get this bit set
1356 * implicitly so that pairing works for them, however
1357 * for mgmt we require user-space to explicitly enable
1358 * it
1359 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001360 hci_dev_clear_flag(hdev, HCI_BONDABLE);
Johan Hedberg7d785252011-12-15 00:47:39 +02001361}
1362
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02001363static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001364 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +02001365{
1366 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +02001367
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001368 BT_DBG("sock %p %s", sk, hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001369
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001370 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001371
Johan Hedberg03811012010-12-08 00:21:06 +02001372 memset(&rp, 0, sizeof(rp));
1373
Johan Hedberg03811012010-12-08 00:21:06 +02001374 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001375
1376 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001377 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001378
1379 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
1380 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
1381
1382 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedberg03811012010-12-08 00:21:06 +02001383
1384 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +02001385 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedberg03811012010-12-08 00:21:06 +02001386
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001387 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001388
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001389 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
1390 sizeof(rp));
Johan Hedberg03811012010-12-08 00:21:06 +02001391}
1392
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001393static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +02001394{
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001395 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +02001396
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001397 return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &settings,
1398 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +02001399}
1400
Marcel Holtmann1904a852015-01-11 13:50:44 -08001401static void clean_up_hci_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg8b064a32014-02-24 14:52:22 +02001402{
1403 BT_DBG("%s status 0x%02x", hdev->name, status);
1404
Johan Hedberga3172b72014-02-28 09:33:44 +02001405 if (hci_conn_count(hdev) == 0) {
1406 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001407 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02001408 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001409}
1410
Johan Hedberg23a48092014-07-08 16:05:06 +03001411static bool hci_stop_discovery(struct hci_request *req)
Johan Hedberg21a60d32014-06-10 14:05:58 +03001412{
1413 struct hci_dev *hdev = req->hdev;
1414 struct hci_cp_remote_name_req_cancel cp;
1415 struct inquiry_entry *e;
1416
1417 switch (hdev->discovery.state) {
1418 case DISCOVERY_FINDING:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07001419 if (test_bit(HCI_INQUIRY, &hdev->flags))
Johan Hedberg21a60d32014-06-10 14:05:58 +03001420 hci_req_add(req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
Jakub Pawlowski07d23342015-03-17 09:04:14 -07001421
1422 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
Johan Hedberg21a60d32014-06-10 14:05:58 +03001423 cancel_delayed_work(&hdev->le_scan_disable);
1424 hci_req_add_le_scan_disable(req);
1425 }
1426
Johan Hedberg23a48092014-07-08 16:05:06 +03001427 return true;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001428
1429 case DISCOVERY_RESOLVING:
1430 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
1431 NAME_PENDING);
1432 if (!e)
Johan Hedberg23a48092014-07-08 16:05:06 +03001433 break;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001434
1435 bacpy(&cp.bdaddr, &e->data.bdaddr);
1436 hci_req_add(req, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp),
1437 &cp);
1438
Johan Hedberg23a48092014-07-08 16:05:06 +03001439 return true;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001440
1441 default:
1442 /* Passive scanning */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001443 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
Johan Hedberg21a60d32014-06-10 14:05:58 +03001444 hci_req_add_le_scan_disable(req);
Johan Hedberg23a48092014-07-08 16:05:06 +03001445 return true;
1446 }
1447
Johan Hedberg21a60d32014-06-10 14:05:58 +03001448 break;
1449 }
Johan Hedberg23a48092014-07-08 16:05:06 +03001450
1451 return false;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001452}
1453
Arman Uguray912098a2015-03-23 15:57:15 -07001454static void advertising_added(struct sock *sk, struct hci_dev *hdev,
1455 u8 instance)
1456{
1457 struct mgmt_ev_advertising_added ev;
1458
1459 ev.instance = instance;
1460
1461 mgmt_event(MGMT_EV_ADVERTISING_ADDED, hdev, &ev, sizeof(ev), sk);
1462}
1463
1464static void advertising_removed(struct sock *sk, struct hci_dev *hdev,
1465 u8 instance)
1466{
1467 struct mgmt_ev_advertising_removed ev;
1468
1469 ev.instance = instance;
1470
1471 mgmt_event(MGMT_EV_ADVERTISING_REMOVED, hdev, &ev, sizeof(ev), sk);
1472}
1473
1474static void clear_adv_instance(struct hci_dev *hdev)
1475{
1476 struct hci_request req;
1477
1478 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
1479 return;
1480
Florian Grandel5d900e42015-06-18 03:16:35 +02001481 if (hdev->adv_instance_timeout)
1482 cancel_delayed_work(&hdev->adv_instance_expire);
Arman Uguray912098a2015-03-23 15:57:15 -07001483
1484 memset(&hdev->adv_instance, 0, sizeof(hdev->adv_instance));
1485 advertising_removed(NULL, hdev, 1);
1486 hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
1487
1488 if (!hdev_is_powered(hdev) ||
1489 hci_dev_test_flag(hdev, HCI_ADVERTISING))
1490 return;
1491
1492 hci_req_init(&req, hdev);
1493 disable_advertising(&req);
1494 hci_req_run(&req, NULL);
1495}
1496
Johan Hedberg8b064a32014-02-24 14:52:22 +02001497static int clean_up_hci_state(struct hci_dev *hdev)
1498{
1499 struct hci_request req;
1500 struct hci_conn *conn;
Johan Hedberg23a48092014-07-08 16:05:06 +03001501 bool discov_stopped;
1502 int err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001503
1504 hci_req_init(&req, hdev);
1505
1506 if (test_bit(HCI_ISCAN, &hdev->flags) ||
1507 test_bit(HCI_PSCAN, &hdev->flags)) {
1508 u8 scan = 0x00;
1509 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1510 }
1511
Florian Grandel5d900e42015-06-18 03:16:35 +02001512 if (hdev->adv_instance_timeout)
Arman Uguray912098a2015-03-23 15:57:15 -07001513 clear_adv_instance(hdev);
1514
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001515 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Johan Hedberg8b064a32014-02-24 14:52:22 +02001516 disable_advertising(&req);
1517
Johan Hedberg23a48092014-07-08 16:05:06 +03001518 discov_stopped = hci_stop_discovery(&req);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001519
1520 list_for_each_entry(conn, &hdev->conn_hash.list, list) {
1521 struct hci_cp_disconnect dc;
Johan Hedbergc9910d02014-02-27 14:35:12 +02001522 struct hci_cp_reject_conn_req rej;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001523
Johan Hedbergc9910d02014-02-27 14:35:12 +02001524 switch (conn->state) {
1525 case BT_CONNECTED:
1526 case BT_CONFIG:
1527 dc.handle = cpu_to_le16(conn->handle);
1528 dc.reason = 0x15; /* Terminated due to Power Off */
1529 hci_req_add(&req, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1530 break;
1531 case BT_CONNECT:
1532 if (conn->type == LE_LINK)
1533 hci_req_add(&req, HCI_OP_LE_CREATE_CONN_CANCEL,
1534 0, NULL);
1535 else if (conn->type == ACL_LINK)
1536 hci_req_add(&req, HCI_OP_CREATE_CONN_CANCEL,
1537 6, &conn->dst);
1538 break;
1539 case BT_CONNECT2:
1540 bacpy(&rej.bdaddr, &conn->dst);
1541 rej.reason = 0x15; /* Terminated due to Power Off */
1542 if (conn->type == ACL_LINK)
1543 hci_req_add(&req, HCI_OP_REJECT_CONN_REQ,
1544 sizeof(rej), &rej);
1545 else if (conn->type == SCO_LINK)
1546 hci_req_add(&req, HCI_OP_REJECT_SYNC_CONN_REQ,
1547 sizeof(rej), &rej);
1548 break;
1549 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001550 }
1551
Johan Hedberg23a48092014-07-08 16:05:06 +03001552 err = hci_req_run(&req, clean_up_hci_complete);
1553 if (!err && discov_stopped)
1554 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
1555
1556 return err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001557}
1558
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001559static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001560 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001561{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001562 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001563 struct mgmt_pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001564 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02001565
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001566 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001567
Johan Hedberga7e80f22013-01-09 16:05:19 +02001568 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001569 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1570 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001571
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001572 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001573
Johan Hedberg333ae952015-03-17 13:48:47 +02001574 if (pending_find(MGMT_OP_SET_POWERED, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001575 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1576 MGMT_STATUS_BUSY);
Johan Hedberg87b95ba2013-09-25 13:26:06 +03001577 goto failed;
1578 }
1579
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001580 if (hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) {
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001581 cancel_delayed_work(&hdev->power_off);
1582
1583 if (cp->val) {
Johan Hedberga1d70452013-01-09 15:29:40 +02001584 mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
1585 data, len);
1586 err = mgmt_powered(hdev, 1);
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001587 goto failed;
1588 }
1589 }
1590
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001591 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001592 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001593 goto failed;
1594 }
1595
Johan Hedberg03811012010-12-08 00:21:06 +02001596 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1597 if (!cmd) {
1598 err = -ENOMEM;
1599 goto failed;
1600 }
1601
Johan Hedberg8b064a32014-02-24 14:52:22 +02001602 if (cp->val) {
Johan Hedberg19202572013-01-14 22:33:51 +02001603 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001604 err = 0;
1605 } else {
1606 /* Disconnect connections, stop scans, etc */
1607 err = clean_up_hci_state(hdev);
Johan Hedberga3172b72014-02-28 09:33:44 +02001608 if (!err)
1609 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1610 HCI_POWER_OFF_TIMEOUT);
Johan Hedberg03811012010-12-08 00:21:06 +02001611
Johan Hedberg8b064a32014-02-24 14:52:22 +02001612 /* ENODATA means there were no HCI commands queued */
1613 if (err == -ENODATA) {
Johan Hedberga3172b72014-02-28 09:33:44 +02001614 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001615 queue_work(hdev->req_workqueue, &hdev->power_off.work);
1616 err = 0;
1617 }
1618 }
Johan Hedberg03811012010-12-08 00:21:06 +02001619
1620failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001621 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001622 return err;
1623}
1624
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001625static int new_settings(struct hci_dev *hdev, struct sock *skip)
1626{
Marcel Holtmannf6b77122015-03-14 19:28:05 -07001627 __le32 ev = cpu_to_le32(get_current_settings(hdev));
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001628
Marcel Holtmannf6b77122015-03-14 19:28:05 -07001629 return mgmt_generic_event(MGMT_EV_NEW_SETTINGS, hdev, &ev,
1630 sizeof(ev), skip);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001631}
1632
Johan Hedberg91a668b2014-07-09 13:28:26 +03001633int mgmt_new_settings(struct hci_dev *hdev)
1634{
1635 return new_settings(hdev, NULL);
1636}
1637
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001638struct cmd_lookup {
1639 struct sock *sk;
1640 struct hci_dev *hdev;
1641 u8 mgmt_status;
1642};
1643
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001644static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001645{
1646 struct cmd_lookup *match = data;
1647
1648 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
1649
1650 list_del(&cmd->list);
1651
1652 if (match->sk == NULL) {
1653 match->sk = cmd->sk;
1654 sock_hold(match->sk);
1655 }
1656
1657 mgmt_pending_free(cmd);
1658}
1659
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001660static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001661{
1662 u8 *status = data;
1663
Johan Hedberga69e8372015-03-06 21:08:53 +02001664 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001665 mgmt_pending_remove(cmd);
1666}
1667
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001668static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg1b9b5ee2014-12-05 13:36:00 +02001669{
1670 if (cmd->cmd_complete) {
1671 u8 *status = data;
1672
1673 cmd->cmd_complete(cmd, *status);
1674 mgmt_pending_remove(cmd);
1675
1676 return;
1677 }
1678
1679 cmd_status_rsp(cmd, data);
1680}
1681
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001682static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedbergf5818c22014-12-05 13:36:02 +02001683{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001684 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1685 cmd->param, cmd->param_len);
Johan Hedbergf5818c22014-12-05 13:36:02 +02001686}
1687
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001688static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001689{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001690 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1691 cmd->param, sizeof(struct mgmt_addr_info));
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001692}
1693
Johan Hedberge6fe7982013-10-02 15:45:22 +03001694static u8 mgmt_bredr_support(struct hci_dev *hdev)
1695{
1696 if (!lmp_bredr_capable(hdev))
1697 return MGMT_STATUS_NOT_SUPPORTED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001698 else if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberge6fe7982013-10-02 15:45:22 +03001699 return MGMT_STATUS_REJECTED;
1700 else
1701 return MGMT_STATUS_SUCCESS;
1702}
1703
1704static u8 mgmt_le_support(struct hci_dev *hdev)
1705{
1706 if (!lmp_le_capable(hdev))
1707 return MGMT_STATUS_NOT_SUPPORTED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001708 else if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberge6fe7982013-10-02 15:45:22 +03001709 return MGMT_STATUS_REJECTED;
1710 else
1711 return MGMT_STATUS_SUCCESS;
1712}
1713
Marcel Holtmann1904a852015-01-11 13:50:44 -08001714static void set_discoverable_complete(struct hci_dev *hdev, u8 status,
1715 u16 opcode)
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001716{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001717 struct mgmt_pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001718 struct mgmt_mode *cp;
Marcel Holtmann970ba522013-10-15 06:33:57 -07001719 struct hci_request req;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001720 bool changed;
1721
1722 BT_DBG("status 0x%02x", status);
1723
1724 hci_dev_lock(hdev);
1725
Johan Hedberg333ae952015-03-17 13:48:47 +02001726 cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001727 if (!cmd)
1728 goto unlock;
1729
1730 if (status) {
1731 u8 mgmt_err = mgmt_status(status);
Johan Hedberga69e8372015-03-06 21:08:53 +02001732 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001733 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001734 goto remove_cmd;
1735 }
1736
1737 cp = cmd->param;
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001738 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07001739 changed = !hci_dev_test_and_set_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001740
1741 if (hdev->discov_timeout > 0) {
1742 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1743 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1744 to);
1745 }
1746 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001747 changed = hci_dev_test_and_clear_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001748 }
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001749
1750 send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1751
1752 if (changed)
1753 new_settings(hdev, cmd->sk);
1754
Marcel Holtmann970ba522013-10-15 06:33:57 -07001755 /* When the discoverable mode gets changed, make sure
1756 * that class of device has the limited discoverable
Johan Hedberg432df052014-08-01 11:13:31 +03001757 * bit correctly set. Also update page scan based on whitelist
1758 * entries.
Marcel Holtmann970ba522013-10-15 06:33:57 -07001759 */
1760 hci_req_init(&req, hdev);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02001761 __hci_update_page_scan(&req);
Marcel Holtmann970ba522013-10-15 06:33:57 -07001762 update_class(&req);
1763 hci_req_run(&req, NULL);
1764
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001765remove_cmd:
1766 mgmt_pending_remove(cmd);
1767
1768unlock:
1769 hci_dev_unlock(hdev);
1770}
1771
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001772static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001773 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001774{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001775 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001776 struct mgmt_pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001777 struct hci_request req;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001778 u16 timeout;
Johan Hedberg9a43e252013-10-20 19:00:07 +03001779 u8 scan;
Johan Hedberg03811012010-12-08 00:21:06 +02001780 int err;
Johan Hedberge41d8b42010-12-13 21:07:03 +02001781
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001782 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001783
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001784 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
1785 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02001786 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1787 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001788
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001789 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02001790 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1791 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001792
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001793 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001794
1795 /* Disabling discoverable requires that no timeout is set,
1796 * and enabling limited discoverable requires a timeout.
1797 */
1798 if ((cp->val == 0x00 && timeout > 0) ||
1799 (cp->val == 0x02 && timeout == 0))
Johan Hedberga69e8372015-03-06 21:08:53 +02001800 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1801 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001802
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001803 hci_dev_lock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001804
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001805 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001806 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1807 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001808 goto failed;
1809 }
1810
Johan Hedberg333ae952015-03-17 13:48:47 +02001811 if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
1812 pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001813 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1814 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001815 goto failed;
1816 }
1817
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001818 if (!hci_dev_test_flag(hdev, HCI_CONNECTABLE)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001819 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1820 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001821 goto failed;
1822 }
1823
1824 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001825 bool changed = false;
1826
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001827 /* Setting limited discoverable when powered off is
1828 * not a valid operation since it requires a timeout
1829 * and so no need to check HCI_LIMITED_DISCOVERABLE.
1830 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001831 if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07001832 hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001833 changed = true;
1834 }
1835
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001836 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001837 if (err < 0)
1838 goto failed;
1839
1840 if (changed)
1841 err = new_settings(hdev, sk);
1842
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001843 goto failed;
1844 }
1845
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001846 /* If the current mode is the same, then just update the timeout
1847 * value with the new value. And if only the timeout gets updated,
1848 * then no need for any HCI transactions.
1849 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001850 if (!!cp->val == hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
1851 (cp->val == 0x02) == hci_dev_test_flag(hdev,
1852 HCI_LIMITED_DISCOVERABLE)) {
Marcel Holtmann36261542013-10-15 08:28:51 -07001853 cancel_delayed_work(&hdev->discov_off);
1854 hdev->discov_timeout = timeout;
Marcel Holtmann955638e2012-02-22 18:21:00 +01001855
Marcel Holtmann36261542013-10-15 08:28:51 -07001856 if (cp->val && hdev->discov_timeout > 0) {
1857 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001858 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
Marcel Holtmann36261542013-10-15 08:28:51 -07001859 to);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001860 }
1861
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001862 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001863 goto failed;
1864 }
1865
1866 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1867 if (!cmd) {
1868 err = -ENOMEM;
1869 goto failed;
1870 }
1871
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001872 /* Cancel any potential discoverable timeout that might be
1873 * still active and store new timeout value. The arming of
1874 * the timeout happens in the complete handler.
1875 */
1876 cancel_delayed_work(&hdev->discov_off);
1877 hdev->discov_timeout = timeout;
1878
Johan Hedbergb456f872013-10-19 23:38:22 +03001879 /* Limited discoverable mode */
1880 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07001881 hci_dev_set_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergb456f872013-10-19 23:38:22 +03001882 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001883 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergb456f872013-10-19 23:38:22 +03001884
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001885 hci_req_init(&req, hdev);
1886
Johan Hedberg9a43e252013-10-20 19:00:07 +03001887 /* The procedure for LE-only controllers is much simpler - just
1888 * update the advertising data.
1889 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001890 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg9a43e252013-10-20 19:00:07 +03001891 goto update_ad;
1892
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001893 scan = SCAN_PAGE;
1894
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001895 if (cp->val) {
1896 struct hci_cp_write_current_iac_lap hci_cp;
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001897
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001898 if (cp->val == 0x02) {
1899 /* Limited discoverable mode */
Marcel Holtmann33337dc2013-10-23 08:28:01 -07001900 hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001901 hci_cp.iac_lap[0] = 0x00; /* LIAC */
1902 hci_cp.iac_lap[1] = 0x8b;
1903 hci_cp.iac_lap[2] = 0x9e;
1904 hci_cp.iac_lap[3] = 0x33; /* GIAC */
1905 hci_cp.iac_lap[4] = 0x8b;
1906 hci_cp.iac_lap[5] = 0x9e;
1907 } else {
1908 /* General discoverable mode */
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001909 hci_cp.num_iac = 1;
1910 hci_cp.iac_lap[0] = 0x33; /* GIAC */
1911 hci_cp.iac_lap[1] = 0x8b;
1912 hci_cp.iac_lap[2] = 0x9e;
1913 }
1914
1915 hci_req_add(&req, HCI_OP_WRITE_CURRENT_IAC_LAP,
1916 (hci_cp.num_iac * 3) + 1, &hci_cp);
1917
1918 scan |= SCAN_INQUIRY;
1919 } else {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001920 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001921 }
1922
1923 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001924
Johan Hedberg9a43e252013-10-20 19:00:07 +03001925update_ad:
1926 update_adv_data(&req);
1927
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001928 err = hci_req_run(&req, set_discoverable_complete);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001929 if (err < 0)
1930 mgmt_pending_remove(cmd);
1931
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001932failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001933 hci_dev_unlock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001934 return err;
1935}
1936
Johan Hedberg406d7802013-03-15 17:07:09 -05001937static void write_fast_connectable(struct hci_request *req, bool enable)
1938{
Johan Hedbergbd98b992013-03-15 17:07:13 -05001939 struct hci_dev *hdev = req->hdev;
Johan Hedberg406d7802013-03-15 17:07:09 -05001940 struct hci_cp_write_page_scan_activity acp;
1941 u8 type;
1942
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001943 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg547003b2013-10-21 16:51:53 +03001944 return;
1945
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05001946 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
1947 return;
1948
Johan Hedberg406d7802013-03-15 17:07:09 -05001949 if (enable) {
1950 type = PAGE_SCAN_TYPE_INTERLACED;
1951
1952 /* 160 msec page scan interval */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001953 acp.interval = cpu_to_le16(0x0100);
Johan Hedberg406d7802013-03-15 17:07:09 -05001954 } else {
1955 type = PAGE_SCAN_TYPE_STANDARD; /* default */
1956
1957 /* default 1.28 sec page scan */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001958 acp.interval = cpu_to_le16(0x0800);
Johan Hedberg406d7802013-03-15 17:07:09 -05001959 }
1960
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001961 acp.window = cpu_to_le16(0x0012);
Johan Hedberg406d7802013-03-15 17:07:09 -05001962
Johan Hedbergbd98b992013-03-15 17:07:13 -05001963 if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval ||
1964 __cpu_to_le16(hdev->page_scan_window) != acp.window)
1965 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
1966 sizeof(acp), &acp);
1967
1968 if (hdev->page_scan_type != type)
1969 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
Johan Hedberg406d7802013-03-15 17:07:09 -05001970}
1971
Marcel Holtmann1904a852015-01-11 13:50:44 -08001972static void set_connectable_complete(struct hci_dev *hdev, u8 status,
1973 u16 opcode)
Johan Hedberg2b76f452013-03-15 17:07:04 -05001974{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001975 struct mgmt_pending_cmd *cmd;
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001976 struct mgmt_mode *cp;
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001977 bool conn_changed, discov_changed;
Johan Hedberg2b76f452013-03-15 17:07:04 -05001978
1979 BT_DBG("status 0x%02x", status);
1980
1981 hci_dev_lock(hdev);
1982
Johan Hedberg333ae952015-03-17 13:48:47 +02001983 cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberg2b76f452013-03-15 17:07:04 -05001984 if (!cmd)
1985 goto unlock;
1986
Johan Hedberg37438c12013-10-14 16:20:05 +03001987 if (status) {
1988 u8 mgmt_err = mgmt_status(status);
Johan Hedberga69e8372015-03-06 21:08:53 +02001989 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg37438c12013-10-14 16:20:05 +03001990 goto remove_cmd;
1991 }
1992
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001993 cp = cmd->param;
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001994 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07001995 conn_changed = !hci_dev_test_and_set_flag(hdev,
1996 HCI_CONNECTABLE);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001997 discov_changed = false;
1998 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001999 conn_changed = hci_dev_test_and_clear_flag(hdev,
2000 HCI_CONNECTABLE);
2001 discov_changed = hci_dev_test_and_clear_flag(hdev,
2002 HCI_DISCOVERABLE);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002003 }
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002004
Johan Hedberg2b76f452013-03-15 17:07:04 -05002005 send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);
2006
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002007 if (conn_changed || discov_changed) {
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002008 new_settings(hdev, cmd->sk);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02002009 hci_update_page_scan(hdev);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002010 if (discov_changed)
2011 mgmt_update_adv_data(hdev);
Johan Hedberg2b7be332014-07-07 14:40:22 +03002012 hci_update_background_scan(hdev);
2013 }
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002014
Johan Hedberg37438c12013-10-14 16:20:05 +03002015remove_cmd:
Johan Hedberg2b76f452013-03-15 17:07:04 -05002016 mgmt_pending_remove(cmd);
2017
2018unlock:
2019 hci_dev_unlock(hdev);
2020}
2021
Johan Hedberge8ba3a12013-10-19 23:38:18 +03002022static int set_connectable_update_settings(struct hci_dev *hdev,
2023 struct sock *sk, u8 val)
2024{
2025 bool changed = false;
2026 int err;
2027
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002028 if (!!val != hci_dev_test_flag(hdev, HCI_CONNECTABLE))
Johan Hedberge8ba3a12013-10-19 23:38:18 +03002029 changed = true;
2030
2031 if (val) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07002032 hci_dev_set_flag(hdev, HCI_CONNECTABLE);
Johan Hedberge8ba3a12013-10-19 23:38:18 +03002033 } else {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002034 hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
2035 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberge8ba3a12013-10-19 23:38:18 +03002036 }
2037
2038 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
2039 if (err < 0)
2040 return err;
2041
Johan Hedberg562064e2014-07-08 16:35:34 +03002042 if (changed) {
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02002043 hci_update_page_scan(hdev);
Johan Hedberg562064e2014-07-08 16:35:34 +03002044 hci_update_background_scan(hdev);
Johan Hedberge8ba3a12013-10-19 23:38:18 +03002045 return new_settings(hdev, sk);
Johan Hedberg562064e2014-07-08 16:35:34 +03002046 }
Johan Hedberge8ba3a12013-10-19 23:38:18 +03002047
2048 return 0;
2049}
2050
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002051static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002052 u16 len)
Johan Hedbergf7b64e62010-12-13 21:07:06 +02002053{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002054 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002055 struct mgmt_pending_cmd *cmd;
Johan Hedberg2b76f452013-03-15 17:07:04 -05002056 struct hci_request req;
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002057 u8 scan;
Johan Hedbergf7b64e62010-12-13 21:07:06 +02002058 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02002059
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002060 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +02002061
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002062 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
2063 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02002064 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2065 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03002066
Johan Hedberga7e80f22013-01-09 16:05:19 +02002067 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002068 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2069 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002070
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002071 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002072
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002073 if (!hdev_is_powered(hdev)) {
Johan Hedberge8ba3a12013-10-19 23:38:18 +03002074 err = set_connectable_update_settings(hdev, sk, cp->val);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002075 goto failed;
2076 }
2077
Johan Hedberg333ae952015-03-17 13:48:47 +02002078 if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
2079 pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002080 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2081 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002082 goto failed;
2083 }
2084
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002085 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
2086 if (!cmd) {
2087 err = -ENOMEM;
2088 goto failed;
2089 }
2090
Johan Hedberg2b76f452013-03-15 17:07:04 -05002091 hci_req_init(&req, hdev);
2092
Johan Hedberg9a43e252013-10-20 19:00:07 +03002093 /* If BR/EDR is not enabled and we disable advertising as a
2094 * by-product of disabling connectable, we need to update the
2095 * advertising flags.
2096 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002097 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg9a43e252013-10-20 19:00:07 +03002098 if (!cp->val) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002099 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
2100 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberg9a43e252013-10-20 19:00:07 +03002101 }
2102 update_adv_data(&req);
2103 } else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg9b742462013-10-14 16:20:03 +03002104 if (cp->val) {
2105 scan = SCAN_PAGE;
2106 } else {
Johan Hedberg3bd27242014-07-28 20:53:58 +03002107 /* If we don't have any whitelist entries just
2108 * disable all scanning. If there are entries
2109 * and we had both page and inquiry scanning
2110 * enabled then fall back to only page scanning.
2111 * Otherwise no changes are needed.
2112 */
2113 if (list_empty(&hdev->whitelist))
2114 scan = SCAN_DISABLED;
2115 else if (test_bit(HCI_ISCAN, &hdev->flags))
2116 scan = SCAN_PAGE;
2117 else
2118 goto no_scan_update;
Johan Hedberg9b742462013-10-14 16:20:03 +03002119
2120 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Marcel Holtmann8d6083f2013-10-14 16:38:45 -07002121 hdev->discov_timeout > 0)
Johan Hedberg9b742462013-10-14 16:20:03 +03002122 cancel_delayed_work(&hdev->discov_off);
2123 }
2124
2125 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
2126 }
Johan Hedberg2b76f452013-03-15 17:07:04 -05002127
Johan Hedberg3bd27242014-07-28 20:53:58 +03002128no_scan_update:
Johan Hedberge8b12022014-07-10 10:51:27 +03002129 /* Update the advertising parameters if necessary */
Arman Uguray880897d2015-03-28 12:39:00 -07002130 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
2131 hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002132 enable_advertising(&req);
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002133
Johan Hedberg2b76f452013-03-15 17:07:04 -05002134 err = hci_req_run(&req, set_connectable_complete);
Johan Hedberg9b742462013-10-14 16:20:03 +03002135 if (err < 0) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002136 mgmt_pending_remove(cmd);
Johan Hedberg9b742462013-10-14 16:20:03 +03002137 if (err == -ENODATA)
Johan Hedberga81070b2013-10-19 23:38:19 +03002138 err = set_connectable_update_settings(hdev, sk,
2139 cp->val);
Johan Hedberg9b742462013-10-14 16:20:03 +03002140 goto failed;
2141 }
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002142
2143failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002144 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002145 return err;
2146}
2147
Johan Hedbergb2939472014-07-30 09:22:23 +03002148static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002149 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02002150{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002151 struct mgmt_mode *cp = data;
Marcel Holtmann55594352013-10-06 16:11:57 -07002152 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02002153 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002154
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002155 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002156
Johan Hedberga7e80f22013-01-09 16:05:19 +02002157 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002158 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE,
2159 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002160
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002161 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002162
2163 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07002164 changed = !hci_dev_test_and_set_flag(hdev, HCI_BONDABLE);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002165 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002166 changed = hci_dev_test_and_clear_flag(hdev, HCI_BONDABLE);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002167
Johan Hedbergb2939472014-07-30 09:22:23 +03002168 err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002169 if (err < 0)
Marcel Holtmann55594352013-10-06 16:11:57 -07002170 goto unlock;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002171
Marcel Holtmann55594352013-10-06 16:11:57 -07002172 if (changed)
2173 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002174
Marcel Holtmann55594352013-10-06 16:11:57 -07002175unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002176 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002177 return err;
2178}
Johan Hedberg72a734e2010-12-30 00:38:22 +02002179
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002180static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
2181 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002182{
2183 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002184 struct mgmt_pending_cmd *cmd;
Johan Hedberge6fe7982013-10-02 15:45:22 +03002185 u8 val, status;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002186 int err;
2187
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002188 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002189
Johan Hedberge6fe7982013-10-02 15:45:22 +03002190 status = mgmt_bredr_support(hdev);
2191 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002192 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2193 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +03002194
Johan Hedberga7e80f22013-01-09 16:05:19 +02002195 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002196 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2197 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002198
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002199 hci_dev_lock(hdev);
2200
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002201 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02002202 bool changed = false;
2203
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002204 if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07002205 hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02002206 changed = true;
2207 }
2208
2209 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
2210 if (err < 0)
2211 goto failed;
2212
2213 if (changed)
2214 err = new_settings(hdev, sk);
2215
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002216 goto failed;
2217 }
2218
Johan Hedberg333ae952015-03-17 13:48:47 +02002219 if (pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002220 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2221 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002222 goto failed;
2223 }
2224
2225 val = !!cp->val;
2226
2227 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
2228 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
2229 goto failed;
2230 }
2231
2232 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
2233 if (!cmd) {
2234 err = -ENOMEM;
2235 goto failed;
2236 }
2237
2238 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
2239 if (err < 0) {
2240 mgmt_pending_remove(cmd);
2241 goto failed;
2242 }
2243
2244failed:
2245 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002246 return err;
2247}
2248
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002249static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002250{
2251 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002252 struct mgmt_pending_cmd *cmd;
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002253 u8 status;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002254 int err;
2255
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002256 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002257
Marcel Holtmanncdba5282013-10-02 21:31:52 -07002258 status = mgmt_bredr_support(hdev);
2259 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002260 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
Marcel Holtmanncdba5282013-10-02 21:31:52 -07002261
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002262 if (!lmp_ssp_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002263 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2264 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002265
Johan Hedberga7e80f22013-01-09 16:05:19 +02002266 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002267 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2268 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002269
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002270 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02002271
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002272 if (!hdev_is_powered(hdev)) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002273 bool changed;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02002274
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002275 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07002276 changed = !hci_dev_test_and_set_flag(hdev,
2277 HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002278 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002279 changed = hci_dev_test_and_clear_flag(hdev,
2280 HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002281 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002282 changed = hci_dev_test_and_clear_flag(hdev,
2283 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002284 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002285 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02002286 }
2287
2288 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
2289 if (err < 0)
2290 goto failed;
2291
2292 if (changed)
2293 err = new_settings(hdev, sk);
2294
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002295 goto failed;
2296 }
2297
Johan Hedberg333ae952015-03-17 13:48:47 +02002298 if (pending_find(MGMT_OP_SET_SSP, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002299 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2300 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002301 goto failed;
2302 }
2303
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002304 if (!!cp->val == hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002305 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
2306 goto failed;
2307 }
2308
2309 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
2310 if (!cmd) {
2311 err = -ENOMEM;
2312 goto failed;
2313 }
2314
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002315 if (!cp->val && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03002316 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
2317 sizeof(cp->val), &cp->val);
2318
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002319 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002320 if (err < 0) {
2321 mgmt_pending_remove(cmd);
2322 goto failed;
2323 }
2324
2325failed:
2326 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002327 return err;
2328}
2329
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002330static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002331{
2332 struct mgmt_mode *cp = data;
Marcel Holtmannee392692013-10-01 22:59:23 -07002333 bool changed;
Johan Hedberge6fe7982013-10-02 15:45:22 +03002334 u8 status;
Marcel Holtmannee392692013-10-01 22:59:23 -07002335 int err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002336
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002337 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002338
Johan Hedberge6fe7982013-10-02 15:45:22 +03002339 status = mgmt_bredr_support(hdev);
2340 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002341 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002342
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002343 if (!lmp_ssp_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002344 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2345 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002346
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002347 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02002348 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2349 MGMT_STATUS_REJECTED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002350
Johan Hedberga7e80f22013-01-09 16:05:19 +02002351 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002352 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2353 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002354
Marcel Holtmannee392692013-10-01 22:59:23 -07002355 hci_dev_lock(hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002356
Johan Hedberg333ae952015-03-17 13:48:47 +02002357 if (pending_find(MGMT_OP_SET_SSP, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002358 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2359 MGMT_STATUS_BUSY);
Johan Hedberga2cb01d2015-02-19 17:38:07 +02002360 goto unlock;
2361 }
2362
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002363 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07002364 changed = !hci_dev_test_and_set_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002365 } else {
2366 if (hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002367 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2368 MGMT_STATUS_REJECTED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002369 goto unlock;
2370 }
2371
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002372 changed = hci_dev_test_and_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002373 }
Marcel Holtmannee392692013-10-01 22:59:23 -07002374
2375 err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
2376 if (err < 0)
2377 goto unlock;
2378
2379 if (changed)
2380 err = new_settings(hdev, sk);
2381
2382unlock:
2383 hci_dev_unlock(hdev);
2384 return err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002385}
2386
Marcel Holtmann1904a852015-01-11 13:50:44 -08002387static void le_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002388{
2389 struct cmd_lookup match = { NULL, hdev };
2390
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302391 hci_dev_lock(hdev);
2392
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002393 if (status) {
2394 u8 mgmt_err = mgmt_status(status);
2395
2396 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
2397 &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302398 goto unlock;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002399 }
2400
2401 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
2402
2403 new_settings(hdev, match.sk);
2404
2405 if (match.sk)
2406 sock_put(match.sk);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002407
2408 /* Make sure the controller has a good default for
2409 * advertising data. Restrict the update to when LE
2410 * has actually been enabled. During power on, the
2411 * update in powered_update_hci will take care of it.
2412 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002413 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002414 struct hci_request req;
2415
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002416 hci_req_init(&req, hdev);
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07002417 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07002418 update_scan_rsp_data(&req);
Johan Hedberg2cf22212014-12-19 22:26:00 +02002419 __hci_update_background_scan(&req);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002420 hci_req_run(&req, NULL);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002421 }
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302422
2423unlock:
2424 hci_dev_unlock(hdev);
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002425}
2426
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002427static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002428{
2429 struct mgmt_mode *cp = data;
2430 struct hci_cp_write_le_host_supported hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002431 struct mgmt_pending_cmd *cmd;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002432 struct hci_request req;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002433 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002434 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002435
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002436 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002437
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002438 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002439 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2440 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002441
Johan Hedberga7e80f22013-01-09 16:05:19 +02002442 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002443 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2444 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002445
Marcel Holtmanne7844ee2015-03-18 16:15:07 -07002446 /* Bluetooth single mode LE only controllers or dual-mode
2447 * controllers configured as LE only devices, do not allow
2448 * switching LE off. These have either LE enabled explicitly
2449 * or BR/EDR has been previously switched off.
2450 *
2451 * When trying to enable an already enabled LE, then gracefully
2452 * send a positive response. Trying to disable it however will
2453 * result into rejection.
2454 */
2455 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
2456 if (cp->val == 0x01)
2457 return send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
2458
Johan Hedberga69e8372015-03-06 21:08:53 +02002459 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2460 MGMT_STATUS_REJECTED);
Marcel Holtmanne7844ee2015-03-18 16:15:07 -07002461 }
Johan Hedbergc73eee92013-04-19 18:35:21 +03002462
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002463 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002464
2465 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02002466 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002467
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002468 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02002469 bool changed = false;
2470
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002471 if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07002472 hci_dev_change_flag(hdev, HCI_LE_ENABLED);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002473 changed = true;
2474 }
2475
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002476 if (!val && hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002477 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03002478 changed = true;
2479 }
2480
Johan Hedberg06199cf2012-02-22 16:37:11 +02002481 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
2482 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08002483 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002484
2485 if (changed)
2486 err = new_settings(hdev, sk);
2487
Johan Hedberg1de028c2012-02-29 19:55:35 -08002488 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002489 }
2490
Johan Hedberg333ae952015-03-17 13:48:47 +02002491 if (pending_find(MGMT_OP_SET_LE, hdev) ||
2492 pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002493 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2494 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002495 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002496 }
2497
2498 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
2499 if (!cmd) {
2500 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08002501 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002502 }
2503
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002504 hci_req_init(&req, hdev);
2505
Johan Hedberg06199cf2012-02-22 16:37:11 +02002506 memset(&hci_cp, 0, sizeof(hci_cp));
2507
2508 if (val) {
2509 hci_cp.le = val;
Marcel Holtmann32226e42014-07-24 20:04:16 +02002510 hci_cp.simul = 0x00;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002511 } else {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002512 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002513 disable_advertising(&req);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002514 }
2515
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002516 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
2517 &hci_cp);
2518
2519 err = hci_req_run(&req, le_enable_complete);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05302520 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002521 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002522
Johan Hedberg1de028c2012-02-29 19:55:35 -08002523unlock:
2524 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002525 return err;
2526}
2527
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002528/* This is a helper function to test for pending mgmt commands that can
2529 * cause CoD or EIR HCI commands. We can only allow one such pending
2530 * mgmt command at a time since otherwise we cannot easily track what
2531 * the current values are, will be, and based on that calculate if a new
2532 * HCI command needs to be sent and if yes with what value.
2533 */
2534static bool pending_eir_or_class(struct hci_dev *hdev)
2535{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002536 struct mgmt_pending_cmd *cmd;
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002537
2538 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
2539 switch (cmd->opcode) {
2540 case MGMT_OP_ADD_UUID:
2541 case MGMT_OP_REMOVE_UUID:
2542 case MGMT_OP_SET_DEV_CLASS:
2543 case MGMT_OP_SET_POWERED:
2544 return true;
2545 }
2546 }
2547
2548 return false;
2549}
2550
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002551static const u8 bluetooth_base_uuid[] = {
2552 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
2553 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2554};
2555
2556static u8 get_uuid_size(const u8 *uuid)
2557{
2558 u32 val;
2559
2560 if (memcmp(uuid, bluetooth_base_uuid, 12))
2561 return 128;
2562
2563 val = get_unaligned_le32(&uuid[12]);
2564 if (val > 0xffff)
2565 return 32;
2566
2567 return 16;
2568}
2569
Johan Hedberg92da6092013-03-15 17:06:55 -05002570static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
2571{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002572 struct mgmt_pending_cmd *cmd;
Johan Hedberg92da6092013-03-15 17:06:55 -05002573
2574 hci_dev_lock(hdev);
2575
Johan Hedberg333ae952015-03-17 13:48:47 +02002576 cmd = pending_find(mgmt_op, hdev);
Johan Hedberg92da6092013-03-15 17:06:55 -05002577 if (!cmd)
2578 goto unlock;
2579
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002580 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
2581 mgmt_status(status), hdev->dev_class, 3);
Johan Hedberg92da6092013-03-15 17:06:55 -05002582
2583 mgmt_pending_remove(cmd);
2584
2585unlock:
2586 hci_dev_unlock(hdev);
2587}
2588
Marcel Holtmann1904a852015-01-11 13:50:44 -08002589static void add_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002590{
2591 BT_DBG("status 0x%02x", status);
2592
2593 mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
2594}
2595
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002596static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002597{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002598 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002599 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002600 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002601 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002602 int err;
2603
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002604 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002605
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002606 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002607
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002608 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002609 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
2610 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002611 goto failed;
2612 }
2613
Andre Guedes92c4c202012-06-07 19:05:44 -03002614 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002615 if (!uuid) {
2616 err = -ENOMEM;
2617 goto failed;
2618 }
2619
2620 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002621 uuid->svc_hint = cp->svc_hint;
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002622 uuid->size = get_uuid_size(cp->uuid);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002623
Johan Hedbergde66aa62013-01-27 00:31:27 +02002624 list_add_tail(&uuid->list, &hdev->uuids);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002625
Johan Hedberg890ea892013-03-15 17:06:52 -05002626 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002627
Johan Hedberg890ea892013-03-15 17:06:52 -05002628 update_class(&req);
2629 update_eir(&req);
2630
Johan Hedberg92da6092013-03-15 17:06:55 -05002631 err = hci_req_run(&req, add_uuid_complete);
2632 if (err < 0) {
2633 if (err != -ENODATA)
2634 goto failed;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002635
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002636 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
2637 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002638 goto failed;
2639 }
2640
2641 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002642 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002643 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002644 goto failed;
2645 }
2646
2647 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002648
2649failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002650 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002651 return err;
2652}
2653
Johan Hedberg24b78d02012-02-23 23:24:30 +02002654static bool enable_service_cache(struct hci_dev *hdev)
2655{
2656 if (!hdev_is_powered(hdev))
2657 return false;
2658
Marcel Holtmann238be782015-03-13 02:11:06 -07002659 if (!hci_dev_test_and_set_flag(hdev, HCI_SERVICE_CACHE)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02002660 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
2661 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002662 return true;
2663 }
2664
2665 return false;
2666}
2667
Marcel Holtmann1904a852015-01-11 13:50:44 -08002668static void remove_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002669{
2670 BT_DBG("status 0x%02x", status);
2671
2672 mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
2673}
2674
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002675static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002676 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002677{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002678 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002679 struct mgmt_pending_cmd *cmd;
Johan Hedberg056341c2013-01-27 00:31:30 +02002680 struct bt_uuid *match, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002681 u8 bt_uuid_any[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
Johan Hedberg890ea892013-03-15 17:06:52 -05002682 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002683 int err, found;
2684
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002685 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002686
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002687 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002688
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002689 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002690 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
2691 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002692 goto unlock;
2693 }
2694
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002695 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
Johan Hedberg35f74982014-02-18 17:14:32 +02002696 hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002697
Johan Hedberg24b78d02012-02-23 23:24:30 +02002698 if (enable_service_cache(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002699 err = mgmt_cmd_complete(sk, hdev->id,
2700 MGMT_OP_REMOVE_UUID,
2701 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002702 goto unlock;
2703 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002704
Johan Hedberg9246a862012-02-23 21:33:16 +02002705 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002706 }
2707
2708 found = 0;
2709
Johan Hedberg056341c2013-01-27 00:31:30 +02002710 list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002711 if (memcmp(match->uuid, cp->uuid, 16) != 0)
2712 continue;
2713
2714 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01002715 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002716 found++;
2717 }
2718
2719 if (found == 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002720 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
2721 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002722 goto unlock;
2723 }
2724
Johan Hedberg9246a862012-02-23 21:33:16 +02002725update_class:
Johan Hedberg890ea892013-03-15 17:06:52 -05002726 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002727
Johan Hedberg890ea892013-03-15 17:06:52 -05002728 update_class(&req);
2729 update_eir(&req);
2730
Johan Hedberg92da6092013-03-15 17:06:55 -05002731 err = hci_req_run(&req, remove_uuid_complete);
2732 if (err < 0) {
2733 if (err != -ENODATA)
2734 goto unlock;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002735
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002736 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
2737 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002738 goto unlock;
2739 }
2740
2741 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002742 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002743 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002744 goto unlock;
2745 }
2746
2747 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002748
2749unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002750 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002751 return err;
2752}
2753
Marcel Holtmann1904a852015-01-11 13:50:44 -08002754static void set_class_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002755{
2756 BT_DBG("status 0x%02x", status);
2757
2758 mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
2759}
2760
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002761static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002762 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002763{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002764 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002765 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002766 struct hci_request req;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002767 int err;
2768
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002769 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002770
Marcel Holtmann6203fc92013-10-02 23:37:29 -07002771 if (!lmp_bredr_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002772 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2773 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002774
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002775 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002776
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002777 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002778 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2779 MGMT_STATUS_BUSY);
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002780 goto unlock;
2781 }
2782
2783 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002784 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2785 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002786 goto unlock;
2787 }
2788
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002789 hdev->major_class = cp->major;
2790 hdev->minor_class = cp->minor;
2791
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002792 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002793 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
2794 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002795 goto unlock;
2796 }
2797
Johan Hedberg890ea892013-03-15 17:06:52 -05002798 hci_req_init(&req, hdev);
2799
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002800 if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02002801 hci_dev_unlock(hdev);
2802 cancel_delayed_work_sync(&hdev->service_cache);
2803 hci_dev_lock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05002804 update_eir(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02002805 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02002806
Johan Hedberg890ea892013-03-15 17:06:52 -05002807 update_class(&req);
2808
Johan Hedberg92da6092013-03-15 17:06:55 -05002809 err = hci_req_run(&req, set_class_complete);
2810 if (err < 0) {
2811 if (err != -ENODATA)
2812 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002813
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002814 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
2815 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002816 goto unlock;
2817 }
2818
2819 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002820 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002821 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002822 goto unlock;
2823 }
2824
2825 err = 0;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002826
Johan Hedbergb5235a62012-02-21 14:32:24 +02002827unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002828 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002829 return err;
2830}
2831
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002832static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002833 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002834{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002835 struct mgmt_cp_load_link_keys *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03002836 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
2837 sizeof(struct mgmt_link_key_info));
Szymon Janc4e51eae2011-02-25 19:05:48 +01002838 u16 key_count, expected_len;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002839 bool changed;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002840 int i;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002841
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002842 BT_DBG("request for %s", hdev->name);
2843
2844 if (!lmp_bredr_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002845 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2846 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002847
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002848 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002849 if (key_count > max_key_count) {
2850 BT_ERR("load_link_keys: too big key_count value %u",
2851 key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02002852 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2853 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002854 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002855
Johan Hedberg86742e12011-11-07 23:13:38 +02002856 expected_len = sizeof(*cp) + key_count *
2857 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002858 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002859 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02002860 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02002861 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2862 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002863 }
2864
Johan Hedberg4ae14302013-01-20 14:27:13 +02002865 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002866 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2867 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ae14302013-01-20 14:27:13 +02002868
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002869 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002870 key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002871
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002872 for (i = 0; i < key_count; i++) {
2873 struct mgmt_link_key_info *key = &cp->keys[i];
2874
Marcel Holtmann8e991132014-01-10 02:07:25 -08002875 if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
Johan Hedberga69e8372015-03-06 21:08:53 +02002876 return mgmt_cmd_status(sk, hdev->id,
2877 MGMT_OP_LOAD_LINK_KEYS,
2878 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002879 }
2880
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002881 hci_dev_lock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002882
2883 hci_link_keys_clear(hdev);
2884
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002885 if (cp->debug_keys)
Marcel Holtmann238be782015-03-13 02:11:06 -07002886 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002887 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002888 changed = hci_dev_test_and_clear_flag(hdev,
2889 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002890
2891 if (changed)
2892 new_settings(hdev, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002893
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002894 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002895 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002896
Johan Hedberg58e92932014-06-24 14:00:26 +03002897 /* Always ignore debug keys and require a new pairing if
2898 * the user wants to use them.
2899 */
2900 if (key->type == HCI_LK_DEBUG_COMBINATION)
2901 continue;
2902
Johan Hedberg7652ff62014-06-24 13:15:49 +03002903 hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
2904 key->type, key->pin_len, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002905 }
2906
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002907 mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02002908
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002909 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002910
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002911 return 0;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002912}
2913
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002914static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002915 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002916{
2917 struct mgmt_ev_device_unpaired ev;
2918
2919 bacpy(&ev.addr.bdaddr, bdaddr);
2920 ev.addr.type = addr_type;
2921
2922 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002923 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002924}
2925
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002926static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002927 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002928{
Johan Hedberg124f6e32012-02-09 13:50:12 +02002929 struct mgmt_cp_unpair_device *cp = data;
2930 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002931 struct hci_cp_disconnect dc;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002932 struct mgmt_pending_cmd *cmd;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002933 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002934 int err;
2935
Johan Hedberga8a1d192011-11-10 15:54:38 +02002936 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02002937 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2938 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002939
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002940 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002941 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2942 MGMT_STATUS_INVALID_PARAMS,
2943 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002944
Johan Hedberg118da702013-01-20 14:27:20 +02002945 if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002946 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2947 MGMT_STATUS_INVALID_PARAMS,
2948 &rp, sizeof(rp));
Johan Hedberg118da702013-01-20 14:27:20 +02002949
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002950 hci_dev_lock(hdev);
2951
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002952 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002953 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2954 MGMT_STATUS_NOT_POWERED, &rp,
2955 sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002956 goto unlock;
2957 }
2958
Johan Hedberge0b2b272014-02-18 17:14:31 +02002959 if (cp->addr.type == BDADDR_BREDR) {
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002960 /* If disconnection is requested, then look up the
2961 * connection. If the remote device is connected, it
2962 * will be later used to terminate the link.
2963 *
2964 * Setting it to NULL explicitly will cause no
2965 * termination of the link.
2966 */
2967 if (cp->disconnect)
2968 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
2969 &cp->addr.bdaddr);
2970 else
2971 conn = NULL;
2972
Johan Hedberg124f6e32012-02-09 13:50:12 +02002973 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
Johan Hedberge0b2b272014-02-18 17:14:31 +02002974 } else {
2975 u8 addr_type;
2976
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002977 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
2978 &cp->addr.bdaddr);
2979 if (conn) {
2980 /* Defer clearing up the connection parameters
2981 * until closing to give a chance of keeping
2982 * them if a repairing happens.
2983 */
2984 set_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
2985
2986 /* If disconnection is not requested, then
2987 * clear the connection variable so that the
2988 * link is not terminated.
2989 */
2990 if (!cp->disconnect)
2991 conn = NULL;
2992 }
2993
Johan Hedberge0b2b272014-02-18 17:14:31 +02002994 if (cp->addr.type == BDADDR_LE_PUBLIC)
2995 addr_type = ADDR_LE_DEV_PUBLIC;
2996 else
2997 addr_type = ADDR_LE_DEV_RANDOM;
2998
Johan Hedberga7ec7332014-02-18 17:14:35 +02002999 hci_remove_irk(hdev, &cp->addr.bdaddr, addr_type);
3000
Johan Hedberge0b2b272014-02-18 17:14:31 +02003001 err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
3002 }
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03003003
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003004 if (err < 0) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003005 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
3006 MGMT_STATUS_NOT_PAIRED, &rp,
3007 sizeof(rp));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003008 goto unlock;
3009 }
3010
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003011 /* If the connection variable is set, then termination of the
3012 * link is requested.
3013 */
Johan Hedberga8a1d192011-11-10 15:54:38 +02003014 if (!conn) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003015 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
3016 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003017 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02003018 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003019 }
3020
Johan Hedberg124f6e32012-02-09 13:50:12 +02003021 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003022 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02003023 if (!cmd) {
3024 err = -ENOMEM;
3025 goto unlock;
3026 }
3027
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02003028 cmd->cmd_complete = addr_cmd_complete;
3029
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003030 dc.handle = cpu_to_le16(conn->handle);
Johan Hedberga8a1d192011-11-10 15:54:38 +02003031 dc.reason = 0x13; /* Remote User Terminated Connection */
3032 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
3033 if (err < 0)
3034 mgmt_pending_remove(cmd);
3035
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003036unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003037 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003038 return err;
3039}
3040
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003041static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003042 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02003043{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003044 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg06a63b12013-01-20 14:27:21 +02003045 struct mgmt_rp_disconnect rp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003046 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003047 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003048 int err;
3049
3050 BT_DBG("");
3051
Johan Hedberg06a63b12013-01-20 14:27:21 +02003052 memset(&rp, 0, sizeof(rp));
3053 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3054 rp.addr.type = cp->addr.type;
3055
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003056 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003057 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3058 MGMT_STATUS_INVALID_PARAMS,
3059 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003060
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003061 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003062
3063 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003064 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3065 MGMT_STATUS_NOT_POWERED, &rp,
3066 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003067 goto failed;
3068 }
3069
Johan Hedberg333ae952015-03-17 13:48:47 +02003070 if (pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003071 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3072 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003073 goto failed;
3074 }
3075
Andre Guedes591f47f2012-04-24 21:02:49 -03003076 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003077 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
3078 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02003079 else
3080 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03003081
Vishal Agarwalf9607272012-06-13 05:32:43 +05303082 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003083 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3084 MGMT_STATUS_NOT_CONNECTED, &rp,
3085 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003086 goto failed;
3087 }
3088
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003089 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03003090 if (!cmd) {
3091 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003092 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03003093 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02003094
Johan Hedbergf5818c22014-12-05 13:36:02 +02003095 cmd->cmd_complete = generic_cmd_complete;
3096
Johan Hedberge3f2f922014-08-18 20:33:33 +03003097 err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003098 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03003099 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003100
3101failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003102 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003103 return err;
3104}
3105
Andre Guedes57c14772012-04-24 21:02:50 -03003106static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02003107{
3108 switch (link_type) {
3109 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02003110 switch (addr_type) {
3111 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03003112 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03003113
Johan Hedberg48264f02011-11-09 13:58:58 +02003114 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03003115 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03003116 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02003117 }
Andre Guedes0ed09142012-04-03 08:46:54 -03003118
Johan Hedberg4c659c32011-11-07 23:13:39 +02003119 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03003120 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03003121 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003122 }
3123}
3124
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003125static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
3126 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02003127{
Johan Hedberg2784eb42011-01-21 13:56:35 +02003128 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02003129 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02003130 size_t rp_len;
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003131 int err;
3132 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02003133
3134 BT_DBG("");
3135
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003136 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003137
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003138 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003139 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
3140 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003141 goto unlock;
3142 }
3143
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003144 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02003145 list_for_each_entry(c, &hdev->conn_hash.list, list) {
3146 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003147 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02003148 }
3149
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003150 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03003151 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02003152 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02003153 err = -ENOMEM;
3154 goto unlock;
3155 }
3156
Johan Hedberg2784eb42011-01-21 13:56:35 +02003157 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003158 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02003159 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
3160 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003161 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03003162 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03003163 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02003164 continue;
3165 i++;
3166 }
3167
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003168 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003169
Johan Hedberg4c659c32011-11-07 23:13:39 +02003170 /* Recalculate length in case of filtered SCO connections, etc */
3171 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02003172
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003173 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
3174 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003175
Johan Hedberga38528f2011-01-22 06:46:43 +02003176 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003177
3178unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003179 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003180 return err;
3181}
3182
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003183static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003184 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003185{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003186 struct mgmt_pending_cmd *cmd;
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003187 int err;
3188
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003189 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003190 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003191 if (!cmd)
3192 return -ENOMEM;
3193
Johan Hedbergd8457692012-02-17 14:24:57 +02003194 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003195 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003196 if (err < 0)
3197 mgmt_pending_remove(cmd);
3198
3199 return err;
3200}
3201
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003202static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003203 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003204{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003205 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003206 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003207 struct hci_cp_pin_code_reply reply;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003208 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003209 int err;
3210
3211 BT_DBG("");
3212
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003213 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003214
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003215 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003216 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3217 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003218 goto failed;
3219 }
3220
Johan Hedbergd8457692012-02-17 14:24:57 +02003221 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003222 if (!conn) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003223 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3224 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003225 goto failed;
3226 }
3227
3228 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02003229 struct mgmt_cp_pin_code_neg_reply ncp;
3230
3231 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003232
3233 BT_ERR("PIN code is not 16 bytes long");
3234
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003235 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003236 if (err >= 0)
Johan Hedberga69e8372015-03-06 21:08:53 +02003237 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3238 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003239
3240 goto failed;
3241 }
3242
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03003243 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03003244 if (!cmd) {
3245 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003246 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03003247 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02003248
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003249 cmd->cmd_complete = addr_cmd_complete;
3250
Johan Hedbergd8457692012-02-17 14:24:57 +02003251 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003252 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02003253 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003254
3255 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
3256 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03003257 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003258
3259failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003260 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003261 return err;
3262}
3263
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003264static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
3265 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003266{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003267 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003268
3269 BT_DBG("");
3270
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003271 if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003272 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
3273 MGMT_STATUS_INVALID_PARAMS, NULL, 0);
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003274
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003275 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003276
3277 hdev->io_capability = cp->io_capability;
3278
3279 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003280 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003281
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003282 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003283
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003284 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0,
3285 NULL, 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003286}
3287
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003288static struct mgmt_pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003289{
3290 struct hci_dev *hdev = conn->hdev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003291 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003292
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003293 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03003294 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
3295 continue;
3296
Johan Hedberge9a416b2011-02-19 12:05:56 -03003297 if (cmd->user_data != conn)
3298 continue;
3299
3300 return cmd;
3301 }
3302
3303 return NULL;
3304}
3305
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003306static int pairing_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003307{
3308 struct mgmt_rp_pair_device rp;
3309 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9df74652014-12-19 22:26:03 +02003310 int err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003311
Johan Hedberg61b1a7f2014-03-20 12:54:16 +02003312 bacpy(&rp.addr.bdaddr, &conn->dst);
3313 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003314
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003315 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE,
3316 status, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003317
3318 /* So we don't get further callbacks for this connection */
3319 conn->connect_cfm_cb = NULL;
3320 conn->security_cfm_cb = NULL;
3321 conn->disconn_cfm_cb = NULL;
3322
David Herrmann76a68ba2013-04-06 20:28:37 +02003323 hci_conn_drop(conn);
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003324
3325 /* The device is paired so there is no need to remove
3326 * its connection parameters anymore.
3327 */
3328 clear_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
Johan Hedberg15013ae2014-12-11 21:45:44 +02003329
3330 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02003331
3332 return err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003333}
3334
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003335void mgmt_smp_complete(struct hci_conn *conn, bool complete)
3336{
3337 u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003338 struct mgmt_pending_cmd *cmd;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003339
3340 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003341 if (cmd) {
Johan Hedberg04ab2742014-12-05 13:36:04 +02003342 cmd->cmd_complete(cmd, status);
Johan Hedberga511b352014-12-11 21:45:45 +02003343 mgmt_pending_remove(cmd);
3344 }
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003345}
3346
Johan Hedberge9a416b2011-02-19 12:05:56 -03003347static void pairing_complete_cb(struct hci_conn *conn, u8 status)
3348{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003349 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003350
3351 BT_DBG("status %u", status);
3352
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003353 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003354 if (!cmd) {
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003355 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02003356 return;
3357 }
3358
3359 cmd->cmd_complete(cmd, mgmt_status(status));
3360 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003361}
3362
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003363static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303364{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003365 struct mgmt_pending_cmd *cmd;
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303366
3367 BT_DBG("status %u", status);
3368
3369 if (!status)
3370 return;
3371
3372 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003373 if (!cmd) {
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303374 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02003375 return;
3376 }
3377
3378 cmd->cmd_complete(cmd, mgmt_status(status));
3379 mgmt_pending_remove(cmd);
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303380}
3381
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003382static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003383 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003384{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003385 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02003386 struct mgmt_rp_pair_device rp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003387 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003388 u8 sec_level, auth_type;
3389 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003390 int err;
3391
3392 BT_DBG("");
3393
Szymon Jancf950a30e2013-01-18 12:48:07 +01003394 memset(&rp, 0, sizeof(rp));
3395 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3396 rp.addr.type = cp->addr.type;
3397
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003398 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003399 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3400 MGMT_STATUS_INVALID_PARAMS,
3401 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003402
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003403 if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003404 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3405 MGMT_STATUS_INVALID_PARAMS,
3406 &rp, sizeof(rp));
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003407
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003408 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003409
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003410 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003411 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3412 MGMT_STATUS_NOT_POWERED, &rp,
3413 sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003414 goto unlock;
3415 }
3416
Johan Hedberg55e76b32015-03-10 22:34:40 +02003417 if (hci_bdaddr_is_paired(hdev, &cp->addr.bdaddr, cp->addr.type)) {
3418 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3419 MGMT_STATUS_ALREADY_PAIRED, &rp,
3420 sizeof(rp));
3421 goto unlock;
3422 }
3423
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03003424 sec_level = BT_SECURITY_MEDIUM;
Mikel Astiz6fd6b912014-04-08 14:21:32 +02003425 auth_type = HCI_AT_DEDICATED_BONDING;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003426
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003427 if (cp->addr.type == BDADDR_BREDR) {
Andre Guedes04a6c582014-02-26 20:21:44 -03003428 conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
3429 auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003430 } else {
3431 u8 addr_type;
3432
3433 /* Convert from L2CAP channel address type to HCI address type
3434 */
3435 if (cp->addr.type == BDADDR_LE_PUBLIC)
3436 addr_type = ADDR_LE_DEV_PUBLIC;
3437 else
3438 addr_type = ADDR_LE_DEV_RANDOM;
3439
Marcel Holtmann7c264b12014-06-30 12:34:40 +02003440 /* When pairing a new device, it is expected to remember
3441 * this device for future connections. Adding the connection
3442 * parameter information ahead of time allows tracking
3443 * of the slave preferred values and will speed up any
3444 * further connection establishment.
3445 *
3446 * If connection parameters already exist, then they
3447 * will be kept and this function does nothing.
3448 */
3449 hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);
3450
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003451 conn = hci_connect_le(hdev, &cp->addr.bdaddr, addr_type,
Johan Hedberge804d252014-07-16 11:42:28 +03003452 sec_level, HCI_LE_CONN_TIMEOUT,
3453 HCI_ROLE_MASTER);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003454 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003455
Ville Tervo30e76272011-02-22 16:10:53 -03003456 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02003457 int status;
3458
3459 if (PTR_ERR(conn) == -EBUSY)
3460 status = MGMT_STATUS_BUSY;
Lukasz Rymanowskifaa81032015-02-11 12:31:42 +01003461 else if (PTR_ERR(conn) == -EOPNOTSUPP)
3462 status = MGMT_STATUS_NOT_SUPPORTED;
3463 else if (PTR_ERR(conn) == -ECONNREFUSED)
3464 status = MGMT_STATUS_REJECTED;
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02003465 else
3466 status = MGMT_STATUS_CONNECT_FAILED;
3467
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003468 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3469 status, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003470 goto unlock;
3471 }
3472
3473 if (conn->connect_cfm_cb) {
David Herrmann76a68ba2013-04-06 20:28:37 +02003474 hci_conn_drop(conn);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003475 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3476 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003477 goto unlock;
3478 }
3479
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003480 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003481 if (!cmd) {
3482 err = -ENOMEM;
David Herrmann76a68ba2013-04-06 20:28:37 +02003483 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003484 goto unlock;
3485 }
3486
Johan Hedberg04ab2742014-12-05 13:36:04 +02003487 cmd->cmd_complete = pairing_complete;
3488
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003489 /* For LE, just connecting isn't a proof that the pairing finished */
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003490 if (cp->addr.type == BDADDR_BREDR) {
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003491 conn->connect_cfm_cb = pairing_complete_cb;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003492 conn->security_cfm_cb = pairing_complete_cb;
3493 conn->disconn_cfm_cb = pairing_complete_cb;
3494 } else {
3495 conn->connect_cfm_cb = le_pairing_complete_cb;
3496 conn->security_cfm_cb = le_pairing_complete_cb;
3497 conn->disconn_cfm_cb = le_pairing_complete_cb;
3498 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003499
Johan Hedberge9a416b2011-02-19 12:05:56 -03003500 conn->io_capability = cp->io_cap;
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03003501 cmd->user_data = hci_conn_get(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003502
Johan Hedberg6f78fd42014-07-30 08:35:48 +03003503 if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
Johan Hedberga511b352014-12-11 21:45:45 +02003504 hci_conn_security(conn, sec_level, auth_type, true)) {
3505 cmd->cmd_complete(cmd, 0);
3506 mgmt_pending_remove(cmd);
3507 }
Johan Hedberge9a416b2011-02-19 12:05:56 -03003508
3509 err = 0;
3510
3511unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003512 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003513 return err;
3514}
3515
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003516static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3517 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02003518{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003519 struct mgmt_addr_info *addr = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003520 struct mgmt_pending_cmd *cmd;
Johan Hedberg28424702012-02-02 04:02:29 +02003521 struct hci_conn *conn;
3522 int err;
3523
3524 BT_DBG("");
3525
Johan Hedberg28424702012-02-02 04:02:29 +02003526 hci_dev_lock(hdev);
3527
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003528 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003529 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3530 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003531 goto unlock;
3532 }
3533
Johan Hedberg333ae952015-03-17 13:48:47 +02003534 cmd = pending_find(MGMT_OP_PAIR_DEVICE, hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003535 if (!cmd) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003536 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3537 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003538 goto unlock;
3539 }
3540
3541 conn = cmd->user_data;
3542
3543 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003544 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3545 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003546 goto unlock;
3547 }
3548
Johan Hedberga511b352014-12-11 21:45:45 +02003549 cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
3550 mgmt_pending_remove(cmd);
Johan Hedberg28424702012-02-02 04:02:29 +02003551
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003552 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
3553 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02003554unlock:
3555 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003556 return err;
3557}
3558
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003559static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Johan Hedberg1707c602013-03-15 17:07:15 -05003560 struct mgmt_addr_info *addr, u16 mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003561 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03003562{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003563 struct mgmt_pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08003564 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003565 int err;
3566
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003567 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02003568
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003569 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003570 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3571 MGMT_STATUS_NOT_POWERED, addr,
3572 sizeof(*addr));
Brian Gix0df4c182011-11-16 13:53:13 -08003573 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003574 }
3575
Johan Hedberg1707c602013-03-15 17:07:15 -05003576 if (addr->type == BDADDR_BREDR)
3577 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
Johan Hedberg272d90d2012-02-09 15:26:12 +02003578 else
Johan Hedberg1707c602013-03-15 17:07:15 -05003579 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr);
Brian Gix47c15e22011-11-16 13:53:14 -08003580
Johan Hedberg272d90d2012-02-09 15:26:12 +02003581 if (!conn) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003582 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3583 MGMT_STATUS_NOT_CONNECTED, addr,
3584 sizeof(*addr));
Johan Hedberg272d90d2012-02-09 15:26:12 +02003585 goto done;
3586 }
3587
Johan Hedberg1707c602013-03-15 17:07:15 -05003588 if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
Brian Gix5fe57d92011-12-21 16:12:13 -08003589 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix5fe57d92011-12-21 16:12:13 -08003590 if (!err)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003591 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3592 MGMT_STATUS_SUCCESS, addr,
3593 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003594 else
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003595 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3596 MGMT_STATUS_FAILED, addr,
3597 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003598
Brian Gix47c15e22011-11-16 13:53:14 -08003599 goto done;
3600 }
3601
Johan Hedberg1707c602013-03-15 17:07:15 -05003602 cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
Johan Hedberga5c29682011-02-19 12:05:57 -03003603 if (!cmd) {
3604 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08003605 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003606 }
3607
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003608 cmd->cmd_complete = addr_cmd_complete;
3609
Brian Gix0df4c182011-11-16 13:53:13 -08003610 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08003611 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
3612 struct hci_cp_user_passkey_reply cp;
3613
Johan Hedberg1707c602013-03-15 17:07:15 -05003614 bacpy(&cp.bdaddr, &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003615 cp.passkey = passkey;
3616 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
3617 } else
Johan Hedberg1707c602013-03-15 17:07:15 -05003618 err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
3619 &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003620
Johan Hedberga664b5b2011-02-19 12:06:02 -03003621 if (err < 0)
3622 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003623
Brian Gix0df4c182011-11-16 13:53:13 -08003624done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003625 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003626 return err;
3627}
3628
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303629static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3630 void *data, u16 len)
3631{
3632 struct mgmt_cp_pin_code_neg_reply *cp = data;
3633
3634 BT_DBG("");
3635
Johan Hedberg1707c602013-03-15 17:07:15 -05003636 return user_pairing_resp(sk, hdev, &cp->addr,
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303637 MGMT_OP_PIN_CODE_NEG_REPLY,
3638 HCI_OP_PIN_CODE_NEG_REPLY, 0);
3639}
3640
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003641static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3642 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003643{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003644 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003645
3646 BT_DBG("");
3647
3648 if (len != sizeof(*cp))
Johan Hedberga69e8372015-03-06 21:08:53 +02003649 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
3650 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08003651
Johan Hedberg1707c602013-03-15 17:07:15 -05003652 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003653 MGMT_OP_USER_CONFIRM_REPLY,
3654 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003655}
3656
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003657static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003658 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003659{
Johan Hedbergc9c26592011-12-15 00:47:41 +02003660 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003661
3662 BT_DBG("");
3663
Johan Hedberg1707c602013-03-15 17:07:15 -05003664 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003665 MGMT_OP_USER_CONFIRM_NEG_REPLY,
3666 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003667}
3668
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003669static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3670 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003671{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003672 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003673
3674 BT_DBG("");
3675
Johan Hedberg1707c602013-03-15 17:07:15 -05003676 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003677 MGMT_OP_USER_PASSKEY_REPLY,
3678 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08003679}
3680
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003681static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003682 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003683{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003684 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003685
3686 BT_DBG("");
3687
Johan Hedberg1707c602013-03-15 17:07:15 -05003688 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003689 MGMT_OP_USER_PASSKEY_NEG_REPLY,
3690 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08003691}
3692
Johan Hedberg13928972013-03-15 17:07:00 -05003693static void update_name(struct hci_request *req)
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003694{
Johan Hedberg13928972013-03-15 17:07:00 -05003695 struct hci_dev *hdev = req->hdev;
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003696 struct hci_cp_write_local_name cp;
3697
Johan Hedberg13928972013-03-15 17:07:00 -05003698 memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003699
Johan Hedberg890ea892013-03-15 17:06:52 -05003700 hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003701}
3702
Marcel Holtmann1904a852015-01-11 13:50:44 -08003703static void set_name_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg13928972013-03-15 17:07:00 -05003704{
3705 struct mgmt_cp_set_local_name *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003706 struct mgmt_pending_cmd *cmd;
Johan Hedberg13928972013-03-15 17:07:00 -05003707
3708 BT_DBG("status 0x%02x", status);
3709
3710 hci_dev_lock(hdev);
3711
Johan Hedberg333ae952015-03-17 13:48:47 +02003712 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05003713 if (!cmd)
3714 goto unlock;
3715
3716 cp = cmd->param;
3717
3718 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02003719 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3720 mgmt_status(status));
Johan Hedberg13928972013-03-15 17:07:00 -05003721 else
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003722 mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3723 cp, sizeof(*cp));
Johan Hedberg13928972013-03-15 17:07:00 -05003724
3725 mgmt_pending_remove(cmd);
3726
3727unlock:
3728 hci_dev_unlock(hdev);
3729}
3730
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003731static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003732 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003733{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003734 struct mgmt_cp_set_local_name *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003735 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05003736 struct hci_request req;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003737 int err;
3738
3739 BT_DBG("");
3740
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003741 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003742
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003743 /* If the old values are the same as the new ones just return a
3744 * direct command complete event.
3745 */
3746 if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
3747 !memcmp(hdev->short_name, cp->short_name,
3748 sizeof(hdev->short_name))) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003749 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3750 data, len);
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003751 goto failed;
3752 }
3753
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003754 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003755
Johan Hedbergb5235a62012-02-21 14:32:24 +02003756 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003757 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003758
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003759 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3760 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003761 if (err < 0)
3762 goto failed;
3763
Marcel Holtmannf6b77122015-03-14 19:28:05 -07003764 err = mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev,
3765 data, len, sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003766
Johan Hedbergb5235a62012-02-21 14:32:24 +02003767 goto failed;
3768 }
3769
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003770 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003771 if (!cmd) {
3772 err = -ENOMEM;
3773 goto failed;
3774 }
3775
Johan Hedberg13928972013-03-15 17:07:00 -05003776 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3777
Johan Hedberg890ea892013-03-15 17:06:52 -05003778 hci_req_init(&req, hdev);
Johan Hedberg3f985052013-03-15 17:07:02 -05003779
3780 if (lmp_bredr_capable(hdev)) {
3781 update_name(&req);
3782 update_eir(&req);
3783 }
3784
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003785 /* The name is stored in the scan response data and so
3786 * no need to udpate the advertising data here.
3787 */
Johan Hedberg3f985052013-03-15 17:07:02 -05003788 if (lmp_le_capable(hdev))
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003789 update_scan_rsp_data(&req);
Johan Hedberg3f985052013-03-15 17:07:02 -05003790
Johan Hedberg13928972013-03-15 17:07:00 -05003791 err = hci_req_run(&req, set_name_complete);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003792 if (err < 0)
3793 mgmt_pending_remove(cmd);
3794
3795failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003796 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003797 return err;
3798}
3799
Johan Hedberg1b9441f2015-04-02 13:41:13 +03003800static void read_local_oob_data_complete(struct hci_dev *hdev, u8 status,
3801 u16 opcode, struct sk_buff *skb)
3802{
3803 struct mgmt_rp_read_local_oob_data mgmt_rp;
3804 size_t rp_size = sizeof(mgmt_rp);
3805 struct mgmt_pending_cmd *cmd;
3806
3807 BT_DBG("%s status %u", hdev->name, status);
3808
3809 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
3810 if (!cmd)
3811 return;
3812
3813 if (status || !skb) {
3814 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3815 status ? mgmt_status(status) : MGMT_STATUS_FAILED);
3816 goto remove;
3817 }
3818
3819 memset(&mgmt_rp, 0, sizeof(mgmt_rp));
3820
3821 if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
3822 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
3823
3824 if (skb->len < sizeof(*rp)) {
3825 mgmt_cmd_status(cmd->sk, hdev->id,
3826 MGMT_OP_READ_LOCAL_OOB_DATA,
3827 MGMT_STATUS_FAILED);
3828 goto remove;
3829 }
3830
3831 memcpy(mgmt_rp.hash192, rp->hash, sizeof(rp->hash));
3832 memcpy(mgmt_rp.rand192, rp->rand, sizeof(rp->rand));
3833
3834 rp_size -= sizeof(mgmt_rp.hash256) + sizeof(mgmt_rp.rand256);
3835 } else {
3836 struct hci_rp_read_local_oob_ext_data *rp = (void *) skb->data;
3837
3838 if (skb->len < sizeof(*rp)) {
3839 mgmt_cmd_status(cmd->sk, hdev->id,
3840 MGMT_OP_READ_LOCAL_OOB_DATA,
3841 MGMT_STATUS_FAILED);
3842 goto remove;
3843 }
3844
3845 memcpy(mgmt_rp.hash192, rp->hash192, sizeof(rp->hash192));
3846 memcpy(mgmt_rp.rand192, rp->rand192, sizeof(rp->rand192));
3847
3848 memcpy(mgmt_rp.hash256, rp->hash256, sizeof(rp->hash256));
3849 memcpy(mgmt_rp.rand256, rp->rand256, sizeof(rp->rand256));
3850 }
3851
3852 mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3853 MGMT_STATUS_SUCCESS, &mgmt_rp, rp_size);
3854
3855remove:
3856 mgmt_pending_remove(cmd);
3857}
3858
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003859static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003860 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01003861{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003862 struct mgmt_pending_cmd *cmd;
Johan Hedberg1b9441f2015-04-02 13:41:13 +03003863 struct hci_request req;
Szymon Jancc35938b2011-03-22 13:12:21 +01003864 int err;
3865
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003866 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01003867
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003868 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003869
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003870 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003871 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3872 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003873 goto unlock;
3874 }
3875
Andre Guedes9a1a1992012-07-24 15:03:48 -03003876 if (!lmp_ssp_capable(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003877 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3878 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003879 goto unlock;
3880 }
3881
Johan Hedberg333ae952015-03-17 13:48:47 +02003882 if (pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003883 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3884 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01003885 goto unlock;
3886 }
3887
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003888 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01003889 if (!cmd) {
3890 err = -ENOMEM;
3891 goto unlock;
3892 }
3893
Johan Hedberg1b9441f2015-04-02 13:41:13 +03003894 hci_req_init(&req, hdev);
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08003895
Johan Hedberg1b9441f2015-04-02 13:41:13 +03003896 if (bredr_sc_enabled(hdev))
3897 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
3898 else
3899 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
3900
3901 err = hci_req_run_skb(&req, read_local_oob_data_complete);
Szymon Jancc35938b2011-03-22 13:12:21 +01003902 if (err < 0)
3903 mgmt_pending_remove(cmd);
3904
3905unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003906 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003907 return err;
3908}
3909
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003910static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003911 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003912{
Johan Hedberg5d57e792015-01-23 10:10:38 +02003913 struct mgmt_addr_info *addr = data;
Szymon Janc2763eda2011-03-22 13:12:22 +01003914 int err;
3915
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003916 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003917
Johan Hedberg5d57e792015-01-23 10:10:38 +02003918 if (!bdaddr_type_is_valid(addr->type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003919 return mgmt_cmd_complete(sk, hdev->id,
3920 MGMT_OP_ADD_REMOTE_OOB_DATA,
3921 MGMT_STATUS_INVALID_PARAMS,
3922 addr, sizeof(*addr));
Johan Hedberg5d57e792015-01-23 10:10:38 +02003923
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003924 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003925
Marcel Holtmannec109112014-01-10 02:07:30 -08003926 if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
3927 struct mgmt_cp_add_remote_oob_data *cp = data;
3928 u8 status;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003929
Johan Hedbergc19a4952014-11-17 20:52:19 +02003930 if (cp->addr.type != BDADDR_BREDR) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003931 err = mgmt_cmd_complete(sk, hdev->id,
3932 MGMT_OP_ADD_REMOTE_OOB_DATA,
3933 MGMT_STATUS_INVALID_PARAMS,
3934 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02003935 goto unlock;
3936 }
3937
Marcel Holtmannec109112014-01-10 02:07:30 -08003938 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg6928a922014-10-26 20:46:09 +01003939 cp->addr.type, cp->hash,
3940 cp->rand, NULL, NULL);
Marcel Holtmannec109112014-01-10 02:07:30 -08003941 if (err < 0)
3942 status = MGMT_STATUS_FAILED;
3943 else
3944 status = MGMT_STATUS_SUCCESS;
3945
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003946 err = mgmt_cmd_complete(sk, hdev->id,
3947 MGMT_OP_ADD_REMOTE_OOB_DATA, status,
3948 &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08003949 } else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
3950 struct mgmt_cp_add_remote_oob_ext_data *cp = data;
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08003951 u8 *rand192, *hash192, *rand256, *hash256;
Marcel Holtmannec109112014-01-10 02:07:30 -08003952 u8 status;
3953
Johan Hedberg86df9202014-10-26 20:52:27 +01003954 if (bdaddr_type_is_le(cp->addr.type)) {
Johan Hedbergd25b78e2015-01-27 12:55:52 +02003955 /* Enforce zero-valued 192-bit parameters as
3956 * long as legacy SMP OOB isn't implemented.
3957 */
3958 if (memcmp(cp->rand192, ZERO_KEY, 16) ||
3959 memcmp(cp->hash192, ZERO_KEY, 16)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003960 err = mgmt_cmd_complete(sk, hdev->id,
3961 MGMT_OP_ADD_REMOTE_OOB_DATA,
3962 MGMT_STATUS_INVALID_PARAMS,
3963 addr, sizeof(*addr));
Johan Hedbergd25b78e2015-01-27 12:55:52 +02003964 goto unlock;
3965 }
3966
Johan Hedberg86df9202014-10-26 20:52:27 +01003967 rand192 = NULL;
3968 hash192 = NULL;
3969 } else {
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08003970 /* In case one of the P-192 values is set to zero,
3971 * then just disable OOB data for P-192.
3972 */
3973 if (!memcmp(cp->rand192, ZERO_KEY, 16) ||
3974 !memcmp(cp->hash192, ZERO_KEY, 16)) {
3975 rand192 = NULL;
3976 hash192 = NULL;
3977 } else {
3978 rand192 = cp->rand192;
3979 hash192 = cp->hash192;
3980 }
3981 }
3982
3983 /* In case one of the P-256 values is set to zero, then just
3984 * disable OOB data for P-256.
3985 */
3986 if (!memcmp(cp->rand256, ZERO_KEY, 16) ||
3987 !memcmp(cp->hash256, ZERO_KEY, 16)) {
3988 rand256 = NULL;
3989 hash256 = NULL;
3990 } else {
3991 rand256 = cp->rand256;
3992 hash256 = cp->hash256;
Johan Hedberg86df9202014-10-26 20:52:27 +01003993 }
3994
Johan Hedberg81328d52014-10-26 20:33:47 +01003995 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg86df9202014-10-26 20:52:27 +01003996 cp->addr.type, hash192, rand192,
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08003997 hash256, rand256);
Marcel Holtmannec109112014-01-10 02:07:30 -08003998 if (err < 0)
3999 status = MGMT_STATUS_FAILED;
4000 else
4001 status = MGMT_STATUS_SUCCESS;
4002
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004003 err = mgmt_cmd_complete(sk, hdev->id,
4004 MGMT_OP_ADD_REMOTE_OOB_DATA,
4005 status, &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08004006 } else {
4007 BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
Johan Hedberga69e8372015-03-06 21:08:53 +02004008 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
4009 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannec109112014-01-10 02:07:30 -08004010 }
Szymon Janc2763eda2011-03-22 13:12:22 +01004011
Johan Hedbergc19a4952014-11-17 20:52:19 +02004012unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004013 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004014 return err;
4015}
4016
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004017static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004018 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01004019{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004020 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004021 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01004022 int err;
4023
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004024 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01004025
Johan Hedbergc19a4952014-11-17 20:52:19 +02004026 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004027 return mgmt_cmd_complete(sk, hdev->id,
4028 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
4029 MGMT_STATUS_INVALID_PARAMS,
4030 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02004031
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004032 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004033
Johan Hedbergeedbd582014-11-15 09:34:23 +02004034 if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
4035 hci_remote_oob_data_clear(hdev);
4036 status = MGMT_STATUS_SUCCESS;
4037 goto done;
4038 }
4039
Johan Hedberg6928a922014-10-26 20:46:09 +01004040 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
Szymon Janc2763eda2011-03-22 13:12:22 +01004041 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004042 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01004043 else
Szymon Janca6785be2012-12-13 15:11:21 +01004044 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004045
Johan Hedbergeedbd582014-11-15 09:34:23 +02004046done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004047 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
4048 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01004049
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004050 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004051 return err;
4052}
4053
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004054static bool trigger_bredr_inquiry(struct hci_request *req, u8 *status)
4055{
4056 struct hci_dev *hdev = req->hdev;
4057 struct hci_cp_inquiry cp;
4058 /* General inquiry access code (GIAC) */
4059 u8 lap[3] = { 0x33, 0x8b, 0x9e };
4060
4061 *status = mgmt_bredr_support(hdev);
4062 if (*status)
4063 return false;
4064
4065 if (hci_dev_test_flag(hdev, HCI_INQUIRY)) {
4066 *status = MGMT_STATUS_BUSY;
4067 return false;
4068 }
4069
4070 hci_inquiry_cache_flush(hdev);
4071
4072 memset(&cp, 0, sizeof(cp));
4073 memcpy(&cp.lap, lap, sizeof(cp.lap));
4074 cp.length = DISCOV_BREDR_INQUIRY_LEN;
4075
4076 hci_req_add(req, HCI_OP_INQUIRY, sizeof(cp), &cp);
4077
4078 return true;
4079}
4080
4081static bool trigger_le_scan(struct hci_request *req, u16 interval, u8 *status)
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004082{
Marcel Holtmann80190442014-12-04 11:36:36 +01004083 struct hci_dev *hdev = req->hdev;
4084 struct hci_cp_le_set_scan_param param_cp;
4085 struct hci_cp_le_set_scan_enable enable_cp;
Marcel Holtmann80190442014-12-04 11:36:36 +01004086 u8 own_addr_type;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004087 int err;
4088
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004089 *status = mgmt_le_support(hdev);
4090 if (*status)
4091 return false;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004092
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004093 if (hci_dev_test_flag(hdev, HCI_LE_ADV)) {
4094 /* Don't let discovery abort an outgoing connection attempt
4095 * that's using directed advertising.
4096 */
4097 if (hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT)) {
4098 *status = MGMT_STATUS_REJECTED;
Marcel Holtmann80190442014-12-04 11:36:36 +01004099 return false;
4100 }
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004101
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004102 disable_advertising(req);
4103 }
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004104
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004105 /* If controller is scanning, it means the background scanning is
4106 * running. Thus, we should temporarily stop it in order to set the
4107 * discovery scanning parameters.
4108 */
4109 if (hci_dev_test_flag(hdev, HCI_LE_SCAN))
4110 hci_req_add_le_scan_disable(req);
4111
4112 /* All active scans will be done with either a resolvable private
4113 * address (when privacy feature has been enabled) or non-resolvable
4114 * private address.
4115 */
4116 err = hci_update_random_address(req, true, &own_addr_type);
4117 if (err < 0) {
4118 *status = MGMT_STATUS_FAILED;
4119 return false;
4120 }
4121
4122 memset(&param_cp, 0, sizeof(param_cp));
4123 param_cp.type = LE_SCAN_ACTIVE;
4124 param_cp.interval = cpu_to_le16(interval);
4125 param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
4126 param_cp.own_address_type = own_addr_type;
4127
4128 hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
4129 &param_cp);
4130
4131 memset(&enable_cp, 0, sizeof(enable_cp));
4132 enable_cp.enable = LE_SCAN_ENABLE;
4133 enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
4134
4135 hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
4136 &enable_cp);
4137
4138 return true;
4139}
4140
4141static bool trigger_discovery(struct hci_request *req, u8 *status)
4142{
4143 struct hci_dev *hdev = req->hdev;
4144
4145 switch (hdev->discovery.type) {
4146 case DISCOV_TYPE_BREDR:
4147 if (!trigger_bredr_inquiry(req, status))
4148 return false;
Marcel Holtmann80190442014-12-04 11:36:36 +01004149 break;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004150
Marcel Holtmann80190442014-12-04 11:36:36 +01004151 case DISCOV_TYPE_INTERLEAVED:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07004152 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY,
4153 &hdev->quirks)) {
4154 /* During simultaneous discovery, we double LE scan
4155 * interval. We must leave some time for the controller
4156 * to do BR/EDR inquiry.
4157 */
4158 if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT * 2,
4159 status))
4160 return false;
4161
4162 if (!trigger_bredr_inquiry(req, status))
4163 return false;
4164
4165 return true;
4166 }
4167
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004168 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Marcel Holtmann80190442014-12-04 11:36:36 +01004169 *status = MGMT_STATUS_NOT_SUPPORTED;
4170 return false;
4171 }
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004172 /* fall through */
Marcel Holtmann80190442014-12-04 11:36:36 +01004173
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004174 case DISCOV_TYPE_LE:
4175 if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT, status))
Marcel Holtmann80190442014-12-04 11:36:36 +01004176 return false;
Marcel Holtmann80190442014-12-04 11:36:36 +01004177 break;
4178
4179 default:
4180 *status = MGMT_STATUS_INVALID_PARAMS;
4181 return false;
4182 }
4183
4184 return true;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004185}
4186
Marcel Holtmann1904a852015-01-11 13:50:44 -08004187static void start_discovery_complete(struct hci_dev *hdev, u8 status,
4188 u16 opcode)
Andre Guedes7c307722013-04-30 15:29:28 -03004189{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004190 struct mgmt_pending_cmd *cmd;
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004191 unsigned long timeout;
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004192
Andre Guedes7c307722013-04-30 15:29:28 -03004193 BT_DBG("status %d", status);
4194
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004195 hci_dev_lock(hdev);
4196
Johan Hedberg333ae952015-03-17 13:48:47 +02004197 cmd = pending_find(MGMT_OP_START_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004198 if (!cmd)
Johan Hedberg333ae952015-03-17 13:48:47 +02004199 cmd = pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004200
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004201 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02004202 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004203 mgmt_pending_remove(cmd);
Andre Guedes7c307722013-04-30 15:29:28 -03004204 }
4205
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004206 if (status) {
4207 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4208 goto unlock;
4209 }
4210
Andre Guedes7c307722013-04-30 15:29:28 -03004211 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Andre Guedes7c307722013-04-30 15:29:28 -03004212
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004213 /* If the scan involves LE scan, pick proper timeout to schedule
4214 * hdev->le_scan_disable that will stop it.
4215 */
Andre Guedes7c307722013-04-30 15:29:28 -03004216 switch (hdev->discovery.type) {
4217 case DISCOV_TYPE_LE:
Lukasz Rymanowski3d5a76f2014-03-27 20:55:21 +01004218 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
Andre Guedes7c307722013-04-30 15:29:28 -03004219 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004220 case DISCOV_TYPE_INTERLEAVED:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07004221 /* When running simultaneous discovery, the LE scanning time
4222 * should occupy the whole discovery time sine BR/EDR inquiry
4223 * and LE scanning are scheduled by the controller.
4224 *
4225 * For interleaving discovery in comparison, BR/EDR inquiry
4226 * and LE scanning are done sequentially with separate
4227 * timeouts.
4228 */
4229 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks))
4230 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
4231 else
4232 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
Andre Guedes7c307722013-04-30 15:29:28 -03004233 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004234 case DISCOV_TYPE_BREDR:
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004235 timeout = 0;
Andre Guedes7c307722013-04-30 15:29:28 -03004236 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004237 default:
4238 BT_ERR("Invalid discovery type %d", hdev->discovery.type);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004239 timeout = 0;
4240 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004241 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004242
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004243 if (timeout) {
4244 /* When service discovery is used and the controller has
4245 * a strict duplicate filter, it is important to remember
4246 * the start and duration of the scan. This is required
4247 * for restarting scanning during the discovery phase.
4248 */
4249 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER,
4250 &hdev->quirks) &&
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08004251 hdev->discovery.result_filtering) {
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004252 hdev->discovery.scan_start = jiffies;
4253 hdev->discovery.scan_duration = timeout;
4254 }
4255
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004256 queue_delayed_work(hdev->workqueue,
4257 &hdev->le_scan_disable, timeout);
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004258 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004259
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004260unlock:
4261 hci_dev_unlock(hdev);
Andre Guedes7c307722013-04-30 15:29:28 -03004262}
4263
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004264static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004265 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04004266{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004267 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004268 struct mgmt_pending_cmd *cmd;
Andre Guedes7c307722013-04-30 15:29:28 -03004269 struct hci_request req;
Marcel Holtmann80190442014-12-04 11:36:36 +01004270 u8 status;
Johan Hedberg14a53662011-04-27 10:29:56 -04004271 int err;
4272
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004273 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04004274
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004275 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004276
Johan Hedberg4b34ee782012-02-21 14:13:02 +02004277 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004278 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4279 MGMT_STATUS_NOT_POWERED,
4280 &cp->type, sizeof(cp->type));
Johan Hedbergbd2d1332011-11-07 23:13:37 +02004281 goto failed;
4282 }
4283
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004284 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004285 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004286 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4287 MGMT_STATUS_BUSY, &cp->type,
4288 sizeof(cp->type));
Andre Guedes642be6c2012-03-21 00:03:37 -03004289 goto failed;
4290 }
4291
Johan Hedberg2922a942014-12-05 13:36:06 +02004292 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04004293 if (!cmd) {
4294 err = -ENOMEM;
4295 goto failed;
4296 }
4297
Johan Hedberg2922a942014-12-05 13:36:06 +02004298 cmd->cmd_complete = generic_cmd_complete;
4299
Marcel Holtmann22078802014-12-05 11:45:22 +01004300 /* Clear the discovery filter first to free any previously
4301 * allocated memory for the UUID list.
4302 */
4303 hci_discovery_filter_clear(hdev);
4304
Andre Guedes4aab14e2012-02-17 20:39:36 -03004305 hdev->discovery.type = cp->type;
Marcel Holtmannda25cf62014-12-05 13:03:35 +01004306 hdev->discovery.report_invalid_rssi = false;
Andre Guedes4aab14e2012-02-17 20:39:36 -03004307
Andre Guedes7c307722013-04-30 15:29:28 -03004308 hci_req_init(&req, hdev);
4309
Marcel Holtmann80190442014-12-04 11:36:36 +01004310 if (!trigger_discovery(&req, &status)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004311 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4312 status, &cp->type, sizeof(cp->type));
Johan Hedberg04106752013-01-10 14:54:09 +02004313 mgmt_pending_remove(cmd);
4314 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03004315 }
Andre Guedes3fd24152012-02-03 17:48:01 -03004316
Andre Guedes7c307722013-04-30 15:29:28 -03004317 err = hci_req_run(&req, start_discovery_complete);
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004318 if (err < 0) {
Johan Hedberg14a53662011-04-27 10:29:56 -04004319 mgmt_pending_remove(cmd);
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004320 goto failed;
4321 }
4322
4323 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04004324
4325failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004326 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004327 return err;
4328}
4329
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004330static int service_discovery_cmd_complete(struct mgmt_pending_cmd *cmd,
4331 u8 status)
Andre Guedes1183fdc2013-04-30 15:29:35 -03004332{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004333 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
4334 cmd->param, 1);
Johan Hedberg2922a942014-12-05 13:36:06 +02004335}
4336
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004337static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
4338 void *data, u16 len)
4339{
4340 struct mgmt_cp_start_service_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004341 struct mgmt_pending_cmd *cmd;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004342 struct hci_request req;
4343 const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
4344 u16 uuid_count, expected_len;
4345 u8 status;
Andre Guedes1183fdc2013-04-30 15:29:35 -03004346 int err;
4347
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004348 BT_DBG("%s", hdev->name);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004349
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004350 hci_dev_lock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004351
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004352 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004353 err = mgmt_cmd_complete(sk, hdev->id,
4354 MGMT_OP_START_SERVICE_DISCOVERY,
4355 MGMT_STATUS_NOT_POWERED,
4356 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004357 goto failed;
4358 }
4359
4360 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004361 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004362 err = mgmt_cmd_complete(sk, hdev->id,
4363 MGMT_OP_START_SERVICE_DISCOVERY,
4364 MGMT_STATUS_BUSY, &cp->type,
4365 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004366 goto failed;
4367 }
4368
4369 uuid_count = __le16_to_cpu(cp->uuid_count);
4370 if (uuid_count > max_uuid_count) {
4371 BT_ERR("service_discovery: too big uuid_count value %u",
4372 uuid_count);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004373 err = mgmt_cmd_complete(sk, hdev->id,
4374 MGMT_OP_START_SERVICE_DISCOVERY,
4375 MGMT_STATUS_INVALID_PARAMS, &cp->type,
4376 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004377 goto failed;
4378 }
4379
4380 expected_len = sizeof(*cp) + uuid_count * 16;
4381 if (expected_len != len) {
4382 BT_ERR("service_discovery: expected %u bytes, got %u bytes",
4383 expected_len, len);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004384 err = mgmt_cmd_complete(sk, hdev->id,
4385 MGMT_OP_START_SERVICE_DISCOVERY,
4386 MGMT_STATUS_INVALID_PARAMS, &cp->type,
4387 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004388 goto failed;
4389 }
4390
4391 cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
Johan Hedberg2922a942014-12-05 13:36:06 +02004392 hdev, data, len);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004393 if (!cmd) {
4394 err = -ENOMEM;
4395 goto failed;
4396 }
4397
Johan Hedberg2922a942014-12-05 13:36:06 +02004398 cmd->cmd_complete = service_discovery_cmd_complete;
4399
Marcel Holtmann22078802014-12-05 11:45:22 +01004400 /* Clear the discovery filter first to free any previously
4401 * allocated memory for the UUID list.
4402 */
4403 hci_discovery_filter_clear(hdev);
4404
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08004405 hdev->discovery.result_filtering = true;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004406 hdev->discovery.type = cp->type;
4407 hdev->discovery.rssi = cp->rssi;
4408 hdev->discovery.uuid_count = uuid_count;
4409
4410 if (uuid_count > 0) {
4411 hdev->discovery.uuids = kmemdup(cp->uuids, uuid_count * 16,
4412 GFP_KERNEL);
4413 if (!hdev->discovery.uuids) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004414 err = mgmt_cmd_complete(sk, hdev->id,
4415 MGMT_OP_START_SERVICE_DISCOVERY,
4416 MGMT_STATUS_FAILED,
4417 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004418 mgmt_pending_remove(cmd);
4419 goto failed;
4420 }
4421 }
4422
4423 hci_req_init(&req, hdev);
4424
4425 if (!trigger_discovery(&req, &status)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004426 err = mgmt_cmd_complete(sk, hdev->id,
4427 MGMT_OP_START_SERVICE_DISCOVERY,
4428 status, &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004429 mgmt_pending_remove(cmd);
4430 goto failed;
4431 }
4432
4433 err = hci_req_run(&req, start_discovery_complete);
4434 if (err < 0) {
4435 mgmt_pending_remove(cmd);
4436 goto failed;
4437 }
4438
4439 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4440
4441failed:
4442 hci_dev_unlock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004443 return err;
4444}
4445
Marcel Holtmann1904a852015-01-11 13:50:44 -08004446static void stop_discovery_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Andre Guedes0e05bba2013-04-30 15:29:33 -03004447{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004448 struct mgmt_pending_cmd *cmd;
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004449
Andre Guedes0e05bba2013-04-30 15:29:33 -03004450 BT_DBG("status %d", status);
4451
4452 hci_dev_lock(hdev);
4453
Johan Hedberg333ae952015-03-17 13:48:47 +02004454 cmd = pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004455 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02004456 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004457 mgmt_pending_remove(cmd);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004458 }
4459
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004460 if (!status)
4461 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004462
Andre Guedes0e05bba2013-04-30 15:29:33 -03004463 hci_dev_unlock(hdev);
4464}
4465
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004466static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004467 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04004468{
Johan Hedbergd9306502012-02-20 23:25:18 +02004469 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004470 struct mgmt_pending_cmd *cmd;
Andre Guedes0e05bba2013-04-30 15:29:33 -03004471 struct hci_request req;
Johan Hedberg14a53662011-04-27 10:29:56 -04004472 int err;
4473
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004474 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04004475
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004476 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004477
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004478 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004479 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
4480 MGMT_STATUS_REJECTED, &mgmt_cp->type,
4481 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02004482 goto unlock;
4483 }
4484
4485 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004486 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
4487 MGMT_STATUS_INVALID_PARAMS,
4488 &mgmt_cp->type, sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004489 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02004490 }
4491
Johan Hedberg2922a942014-12-05 13:36:06 +02004492 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04004493 if (!cmd) {
4494 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004495 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04004496 }
4497
Johan Hedberg2922a942014-12-05 13:36:06 +02004498 cmd->cmd_complete = generic_cmd_complete;
4499
Andre Guedes0e05bba2013-04-30 15:29:33 -03004500 hci_req_init(&req, hdev);
4501
Johan Hedberg21a60d32014-06-10 14:05:58 +03004502 hci_stop_discovery(&req);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004503
Johan Hedberg21a60d32014-06-10 14:05:58 +03004504 err = hci_req_run(&req, stop_discovery_complete);
4505 if (!err) {
4506 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004507 goto unlock;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004508 }
4509
Johan Hedberg21a60d32014-06-10 14:05:58 +03004510 mgmt_pending_remove(cmd);
4511
4512 /* If no HCI commands were sent we're done */
4513 if (err == -ENODATA) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004514 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
4515 &mgmt_cp->type, sizeof(mgmt_cp->type));
Johan Hedberg21a60d32014-06-10 14:05:58 +03004516 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4517 }
Johan Hedberg14a53662011-04-27 10:29:56 -04004518
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004519unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004520 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004521 return err;
4522}
4523
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004524static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004525 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02004526{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004527 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02004528 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02004529 int err;
4530
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004531 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004532
Johan Hedberg561aafb2012-01-04 13:31:59 +02004533 hci_dev_lock(hdev);
4534
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004535 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004536 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
4537 MGMT_STATUS_FAILED, &cp->addr,
4538 sizeof(cp->addr));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004539 goto failed;
4540 }
4541
Johan Hedberga198e7b2012-02-17 14:27:06 +02004542 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004543 if (!e) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004544 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
4545 MGMT_STATUS_INVALID_PARAMS, &cp->addr,
4546 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02004547 goto failed;
4548 }
4549
4550 if (cp->name_known) {
4551 e->name_state = NAME_KNOWN;
4552 list_del(&e->list);
4553 } else {
4554 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02004555 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004556 }
4557
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004558 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
4559 &cp->addr, sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02004560
4561failed:
4562 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004563 return err;
4564}
4565
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004566static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004567 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03004568{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004569 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004570 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03004571 int err;
4572
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004573 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03004574
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004575 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004576 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
4577 MGMT_STATUS_INVALID_PARAMS,
4578 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004579
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004580 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004581
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004582 err = hci_bdaddr_list_add(&hdev->blacklist, &cp->addr.bdaddr,
4583 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004584 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004585 status = MGMT_STATUS_FAILED;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004586 goto done;
4587 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004588
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004589 mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &cp->addr, sizeof(cp->addr),
4590 sk);
4591 status = MGMT_STATUS_SUCCESS;
4592
4593done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004594 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
4595 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03004596
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004597 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03004598
4599 return err;
4600}
4601
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004602static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004603 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03004604{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004605 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004606 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03004607 int err;
4608
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004609 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03004610
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004611 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004612 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
4613 MGMT_STATUS_INVALID_PARAMS,
4614 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004615
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004616 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004617
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004618 err = hci_bdaddr_list_del(&hdev->blacklist, &cp->addr.bdaddr,
4619 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004620 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004621 status = MGMT_STATUS_INVALID_PARAMS;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004622 goto done;
4623 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004624
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004625 mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &cp->addr, sizeof(cp->addr),
4626 sk);
4627 status = MGMT_STATUS_SUCCESS;
4628
4629done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004630 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
4631 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03004632
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004633 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03004634
4635 return err;
4636}
4637
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004638static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
4639 u16 len)
4640{
4641 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05004642 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004643 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01004644 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004645
4646 BT_DBG("%s", hdev->name);
4647
Szymon Jancc72d4b82012-03-16 16:02:57 +01004648 source = __le16_to_cpu(cp->source);
4649
4650 if (source > 0x0002)
Johan Hedberga69e8372015-03-06 21:08:53 +02004651 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
4652 MGMT_STATUS_INVALID_PARAMS);
Szymon Jancc72d4b82012-03-16 16:02:57 +01004653
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004654 hci_dev_lock(hdev);
4655
Szymon Jancc72d4b82012-03-16 16:02:57 +01004656 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004657 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
4658 hdev->devid_product = __le16_to_cpu(cp->product);
4659 hdev->devid_version = __le16_to_cpu(cp->version);
4660
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004661 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
4662 NULL, 0);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004663
Johan Hedberg890ea892013-03-15 17:06:52 -05004664 hci_req_init(&req, hdev);
4665 update_eir(&req);
4666 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004667
4668 hci_dev_unlock(hdev);
4669
4670 return err;
4671}
4672
Arman Uguray24b4f382015-03-23 15:57:12 -07004673static void enable_advertising_instance(struct hci_dev *hdev, u8 status,
4674 u16 opcode)
4675{
4676 BT_DBG("status %d", status);
4677}
4678
Marcel Holtmann1904a852015-01-11 13:50:44 -08004679static void set_advertising_complete(struct hci_dev *hdev, u8 status,
4680 u16 opcode)
Johan Hedberg4375f102013-09-25 13:26:10 +03004681{
4682 struct cmd_lookup match = { NULL, hdev };
Arman Uguray24b4f382015-03-23 15:57:12 -07004683 struct hci_request req;
Johan Hedberg4375f102013-09-25 13:26:10 +03004684
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304685 hci_dev_lock(hdev);
4686
Johan Hedberg4375f102013-09-25 13:26:10 +03004687 if (status) {
4688 u8 mgmt_err = mgmt_status(status);
4689
4690 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
4691 cmd_status_rsp, &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304692 goto unlock;
Johan Hedberg4375f102013-09-25 13:26:10 +03004693 }
4694
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004695 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004696 hci_dev_set_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03004697 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004698 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03004699
Johan Hedberg4375f102013-09-25 13:26:10 +03004700 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
4701 &match);
4702
4703 new_settings(hdev, match.sk);
4704
4705 if (match.sk)
4706 sock_put(match.sk);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304707
Arman Uguray24b4f382015-03-23 15:57:12 -07004708 /* If "Set Advertising" was just disabled and instance advertising was
4709 * set up earlier, then enable the advertising instance.
4710 */
4711 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
4712 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
4713 goto unlock;
4714
4715 hci_req_init(&req, hdev);
4716
4717 update_adv_data(&req);
4718 enable_advertising(&req);
4719
4720 if (hci_req_run(&req, enable_advertising_instance) < 0)
4721 BT_ERR("Failed to re-configure advertising");
4722
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304723unlock:
4724 hci_dev_unlock(hdev);
Johan Hedberg4375f102013-09-25 13:26:10 +03004725}
4726
Marcel Holtmann21b51872013-10-10 09:47:53 -07004727static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
4728 u16 len)
Johan Hedberg4375f102013-09-25 13:26:10 +03004729{
4730 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004731 struct mgmt_pending_cmd *cmd;
Johan Hedberg4375f102013-09-25 13:26:10 +03004732 struct hci_request req;
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004733 u8 val, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03004734 int err;
4735
4736 BT_DBG("request for %s", hdev->name);
4737
Johan Hedberge6fe7982013-10-02 15:45:22 +03004738 status = mgmt_le_support(hdev);
4739 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02004740 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4741 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03004742
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004743 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02004744 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4745 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4375f102013-09-25 13:26:10 +03004746
4747 hci_dev_lock(hdev);
4748
4749 val = !!cp->val;
Johan Hedberg4375f102013-09-25 13:26:10 +03004750
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02004751 /* The following conditions are ones which mean that we should
4752 * not do any HCI communication but directly send a mgmt
4753 * response to user space (after toggling the flag if
4754 * necessary).
4755 */
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004756 if (!hdev_is_powered(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004757 (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
4758 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
Johan Hedberge8bb6b92014-07-08 15:07:53 +03004759 hci_conn_num(hdev, LE_LINK) > 0 ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004760 (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Johan Hedberge8bb6b92014-07-08 15:07:53 +03004761 hdev->le_scan_type == LE_SCAN_ACTIVE)) {
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004762 bool changed;
Johan Hedberg4375f102013-09-25 13:26:10 +03004763
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004764 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07004765 changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004766 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004767 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004768 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004769 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004770 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07004771 changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004772 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Johan Hedberg4375f102013-09-25 13:26:10 +03004773 }
4774
4775 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
4776 if (err < 0)
4777 goto unlock;
4778
4779 if (changed)
4780 err = new_settings(hdev, sk);
4781
4782 goto unlock;
4783 }
4784
Johan Hedberg333ae952015-03-17 13:48:47 +02004785 if (pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
4786 pending_find(MGMT_OP_SET_LE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004787 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4788 MGMT_STATUS_BUSY);
Johan Hedberg4375f102013-09-25 13:26:10 +03004789 goto unlock;
4790 }
4791
4792 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
4793 if (!cmd) {
4794 err = -ENOMEM;
4795 goto unlock;
4796 }
4797
4798 hci_req_init(&req, hdev);
4799
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004800 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004801 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004802 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004803 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004804
Arman Uguray24b4f382015-03-23 15:57:12 -07004805 if (val) {
4806 /* Switch to instance "0" for the Set Advertising setting. */
Florian Grandelefae0022015-06-18 03:16:37 +02004807 update_inst_adv_data(&req, 0x00);
4808 update_inst_scan_rsp_data(&req, 0x00);
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004809 enable_advertising(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07004810 } else {
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004811 disable_advertising(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07004812 }
Johan Hedberg4375f102013-09-25 13:26:10 +03004813
4814 err = hci_req_run(&req, set_advertising_complete);
4815 if (err < 0)
4816 mgmt_pending_remove(cmd);
4817
4818unlock:
4819 hci_dev_unlock(hdev);
4820 return err;
4821}
4822
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004823static int set_static_address(struct sock *sk, struct hci_dev *hdev,
4824 void *data, u16 len)
4825{
4826 struct mgmt_cp_set_static_address *cp = data;
4827 int err;
4828
4829 BT_DBG("%s", hdev->name);
4830
Marcel Holtmann62af4442013-10-02 22:10:32 -07004831 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02004832 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
4833 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004834
4835 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02004836 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
4837 MGMT_STATUS_REJECTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004838
4839 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
4840 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
Johan Hedberga69e8372015-03-06 21:08:53 +02004841 return mgmt_cmd_status(sk, hdev->id,
4842 MGMT_OP_SET_STATIC_ADDRESS,
4843 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004844
4845 /* Two most significant bits shall be set */
4846 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
Johan Hedberga69e8372015-03-06 21:08:53 +02004847 return mgmt_cmd_status(sk, hdev->id,
4848 MGMT_OP_SET_STATIC_ADDRESS,
4849 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004850 }
4851
4852 hci_dev_lock(hdev);
4853
4854 bacpy(&hdev->static_addr, &cp->bdaddr);
4855
Marcel Holtmann93690c22015-03-06 10:11:21 -08004856 err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
4857 if (err < 0)
4858 goto unlock;
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004859
Marcel Holtmann93690c22015-03-06 10:11:21 -08004860 err = new_settings(hdev, sk);
4861
4862unlock:
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004863 hci_dev_unlock(hdev);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004864 return err;
4865}
4866
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004867static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
4868 void *data, u16 len)
4869{
4870 struct mgmt_cp_set_scan_params *cp = data;
4871 __u16 interval, window;
4872 int err;
4873
4874 BT_DBG("%s", hdev->name);
4875
4876 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02004877 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4878 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004879
4880 interval = __le16_to_cpu(cp->interval);
4881
4882 if (interval < 0x0004 || interval > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02004883 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4884 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004885
4886 window = __le16_to_cpu(cp->window);
4887
4888 if (window < 0x0004 || window > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02004889 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4890 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004891
Marcel Holtmann899e1072013-10-14 09:55:32 -07004892 if (window > interval)
Johan Hedberga69e8372015-03-06 21:08:53 +02004893 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4894 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann899e1072013-10-14 09:55:32 -07004895
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004896 hci_dev_lock(hdev);
4897
4898 hdev->le_scan_interval = interval;
4899 hdev->le_scan_window = window;
4900
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004901 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
4902 NULL, 0);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004903
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03004904 /* If background scan is running, restart it so new parameters are
4905 * loaded.
4906 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004907 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03004908 hdev->discovery.state == DISCOVERY_STOPPED) {
4909 struct hci_request req;
4910
4911 hci_req_init(&req, hdev);
4912
4913 hci_req_add_le_scan_disable(&req);
4914 hci_req_add_le_passive_scan(&req);
4915
4916 hci_req_run(&req, NULL);
4917 }
4918
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004919 hci_dev_unlock(hdev);
4920
4921 return err;
4922}
4923
Marcel Holtmann1904a852015-01-11 13:50:44 -08004924static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
4925 u16 opcode)
Johan Hedberg33e38b32013-03-15 17:07:05 -05004926{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004927 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05004928
4929 BT_DBG("status 0x%02x", status);
4930
4931 hci_dev_lock(hdev);
4932
Johan Hedberg333ae952015-03-17 13:48:47 +02004933 cmd = pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004934 if (!cmd)
4935 goto unlock;
4936
4937 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004938 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4939 mgmt_status(status));
Johan Hedberg33e38b32013-03-15 17:07:05 -05004940 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004941 struct mgmt_mode *cp = cmd->param;
4942
4943 if (cp->val)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004944 hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004945 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004946 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004947
Johan Hedberg33e38b32013-03-15 17:07:05 -05004948 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4949 new_settings(hdev, cmd->sk);
4950 }
4951
4952 mgmt_pending_remove(cmd);
4953
4954unlock:
4955 hci_dev_unlock(hdev);
4956}
4957
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004958static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004959 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03004960{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004961 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004962 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05004963 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03004964 int err;
4965
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004966 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004967
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004968 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
Johan Hedberg56f87902013-10-02 13:43:13 +03004969 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberga69e8372015-03-06 21:08:53 +02004970 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4971 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03004972
Johan Hedberga7e80f22013-01-09 16:05:19 +02004973 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02004974 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4975 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02004976
Antti Julkuf6422ec2011-06-22 13:11:56 +03004977 hci_dev_lock(hdev);
4978
Johan Hedberg333ae952015-03-17 13:48:47 +02004979 if (pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004980 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4981 MGMT_STATUS_BUSY);
Johan Hedberg05cbf292013-03-15 17:07:07 -05004982 goto unlock;
4983 }
4984
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004985 if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004986 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
4987 hdev);
4988 goto unlock;
4989 }
4990
Johan Hedberg406ef2a2015-03-10 20:14:27 +02004991 if (!hdev_is_powered(hdev)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07004992 hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg406ef2a2015-03-10 20:14:27 +02004993 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
4994 hdev);
4995 new_settings(hdev, sk);
4996 goto unlock;
4997 }
4998
Johan Hedberg33e38b32013-03-15 17:07:05 -05004999 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
5000 data, len);
5001 if (!cmd) {
5002 err = -ENOMEM;
5003 goto unlock;
5004 }
5005
5006 hci_req_init(&req, hdev);
5007
Johan Hedberg406d7802013-03-15 17:07:09 -05005008 write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005009
5010 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005011 if (err < 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005012 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5013 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005014 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005015 }
5016
Johan Hedberg33e38b32013-03-15 17:07:05 -05005017unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03005018 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005019
Antti Julkuf6422ec2011-06-22 13:11:56 +03005020 return err;
5021}
5022
Marcel Holtmann1904a852015-01-11 13:50:44 -08005023static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg0663ca22013-10-02 13:43:14 +03005024{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005025 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03005026
5027 BT_DBG("status 0x%02x", status);
5028
5029 hci_dev_lock(hdev);
5030
Johan Hedberg333ae952015-03-17 13:48:47 +02005031 cmd = pending_find(MGMT_OP_SET_BREDR, hdev);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005032 if (!cmd)
5033 goto unlock;
5034
5035 if (status) {
5036 u8 mgmt_err = mgmt_status(status);
5037
5038 /* We need to restore the flag if related HCI commands
5039 * failed.
5040 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005041 hci_dev_clear_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005042
Johan Hedberga69e8372015-03-06 21:08:53 +02005043 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005044 } else {
5045 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
5046 new_settings(hdev, cmd->sk);
5047 }
5048
5049 mgmt_pending_remove(cmd);
5050
5051unlock:
5052 hci_dev_unlock(hdev);
5053}
5054
5055static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
5056{
5057 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005058 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03005059 struct hci_request req;
5060 int err;
5061
5062 BT_DBG("request for %s", hdev->name);
5063
5064 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005065 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5066 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005067
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005068 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005069 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5070 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005071
5072 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005073 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5074 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005075
5076 hci_dev_lock(hdev);
5077
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005078 if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg0663ca22013-10-02 13:43:14 +03005079 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
5080 goto unlock;
5081 }
5082
5083 if (!hdev_is_powered(hdev)) {
5084 if (!cp->val) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005085 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
5086 hci_dev_clear_flag(hdev, HCI_SSP_ENABLED);
5087 hci_dev_clear_flag(hdev, HCI_LINK_SECURITY);
5088 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
5089 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005090 }
5091
Marcel Holtmannce05d602015-03-13 02:11:03 -07005092 hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005093
5094 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
5095 if (err < 0)
5096 goto unlock;
5097
5098 err = new_settings(hdev, sk);
5099 goto unlock;
5100 }
5101
5102 /* Reject disabling when powered on */
5103 if (!cp->val) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005104 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5105 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005106 goto unlock;
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005107 } else {
5108 /* When configuring a dual-mode controller to operate
5109 * with LE only and using a static address, then switching
5110 * BR/EDR back on is not allowed.
5111 *
5112 * Dual-mode controllers shall operate with the public
5113 * address as its identity address for BR/EDR and LE. So
5114 * reject the attempt to create an invalid configuration.
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08005115 *
5116 * The same restrictions applies when secure connections
5117 * has been enabled. For BR/EDR this is a controller feature
5118 * while for LE it is a host stack feature. This means that
5119 * switching BR/EDR back on when secure connections has been
5120 * enabled is not a supported transaction.
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005121 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005122 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08005123 (bacmp(&hdev->static_addr, BDADDR_ANY) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005124 hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005125 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5126 MGMT_STATUS_REJECTED);
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005127 goto unlock;
5128 }
Johan Hedberg0663ca22013-10-02 13:43:14 +03005129 }
5130
Johan Hedberg333ae952015-03-17 13:48:47 +02005131 if (pending_find(MGMT_OP_SET_BREDR, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005132 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5133 MGMT_STATUS_BUSY);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005134 goto unlock;
5135 }
5136
5137 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
5138 if (!cmd) {
5139 err = -ENOMEM;
5140 goto unlock;
5141 }
5142
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07005143 /* We need to flip the bit already here so that update_adv_data
Johan Hedberg0663ca22013-10-02 13:43:14 +03005144 * generates the correct flags.
5145 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005146 hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005147
5148 hci_req_init(&req, hdev);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005149
Johan Hedberg432df052014-08-01 11:13:31 +03005150 write_fast_connectable(&req, false);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02005151 __hci_update_page_scan(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005152
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07005153 /* Since only the advertising data flags will change, there
5154 * is no need to update the scan response data.
5155 */
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07005156 update_adv_data(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005157
Johan Hedberg0663ca22013-10-02 13:43:14 +03005158 err = hci_req_run(&req, set_bredr_complete);
5159 if (err < 0)
5160 mgmt_pending_remove(cmd);
5161
5162unlock:
5163 hci_dev_unlock(hdev);
5164 return err;
5165}
5166
Johan Hedberga1443f52015-01-23 15:42:46 +02005167static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5168{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005169 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02005170 struct mgmt_mode *cp;
5171
5172 BT_DBG("%s status %u", hdev->name, status);
5173
5174 hci_dev_lock(hdev);
5175
Johan Hedberg333ae952015-03-17 13:48:47 +02005176 cmd = pending_find(MGMT_OP_SET_SECURE_CONN, hdev);
Johan Hedberga1443f52015-01-23 15:42:46 +02005177 if (!cmd)
5178 goto unlock;
5179
5180 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005181 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
5182 mgmt_status(status));
Johan Hedberga1443f52015-01-23 15:42:46 +02005183 goto remove;
5184 }
5185
5186 cp = cmd->param;
5187
5188 switch (cp->val) {
5189 case 0x00:
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005190 hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
5191 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005192 break;
5193 case 0x01:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005194 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005195 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005196 break;
5197 case 0x02:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005198 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
5199 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005200 break;
5201 }
5202
5203 send_settings_rsp(cmd->sk, MGMT_OP_SET_SECURE_CONN, hdev);
5204 new_settings(hdev, cmd->sk);
5205
5206remove:
5207 mgmt_pending_remove(cmd);
5208unlock:
5209 hci_dev_unlock(hdev);
5210}
5211
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005212static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
5213 void *data, u16 len)
5214{
5215 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005216 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02005217 struct hci_request req;
Johan Hedberga3209692014-05-26 11:23:35 +03005218 u8 val;
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005219 int err;
5220
5221 BT_DBG("request for %s", hdev->name);
5222
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08005223 if (!lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005224 !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005225 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5226 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005227
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005228 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Johan Hedberg59200282015-01-28 19:56:00 +02005229 lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005230 !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005231 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5232 MGMT_STATUS_REJECTED);
Marcel Holtmanned93ec62015-01-22 11:15:22 -08005233
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005234 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005235 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005236 MGMT_STATUS_INVALID_PARAMS);
5237
5238 hci_dev_lock(hdev);
5239
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08005240 if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005241 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005242 bool changed;
5243
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005244 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07005245 changed = !hci_dev_test_and_set_flag(hdev,
5246 HCI_SC_ENABLED);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005247 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005248 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005249 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005250 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005251 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005252 changed = hci_dev_test_and_clear_flag(hdev,
5253 HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005254 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005255 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005256
5257 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
5258 if (err < 0)
5259 goto failed;
5260
5261 if (changed)
5262 err = new_settings(hdev, sk);
5263
5264 goto failed;
5265 }
5266
Johan Hedberg333ae952015-03-17 13:48:47 +02005267 if (pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005268 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5269 MGMT_STATUS_BUSY);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005270 goto failed;
5271 }
5272
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005273 val = !!cp->val;
5274
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005275 if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
5276 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005277 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
5278 goto failed;
5279 }
5280
5281 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
5282 if (!cmd) {
5283 err = -ENOMEM;
5284 goto failed;
5285 }
5286
Johan Hedberga1443f52015-01-23 15:42:46 +02005287 hci_req_init(&req, hdev);
5288 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
5289 err = hci_req_run(&req, sc_enable_complete);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005290 if (err < 0) {
5291 mgmt_pending_remove(cmd);
5292 goto failed;
5293 }
5294
5295failed:
5296 hci_dev_unlock(hdev);
5297 return err;
5298}
5299
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005300static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
5301 void *data, u16 len)
5302{
5303 struct mgmt_mode *cp = data;
Johan Hedbergb97109792014-06-24 14:00:28 +03005304 bool changed, use_changed;
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005305 int err;
5306
5307 BT_DBG("request for %s", hdev->name);
5308
Johan Hedbergb97109792014-06-24 14:00:28 +03005309 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005310 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
5311 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005312
5313 hci_dev_lock(hdev);
5314
5315 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07005316 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005317 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005318 changed = hci_dev_test_and_clear_flag(hdev,
5319 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005320
Johan Hedbergb97109792014-06-24 14:00:28 +03005321 if (cp->val == 0x02)
Marcel Holtmann238be782015-03-13 02:11:06 -07005322 use_changed = !hci_dev_test_and_set_flag(hdev,
5323 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03005324 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005325 use_changed = hci_dev_test_and_clear_flag(hdev,
5326 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03005327
5328 if (hdev_is_powered(hdev) && use_changed &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005329 hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedbergb97109792014-06-24 14:00:28 +03005330 u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
5331 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
5332 sizeof(mode), &mode);
5333 }
5334
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005335 err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
5336 if (err < 0)
5337 goto unlock;
5338
5339 if (changed)
5340 err = new_settings(hdev, sk);
5341
5342unlock:
5343 hci_dev_unlock(hdev);
5344 return err;
5345}
5346
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005347static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
5348 u16 len)
5349{
5350 struct mgmt_cp_set_privacy *cp = cp_data;
5351 bool changed;
5352 int err;
5353
5354 BT_DBG("request for %s", hdev->name);
5355
5356 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005357 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5358 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005359
5360 if (cp->privacy != 0x00 && cp->privacy != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005361 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5362 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005363
5364 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005365 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5366 MGMT_STATUS_REJECTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005367
5368 hci_dev_lock(hdev);
5369
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02005370 /* If user space supports this command it is also expected to
5371 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
5372 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005373 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02005374
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005375 if (cp->privacy) {
Marcel Holtmann238be782015-03-13 02:11:06 -07005376 changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005377 memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005378 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005379 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005380 changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005381 memset(hdev->irk, 0, sizeof(hdev->irk));
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005382 hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005383 }
5384
5385 err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
5386 if (err < 0)
5387 goto unlock;
5388
5389 if (changed)
5390 err = new_settings(hdev, sk);
5391
5392unlock:
5393 hci_dev_unlock(hdev);
5394 return err;
5395}
5396
Johan Hedberg41edf162014-02-18 10:19:35 +02005397static bool irk_is_valid(struct mgmt_irk_info *irk)
5398{
5399 switch (irk->addr.type) {
5400 case BDADDR_LE_PUBLIC:
5401 return true;
5402
5403 case BDADDR_LE_RANDOM:
5404 /* Two most significant bits shall be set */
5405 if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
5406 return false;
5407 return true;
5408 }
5409
5410 return false;
5411}
5412
5413static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
5414 u16 len)
5415{
5416 struct mgmt_cp_load_irks *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005417 const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
5418 sizeof(struct mgmt_irk_info));
Johan Hedberg41edf162014-02-18 10:19:35 +02005419 u16 irk_count, expected_len;
5420 int i, err;
5421
5422 BT_DBG("request for %s", hdev->name);
5423
5424 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005425 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5426 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg41edf162014-02-18 10:19:35 +02005427
5428 irk_count = __le16_to_cpu(cp->irk_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005429 if (irk_count > max_irk_count) {
5430 BT_ERR("load_irks: too big irk_count value %u", irk_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02005431 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5432 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005433 }
Johan Hedberg41edf162014-02-18 10:19:35 +02005434
5435 expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
5436 if (expected_len != len) {
5437 BT_ERR("load_irks: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02005438 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02005439 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5440 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02005441 }
5442
5443 BT_DBG("%s irk_count %u", hdev->name, irk_count);
5444
5445 for (i = 0; i < irk_count; i++) {
5446 struct mgmt_irk_info *key = &cp->irks[i];
5447
5448 if (!irk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02005449 return mgmt_cmd_status(sk, hdev->id,
5450 MGMT_OP_LOAD_IRKS,
5451 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02005452 }
5453
5454 hci_dev_lock(hdev);
5455
5456 hci_smp_irks_clear(hdev);
5457
5458 for (i = 0; i < irk_count; i++) {
5459 struct mgmt_irk_info *irk = &cp->irks[i];
5460 u8 addr_type;
5461
5462 if (irk->addr.type == BDADDR_LE_PUBLIC)
5463 addr_type = ADDR_LE_DEV_PUBLIC;
5464 else
5465 addr_type = ADDR_LE_DEV_RANDOM;
5466
5467 hci_add_irk(hdev, &irk->addr.bdaddr, addr_type, irk->val,
5468 BDADDR_ANY);
5469 }
5470
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005471 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedberg41edf162014-02-18 10:19:35 +02005472
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005473 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
Johan Hedberg41edf162014-02-18 10:19:35 +02005474
5475 hci_dev_unlock(hdev);
5476
5477 return err;
5478}
5479
Johan Hedberg3f706b72013-01-20 14:27:16 +02005480static bool ltk_is_valid(struct mgmt_ltk_info *key)
5481{
5482 if (key->master != 0x00 && key->master != 0x01)
5483 return false;
Marcel Holtmann490cb0b2014-02-16 12:59:05 -08005484
5485 switch (key->addr.type) {
5486 case BDADDR_LE_PUBLIC:
5487 return true;
5488
5489 case BDADDR_LE_RANDOM:
5490 /* Two most significant bits shall be set */
5491 if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
5492 return false;
5493 return true;
5494 }
5495
5496 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02005497}
5498
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005499static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005500 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005501{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005502 struct mgmt_cp_load_long_term_keys *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005503 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
5504 sizeof(struct mgmt_ltk_info));
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005505 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005506 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005507
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07005508 BT_DBG("request for %s", hdev->name);
5509
5510 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005511 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5512 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07005513
Marcel Holtmann1f350c82012-03-12 20:31:08 -07005514 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005515 if (key_count > max_key_count) {
5516 BT_ERR("load_ltks: too big key_count value %u", key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02005517 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5518 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005519 }
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005520
5521 expected_len = sizeof(*cp) + key_count *
5522 sizeof(struct mgmt_ltk_info);
5523 if (expected_len != len) {
5524 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02005525 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02005526 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5527 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005528 }
5529
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005530 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005531
Johan Hedberg54ad6d82013-01-20 14:27:15 +02005532 for (i = 0; i < key_count; i++) {
5533 struct mgmt_ltk_info *key = &cp->keys[i];
5534
Johan Hedberg3f706b72013-01-20 14:27:16 +02005535 if (!ltk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02005536 return mgmt_cmd_status(sk, hdev->id,
5537 MGMT_OP_LOAD_LONG_TERM_KEYS,
5538 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg54ad6d82013-01-20 14:27:15 +02005539 }
5540
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005541 hci_dev_lock(hdev);
5542
5543 hci_smp_ltks_clear(hdev);
5544
5545 for (i = 0; i < key_count; i++) {
5546 struct mgmt_ltk_info *key = &cp->keys[i];
Johan Hedbergd7b25452014-05-23 13:19:53 +03005547 u8 type, addr_type, authenticated;
Marcel Holtmann79d95a12013-10-13 03:57:38 -07005548
5549 if (key->addr.type == BDADDR_LE_PUBLIC)
5550 addr_type = ADDR_LE_DEV_PUBLIC;
5551 else
5552 addr_type = ADDR_LE_DEV_RANDOM;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005553
Johan Hedberg61b43352014-05-29 19:36:53 +03005554 switch (key->type) {
5555 case MGMT_LTK_UNAUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03005556 authenticated = 0x00;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005557 type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
Johan Hedberg61b43352014-05-29 19:36:53 +03005558 break;
5559 case MGMT_LTK_AUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03005560 authenticated = 0x01;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005561 type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
Johan Hedberg61b43352014-05-29 19:36:53 +03005562 break;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005563 case MGMT_LTK_P256_UNAUTH:
5564 authenticated = 0x00;
5565 type = SMP_LTK_P256;
5566 break;
5567 case MGMT_LTK_P256_AUTH:
5568 authenticated = 0x01;
5569 type = SMP_LTK_P256;
5570 break;
5571 case MGMT_LTK_P256_DEBUG:
5572 authenticated = 0x00;
5573 type = SMP_LTK_P256_DEBUG;
Johan Hedberg61b43352014-05-29 19:36:53 +03005574 default:
5575 continue;
5576 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03005577
Johan Hedberg35d70272014-02-19 14:57:47 +02005578 hci_add_ltk(hdev, &key->addr.bdaddr, addr_type, type,
Johan Hedbergd7b25452014-05-23 13:19:53 +03005579 authenticated, key->val, key->enc_size, key->ediv,
Johan Hedberg35d70272014-02-19 14:57:47 +02005580 key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005581 }
5582
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005583 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005584 NULL, 0);
5585
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005586 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005587
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005588 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005589}
5590
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005591static int conn_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005592{
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005593 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005594 struct mgmt_rp_get_conn_info rp;
Johan Hedberg9df74652014-12-19 22:26:03 +02005595 int err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005596
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005597 memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005598
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005599 if (status == MGMT_STATUS_SUCCESS) {
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005600 rp.rssi = conn->rssi;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005601 rp.tx_power = conn->tx_power;
5602 rp.max_tx_power = conn->max_tx_power;
5603 } else {
5604 rp.rssi = HCI_RSSI_INVALID;
5605 rp.tx_power = HCI_TX_POWER_INVALID;
5606 rp.max_tx_power = HCI_TX_POWER_INVALID;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005607 }
5608
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005609 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
5610 status, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005611
5612 hci_conn_drop(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005613 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02005614
5615 return err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005616}
5617
Marcel Holtmann1904a852015-01-11 13:50:44 -08005618static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
5619 u16 opcode)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005620{
5621 struct hci_cp_read_rssi *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005622 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005623 struct hci_conn *conn;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005624 u16 handle;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005625 u8 status;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005626
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005627 BT_DBG("status 0x%02x", hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005628
5629 hci_dev_lock(hdev);
5630
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005631 /* Commands sent in request are either Read RSSI or Read Transmit Power
5632 * Level so we check which one was last sent to retrieve connection
5633 * handle. Both commands have handle as first parameter so it's safe to
5634 * cast data on the same command struct.
5635 *
5636 * First command sent is always Read RSSI and we fail only if it fails.
5637 * In other case we simply override error to indicate success as we
5638 * already remembered if TX power value is actually valid.
5639 */
5640 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI);
5641 if (!cp) {
5642 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005643 status = MGMT_STATUS_SUCCESS;
5644 } else {
5645 status = mgmt_status(hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005646 }
5647
5648 if (!cp) {
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005649 BT_ERR("invalid sent_cmd in conn_info response");
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005650 goto unlock;
5651 }
5652
5653 handle = __le16_to_cpu(cp->handle);
5654 conn = hci_conn_hash_lookup_handle(hdev, handle);
5655 if (!conn) {
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005656 BT_ERR("unknown handle (%d) in conn_info response", handle);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005657 goto unlock;
5658 }
5659
Johan Hedberg333ae952015-03-17 13:48:47 +02005660 cmd = pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005661 if (!cmd)
5662 goto unlock;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005663
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005664 cmd->cmd_complete(cmd, status);
5665 mgmt_pending_remove(cmd);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005666
5667unlock:
5668 hci_dev_unlock(hdev);
5669}
5670
5671static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data,
5672 u16 len)
5673{
5674 struct mgmt_cp_get_conn_info *cp = data;
5675 struct mgmt_rp_get_conn_info rp;
5676 struct hci_conn *conn;
5677 unsigned long conn_info_age;
5678 int err = 0;
5679
5680 BT_DBG("%s", hdev->name);
5681
5682 memset(&rp, 0, sizeof(rp));
5683 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5684 rp.addr.type = cp->addr.type;
5685
5686 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005687 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5688 MGMT_STATUS_INVALID_PARAMS,
5689 &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005690
5691 hci_dev_lock(hdev);
5692
5693 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005694 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5695 MGMT_STATUS_NOT_POWERED, &rp,
5696 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005697 goto unlock;
5698 }
5699
5700 if (cp->addr.type == BDADDR_BREDR)
5701 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
5702 &cp->addr.bdaddr);
5703 else
5704 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
5705
5706 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005707 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5708 MGMT_STATUS_NOT_CONNECTED, &rp,
5709 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005710 goto unlock;
5711 }
5712
Johan Hedberg333ae952015-03-17 13:48:47 +02005713 if (pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005714 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5715 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005716 goto unlock;
5717 }
5718
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005719 /* To avoid client trying to guess when to poll again for information we
5720 * calculate conn info age as random value between min/max set in hdev.
5721 */
5722 conn_info_age = hdev->conn_info_min_age +
5723 prandom_u32_max(hdev->conn_info_max_age -
5724 hdev->conn_info_min_age);
5725
5726 /* Query controller to refresh cached values if they are too old or were
5727 * never read.
5728 */
Andrzej Kaczmarekf4e2dd52014-05-16 16:48:57 +02005729 if (time_after(jiffies, conn->conn_info_timestamp +
5730 msecs_to_jiffies(conn_info_age)) ||
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005731 !conn->conn_info_timestamp) {
5732 struct hci_request req;
5733 struct hci_cp_read_tx_power req_txp_cp;
5734 struct hci_cp_read_rssi req_rssi_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005735 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005736
5737 hci_req_init(&req, hdev);
5738 req_rssi_cp.handle = cpu_to_le16(conn->handle);
5739 hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp),
5740 &req_rssi_cp);
5741
Andrzej Kaczmarekf7faab02014-05-14 13:43:04 +02005742 /* For LE links TX power does not change thus we don't need to
5743 * query for it once value is known.
5744 */
5745 if (!bdaddr_type_is_le(cp->addr.type) ||
5746 conn->tx_power == HCI_TX_POWER_INVALID) {
5747 req_txp_cp.handle = cpu_to_le16(conn->handle);
5748 req_txp_cp.type = 0x00;
5749 hci_req_add(&req, HCI_OP_READ_TX_POWER,
5750 sizeof(req_txp_cp), &req_txp_cp);
5751 }
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005752
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02005753 /* Max TX power needs to be read only once per connection */
5754 if (conn->max_tx_power == HCI_TX_POWER_INVALID) {
5755 req_txp_cp.handle = cpu_to_le16(conn->handle);
5756 req_txp_cp.type = 0x01;
5757 hci_req_add(&req, HCI_OP_READ_TX_POWER,
5758 sizeof(req_txp_cp), &req_txp_cp);
5759 }
5760
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005761 err = hci_req_run(&req, conn_info_refresh_complete);
5762 if (err < 0)
5763 goto unlock;
5764
5765 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CONN_INFO, hdev,
5766 data, len);
5767 if (!cmd) {
5768 err = -ENOMEM;
5769 goto unlock;
5770 }
5771
5772 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005773 cmd->user_data = hci_conn_get(conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005774 cmd->cmd_complete = conn_info_cmd_complete;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005775
5776 conn->conn_info_timestamp = jiffies;
5777 } else {
5778 /* Cache is valid, just reply with values cached in hci_conn */
5779 rp.rssi = conn->rssi;
5780 rp.tx_power = conn->tx_power;
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02005781 rp.max_tx_power = conn->max_tx_power;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005782
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005783 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5784 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005785 }
5786
5787unlock:
5788 hci_dev_unlock(hdev);
5789 return err;
5790}
5791
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005792static int clock_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg69487372014-12-05 13:36:07 +02005793{
5794 struct hci_conn *conn = cmd->user_data;
5795 struct mgmt_rp_get_clock_info rp;
5796 struct hci_dev *hdev;
Johan Hedberg9df74652014-12-19 22:26:03 +02005797 int err;
Johan Hedberg69487372014-12-05 13:36:07 +02005798
5799 memset(&rp, 0, sizeof(rp));
5800 memcpy(&rp.addr, &cmd->param, sizeof(rp.addr));
5801
5802 if (status)
5803 goto complete;
5804
5805 hdev = hci_dev_get(cmd->index);
5806 if (hdev) {
5807 rp.local_clock = cpu_to_le32(hdev->clock);
5808 hci_dev_put(hdev);
5809 }
5810
5811 if (conn) {
5812 rp.piconet_clock = cpu_to_le32(conn->clock);
5813 rp.accuracy = cpu_to_le16(conn->clock_accuracy);
5814 }
5815
5816complete:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005817 err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
5818 sizeof(rp));
Johan Hedberg69487372014-12-05 13:36:07 +02005819
5820 if (conn) {
5821 hci_conn_drop(conn);
5822 hci_conn_put(conn);
5823 }
Johan Hedberg9df74652014-12-19 22:26:03 +02005824
5825 return err;
Johan Hedberg69487372014-12-05 13:36:07 +02005826}
5827
Marcel Holtmann1904a852015-01-11 13:50:44 -08005828static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg95868422014-06-28 17:54:07 +03005829{
Johan Hedberg95868422014-06-28 17:54:07 +03005830 struct hci_cp_read_clock *hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005831 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03005832 struct hci_conn *conn;
5833
5834 BT_DBG("%s status %u", hdev->name, status);
5835
5836 hci_dev_lock(hdev);
5837
5838 hci_cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
5839 if (!hci_cp)
5840 goto unlock;
5841
5842 if (hci_cp->which) {
5843 u16 handle = __le16_to_cpu(hci_cp->handle);
5844 conn = hci_conn_hash_lookup_handle(hdev, handle);
5845 } else {
5846 conn = NULL;
5847 }
5848
Johan Hedberg333ae952015-03-17 13:48:47 +02005849 cmd = pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
Johan Hedberg95868422014-06-28 17:54:07 +03005850 if (!cmd)
5851 goto unlock;
5852
Johan Hedberg69487372014-12-05 13:36:07 +02005853 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberg95868422014-06-28 17:54:07 +03005854 mgmt_pending_remove(cmd);
Johan Hedberg95868422014-06-28 17:54:07 +03005855
5856unlock:
5857 hci_dev_unlock(hdev);
5858}
5859
5860static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data,
5861 u16 len)
5862{
5863 struct mgmt_cp_get_clock_info *cp = data;
5864 struct mgmt_rp_get_clock_info rp;
5865 struct hci_cp_read_clock hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005866 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03005867 struct hci_request req;
5868 struct hci_conn *conn;
5869 int err;
5870
5871 BT_DBG("%s", hdev->name);
5872
5873 memset(&rp, 0, sizeof(rp));
5874 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5875 rp.addr.type = cp->addr.type;
5876
5877 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005878 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
5879 MGMT_STATUS_INVALID_PARAMS,
5880 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03005881
5882 hci_dev_lock(hdev);
5883
5884 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005885 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
5886 MGMT_STATUS_NOT_POWERED, &rp,
5887 sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03005888 goto unlock;
5889 }
5890
5891 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
5892 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
5893 &cp->addr.bdaddr);
5894 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005895 err = mgmt_cmd_complete(sk, hdev->id,
5896 MGMT_OP_GET_CLOCK_INFO,
5897 MGMT_STATUS_NOT_CONNECTED,
5898 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03005899 goto unlock;
5900 }
5901 } else {
5902 conn = NULL;
5903 }
5904
5905 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CLOCK_INFO, hdev, data, len);
5906 if (!cmd) {
5907 err = -ENOMEM;
5908 goto unlock;
5909 }
5910
Johan Hedberg69487372014-12-05 13:36:07 +02005911 cmd->cmd_complete = clock_info_cmd_complete;
5912
Johan Hedberg95868422014-06-28 17:54:07 +03005913 hci_req_init(&req, hdev);
5914
5915 memset(&hci_cp, 0, sizeof(hci_cp));
5916 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
5917
5918 if (conn) {
5919 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005920 cmd->user_data = hci_conn_get(conn);
Johan Hedberg95868422014-06-28 17:54:07 +03005921
5922 hci_cp.handle = cpu_to_le16(conn->handle);
5923 hci_cp.which = 0x01; /* Piconet clock */
5924 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
5925 }
5926
5927 err = hci_req_run(&req, get_clock_info_complete);
5928 if (err < 0)
5929 mgmt_pending_remove(cmd);
5930
5931unlock:
5932 hci_dev_unlock(hdev);
5933 return err;
5934}
5935
Johan Hedberg5a154e62014-12-19 22:26:02 +02005936static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
5937{
5938 struct hci_conn *conn;
5939
5940 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
5941 if (!conn)
5942 return false;
5943
5944 if (conn->dst_type != type)
5945 return false;
5946
5947 if (conn->state != BT_CONNECTED)
5948 return false;
5949
5950 return true;
5951}
5952
5953/* This function requires the caller holds hdev->lock */
5954static int hci_conn_params_set(struct hci_request *req, bdaddr_t *addr,
5955 u8 addr_type, u8 auto_connect)
5956{
5957 struct hci_dev *hdev = req->hdev;
5958 struct hci_conn_params *params;
5959
5960 params = hci_conn_params_add(hdev, addr, addr_type);
5961 if (!params)
5962 return -EIO;
5963
5964 if (params->auto_connect == auto_connect)
5965 return 0;
5966
5967 list_del_init(&params->action);
5968
5969 switch (auto_connect) {
5970 case HCI_AUTO_CONN_DISABLED:
5971 case HCI_AUTO_CONN_LINK_LOSS:
5972 __hci_update_background_scan(req);
5973 break;
5974 case HCI_AUTO_CONN_REPORT:
5975 list_add(&params->action, &hdev->pend_le_reports);
5976 __hci_update_background_scan(req);
5977 break;
5978 case HCI_AUTO_CONN_DIRECT:
5979 case HCI_AUTO_CONN_ALWAYS:
5980 if (!is_connected(hdev, addr, addr_type)) {
5981 list_add(&params->action, &hdev->pend_le_conns);
5982 __hci_update_background_scan(req);
5983 }
5984 break;
5985 }
5986
5987 params->auto_connect = auto_connect;
5988
5989 BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
5990 auto_connect);
5991
5992 return 0;
5993}
5994
Marcel Holtmann8afef092014-06-29 22:28:34 +02005995static void device_added(struct sock *sk, struct hci_dev *hdev,
5996 bdaddr_t *bdaddr, u8 type, u8 action)
5997{
5998 struct mgmt_ev_device_added ev;
5999
6000 bacpy(&ev.addr.bdaddr, bdaddr);
6001 ev.addr.type = type;
6002 ev.action = action;
6003
6004 mgmt_event(MGMT_EV_DEVICE_ADDED, hdev, &ev, sizeof(ev), sk);
6005}
6006
Marcel Holtmann1904a852015-01-11 13:50:44 -08006007static void add_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg5a154e62014-12-19 22:26:02 +02006008{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006009 struct mgmt_pending_cmd *cmd;
Johan Hedberg5a154e62014-12-19 22:26:02 +02006010
6011 BT_DBG("status 0x%02x", status);
6012
6013 hci_dev_lock(hdev);
6014
Johan Hedberg333ae952015-03-17 13:48:47 +02006015 cmd = pending_find(MGMT_OP_ADD_DEVICE, hdev);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006016 if (!cmd)
6017 goto unlock;
6018
6019 cmd->cmd_complete(cmd, mgmt_status(status));
6020 mgmt_pending_remove(cmd);
6021
6022unlock:
6023 hci_dev_unlock(hdev);
6024}
6025
Marcel Holtmann2faade52014-06-29 19:44:03 +02006026static int add_device(struct sock *sk, struct hci_dev *hdev,
6027 void *data, u16 len)
6028{
6029 struct mgmt_cp_add_device *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006030 struct mgmt_pending_cmd *cmd;
Johan Hedberg5a154e62014-12-19 22:26:02 +02006031 struct hci_request req;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006032 u8 auto_conn, addr_type;
6033 int err;
6034
6035 BT_DBG("%s", hdev->name);
6036
Johan Hedberg66593582014-07-09 12:59:14 +03006037 if (!bdaddr_type_is_valid(cp->addr.type) ||
Marcel Holtmann2faade52014-06-29 19:44:03 +02006038 !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006039 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6040 MGMT_STATUS_INVALID_PARAMS,
6041 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006042
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006043 if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006044 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6045 MGMT_STATUS_INVALID_PARAMS,
6046 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006047
Johan Hedberg5a154e62014-12-19 22:26:02 +02006048 hci_req_init(&req, hdev);
6049
Marcel Holtmann2faade52014-06-29 19:44:03 +02006050 hci_dev_lock(hdev);
6051
Johan Hedberg5a154e62014-12-19 22:26:02 +02006052 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_DEVICE, hdev, data, len);
6053 if (!cmd) {
6054 err = -ENOMEM;
6055 goto unlock;
6056 }
6057
6058 cmd->cmd_complete = addr_cmd_complete;
6059
Johan Hedberg66593582014-07-09 12:59:14 +03006060 if (cp->addr.type == BDADDR_BREDR) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006061 /* Only incoming connections action is supported for now */
Johan Hedberg66593582014-07-09 12:59:14 +03006062 if (cp->action != 0x01) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006063 err = cmd->cmd_complete(cmd,
6064 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006065 mgmt_pending_remove(cmd);
Johan Hedberg66593582014-07-09 12:59:14 +03006066 goto unlock;
6067 }
6068
6069 err = hci_bdaddr_list_add(&hdev->whitelist, &cp->addr.bdaddr,
6070 cp->addr.type);
6071 if (err)
6072 goto unlock;
Johan Hedberga3974072014-07-09 12:59:15 +03006073
Johan Hedberg5a154e62014-12-19 22:26:02 +02006074 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03006075
Johan Hedberg66593582014-07-09 12:59:14 +03006076 goto added;
6077 }
6078
Marcel Holtmann2faade52014-06-29 19:44:03 +02006079 if (cp->addr.type == BDADDR_LE_PUBLIC)
6080 addr_type = ADDR_LE_DEV_PUBLIC;
6081 else
6082 addr_type = ADDR_LE_DEV_RANDOM;
6083
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006084 if (cp->action == 0x02)
Marcel Holtmann2faade52014-06-29 19:44:03 +02006085 auto_conn = HCI_AUTO_CONN_ALWAYS;
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006086 else if (cp->action == 0x01)
6087 auto_conn = HCI_AUTO_CONN_DIRECT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006088 else
Johan Hedberga3451d22014-07-02 17:37:27 +03006089 auto_conn = HCI_AUTO_CONN_REPORT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006090
Marcel Holtmannbf5b3c82014-06-30 12:34:39 +02006091 /* If the connection parameters don't exist for this device,
6092 * they will be created and configured with defaults.
6093 */
Johan Hedberg5a154e62014-12-19 22:26:02 +02006094 if (hci_conn_params_set(&req, &cp->addr.bdaddr, addr_type,
Marcel Holtmannd06b50c2014-07-01 12:11:06 +02006095 auto_conn) < 0) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006096 err = cmd->cmd_complete(cmd, MGMT_STATUS_FAILED);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006097 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006098 goto unlock;
6099 }
6100
Johan Hedberg66593582014-07-09 12:59:14 +03006101added:
Marcel Holtmann8afef092014-06-29 22:28:34 +02006102 device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);
6103
Johan Hedberg5a154e62014-12-19 22:26:02 +02006104 err = hci_req_run(&req, add_device_complete);
6105 if (err < 0) {
6106 /* ENODATA means no HCI commands were needed (e.g. if
6107 * the adapter is powered off).
6108 */
Johan Hedberg9df74652014-12-19 22:26:03 +02006109 if (err == -ENODATA)
6110 err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006111 mgmt_pending_remove(cmd);
6112 }
Marcel Holtmann2faade52014-06-29 19:44:03 +02006113
6114unlock:
6115 hci_dev_unlock(hdev);
6116 return err;
6117}
6118
Marcel Holtmann8afef092014-06-29 22:28:34 +02006119static void device_removed(struct sock *sk, struct hci_dev *hdev,
6120 bdaddr_t *bdaddr, u8 type)
6121{
6122 struct mgmt_ev_device_removed ev;
6123
6124 bacpy(&ev.addr.bdaddr, bdaddr);
6125 ev.addr.type = type;
6126
6127 mgmt_event(MGMT_EV_DEVICE_REMOVED, hdev, &ev, sizeof(ev), sk);
6128}
6129
Marcel Holtmann1904a852015-01-11 13:50:44 -08006130static void remove_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006131{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006132 struct mgmt_pending_cmd *cmd;
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006133
6134 BT_DBG("status 0x%02x", status);
6135
6136 hci_dev_lock(hdev);
6137
Johan Hedberg333ae952015-03-17 13:48:47 +02006138 cmd = pending_find(MGMT_OP_REMOVE_DEVICE, hdev);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006139 if (!cmd)
6140 goto unlock;
6141
6142 cmd->cmd_complete(cmd, mgmt_status(status));
6143 mgmt_pending_remove(cmd);
6144
6145unlock:
6146 hci_dev_unlock(hdev);
6147}
6148
Marcel Holtmann2faade52014-06-29 19:44:03 +02006149static int remove_device(struct sock *sk, struct hci_dev *hdev,
6150 void *data, u16 len)
6151{
6152 struct mgmt_cp_remove_device *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006153 struct mgmt_pending_cmd *cmd;
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006154 struct hci_request req;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006155 int err;
6156
6157 BT_DBG("%s", hdev->name);
6158
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006159 hci_req_init(&req, hdev);
6160
Marcel Holtmann2faade52014-06-29 19:44:03 +02006161 hci_dev_lock(hdev);
6162
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006163 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_DEVICE, hdev, data, len);
6164 if (!cmd) {
6165 err = -ENOMEM;
6166 goto unlock;
6167 }
6168
6169 cmd->cmd_complete = addr_cmd_complete;
6170
Marcel Holtmann2faade52014-06-29 19:44:03 +02006171 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
Johan Hedbergc71593d2014-07-02 17:37:28 +03006172 struct hci_conn_params *params;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006173 u8 addr_type;
6174
Johan Hedberg66593582014-07-09 12:59:14 +03006175 if (!bdaddr_type_is_valid(cp->addr.type)) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006176 err = cmd->cmd_complete(cmd,
6177 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006178 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006179 goto unlock;
6180 }
6181
Johan Hedberg66593582014-07-09 12:59:14 +03006182 if (cp->addr.type == BDADDR_BREDR) {
6183 err = hci_bdaddr_list_del(&hdev->whitelist,
6184 &cp->addr.bdaddr,
6185 cp->addr.type);
6186 if (err) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006187 err = cmd->cmd_complete(cmd,
6188 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006189 mgmt_pending_remove(cmd);
Johan Hedberg66593582014-07-09 12:59:14 +03006190 goto unlock;
6191 }
6192
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006193 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03006194
Johan Hedberg66593582014-07-09 12:59:14 +03006195 device_removed(sk, hdev, &cp->addr.bdaddr,
6196 cp->addr.type);
6197 goto complete;
6198 }
6199
Marcel Holtmann2faade52014-06-29 19:44:03 +02006200 if (cp->addr.type == BDADDR_LE_PUBLIC)
6201 addr_type = ADDR_LE_DEV_PUBLIC;
6202 else
6203 addr_type = ADDR_LE_DEV_RANDOM;
6204
Johan Hedbergc71593d2014-07-02 17:37:28 +03006205 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
6206 addr_type);
6207 if (!params) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006208 err = cmd->cmd_complete(cmd,
6209 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006210 mgmt_pending_remove(cmd);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006211 goto unlock;
6212 }
6213
6214 if (params->auto_connect == HCI_AUTO_CONN_DISABLED) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006215 err = cmd->cmd_complete(cmd,
6216 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006217 mgmt_pending_remove(cmd);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006218 goto unlock;
6219 }
6220
Johan Hedbergd1dbf122014-07-04 16:17:23 +03006221 list_del(&params->action);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006222 list_del(&params->list);
6223 kfree(params);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006224 __hci_update_background_scan(&req);
Marcel Holtmann8afef092014-06-29 22:28:34 +02006225
6226 device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006227 } else {
Johan Hedberg19de0822014-07-06 13:06:51 +03006228 struct hci_conn_params *p, *tmp;
Johan Hedberg66593582014-07-09 12:59:14 +03006229 struct bdaddr_list *b, *btmp;
Johan Hedberg19de0822014-07-06 13:06:51 +03006230
Marcel Holtmann2faade52014-06-29 19:44:03 +02006231 if (cp->addr.type) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006232 err = cmd->cmd_complete(cmd,
6233 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006234 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006235 goto unlock;
6236 }
6237
Johan Hedberg66593582014-07-09 12:59:14 +03006238 list_for_each_entry_safe(b, btmp, &hdev->whitelist, list) {
6239 device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type);
6240 list_del(&b->list);
6241 kfree(b);
6242 }
6243
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006244 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03006245
Johan Hedberg19de0822014-07-06 13:06:51 +03006246 list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) {
6247 if (p->auto_connect == HCI_AUTO_CONN_DISABLED)
6248 continue;
6249 device_removed(sk, hdev, &p->addr, p->addr_type);
6250 list_del(&p->action);
6251 list_del(&p->list);
6252 kfree(p);
6253 }
6254
6255 BT_DBG("All LE connection parameters were removed");
6256
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006257 __hci_update_background_scan(&req);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006258 }
6259
Johan Hedberg66593582014-07-09 12:59:14 +03006260complete:
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006261 err = hci_req_run(&req, remove_device_complete);
6262 if (err < 0) {
6263 /* ENODATA means no HCI commands were needed (e.g. if
6264 * the adapter is powered off).
6265 */
Johan Hedberg9df74652014-12-19 22:26:03 +02006266 if (err == -ENODATA)
6267 err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006268 mgmt_pending_remove(cmd);
6269 }
Marcel Holtmann2faade52014-06-29 19:44:03 +02006270
6271unlock:
6272 hci_dev_unlock(hdev);
6273 return err;
6274}
6275
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006276static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
6277 u16 len)
6278{
6279 struct mgmt_cp_load_conn_param *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03006280 const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
6281 sizeof(struct mgmt_conn_param));
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006282 u16 param_count, expected_len;
6283 int i;
6284
6285 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006286 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6287 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006288
6289 param_count = __le16_to_cpu(cp->param_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006290 if (param_count > max_param_count) {
6291 BT_ERR("load_conn_param: too big param_count value %u",
6292 param_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02006293 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6294 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006295 }
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006296
6297 expected_len = sizeof(*cp) + param_count *
6298 sizeof(struct mgmt_conn_param);
6299 if (expected_len != len) {
6300 BT_ERR("load_conn_param: expected %u bytes, got %u bytes",
6301 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02006302 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6303 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006304 }
6305
6306 BT_DBG("%s param_count %u", hdev->name, param_count);
6307
6308 hci_dev_lock(hdev);
6309
6310 hci_conn_params_clear_disabled(hdev);
6311
6312 for (i = 0; i < param_count; i++) {
6313 struct mgmt_conn_param *param = &cp->params[i];
6314 struct hci_conn_params *hci_param;
6315 u16 min, max, latency, timeout;
6316 u8 addr_type;
6317
6318 BT_DBG("Adding %pMR (type %u)", &param->addr.bdaddr,
6319 param->addr.type);
6320
6321 if (param->addr.type == BDADDR_LE_PUBLIC) {
6322 addr_type = ADDR_LE_DEV_PUBLIC;
6323 } else if (param->addr.type == BDADDR_LE_RANDOM) {
6324 addr_type = ADDR_LE_DEV_RANDOM;
6325 } else {
6326 BT_ERR("Ignoring invalid connection parameters");
6327 continue;
6328 }
6329
6330 min = le16_to_cpu(param->min_interval);
6331 max = le16_to_cpu(param->max_interval);
6332 latency = le16_to_cpu(param->latency);
6333 timeout = le16_to_cpu(param->timeout);
6334
6335 BT_DBG("min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x",
6336 min, max, latency, timeout);
6337
6338 if (hci_check_conn_params(min, max, latency, timeout) < 0) {
6339 BT_ERR("Ignoring invalid connection parameters");
6340 continue;
6341 }
6342
6343 hci_param = hci_conn_params_add(hdev, &param->addr.bdaddr,
6344 addr_type);
6345 if (!hci_param) {
6346 BT_ERR("Failed to add connection parameters");
6347 continue;
6348 }
6349
6350 hci_param->conn_min_interval = min;
6351 hci_param->conn_max_interval = max;
6352 hci_param->conn_latency = latency;
6353 hci_param->supervision_timeout = timeout;
6354 }
6355
6356 hci_dev_unlock(hdev);
6357
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006358 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
6359 NULL, 0);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006360}
6361
Marcel Holtmanndbece372014-07-04 18:11:55 +02006362static int set_external_config(struct sock *sk, struct hci_dev *hdev,
6363 void *data, u16 len)
6364{
6365 struct mgmt_cp_set_external_config *cp = data;
6366 bool changed;
6367 int err;
6368
6369 BT_DBG("%s", hdev->name);
6370
6371 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006372 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6373 MGMT_STATUS_REJECTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006374
6375 if (cp->config != 0x00 && cp->config != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02006376 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6377 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006378
6379 if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
Johan Hedberga69e8372015-03-06 21:08:53 +02006380 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6381 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006382
6383 hci_dev_lock(hdev);
6384
6385 if (cp->config)
Marcel Holtmann238be782015-03-13 02:11:06 -07006386 changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006387 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07006388 changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006389
6390 err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
6391 if (err < 0)
6392 goto unlock;
6393
6394 if (!changed)
6395 goto unlock;
6396
Marcel Holtmannf4537c02014-07-04 19:06:23 +02006397 err = new_options(hdev, sk);
6398
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006399 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
Marcel Holtmanndbece372014-07-04 18:11:55 +02006400 mgmt_index_removed(hdev);
Marcel Holtmannd603b762014-07-06 12:11:14 +02006401
Marcel Holtmann516018a2015-03-13 02:11:04 -07006402 if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006403 hci_dev_set_flag(hdev, HCI_CONFIG);
6404 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmannd603b762014-07-06 12:11:14 +02006405
6406 queue_work(hdev->req_workqueue, &hdev->power_on);
6407 } else {
Marcel Holtmann5ea234d2014-07-06 12:11:16 +02006408 set_bit(HCI_RAW, &hdev->flags);
Marcel Holtmannd603b762014-07-06 12:11:14 +02006409 mgmt_index_added(hdev);
6410 }
Marcel Holtmanndbece372014-07-04 18:11:55 +02006411 }
6412
6413unlock:
6414 hci_dev_unlock(hdev);
6415 return err;
6416}
6417
Marcel Holtmann9713c172014-07-06 12:11:15 +02006418static int set_public_address(struct sock *sk, struct hci_dev *hdev,
6419 void *data, u16 len)
6420{
6421 struct mgmt_cp_set_public_address *cp = data;
6422 bool changed;
6423 int err;
6424
6425 BT_DBG("%s", hdev->name);
6426
6427 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006428 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6429 MGMT_STATUS_REJECTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006430
6431 if (!bacmp(&cp->bdaddr, BDADDR_ANY))
Johan Hedberga69e8372015-03-06 21:08:53 +02006432 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6433 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006434
6435 if (!hdev->set_bdaddr)
Johan Hedberga69e8372015-03-06 21:08:53 +02006436 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6437 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006438
6439 hci_dev_lock(hdev);
6440
6441 changed = !!bacmp(&hdev->public_addr, &cp->bdaddr);
6442 bacpy(&hdev->public_addr, &cp->bdaddr);
6443
6444 err = send_options_rsp(sk, MGMT_OP_SET_PUBLIC_ADDRESS, hdev);
6445 if (err < 0)
6446 goto unlock;
6447
6448 if (!changed)
6449 goto unlock;
6450
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006451 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
Marcel Holtmann9713c172014-07-06 12:11:15 +02006452 err = new_options(hdev, sk);
6453
6454 if (is_configured(hdev)) {
6455 mgmt_index_removed(hdev);
6456
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006457 hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006458
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006459 hci_dev_set_flag(hdev, HCI_CONFIG);
6460 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006461
6462 queue_work(hdev->req_workqueue, &hdev->power_on);
6463 }
6464
6465unlock:
6466 hci_dev_unlock(hdev);
6467 return err;
6468}
6469
Marcel Holtmannbea41602015-03-14 22:43:17 -07006470static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
6471 u8 data_len)
6472{
6473 eir[eir_len++] = sizeof(type) + data_len;
6474 eir[eir_len++] = type;
6475 memcpy(&eir[eir_len], data, data_len);
6476 eir_len += data_len;
6477
6478 return eir_len;
6479}
6480
Johan Hedberg40f66c02015-04-07 21:52:22 +03006481static void read_local_oob_ext_data_complete(struct hci_dev *hdev, u8 status,
6482 u16 opcode, struct sk_buff *skb)
6483{
6484 const struct mgmt_cp_read_local_oob_ext_data *mgmt_cp;
6485 struct mgmt_rp_read_local_oob_ext_data *mgmt_rp;
6486 u8 *h192, *r192, *h256, *r256;
6487 struct mgmt_pending_cmd *cmd;
6488 u16 eir_len;
6489 int err;
6490
6491 BT_DBG("%s status %u", hdev->name, status);
6492
6493 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev);
6494 if (!cmd)
6495 return;
6496
6497 mgmt_cp = cmd->param;
6498
6499 if (status) {
6500 status = mgmt_status(status);
6501 eir_len = 0;
6502
6503 h192 = NULL;
6504 r192 = NULL;
6505 h256 = NULL;
6506 r256 = NULL;
6507 } else if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
6508 struct hci_rp_read_local_oob_data *rp;
6509
6510 if (skb->len != sizeof(*rp)) {
6511 status = MGMT_STATUS_FAILED;
6512 eir_len = 0;
6513 } else {
6514 status = MGMT_STATUS_SUCCESS;
6515 rp = (void *)skb->data;
6516
6517 eir_len = 5 + 18 + 18;
6518 h192 = rp->hash;
6519 r192 = rp->rand;
6520 h256 = NULL;
6521 r256 = NULL;
6522 }
6523 } else {
6524 struct hci_rp_read_local_oob_ext_data *rp;
6525
6526 if (skb->len != sizeof(*rp)) {
6527 status = MGMT_STATUS_FAILED;
6528 eir_len = 0;
6529 } else {
6530 status = MGMT_STATUS_SUCCESS;
6531 rp = (void *)skb->data;
6532
6533 if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
6534 eir_len = 5 + 18 + 18;
6535 h192 = NULL;
6536 r192 = NULL;
6537 } else {
6538 eir_len = 5 + 18 + 18 + 18 + 18;
6539 h192 = rp->hash192;
6540 r192 = rp->rand192;
6541 }
6542
6543 h256 = rp->hash256;
6544 r256 = rp->rand256;
6545 }
6546 }
6547
6548 mgmt_rp = kmalloc(sizeof(*mgmt_rp) + eir_len, GFP_KERNEL);
6549 if (!mgmt_rp)
6550 goto done;
6551
6552 if (status)
6553 goto send_rsp;
6554
6555 eir_len = eir_append_data(mgmt_rp->eir, 0, EIR_CLASS_OF_DEV,
6556 hdev->dev_class, 3);
6557
6558 if (h192 && r192) {
6559 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6560 EIR_SSP_HASH_C192, h192, 16);
6561 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6562 EIR_SSP_RAND_R192, r192, 16);
6563 }
6564
6565 if (h256 && r256) {
6566 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6567 EIR_SSP_HASH_C256, h256, 16);
6568 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6569 EIR_SSP_RAND_R256, r256, 16);
6570 }
6571
6572send_rsp:
6573 mgmt_rp->type = mgmt_cp->type;
6574 mgmt_rp->eir_len = cpu_to_le16(eir_len);
6575
6576 err = mgmt_cmd_complete(cmd->sk, hdev->id,
6577 MGMT_OP_READ_LOCAL_OOB_EXT_DATA, status,
6578 mgmt_rp, sizeof(*mgmt_rp) + eir_len);
6579 if (err < 0 || status)
6580 goto done;
6581
6582 hci_sock_set_flag(cmd->sk, HCI_MGMT_OOB_DATA_EVENTS);
6583
6584 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
6585 mgmt_rp, sizeof(*mgmt_rp) + eir_len,
6586 HCI_MGMT_OOB_DATA_EVENTS, cmd->sk);
6587done:
6588 kfree(mgmt_rp);
6589 mgmt_pending_remove(cmd);
6590}
6591
6592static int read_local_ssp_oob_req(struct hci_dev *hdev, struct sock *sk,
6593 struct mgmt_cp_read_local_oob_ext_data *cp)
6594{
6595 struct mgmt_pending_cmd *cmd;
6596 struct hci_request req;
6597 int err;
6598
6599 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev,
6600 cp, sizeof(*cp));
6601 if (!cmd)
6602 return -ENOMEM;
6603
6604 hci_req_init(&req, hdev);
6605
6606 if (bredr_sc_enabled(hdev))
6607 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
6608 else
6609 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
6610
6611 err = hci_req_run_skb(&req, read_local_oob_ext_data_complete);
6612 if (err < 0) {
6613 mgmt_pending_remove(cmd);
6614 return err;
6615 }
6616
6617 return 0;
6618}
6619
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006620static int read_local_oob_ext_data(struct sock *sk, struct hci_dev *hdev,
6621 void *data, u16 data_len)
6622{
6623 struct mgmt_cp_read_local_oob_ext_data *cp = data;
6624 struct mgmt_rp_read_local_oob_ext_data *rp;
6625 size_t rp_len;
6626 u16 eir_len;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006627 u8 status, flags, role, addr[7], hash[16], rand[16];
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006628 int err;
6629
6630 BT_DBG("%s", hdev->name);
6631
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006632 if (hdev_is_powered(hdev)) {
6633 switch (cp->type) {
6634 case BIT(BDADDR_BREDR):
6635 status = mgmt_bredr_support(hdev);
6636 if (status)
6637 eir_len = 0;
6638 else
6639 eir_len = 5;
6640 break;
6641 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
6642 status = mgmt_le_support(hdev);
6643 if (status)
6644 eir_len = 0;
6645 else
6646 eir_len = 9 + 3 + 18 + 18 + 3;
6647 break;
6648 default:
6649 status = MGMT_STATUS_INVALID_PARAMS;
6650 eir_len = 0;
6651 break;
6652 }
6653 } else {
6654 status = MGMT_STATUS_NOT_POWERED;
6655 eir_len = 0;
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006656 }
6657
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006658 rp_len = sizeof(*rp) + eir_len;
6659 rp = kmalloc(rp_len, GFP_ATOMIC);
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006660 if (!rp)
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006661 return -ENOMEM;
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006662
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006663 if (status)
6664 goto complete;
6665
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006666 hci_dev_lock(hdev);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006667
6668 eir_len = 0;
6669 switch (cp->type) {
6670 case BIT(BDADDR_BREDR):
Johan Hedberg40f66c02015-04-07 21:52:22 +03006671 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
6672 err = read_local_ssp_oob_req(hdev, sk, cp);
6673 hci_dev_unlock(hdev);
6674 if (!err)
6675 goto done;
6676
6677 status = MGMT_STATUS_FAILED;
6678 goto complete;
6679 } else {
6680 eir_len = eir_append_data(rp->eir, eir_len,
6681 EIR_CLASS_OF_DEV,
6682 hdev->dev_class, 3);
6683 }
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006684 break;
6685 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
Marcel Holtmann5082a592015-03-16 12:39:00 -07006686 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
6687 smp_generate_oob(hdev, hash, rand) < 0) {
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006688 hci_dev_unlock(hdev);
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006689 status = MGMT_STATUS_FAILED;
6690 goto complete;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006691 }
6692
Marcel Holtmanne2135682015-04-02 12:00:58 -07006693 /* This should return the active RPA, but since the RPA
6694 * is only programmed on demand, it is really hard to fill
6695 * this in at the moment. For now disallow retrieving
6696 * local out-of-band data when privacy is in use.
6697 *
6698 * Returning the identity address will not help here since
6699 * pairing happens before the identity resolving key is
6700 * known and thus the connection establishment happens
6701 * based on the RPA and not the identity address.
6702 */
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006703 if (hci_dev_test_flag(hdev, HCI_PRIVACY)) {
Marcel Holtmanne2135682015-04-02 12:00:58 -07006704 hci_dev_unlock(hdev);
6705 status = MGMT_STATUS_REJECTED;
6706 goto complete;
6707 }
6708
6709 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
6710 !bacmp(&hdev->bdaddr, BDADDR_ANY) ||
6711 (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
6712 bacmp(&hdev->static_addr, BDADDR_ANY))) {
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006713 memcpy(addr, &hdev->static_addr, 6);
6714 addr[6] = 0x01;
6715 } else {
6716 memcpy(addr, &hdev->bdaddr, 6);
6717 addr[6] = 0x00;
6718 }
6719
6720 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_BDADDR,
6721 addr, sizeof(addr));
6722
6723 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
6724 role = 0x02;
6725 else
6726 role = 0x01;
6727
6728 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_ROLE,
6729 &role, sizeof(role));
6730
Marcel Holtmann5082a592015-03-16 12:39:00 -07006731 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED)) {
6732 eir_len = eir_append_data(rp->eir, eir_len,
6733 EIR_LE_SC_CONFIRM,
6734 hash, sizeof(hash));
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006735
Marcel Holtmann5082a592015-03-16 12:39:00 -07006736 eir_len = eir_append_data(rp->eir, eir_len,
6737 EIR_LE_SC_RANDOM,
6738 rand, sizeof(rand));
6739 }
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006740
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006741 flags = get_adv_discov_flags(hdev);
6742
6743 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
6744 flags |= LE_AD_NO_BREDR;
6745
6746 eir_len = eir_append_data(rp->eir, eir_len, EIR_FLAGS,
6747 &flags, sizeof(flags));
6748 break;
6749 }
6750
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006751 hci_dev_unlock(hdev);
6752
Marcel Holtmann72000df2015-03-16 16:11:21 -07006753 hci_sock_set_flag(sk, HCI_MGMT_OOB_DATA_EVENTS);
6754
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006755 status = MGMT_STATUS_SUCCESS;
6756
6757complete:
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006758 rp->type = cp->type;
6759 rp->eir_len = cpu_to_le16(eir_len);
6760
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006761 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006762 status, rp, sizeof(*rp) + eir_len);
6763 if (err < 0 || status)
Marcel Holtmann72000df2015-03-16 16:11:21 -07006764 goto done;
6765
6766 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
6767 rp, sizeof(*rp) + eir_len,
6768 HCI_MGMT_OOB_DATA_EVENTS, sk);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006769
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006770done:
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006771 kfree(rp);
6772
6773 return err;
6774}
6775
Arman Uguray089fa8c2015-03-25 18:53:45 -07006776static u32 get_supported_adv_flags(struct hci_dev *hdev)
6777{
6778 u32 flags = 0;
6779
6780 flags |= MGMT_ADV_FLAG_CONNECTABLE;
6781 flags |= MGMT_ADV_FLAG_DISCOV;
6782 flags |= MGMT_ADV_FLAG_LIMITED_DISCOV;
6783 flags |= MGMT_ADV_FLAG_MANAGED_FLAGS;
6784
6785 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID)
6786 flags |= MGMT_ADV_FLAG_TX_POWER;
6787
6788 return flags;
6789}
6790
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006791static int read_adv_features(struct sock *sk, struct hci_dev *hdev,
6792 void *data, u16 data_len)
6793{
6794 struct mgmt_rp_read_adv_features *rp;
6795 size_t rp_len;
Florian Grandel286e0c82015-06-18 03:16:38 +02006796 int err, i;
Arman Uguray24b4f382015-03-23 15:57:12 -07006797 bool instance;
Florian Grandel286e0c82015-06-18 03:16:38 +02006798 struct adv_info *adv_instance;
Arman Uguray089fa8c2015-03-25 18:53:45 -07006799 u32 supported_flags;
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006800
6801 BT_DBG("%s", hdev->name);
6802
Arman Uguray089fa8c2015-03-25 18:53:45 -07006803 if (!lmp_le_capable(hdev))
6804 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
6805 MGMT_STATUS_REJECTED);
6806
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006807 hci_dev_lock(hdev);
6808
6809 rp_len = sizeof(*rp);
Arman Uguray24b4f382015-03-23 15:57:12 -07006810
Arman Uguray24b4f382015-03-23 15:57:12 -07006811 instance = hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE);
6812 if (instance)
Florian Grandel286e0c82015-06-18 03:16:38 +02006813 rp_len += hdev->adv_instance_cnt;
Arman Uguray24b4f382015-03-23 15:57:12 -07006814
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006815 rp = kmalloc(rp_len, GFP_ATOMIC);
6816 if (!rp) {
6817 hci_dev_unlock(hdev);
6818 return -ENOMEM;
6819 }
6820
Arman Uguray089fa8c2015-03-25 18:53:45 -07006821 supported_flags = get_supported_adv_flags(hdev);
6822
6823 rp->supported_flags = cpu_to_le32(supported_flags);
Marcel Holtmanndc5d82a2015-03-19 17:22:25 -07006824 rp->max_adv_data_len = HCI_MAX_AD_LENGTH;
6825 rp->max_scan_rsp_len = HCI_MAX_AD_LENGTH;
Florian Grandeld2609b32015-06-18 03:16:34 +02006826 rp->max_instances = HCI_MAX_ADV_INSTANCES;
Arman Uguray24b4f382015-03-23 15:57:12 -07006827
Arman Uguray24b4f382015-03-23 15:57:12 -07006828 if (instance) {
Florian Grandel286e0c82015-06-18 03:16:38 +02006829 i = 0;
6830 list_for_each_entry(adv_instance, &hdev->adv_instances, list) {
6831 if (i >= hdev->adv_instance_cnt)
6832 break;
6833
6834 rp->instance[i] = adv_instance->instance;
6835 i++;
6836 }
6837 rp->num_instances = hdev->adv_instance_cnt;
Arman Uguray24b4f382015-03-23 15:57:12 -07006838 } else {
6839 rp->num_instances = 0;
6840 }
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006841
6842 hci_dev_unlock(hdev);
6843
6844 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
6845 MGMT_STATUS_SUCCESS, rp, rp_len);
6846
6847 kfree(rp);
6848
6849 return err;
6850}
6851
Arman Uguray4117ed72015-03-23 15:57:14 -07006852static bool tlv_data_is_valid(struct hci_dev *hdev, u32 adv_flags, u8 *data,
Arman Ugurayb44133f2015-03-25 18:53:41 -07006853 u8 len, bool is_adv_data)
Arman Uguray24b4f382015-03-23 15:57:12 -07006854{
Arman Uguray4117ed72015-03-23 15:57:14 -07006855 u8 max_len = HCI_MAX_AD_LENGTH;
Arman Uguray24b4f382015-03-23 15:57:12 -07006856 int i, cur_len;
Arman Ugurayb44133f2015-03-25 18:53:41 -07006857 bool flags_managed = false;
Arman Uguray5507e352015-03-25 18:53:44 -07006858 bool tx_power_managed = false;
Arman Uguray67e0c0c2015-03-25 18:53:43 -07006859 u32 flags_params = MGMT_ADV_FLAG_DISCOV | MGMT_ADV_FLAG_LIMITED_DISCOV |
6860 MGMT_ADV_FLAG_MANAGED_FLAGS;
Arman Uguray24b4f382015-03-23 15:57:12 -07006861
Arman Uguray807ec772015-03-25 18:53:42 -07006862 if (is_adv_data && (adv_flags & flags_params)) {
Arman Ugurayb44133f2015-03-25 18:53:41 -07006863 flags_managed = true;
6864 max_len -= 3;
6865 }
Arman Uguray24b4f382015-03-23 15:57:12 -07006866
Arman Uguray5507e352015-03-25 18:53:44 -07006867 if (is_adv_data && (adv_flags & MGMT_ADV_FLAG_TX_POWER)) {
6868 tx_power_managed = true;
6869 max_len -= 3;
6870 }
6871
Arman Uguray4117ed72015-03-23 15:57:14 -07006872 if (len > max_len)
Arman Uguray24b4f382015-03-23 15:57:12 -07006873 return false;
6874
Arman Uguray4117ed72015-03-23 15:57:14 -07006875 /* Make sure that the data is correctly formatted. */
6876 for (i = 0, cur_len = 0; i < len; i += (cur_len + 1)) {
6877 cur_len = data[i];
Arman Uguray24b4f382015-03-23 15:57:12 -07006878
Arman Ugurayb44133f2015-03-25 18:53:41 -07006879 if (flags_managed && data[i + 1] == EIR_FLAGS)
6880 return false;
6881
Arman Uguray5507e352015-03-25 18:53:44 -07006882 if (tx_power_managed && data[i + 1] == EIR_TX_POWER)
6883 return false;
6884
Arman Uguray24b4f382015-03-23 15:57:12 -07006885 /* If the current field length would exceed the total data
6886 * length, then it's invalid.
6887 */
Arman Uguray4117ed72015-03-23 15:57:14 -07006888 if (i + cur_len >= len)
Arman Uguray24b4f382015-03-23 15:57:12 -07006889 return false;
6890 }
6891
6892 return true;
6893}
6894
Arman Uguray24b4f382015-03-23 15:57:12 -07006895static void add_advertising_complete(struct hci_dev *hdev, u8 status,
6896 u16 opcode)
6897{
6898 struct mgmt_pending_cmd *cmd;
6899 struct mgmt_rp_add_advertising rp;
6900
6901 BT_DBG("status %d", status);
6902
6903 hci_dev_lock(hdev);
6904
6905 cmd = pending_find(MGMT_OP_ADD_ADVERTISING, hdev);
6906
6907 if (status) {
6908 hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
6909 memset(&hdev->adv_instance, 0, sizeof(hdev->adv_instance));
6910 advertising_removed(cmd ? cmd->sk : NULL, hdev, 1);
6911 }
6912
6913 if (!cmd)
6914 goto unlock;
6915
6916 rp.instance = 0x01;
6917
6918 if (status)
6919 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
6920 mgmt_status(status));
6921 else
6922 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
6923 mgmt_status(status), &rp, sizeof(rp));
6924
6925 mgmt_pending_remove(cmd);
6926
6927unlock:
6928 hci_dev_unlock(hdev);
6929}
6930
Florian Grandel5d900e42015-06-18 03:16:35 +02006931void mgmt_adv_timeout_expired(struct hci_dev *hdev)
Arman Uguray912098a2015-03-23 15:57:15 -07006932{
Florian Grandel5d900e42015-06-18 03:16:35 +02006933 hdev->adv_instance_timeout = 0;
Arman Uguray912098a2015-03-23 15:57:15 -07006934
6935 hci_dev_lock(hdev);
6936 clear_adv_instance(hdev);
6937 hci_dev_unlock(hdev);
6938}
6939
Arman Uguray24b4f382015-03-23 15:57:12 -07006940static int add_advertising(struct sock *sk, struct hci_dev *hdev,
6941 void *data, u16 data_len)
6942{
6943 struct mgmt_cp_add_advertising *cp = data;
6944 struct mgmt_rp_add_advertising rp;
6945 u32 flags;
Arman Uguray089fa8c2015-03-25 18:53:45 -07006946 u32 supported_flags;
Arman Uguray24b4f382015-03-23 15:57:12 -07006947 u8 status;
Arman Uguray912098a2015-03-23 15:57:15 -07006948 u16 timeout;
Arman Uguray24b4f382015-03-23 15:57:12 -07006949 int err;
6950 struct mgmt_pending_cmd *cmd;
6951 struct hci_request req;
6952
6953 BT_DBG("%s", hdev->name);
6954
6955 status = mgmt_le_support(hdev);
6956 if (status)
6957 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6958 status);
6959
6960 flags = __le32_to_cpu(cp->flags);
Arman Uguray912098a2015-03-23 15:57:15 -07006961 timeout = __le16_to_cpu(cp->timeout);
Arman Uguray24b4f382015-03-23 15:57:12 -07006962
Arman Uguray089fa8c2015-03-25 18:53:45 -07006963 /* The current implementation only supports adding one instance and only
6964 * a subset of the specified flags.
6965 */
6966 supported_flags = get_supported_adv_flags(hdev);
6967 if (cp->instance != 0x01 || (flags & ~supported_flags))
Arman Uguray24b4f382015-03-23 15:57:12 -07006968 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6969 MGMT_STATUS_INVALID_PARAMS);
6970
6971 hci_dev_lock(hdev);
6972
Arman Uguray912098a2015-03-23 15:57:15 -07006973 if (timeout && !hdev_is_powered(hdev)) {
6974 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6975 MGMT_STATUS_REJECTED);
6976 goto unlock;
6977 }
6978
Arman Uguray24b4f382015-03-23 15:57:12 -07006979 if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
Arman Ugurayda9293352015-03-23 15:57:13 -07006980 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
Arman Uguray24b4f382015-03-23 15:57:12 -07006981 pending_find(MGMT_OP_SET_LE, hdev)) {
6982 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6983 MGMT_STATUS_BUSY);
6984 goto unlock;
6985 }
6986
Arman Ugurayb44133f2015-03-25 18:53:41 -07006987 if (!tlv_data_is_valid(hdev, flags, cp->data, cp->adv_data_len, true) ||
Arman Uguray4117ed72015-03-23 15:57:14 -07006988 !tlv_data_is_valid(hdev, flags, cp->data + cp->adv_data_len,
Arman Ugurayb44133f2015-03-25 18:53:41 -07006989 cp->scan_rsp_len, false)) {
Arman Uguray24b4f382015-03-23 15:57:12 -07006990 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6991 MGMT_STATUS_INVALID_PARAMS);
6992 goto unlock;
6993 }
6994
6995 hdev->adv_instance.flags = flags;
6996 hdev->adv_instance.adv_data_len = cp->adv_data_len;
6997 hdev->adv_instance.scan_rsp_len = cp->scan_rsp_len;
6998
6999 if (cp->adv_data_len)
7000 memcpy(hdev->adv_instance.adv_data, cp->data, cp->adv_data_len);
7001
7002 if (cp->scan_rsp_len)
7003 memcpy(hdev->adv_instance.scan_rsp_data,
7004 cp->data + cp->adv_data_len, cp->scan_rsp_len);
7005
Florian Grandel5d900e42015-06-18 03:16:35 +02007006 if (hdev->adv_instance_timeout)
7007 cancel_delayed_work(&hdev->adv_instance_expire);
Arman Uguray912098a2015-03-23 15:57:15 -07007008
Florian Grandel5d900e42015-06-18 03:16:35 +02007009 hdev->adv_instance_timeout = timeout;
Arman Uguray912098a2015-03-23 15:57:15 -07007010
7011 if (timeout)
7012 queue_delayed_work(hdev->workqueue,
Florian Grandel5d900e42015-06-18 03:16:35 +02007013 &hdev->adv_instance_expire,
Arman Uguray912098a2015-03-23 15:57:15 -07007014 msecs_to_jiffies(timeout * 1000));
7015
Arman Uguray24b4f382015-03-23 15:57:12 -07007016 if (!hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING_INSTANCE))
7017 advertising_added(sk, hdev, 1);
7018
7019 /* If the HCI_ADVERTISING flag is set or the device isn't powered then
7020 * we have no HCI communication to make. Simply return.
7021 */
7022 if (!hdev_is_powered(hdev) ||
7023 hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
7024 rp.instance = 0x01;
7025 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7026 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
7027 goto unlock;
7028 }
7029
7030 /* We're good to go, update advertising data, parameters, and start
7031 * advertising.
7032 */
7033 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_ADVERTISING, hdev, data,
7034 data_len);
7035 if (!cmd) {
7036 err = -ENOMEM;
7037 goto unlock;
7038 }
7039
7040 hci_req_init(&req, hdev);
7041
7042 update_adv_data(&req);
Arman Uguray4117ed72015-03-23 15:57:14 -07007043 update_scan_rsp_data(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07007044 enable_advertising(&req);
7045
7046 err = hci_req_run(&req, add_advertising_complete);
7047 if (err < 0)
7048 mgmt_pending_remove(cmd);
7049
7050unlock:
7051 hci_dev_unlock(hdev);
7052
7053 return err;
7054}
7055
Arman Ugurayda9293352015-03-23 15:57:13 -07007056static void remove_advertising_complete(struct hci_dev *hdev, u8 status,
7057 u16 opcode)
7058{
7059 struct mgmt_pending_cmd *cmd;
7060 struct mgmt_rp_remove_advertising rp;
7061
7062 BT_DBG("status %d", status);
7063
7064 hci_dev_lock(hdev);
7065
7066 /* A failure status here only means that we failed to disable
7067 * advertising. Otherwise, the advertising instance has been removed,
7068 * so report success.
7069 */
7070 cmd = pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev);
7071 if (!cmd)
7072 goto unlock;
7073
7074 rp.instance = 1;
7075
7076 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, MGMT_STATUS_SUCCESS,
7077 &rp, sizeof(rp));
7078 mgmt_pending_remove(cmd);
7079
7080unlock:
7081 hci_dev_unlock(hdev);
7082}
7083
7084static int remove_advertising(struct sock *sk, struct hci_dev *hdev,
7085 void *data, u16 data_len)
7086{
7087 struct mgmt_cp_remove_advertising *cp = data;
7088 struct mgmt_rp_remove_advertising rp;
7089 int err;
7090 struct mgmt_pending_cmd *cmd;
7091 struct hci_request req;
7092
7093 BT_DBG("%s", hdev->name);
7094
7095 /* The current implementation only allows modifying instance no 1. A
7096 * value of 0 indicates that all instances should be cleared.
7097 */
7098 if (cp->instance > 1)
7099 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
7100 MGMT_STATUS_INVALID_PARAMS);
7101
7102 hci_dev_lock(hdev);
7103
7104 if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
7105 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
7106 pending_find(MGMT_OP_SET_LE, hdev)) {
7107 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
7108 MGMT_STATUS_BUSY);
7109 goto unlock;
7110 }
7111
7112 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE)) {
7113 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
7114 MGMT_STATUS_INVALID_PARAMS);
7115 goto unlock;
7116 }
7117
Florian Grandel5d900e42015-06-18 03:16:35 +02007118 if (hdev->adv_instance_timeout)
7119 cancel_delayed_work(&hdev->adv_instance_expire);
Arman Uguray912098a2015-03-23 15:57:15 -07007120
Arman Ugurayda9293352015-03-23 15:57:13 -07007121 memset(&hdev->adv_instance, 0, sizeof(hdev->adv_instance));
7122
7123 advertising_removed(sk, hdev, 1);
7124
7125 hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
7126
7127 /* If the HCI_ADVERTISING flag is set or the device isn't powered then
7128 * we have no HCI communication to make. Simply return.
7129 */
7130 if (!hdev_is_powered(hdev) ||
7131 hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
7132 rp.instance = 1;
7133 err = mgmt_cmd_complete(sk, hdev->id,
7134 MGMT_OP_REMOVE_ADVERTISING,
7135 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
7136 goto unlock;
7137 }
7138
7139 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_ADVERTISING, hdev, data,
7140 data_len);
7141 if (!cmd) {
7142 err = -ENOMEM;
7143 goto unlock;
7144 }
7145
7146 hci_req_init(&req, hdev);
7147 disable_advertising(&req);
7148
7149 err = hci_req_run(&req, remove_advertising_complete);
7150 if (err < 0)
7151 mgmt_pending_remove(cmd);
7152
7153unlock:
7154 hci_dev_unlock(hdev);
7155
7156 return err;
7157}
7158
Johan Hedberg6d785aa32015-03-06 21:08:51 +02007159static const struct hci_mgmt_handler mgmt_handlers[] = {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02007160 { NULL }, /* 0x0000 (no command) */
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007161 { read_version, MGMT_READ_VERSION_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007162 HCI_MGMT_NO_HDEV |
7163 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007164 { read_commands, MGMT_READ_COMMANDS_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007165 HCI_MGMT_NO_HDEV |
7166 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007167 { read_index_list, MGMT_READ_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007168 HCI_MGMT_NO_HDEV |
7169 HCI_MGMT_UNTRUSTED },
7170 { read_controller_info, MGMT_READ_INFO_SIZE,
7171 HCI_MGMT_UNTRUSTED },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007172 { set_powered, MGMT_SETTING_SIZE },
7173 { set_discoverable, MGMT_SET_DISCOVERABLE_SIZE },
7174 { set_connectable, MGMT_SETTING_SIZE },
7175 { set_fast_connectable, MGMT_SETTING_SIZE },
7176 { set_bondable, MGMT_SETTING_SIZE },
7177 { set_link_security, MGMT_SETTING_SIZE },
7178 { set_ssp, MGMT_SETTING_SIZE },
7179 { set_hs, MGMT_SETTING_SIZE },
7180 { set_le, MGMT_SETTING_SIZE },
7181 { set_dev_class, MGMT_SET_DEV_CLASS_SIZE },
7182 { set_local_name, MGMT_SET_LOCAL_NAME_SIZE },
7183 { add_uuid, MGMT_ADD_UUID_SIZE },
7184 { remove_uuid, MGMT_REMOVE_UUID_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007185 { load_link_keys, MGMT_LOAD_LINK_KEYS_SIZE,
7186 HCI_MGMT_VAR_LEN },
7187 { load_long_term_keys, MGMT_LOAD_LONG_TERM_KEYS_SIZE,
7188 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007189 { disconnect, MGMT_DISCONNECT_SIZE },
7190 { get_connections, MGMT_GET_CONNECTIONS_SIZE },
7191 { pin_code_reply, MGMT_PIN_CODE_REPLY_SIZE },
7192 { pin_code_neg_reply, MGMT_PIN_CODE_NEG_REPLY_SIZE },
7193 { set_io_capability, MGMT_SET_IO_CAPABILITY_SIZE },
7194 { pair_device, MGMT_PAIR_DEVICE_SIZE },
7195 { cancel_pair_device, MGMT_CANCEL_PAIR_DEVICE_SIZE },
7196 { unpair_device, MGMT_UNPAIR_DEVICE_SIZE },
7197 { user_confirm_reply, MGMT_USER_CONFIRM_REPLY_SIZE },
7198 { user_confirm_neg_reply, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
7199 { user_passkey_reply, MGMT_USER_PASSKEY_REPLY_SIZE },
7200 { user_passkey_neg_reply, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007201 { read_local_oob_data, MGMT_READ_LOCAL_OOB_DATA_SIZE },
7202 { add_remote_oob_data, MGMT_ADD_REMOTE_OOB_DATA_SIZE,
7203 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007204 { remove_remote_oob_data, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
7205 { start_discovery, MGMT_START_DISCOVERY_SIZE },
7206 { stop_discovery, MGMT_STOP_DISCOVERY_SIZE },
7207 { confirm_name, MGMT_CONFIRM_NAME_SIZE },
7208 { block_device, MGMT_BLOCK_DEVICE_SIZE },
7209 { unblock_device, MGMT_UNBLOCK_DEVICE_SIZE },
7210 { set_device_id, MGMT_SET_DEVICE_ID_SIZE },
7211 { set_advertising, MGMT_SETTING_SIZE },
7212 { set_bredr, MGMT_SETTING_SIZE },
7213 { set_static_address, MGMT_SET_STATIC_ADDRESS_SIZE },
7214 { set_scan_params, MGMT_SET_SCAN_PARAMS_SIZE },
7215 { set_secure_conn, MGMT_SETTING_SIZE },
7216 { set_debug_keys, MGMT_SETTING_SIZE },
7217 { set_privacy, MGMT_SET_PRIVACY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007218 { load_irks, MGMT_LOAD_IRKS_SIZE,
7219 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007220 { get_conn_info, MGMT_GET_CONN_INFO_SIZE },
7221 { get_clock_info, MGMT_GET_CLOCK_INFO_SIZE },
7222 { add_device, MGMT_ADD_DEVICE_SIZE },
7223 { remove_device, MGMT_REMOVE_DEVICE_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007224 { load_conn_param, MGMT_LOAD_CONN_PARAM_SIZE,
7225 HCI_MGMT_VAR_LEN },
7226 { read_unconf_index_list, MGMT_READ_UNCONF_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007227 HCI_MGMT_NO_HDEV |
7228 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007229 { read_config_info, MGMT_READ_CONFIG_INFO_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007230 HCI_MGMT_UNCONFIGURED |
7231 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007232 { set_external_config, MGMT_SET_EXTERNAL_CONFIG_SIZE,
7233 HCI_MGMT_UNCONFIGURED },
7234 { set_public_address, MGMT_SET_PUBLIC_ADDRESS_SIZE,
7235 HCI_MGMT_UNCONFIGURED },
7236 { start_service_discovery, MGMT_START_SERVICE_DISCOVERY_SIZE,
7237 HCI_MGMT_VAR_LEN },
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007238 { read_local_oob_ext_data, MGMT_READ_LOCAL_OOB_EXT_DATA_SIZE },
Marcel Holtmann96f14742015-03-14 19:27:57 -07007239 { read_ext_index_list, MGMT_READ_EXT_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007240 HCI_MGMT_NO_HDEV |
7241 HCI_MGMT_UNTRUSTED },
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007242 { read_adv_features, MGMT_READ_ADV_FEATURES_SIZE },
Arman Uguray24b4f382015-03-23 15:57:12 -07007243 { add_advertising, MGMT_ADD_ADVERTISING_SIZE,
7244 HCI_MGMT_VAR_LEN },
Arman Ugurayda9293352015-03-23 15:57:13 -07007245 { remove_advertising, MGMT_REMOVE_ADVERTISING_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02007246};
7247
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07007248void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02007249{
Marcel Holtmannced85542015-03-14 19:27:56 -07007250 struct mgmt_ev_ext_index ev;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03007251
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02007252 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
7253 return;
7254
Marcel Holtmannf9207332015-03-14 19:27:55 -07007255 switch (hdev->dev_type) {
7256 case HCI_BREDR:
7257 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
7258 mgmt_index_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev,
7259 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007260 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007261 } else {
7262 mgmt_index_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0,
7263 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007264 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007265 }
7266 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07007267 case HCI_AMP:
7268 ev.type = 0x02;
7269 break;
7270 default:
7271 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007272 }
Marcel Holtmannced85542015-03-14 19:27:56 -07007273
7274 ev.bus = hdev->bus;
7275
7276 mgmt_index_event(MGMT_EV_EXT_INDEX_ADDED, hdev, &ev, sizeof(ev),
7277 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02007278}
7279
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07007280void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02007281{
Marcel Holtmannced85542015-03-14 19:27:56 -07007282 struct mgmt_ev_ext_index ev;
Johan Hedberg5f159032012-03-02 03:13:19 +02007283 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02007284
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02007285 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
7286 return;
7287
Marcel Holtmannf9207332015-03-14 19:27:55 -07007288 switch (hdev->dev_type) {
7289 case HCI_BREDR:
7290 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02007291
Marcel Holtmannf9207332015-03-14 19:27:55 -07007292 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
7293 mgmt_index_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev,
7294 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007295 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007296 } else {
7297 mgmt_index_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0,
7298 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007299 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007300 }
7301 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07007302 case HCI_AMP:
7303 ev.type = 0x02;
7304 break;
7305 default:
7306 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007307 }
Marcel Holtmannced85542015-03-14 19:27:56 -07007308
7309 ev.bus = hdev->bus;
7310
7311 mgmt_index_event(MGMT_EV_EXT_INDEX_REMOVED, hdev, &ev, sizeof(ev),
7312 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02007313}
7314
Andre Guedes6046dc32014-02-26 20:21:51 -03007315/* This function requires the caller holds hdev->lock */
Johan Hedberg2cf22212014-12-19 22:26:00 +02007316static void restart_le_actions(struct hci_request *req)
Andre Guedes6046dc32014-02-26 20:21:51 -03007317{
Johan Hedberg2cf22212014-12-19 22:26:00 +02007318 struct hci_dev *hdev = req->hdev;
Andre Guedes6046dc32014-02-26 20:21:51 -03007319 struct hci_conn_params *p;
7320
7321 list_for_each_entry(p, &hdev->le_conn_params, list) {
Johan Hedbergd7347f32014-07-04 12:37:23 +03007322 /* Needed for AUTO_OFF case where might not "really"
7323 * have been powered off.
7324 */
7325 list_del_init(&p->action);
7326
7327 switch (p->auto_connect) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02007328 case HCI_AUTO_CONN_DIRECT:
Johan Hedbergd7347f32014-07-04 12:37:23 +03007329 case HCI_AUTO_CONN_ALWAYS:
7330 list_add(&p->action, &hdev->pend_le_conns);
7331 break;
7332 case HCI_AUTO_CONN_REPORT:
7333 list_add(&p->action, &hdev->pend_le_reports);
7334 break;
7335 default:
7336 break;
Marcel Holtmannc83ed192014-07-01 19:28:24 +02007337 }
Andre Guedes6046dc32014-02-26 20:21:51 -03007338 }
Marcel Holtmannc83ed192014-07-01 19:28:24 +02007339
Johan Hedberg2cf22212014-12-19 22:26:00 +02007340 __hci_update_background_scan(req);
Andre Guedes6046dc32014-02-26 20:21:51 -03007341}
7342
Marcel Holtmann1904a852015-01-11 13:50:44 -08007343static void powered_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg229ab392013-03-15 17:06:53 -05007344{
7345 struct cmd_lookup match = { NULL, hdev };
7346
7347 BT_DBG("status 0x%02x", status);
7348
Marcel Holtmann162a3ba2015-01-14 15:43:11 -08007349 if (!status) {
7350 /* Register the available SMP channels (BR/EDR and LE) only
7351 * when successfully powering on the controller. This late
7352 * registration is required so that LE SMP can clearly
7353 * decide if the public address or static address is used.
7354 */
7355 smp_register(hdev);
7356 }
7357
Johan Hedberg229ab392013-03-15 17:06:53 -05007358 hci_dev_lock(hdev);
7359
7360 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
7361
7362 new_settings(hdev, match.sk);
7363
7364 hci_dev_unlock(hdev);
7365
7366 if (match.sk)
7367 sock_put(match.sk);
7368}
7369
Johan Hedberg70da6242013-03-15 17:06:51 -05007370static int powered_update_hci(struct hci_dev *hdev)
7371{
Johan Hedberg890ea892013-03-15 17:06:52 -05007372 struct hci_request req;
Johan Hedberg70da6242013-03-15 17:06:51 -05007373 u8 link_sec;
7374
Johan Hedberg890ea892013-03-15 17:06:52 -05007375 hci_req_init(&req, hdev);
7376
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007377 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED) &&
Johan Hedberg70da6242013-03-15 17:06:51 -05007378 !lmp_host_ssp_capable(hdev)) {
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007379 u8 mode = 0x01;
Johan Hedberg70da6242013-03-15 17:06:51 -05007380
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007381 hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);
Johan Hedberg70da6242013-03-15 17:06:51 -05007382
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007383 if (bredr_sc_enabled(hdev) && !lmp_host_sc_capable(hdev)) {
7384 u8 support = 0x01;
7385
7386 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT,
7387 sizeof(support), &support);
7388 }
Johan Hedbergec6f99b2014-12-12 13:30:11 +02007389 }
7390
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007391 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
Johan Hedbergc73eee92013-04-19 18:35:21 +03007392 lmp_bredr_capable(hdev)) {
Johan Hedberg70da6242013-03-15 17:06:51 -05007393 struct hci_cp_write_le_host_supported cp;
7394
Marcel Holtmann32226e42014-07-24 20:04:16 +02007395 cp.le = 0x01;
7396 cp.simul = 0x00;
Johan Hedberg70da6242013-03-15 17:06:51 -05007397
7398 /* Check first if we already have the right
7399 * host state (host features set)
7400 */
7401 if (cp.le != lmp_host_le_capable(hdev) ||
7402 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05007403 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
7404 sizeof(cp), &cp);
Johan Hedberg70da6242013-03-15 17:06:51 -05007405 }
7406
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07007407 if (lmp_le_capable(hdev)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07007408 /* Make sure the controller has a good default for
7409 * advertising data. This also applies to the case
7410 * where BR/EDR was toggled during the AUTO_OFF phase.
7411 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007412 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07007413 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07007414 update_scan_rsp_data(&req);
7415 }
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07007416
Arman Uguray24b4f382015-03-23 15:57:12 -07007417 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
7418 hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07007419 enable_advertising(&req);
Johan Hedberg2cf22212014-12-19 22:26:00 +02007420
7421 restart_le_actions(&req);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03007422 }
7423
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007424 link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg70da6242013-03-15 17:06:51 -05007425 if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05007426 hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
7427 sizeof(link_sec), &link_sec);
Johan Hedberg70da6242013-03-15 17:06:51 -05007428
7429 if (lmp_bredr_capable(hdev)) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007430 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
Johan Hedberg406ef2a2015-03-10 20:14:27 +02007431 write_fast_connectable(&req, true);
7432 else
7433 write_fast_connectable(&req, false);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02007434 __hci_update_page_scan(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05007435 update_class(&req);
Johan Hedberg13928972013-03-15 17:07:00 -05007436 update_name(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05007437 update_eir(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05007438 }
7439
Johan Hedberg229ab392013-03-15 17:06:53 -05007440 return hci_req_run(&req, powered_complete);
Johan Hedberg70da6242013-03-15 17:06:51 -05007441}
7442
Johan Hedberg744cf192011-11-08 20:40:14 +02007443int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02007444{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02007445 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg98459042014-12-12 11:15:21 +02007446 u8 status, zero_cod[] = { 0, 0, 0 };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02007447 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02007448
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007449 if (!hci_dev_test_flag(hdev, HCI_MGMT))
Johan Hedberg5e5282b2012-02-21 16:01:30 +02007450 return 0;
7451
Johan Hedberg5e5282b2012-02-21 16:01:30 +02007452 if (powered) {
Johan Hedberg229ab392013-03-15 17:06:53 -05007453 if (powered_update_hci(hdev) == 0)
7454 return 0;
Johan Hedbergfe038882013-01-16 16:15:34 +02007455
Johan Hedberg229ab392013-03-15 17:06:53 -05007456 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
7457 &match);
7458 goto new_settings;
Johan Hedbergb24752f2011-11-03 14:40:33 +02007459 }
7460
Johan Hedberg229ab392013-03-15 17:06:53 -05007461 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
Johan Hedberg98459042014-12-12 11:15:21 +02007462
7463 /* If the power off is because of hdev unregistration let
7464 * use the appropriate INVALID_INDEX status. Otherwise use
7465 * NOT_POWERED. We cover both scenarios here since later in
7466 * mgmt_index_removed() any hci_conn callbacks will have already
7467 * been triggered, potentially causing misleading DISCONNECTED
7468 * status responses.
7469 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007470 if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
Johan Hedberg98459042014-12-12 11:15:21 +02007471 status = MGMT_STATUS_INVALID_INDEX;
7472 else
7473 status = MGMT_STATUS_NOT_POWERED;
7474
7475 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedberg229ab392013-03-15 17:06:53 -05007476
7477 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
Marcel Holtmannf6b77122015-03-14 19:28:05 -07007478 mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
7479 zero_cod, sizeof(zero_cod), NULL);
Johan Hedberg229ab392013-03-15 17:06:53 -05007480
7481new_settings:
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02007482 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02007483
7484 if (match.sk)
7485 sock_put(match.sk);
7486
Johan Hedberg7bb895d2012-02-17 01:20:00 +02007487 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02007488}
Johan Hedberg73f22f62010-12-29 16:00:25 +02007489
Marcel Holtmann3eec7052013-10-06 23:55:46 -07007490void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03007491{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007492 struct mgmt_pending_cmd *cmd;
Johan Hedberg96570ff2013-05-29 09:51:29 +03007493 u8 status;
7494
Johan Hedberg333ae952015-03-17 13:48:47 +02007495 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007496 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07007497 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03007498
7499 if (err == -ERFKILL)
7500 status = MGMT_STATUS_RFKILLED;
7501 else
7502 status = MGMT_STATUS_FAILED;
7503
Johan Hedberga69e8372015-03-06 21:08:53 +02007504 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007505
7506 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007507}
7508
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007509void mgmt_discoverable_timeout(struct hci_dev *hdev)
7510{
7511 struct hci_request req;
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007512
7513 hci_dev_lock(hdev);
7514
7515 /* When discoverable timeout triggers, then just make sure
7516 * the limited discoverable flag is cleared. Even in the case
7517 * of a timeout triggered from general discoverable, it is
7518 * safe to unconditionally clear the flag.
7519 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07007520 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
7521 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007522
7523 hci_req_init(&req, hdev);
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007524 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg4b580612013-10-19 23:38:21 +03007525 u8 scan = SCAN_PAGE;
7526 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
7527 sizeof(scan), &scan);
7528 }
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007529 update_class(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07007530
7531 /* Advertising instances don't use the global discoverable setting, so
7532 * only update AD if advertising was enabled using Set Advertising.
7533 */
7534 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
7535 update_adv_data(&req);
7536
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007537 hci_req_run(&req, NULL);
7538
7539 hdev->discov_timeout = 0;
7540
Johan Hedberg9a43e252013-10-20 19:00:07 +03007541 new_settings(hdev, NULL);
7542
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007543 hci_dev_unlock(hdev);
7544}
7545
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07007546void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
7547 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007548{
Johan Hedberg86742e12011-11-07 23:13:38 +02007549 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007550
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007551 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007552
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007553 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02007554 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03007555 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007556 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03007557 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007558 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007559
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07007560 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007561}
Johan Hedbergf7520542011-01-20 12:34:39 +02007562
Johan Hedbergd7b25452014-05-23 13:19:53 +03007563static u8 mgmt_ltk_type(struct smp_ltk *ltk)
7564{
Johan Hedberg23fb8de2014-05-23 13:15:37 +03007565 switch (ltk->type) {
7566 case SMP_LTK:
7567 case SMP_LTK_SLAVE:
7568 if (ltk->authenticated)
7569 return MGMT_LTK_AUTHENTICATED;
7570 return MGMT_LTK_UNAUTHENTICATED;
7571 case SMP_LTK_P256:
7572 if (ltk->authenticated)
7573 return MGMT_LTK_P256_AUTH;
7574 return MGMT_LTK_P256_UNAUTH;
7575 case SMP_LTK_P256_DEBUG:
7576 return MGMT_LTK_P256_DEBUG;
7577 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03007578
7579 return MGMT_LTK_UNAUTHENTICATED;
7580}
7581
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007582void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007583{
7584 struct mgmt_ev_new_long_term_key ev;
7585
7586 memset(&ev, 0, sizeof(ev));
7587
Marcel Holtmann5192d302014-02-19 17:11:58 -08007588 /* Devices using resolvable or non-resolvable random addresses
Florian Grandelf72186d2015-05-26 03:31:09 +02007589 * without providing an identity resolving key don't require
Marcel Holtmann5192d302014-02-19 17:11:58 -08007590 * to store long term keys. Their addresses will change the
7591 * next time around.
7592 *
7593 * Only when a remote device provides an identity address
7594 * make sure the long term key is stored. If the remote
7595 * identity is known, the long term keys are internally
7596 * mapped to the identity address. So allow static random
7597 * and public addresses here.
7598 */
Johan Hedbergba74b662014-02-19 14:57:45 +02007599 if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
7600 (key->bdaddr.b[5] & 0xc0) != 0xc0)
7601 ev.store_hint = 0x00;
7602 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007603 ev.store_hint = persistent;
Johan Hedbergba74b662014-02-19 14:57:45 +02007604
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007605 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007606 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Johan Hedbergd7b25452014-05-23 13:19:53 +03007607 ev.key.type = mgmt_ltk_type(key);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007608 ev.key.enc_size = key->enc_size;
7609 ev.key.ediv = key->ediv;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08007610 ev.key.rand = key->rand;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007611
Johan Hedberg2ceba532014-06-16 19:25:16 +03007612 if (key->type == SMP_LTK)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007613 ev.key.master = 1;
7614
Johan Hedberg1fc62c52015-06-10 11:11:20 +03007615 /* Make sure we copy only the significant bytes based on the
7616 * encryption key size, and set the rest of the value to zeroes.
7617 */
7618 memcpy(ev.key.val, key->val, sizeof(key->enc_size));
7619 memset(ev.key.val + key->enc_size, 0,
7620 sizeof(ev.key.val) - key->enc_size);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007621
Marcel Holtmann083368f2013-10-15 14:26:29 -07007622 mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007623}
7624
Johan Hedberg95fbac82014-02-19 15:18:31 +02007625void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk)
7626{
7627 struct mgmt_ev_new_irk ev;
7628
7629 memset(&ev, 0, sizeof(ev));
7630
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08007631 /* For identity resolving keys from devices that are already
7632 * using a public address or static random address, do not
7633 * ask for storing this key. The identity resolving key really
Florian Grandelf72186d2015-05-26 03:31:09 +02007634 * is only mandatory for devices using resolvable random
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08007635 * addresses.
7636 *
7637 * Storing all identity resolving keys has the downside that
7638 * they will be also loaded on next boot of they system. More
7639 * identity resolving keys, means more time during scanning is
7640 * needed to actually resolve these addresses.
7641 */
7642 if (bacmp(&irk->rpa, BDADDR_ANY))
7643 ev.store_hint = 0x01;
7644 else
7645 ev.store_hint = 0x00;
7646
Johan Hedberg95fbac82014-02-19 15:18:31 +02007647 bacpy(&ev.rpa, &irk->rpa);
7648 bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
7649 ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
7650 memcpy(ev.irk.val, irk->val, sizeof(irk->val));
7651
7652 mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
7653}
7654
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007655void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
7656 bool persistent)
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007657{
7658 struct mgmt_ev_new_csrk ev;
7659
7660 memset(&ev, 0, sizeof(ev));
7661
7662 /* Devices using resolvable or non-resolvable random addresses
Florian Grandelf72186d2015-05-26 03:31:09 +02007663 * without providing an identity resolving key don't require
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007664 * to store signature resolving keys. Their addresses will change
7665 * the next time around.
7666 *
7667 * Only when a remote device provides an identity address
7668 * make sure the signature resolving key is stored. So allow
7669 * static random and public addresses here.
7670 */
7671 if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
7672 (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
7673 ev.store_hint = 0x00;
7674 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007675 ev.store_hint = persistent;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007676
7677 bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
7678 ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
Johan Hedberg4cd39282015-02-27 10:11:13 +02007679 ev.key.type = csrk->type;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007680 memcpy(ev.key.val, csrk->val, sizeof(csrk->val));
7681
7682 mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
7683}
7684
Andre Guedesffb5a8272014-07-01 18:10:11 -03007685void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedbergf4869e22014-07-02 17:37:32 +03007686 u8 bdaddr_type, u8 store_hint, u16 min_interval,
7687 u16 max_interval, u16 latency, u16 timeout)
Andre Guedesffb5a8272014-07-01 18:10:11 -03007688{
7689 struct mgmt_ev_new_conn_param ev;
7690
Johan Hedbergc103aea2014-07-02 17:37:34 +03007691 if (!hci_is_identity_address(bdaddr, bdaddr_type))
7692 return;
7693
Andre Guedesffb5a8272014-07-01 18:10:11 -03007694 memset(&ev, 0, sizeof(ev));
7695 bacpy(&ev.addr.bdaddr, bdaddr);
7696 ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
Johan Hedbergf4869e22014-07-02 17:37:32 +03007697 ev.store_hint = store_hint;
Andre Guedesffb5a8272014-07-01 18:10:11 -03007698 ev.min_interval = cpu_to_le16(min_interval);
7699 ev.max_interval = cpu_to_le16(max_interval);
7700 ev.latency = cpu_to_le16(latency);
7701 ev.timeout = cpu_to_le16(timeout);
7702
7703 mgmt_event(MGMT_EV_NEW_CONN_PARAM, hdev, &ev, sizeof(ev), NULL);
7704}
7705
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00007706void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
7707 u32 flags, u8 *name, u8 name_len)
Johan Hedbergf7520542011-01-20 12:34:39 +02007708{
Johan Hedbergb644ba32012-01-17 21:48:47 +02007709 char buf[512];
7710 struct mgmt_ev_device_connected *ev = (void *) buf;
7711 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02007712
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00007713 bacpy(&ev->addr.bdaddr, &conn->dst);
7714 ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02007715
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02007716 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02007717
Alfonso Acostafd45ada2014-10-07 08:44:11 +00007718 /* We must ensure that the EIR Data fields are ordered and
7719 * unique. Keep it simple for now and avoid the problem by not
7720 * adding any BR/EDR data to the LE adv.
7721 */
7722 if (conn->le_adv_data_len > 0) {
7723 memcpy(&ev->eir[eir_len],
7724 conn->le_adv_data, conn->le_adv_data_len);
7725 eir_len = conn->le_adv_data_len;
7726 } else {
7727 if (name_len > 0)
7728 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
7729 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007730
Alfonso Acostaddbea5c2014-10-07 08:44:12 +00007731 if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
Alfonso Acostafd45ada2014-10-07 08:44:11 +00007732 eir_len = eir_append_data(ev->eir, eir_len,
7733 EIR_CLASS_OF_DEV,
7734 conn->dev_class, 3);
7735 }
Johan Hedbergb644ba32012-01-17 21:48:47 +02007736
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02007737 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007738
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07007739 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
7740 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02007741}
7742
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007743static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg8962ee72011-01-20 12:40:27 +02007744{
Johan Hedberg8962ee72011-01-20 12:40:27 +02007745 struct sock **sk = data;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007746
Johan Hedbergf5818c22014-12-05 13:36:02 +02007747 cmd->cmd_complete(cmd, 0);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007748
7749 *sk = cmd->sk;
7750 sock_hold(*sk);
7751
Johan Hedberga664b5b2011-02-19 12:06:02 -03007752 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007753}
7754
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007755static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02007756{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02007757 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02007758 struct mgmt_cp_unpair_device *cp = cmd->param;
Johan Hedberga8a1d192011-11-10 15:54:38 +02007759
Johan Hedbergb1078ad2012-02-09 17:21:16 +02007760 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
7761
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02007762 cmd->cmd_complete(cmd, 0);
Johan Hedberga8a1d192011-11-10 15:54:38 +02007763 mgmt_pending_remove(cmd);
7764}
7765
Johan Hedberg84c61d92014-08-01 11:13:30 +03007766bool mgmt_powering_down(struct hci_dev *hdev)
7767{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007768 struct mgmt_pending_cmd *cmd;
Johan Hedberg84c61d92014-08-01 11:13:30 +03007769 struct mgmt_mode *cp;
7770
Johan Hedberg333ae952015-03-17 13:48:47 +02007771 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg84c61d92014-08-01 11:13:30 +03007772 if (!cmd)
7773 return false;
7774
7775 cp = cmd->param;
7776 if (!cp->val)
7777 return true;
7778
7779 return false;
7780}
7781
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07007782void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02007783 u8 link_type, u8 addr_type, u8 reason,
7784 bool mgmt_connected)
Johan Hedbergf7520542011-01-20 12:34:39 +02007785{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02007786 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007787 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007788
Johan Hedberg84c61d92014-08-01 11:13:30 +03007789 /* The connection is still in hci_conn_hash so test for 1
7790 * instead of 0 to know if this is the last one.
7791 */
7792 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
7793 cancel_delayed_work(&hdev->power_off);
7794 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberg8b064a32014-02-24 14:52:22 +02007795 }
7796
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02007797 if (!mgmt_connected)
7798 return;
7799
Andre Guedes57eb7762013-10-30 19:01:41 -03007800 if (link_type != ACL_LINK && link_type != LE_LINK)
7801 return;
7802
Johan Hedberg744cf192011-11-08 20:40:14 +02007803 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02007804
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02007805 bacpy(&ev.addr.bdaddr, bdaddr);
7806 ev.addr.type = link_to_bdaddr(link_type, addr_type);
7807 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02007808
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07007809 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007810
7811 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01007812 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007813
Johan Hedberg124f6e32012-02-09 13:50:12 +02007814 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007815 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007816}
7817
Marcel Holtmann78929242013-10-06 23:55:47 -07007818void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
7819 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02007820{
Andre Guedes3655bba2013-10-30 19:01:40 -03007821 u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
7822 struct mgmt_cp_disconnect *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007823 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007824
Jefferson Delfes36a75f12012-09-18 13:36:54 -04007825 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
7826 hdev);
7827
Johan Hedberg333ae952015-03-17 13:48:47 +02007828 cmd = pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007829 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07007830 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007831
Andre Guedes3655bba2013-10-30 19:01:40 -03007832 cp = cmd->param;
7833
7834 if (bacmp(bdaddr, &cp->addr.bdaddr))
7835 return;
7836
7837 if (cp->addr.type != bdaddr_type)
7838 return;
7839
Johan Hedbergf5818c22014-12-05 13:36:02 +02007840 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03007841 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02007842}
Johan Hedberg17d5c042011-01-22 06:09:08 +02007843
Marcel Holtmann445608d2013-10-06 23:55:48 -07007844void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
7845 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02007846{
7847 struct mgmt_ev_connect_failed ev;
Johan Hedbergc9910d02014-02-27 14:35:12 +02007848
Johan Hedberg84c61d92014-08-01 11:13:30 +03007849 /* The connection is still in hci_conn_hash so test for 1
7850 * instead of 0 to know if this is the last one.
7851 */
7852 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
7853 cancel_delayed_work(&hdev->power_off);
7854 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedbergc9910d02014-02-27 14:35:12 +02007855 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02007856
Johan Hedberg4c659c32011-11-07 23:13:39 +02007857 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007858 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02007859 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02007860
Marcel Holtmann445608d2013-10-06 23:55:48 -07007861 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02007862}
Johan Hedberg980e1a52011-01-22 06:10:07 +02007863
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07007864void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02007865{
7866 struct mgmt_ev_pin_code_request ev;
7867
Johan Hedbergd8457692012-02-17 14:24:57 +02007868 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03007869 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02007870 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02007871
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07007872 mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02007873}
7874
Marcel Holtmanne669cf82013-10-15 14:26:21 -07007875void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7876 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02007877{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007878 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02007879
Johan Hedberg333ae952015-03-17 13:48:47 +02007880 cmd = pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02007881 if (!cmd)
Marcel Holtmanne669cf82013-10-15 14:26:21 -07007882 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02007883
Johan Hedberg7776d1d2014-12-05 13:36:03 +02007884 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03007885 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02007886}
7887
Marcel Holtmann3eb38522013-10-15 14:26:22 -07007888void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7889 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02007890{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007891 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02007892
Johan Hedberg333ae952015-03-17 13:48:47 +02007893 cmd = pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02007894 if (!cmd)
Marcel Holtmann3eb38522013-10-15 14:26:22 -07007895 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02007896
Johan Hedberg7776d1d2014-12-05 13:36:03 +02007897 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03007898 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02007899}
Johan Hedberga5c29682011-02-19 12:05:57 -03007900
Johan Hedberg744cf192011-11-08 20:40:14 +02007901int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg39adbff2014-03-20 08:18:14 +02007902 u8 link_type, u8 addr_type, u32 value,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007903 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03007904{
7905 struct mgmt_ev_user_confirm_request ev;
7906
Johan Hedberg744cf192011-11-08 20:40:14 +02007907 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03007908
Johan Hedberg272d90d2012-02-09 15:26:12 +02007909 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007910 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07007911 ev.confirm_hint = confirm_hint;
Johan Hedberg39adbff2014-03-20 08:18:14 +02007912 ev.value = cpu_to_le32(value);
Johan Hedberga5c29682011-02-19 12:05:57 -03007913
Johan Hedberg744cf192011-11-08 20:40:14 +02007914 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007915 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03007916}
7917
Johan Hedberg272d90d2012-02-09 15:26:12 +02007918int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03007919 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08007920{
7921 struct mgmt_ev_user_passkey_request ev;
7922
7923 BT_DBG("%s", hdev->name);
7924
Johan Hedberg272d90d2012-02-09 15:26:12 +02007925 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007926 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08007927
7928 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007929 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08007930}
7931
Brian Gix0df4c182011-11-16 13:53:13 -08007932static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03007933 u8 link_type, u8 addr_type, u8 status,
7934 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03007935{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007936 struct mgmt_pending_cmd *cmd;
Johan Hedberga5c29682011-02-19 12:05:57 -03007937
Johan Hedberg333ae952015-03-17 13:48:47 +02007938 cmd = pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03007939 if (!cmd)
7940 return -ENOENT;
7941
Johan Hedberg7776d1d2014-12-05 13:36:03 +02007942 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03007943 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03007944
Johan Hedberg7776d1d2014-12-05 13:36:03 +02007945 return 0;
Johan Hedberga5c29682011-02-19 12:05:57 -03007946}
7947
Johan Hedberg744cf192011-11-08 20:40:14 +02007948int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007949 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03007950{
Johan Hedberg272d90d2012-02-09 15:26:12 +02007951 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007952 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03007953}
7954
Johan Hedberg272d90d2012-02-09 15:26:12 +02007955int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007956 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03007957{
Johan Hedberg272d90d2012-02-09 15:26:12 +02007958 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03007959 status,
7960 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03007961}
Johan Hedberg2a611692011-02-19 12:06:00 -03007962
Brian Gix604086b2011-11-23 08:28:33 -08007963int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007964 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08007965{
Johan Hedberg272d90d2012-02-09 15:26:12 +02007966 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007967 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08007968}
7969
Johan Hedberg272d90d2012-02-09 15:26:12 +02007970int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007971 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08007972{
Johan Hedberg272d90d2012-02-09 15:26:12 +02007973 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03007974 status,
7975 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08007976}
7977
Johan Hedberg92a25252012-09-06 18:39:26 +03007978int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
7979 u8 link_type, u8 addr_type, u32 passkey,
7980 u8 entered)
7981{
7982 struct mgmt_ev_passkey_notify ev;
7983
7984 BT_DBG("%s", hdev->name);
7985
7986 bacpy(&ev.addr.bdaddr, bdaddr);
7987 ev.addr.type = link_to_bdaddr(link_type, addr_type);
7988 ev.passkey = __cpu_to_le32(passkey);
7989 ev.entered = entered;
7990
7991 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
7992}
7993
Johan Hedberge1e930f2014-09-08 17:09:49 -07007994void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
Johan Hedberg2a611692011-02-19 12:06:00 -03007995{
7996 struct mgmt_ev_auth_failed ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007997 struct mgmt_pending_cmd *cmd;
Johan Hedberge1e930f2014-09-08 17:09:49 -07007998 u8 status = mgmt_status(hci_status);
Johan Hedberg2a611692011-02-19 12:06:00 -03007999
Johan Hedberge1e930f2014-09-08 17:09:49 -07008000 bacpy(&ev.addr.bdaddr, &conn->dst);
8001 ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
8002 ev.status = status;
Johan Hedberg2a611692011-02-19 12:06:00 -03008003
Johan Hedberge1e930f2014-09-08 17:09:49 -07008004 cmd = find_pairing(conn);
8005
8006 mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
8007 cmd ? cmd->sk : NULL);
8008
Johan Hedberga511b352014-12-11 21:45:45 +02008009 if (cmd) {
8010 cmd->cmd_complete(cmd, status);
8011 mgmt_pending_remove(cmd);
8012 }
Johan Hedberg2a611692011-02-19 12:06:00 -03008013}
Johan Hedbergb312b1612011-03-16 14:29:37 +02008014
Marcel Holtmann464996a2013-10-15 14:26:24 -07008015void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008016{
8017 struct cmd_lookup match = { NULL, hdev };
Marcel Holtmann464996a2013-10-15 14:26:24 -07008018 bool changed;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008019
8020 if (status) {
8021 u8 mgmt_err = mgmt_status(status);
8022 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008023 cmd_status_rsp, &mgmt_err);
Marcel Holtmann464996a2013-10-15 14:26:24 -07008024 return;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008025 }
8026
Marcel Holtmann464996a2013-10-15 14:26:24 -07008027 if (test_bit(HCI_AUTH, &hdev->flags))
Marcel Holtmann238be782015-03-13 02:11:06 -07008028 changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
Marcel Holtmann464996a2013-10-15 14:26:24 -07008029 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008030 changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02008031
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008032 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008033 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008034
Johan Hedberg47990ea2012-02-22 11:58:37 +02008035 if (changed)
Marcel Holtmann464996a2013-10-15 14:26:24 -07008036 new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008037
8038 if (match.sk)
8039 sock_put(match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008040}
8041
Johan Hedberg890ea892013-03-15 17:06:52 -05008042static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02008043{
Johan Hedberg890ea892013-03-15 17:06:52 -05008044 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02008045 struct hci_cp_write_eir cp;
8046
Johan Hedberg976eb202012-10-24 21:12:01 +03008047 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05008048 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02008049
Johan Hedbergc80da272012-02-22 15:38:48 +02008050 memset(hdev->eir, 0, sizeof(hdev->eir));
8051
Johan Hedbergcacaf522012-02-21 00:52:42 +02008052 memset(&cp, 0, sizeof(cp));
8053
Johan Hedberg890ea892013-03-15 17:06:52 -05008054 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02008055}
8056
Marcel Holtmann3e248562013-10-15 14:26:25 -07008057void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008058{
8059 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05008060 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008061 bool changed = false;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008062
8063 if (status) {
8064 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008065
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008066 if (enable && hci_dev_test_and_clear_flag(hdev,
8067 HCI_SSP_ENABLED)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07008068 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmann3e248562013-10-15 14:26:25 -07008069 new_settings(hdev, NULL);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07008070 }
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008071
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008072 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
8073 &mgmt_err);
Marcel Holtmann3e248562013-10-15 14:26:25 -07008074 return;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008075 }
8076
8077 if (enable) {
Marcel Holtmann238be782015-03-13 02:11:06 -07008078 changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008079 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008080 changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07008081 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008082 changed = hci_dev_test_and_clear_flag(hdev,
8083 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07008084 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07008085 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008086 }
8087
8088 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
8089
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008090 if (changed)
Marcel Holtmann3e248562013-10-15 14:26:25 -07008091 new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008092
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02008093 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008094 sock_put(match.sk);
8095
Johan Hedberg890ea892013-03-15 17:06:52 -05008096 hci_req_init(&req, hdev);
8097
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07008098 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
8099 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03008100 hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
8101 sizeof(enable), &enable);
Johan Hedberg890ea892013-03-15 17:06:52 -05008102 update_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03008103 } else {
Johan Hedberg890ea892013-03-15 17:06:52 -05008104 clear_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03008105 }
Johan Hedberg890ea892013-03-15 17:06:52 -05008106
8107 hci_req_run(&req, NULL);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008108}
8109
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008110static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02008111{
8112 struct cmd_lookup *match = data;
8113
Johan Hedberg90e70452012-02-23 23:09:40 +02008114 if (match->sk == NULL) {
8115 match->sk = cmd->sk;
8116 sock_hold(match->sk);
8117 }
Johan Hedberg90e70452012-02-23 23:09:40 +02008118}
8119
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07008120void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
8121 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01008122{
Johan Hedberg90e70452012-02-23 23:09:40 +02008123 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01008124
Johan Hedberg92da6092013-03-15 17:06:55 -05008125 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
8126 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
8127 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02008128
8129 if (!status)
Marcel Holtmannf6b77122015-03-14 19:28:05 -07008130 mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
8131 dev_class, 3, NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02008132
8133 if (match.sk)
8134 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01008135}
8136
Marcel Holtmann7667da32013-10-15 14:26:27 -07008137void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02008138{
Johan Hedbergb312b1612011-03-16 14:29:37 +02008139 struct mgmt_cp_set_local_name ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008140 struct mgmt_pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02008141
Johan Hedberg13928972013-03-15 17:07:00 -05008142 if (status)
Marcel Holtmann7667da32013-10-15 14:26:27 -07008143 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02008144
8145 memset(&ev, 0, sizeof(ev));
8146 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02008147 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02008148
Johan Hedberg333ae952015-03-17 13:48:47 +02008149 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05008150 if (!cmd) {
8151 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02008152
Johan Hedberg13928972013-03-15 17:07:00 -05008153 /* If this is a HCI command related to powering on the
8154 * HCI dev don't send any mgmt signals.
8155 */
Johan Hedberg333ae952015-03-17 13:48:47 +02008156 if (pending_find(MGMT_OP_SET_POWERED, hdev))
Marcel Holtmann7667da32013-10-15 14:26:27 -07008157 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02008158 }
8159
Marcel Holtmannf6b77122015-03-14 19:28:05 -07008160 mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
8161 cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02008162}
Szymon Jancc35938b2011-03-22 13:12:21 +01008163
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008164static inline bool has_uuid(u8 *uuid, u16 uuid_count, u8 (*uuids)[16])
8165{
8166 int i;
8167
8168 for (i = 0; i < uuid_count; i++) {
8169 if (!memcmp(uuid, uuids[i], 16))
8170 return true;
8171 }
8172
8173 return false;
8174}
8175
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008176static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
8177{
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008178 u16 parsed = 0;
8179
8180 while (parsed < eir_len) {
8181 u8 field_len = eir[0];
8182 u8 uuid[16];
8183 int i;
8184
8185 if (field_len == 0)
8186 break;
8187
8188 if (eir_len - parsed < field_len + 1)
8189 break;
8190
8191 switch (eir[1]) {
8192 case EIR_UUID16_ALL:
8193 case EIR_UUID16_SOME:
8194 for (i = 0; i + 3 <= field_len; i += 2) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02008195 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008196 uuid[13] = eir[i + 3];
8197 uuid[12] = eir[i + 2];
8198 if (has_uuid(uuid, uuid_count, uuids))
8199 return true;
8200 }
8201 break;
8202 case EIR_UUID32_ALL:
8203 case EIR_UUID32_SOME:
8204 for (i = 0; i + 5 <= field_len; i += 4) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02008205 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008206 uuid[15] = eir[i + 5];
8207 uuid[14] = eir[i + 4];
8208 uuid[13] = eir[i + 3];
8209 uuid[12] = eir[i + 2];
8210 if (has_uuid(uuid, uuid_count, uuids))
8211 return true;
8212 }
8213 break;
8214 case EIR_UUID128_ALL:
8215 case EIR_UUID128_SOME:
8216 for (i = 0; i + 17 <= field_len; i += 16) {
8217 memcpy(uuid, eir + i + 2, 16);
8218 if (has_uuid(uuid, uuid_count, uuids))
8219 return true;
8220 }
8221 break;
8222 }
8223
8224 parsed += field_len + 1;
8225 eir += field_len + 1;
8226 }
8227
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008228 return false;
8229}
8230
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008231static void restart_le_scan(struct hci_dev *hdev)
8232{
8233 /* If controller is not scanning we are done. */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07008234 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008235 return;
8236
8237 if (time_after(jiffies + DISCOV_LE_RESTART_DELAY,
8238 hdev->discovery.scan_start +
8239 hdev->discovery.scan_duration))
8240 return;
8241
8242 queue_delayed_work(hdev->workqueue, &hdev->le_scan_restart,
8243 DISCOV_LE_RESTART_DELAY);
8244}
8245
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008246static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
8247 u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
8248{
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008249 /* If a RSSI threshold has been specified, and
8250 * HCI_QUIRK_STRICT_DUPLICATE_FILTER is not set, then all results with
8251 * a RSSI smaller than the RSSI threshold will be dropped. If the quirk
8252 * is set, let it through for further processing, as we might need to
8253 * restart the scan.
8254 *
8255 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
8256 * the results are also dropped.
8257 */
8258 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
8259 (rssi == HCI_RSSI_INVALID ||
8260 (rssi < hdev->discovery.rssi &&
8261 !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
8262 return false;
8263
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008264 if (hdev->discovery.uuid_count != 0) {
8265 /* If a list of UUIDs is provided in filter, results with no
8266 * matching UUID should be dropped.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008267 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008268 if (!eir_has_uuids(eir, eir_len, hdev->discovery.uuid_count,
8269 hdev->discovery.uuids) &&
8270 !eir_has_uuids(scan_rsp, scan_rsp_len,
8271 hdev->discovery.uuid_count,
8272 hdev->discovery.uuids))
8273 return false;
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008274 }
8275
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008276 /* If duplicate filtering does not report RSSI changes, then restart
8277 * scanning to ensure updated result with updated RSSI values.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008278 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008279 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks)) {
8280 restart_le_scan(hdev);
8281
8282 /* Validate RSSI value against the RSSI threshold once more. */
8283 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
8284 rssi < hdev->discovery.rssi)
8285 return false;
8286 }
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008287
8288 return true;
8289}
8290
Marcel Holtmann901801b2013-10-06 23:55:51 -07008291void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Marcel Holtmannaf589252014-07-01 14:11:20 +02008292 u8 addr_type, u8 *dev_class, s8 rssi, u32 flags,
8293 u8 *eir, u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03008294{
Johan Hedberge319d2e2012-01-15 19:51:59 +02008295 char buf[512];
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008296 struct mgmt_ev_device_found *ev = (void *)buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02008297 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03008298
Johan Hedberg75ce2082014-07-02 22:42:01 +03008299 /* Don't send events for a non-kernel initiated discovery. With
8300 * LE one exception is if we have pend_le_reports > 0 in which
8301 * case we're doing passive scanning and want these events.
8302 */
8303 if (!hci_discovery_active(hdev)) {
8304 if (link_type == ACL_LINK)
8305 return;
Johan Hedberg66f84552014-07-04 12:37:18 +03008306 if (link_type == LE_LINK && list_empty(&hdev->pend_le_reports))
Johan Hedberg75ce2082014-07-02 22:42:01 +03008307 return;
8308 }
Andre Guedes12602d02013-04-30 15:29:40 -03008309
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08008310 if (hdev->discovery.result_filtering) {
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008311 /* We are using service discovery */
8312 if (!is_filter_match(hdev, rssi, eir, eir_len, scan_rsp,
8313 scan_rsp_len))
8314 return;
8315 }
Marcel Holtmannbda157a2014-12-05 10:55:56 +01008316
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008317 /* Make sure that the buffer is big enough. The 5 extra bytes
8318 * are for the potential CoD field.
8319 */
8320 if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07008321 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03008322
Johan Hedberg1dc06092012-01-15 21:01:23 +02008323 memset(buf, 0, sizeof(buf));
8324
Marcel Holtmannda25cf62014-12-05 13:03:35 +01008325 /* In case of device discovery with BR/EDR devices (pre 1.2), the
8326 * RSSI value was reported as 0 when not available. This behavior
8327 * is kept when using device discovery. This is required for full
8328 * backwards compatibility with the API.
8329 *
8330 * However when using service discovery, the value 127 will be
8331 * returned when the RSSI is not available.
8332 */
Szymon Janc91200e92015-01-22 16:57:05 +01008333 if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi &&
8334 link_type == ACL_LINK)
Marcel Holtmannefb25132014-12-05 13:03:34 +01008335 rssi = 0;
8336
Johan Hedberg841c5642014-07-07 12:45:54 +03008337 bacpy(&ev->addr.bdaddr, bdaddr);
8338 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02008339 ev->rssi = rssi;
Marcel Holtmannaf589252014-07-01 14:11:20 +02008340 ev->flags = cpu_to_le32(flags);
Johan Hedberge17acd42011-03-30 23:57:16 +03008341
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008342 if (eir_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008343 /* Copy EIR or advertising data into event */
Johan Hedberge319d2e2012-01-15 19:51:59 +02008344 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03008345
Johan Hedberg1dc06092012-01-15 21:01:23 +02008346 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
8347 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008348 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02008349
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008350 if (scan_rsp_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008351 /* Append scan response data to event */
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008352 memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008353
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008354 ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
8355 ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
Andre Guedesf8523592011-09-09 18:56:26 -03008356
Marcel Holtmann901801b2013-10-06 23:55:51 -07008357 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03008358}
Johan Hedberga88a9652011-03-30 13:18:12 +03008359
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07008360void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
8361 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03008362{
Johan Hedbergb644ba32012-01-17 21:48:47 +02008363 struct mgmt_ev_device_found *ev;
8364 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
8365 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03008366
Johan Hedbergb644ba32012-01-17 21:48:47 +02008367 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03008368
Johan Hedbergb644ba32012-01-17 21:48:47 +02008369 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03008370
Johan Hedbergb644ba32012-01-17 21:48:47 +02008371 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008372 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008373 ev->rssi = rssi;
8374
8375 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008376 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008377
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02008378 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008379
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07008380 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03008381}
Johan Hedberg314b2382011-04-27 10:29:57 -04008382
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07008383void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04008384{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02008385 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02008386
Andre Guedes343fb142011-11-22 17:14:19 -03008387 BT_DBG("%s discovering %u", hdev->name, discovering);
8388
Johan Hedbergf963e8e2012-02-20 23:30:44 +02008389 memset(&ev, 0, sizeof(ev));
8390 ev.type = hdev->discovery.type;
8391 ev.discovering = discovering;
8392
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07008393 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04008394}
Antti Julku5e762442011-08-25 16:48:02 +03008395
Marcel Holtmann1904a852015-01-11 13:50:44 -08008396static void adv_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Marcel Holtmann5976e602013-10-06 04:08:14 -07008397{
8398 BT_DBG("%s status %u", hdev->name, status);
Marcel Holtmann5976e602013-10-06 04:08:14 -07008399}
8400
8401void mgmt_reenable_advertising(struct hci_dev *hdev)
8402{
8403 struct hci_request req;
8404
Arman Uguray24b4f382015-03-23 15:57:12 -07008405 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
8406 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
Marcel Holtmann5976e602013-10-06 04:08:14 -07008407 return;
8408
8409 hci_req_init(&req, hdev);
8410 enable_advertising(&req);
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03008411 hci_req_run(&req, adv_enable_complete);
Marcel Holtmann5976e602013-10-06 04:08:14 -07008412}
Johan Hedberg6d785aa32015-03-06 21:08:51 +02008413
8414static struct hci_mgmt_chan chan = {
8415 .channel = HCI_CHANNEL_CONTROL,
8416 .handler_count = ARRAY_SIZE(mgmt_handlers),
8417 .handlers = mgmt_handlers,
Johan Hedberg88b94ce2015-03-17 13:48:49 +02008418 .hdev_init = mgmt_init_hdev,
Johan Hedberg6d785aa32015-03-06 21:08:51 +02008419};
8420
8421int mgmt_init(void)
8422{
8423 return hci_mgmt_chan_register(&chan);
8424}
8425
8426void mgmt_exit(void)
8427{
8428 hci_mgmt_chan_unregister(&chan);
8429}