blob: e634b4d85249170050a692fb6de3c43c14e919f1 [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 Holtmanne58627d2015-06-18 18:58:03 +020041#define MGMT_REVISION 10
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
Johan Hedberg85813a72015-10-21 18:02:59 +0300271static u8 le_addr_type(u8 mgmt_addr_type)
272{
273 if (mgmt_addr_type == BDADDR_LE_PUBLIC)
274 return ADDR_LE_DEV_PUBLIC;
275 else
276 return ADDR_LE_DEV_RANDOM;
277}
278
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300279static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
280 u16 data_len)
Johan Hedberga38528f2011-01-22 06:46:43 +0200281{
282 struct mgmt_rp_read_version rp;
283
284 BT_DBG("sock %p", sk);
285
286 rp.version = MGMT_VERSION;
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700287 rp.revision = cpu_to_le16(MGMT_REVISION);
Johan Hedberga38528f2011-01-22 06:46:43 +0200288
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200289 return mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0,
290 &rp, sizeof(rp));
Johan Hedberga38528f2011-01-22 06:46:43 +0200291}
292
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300293static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
294 u16 data_len)
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200295{
296 struct mgmt_rp_read_commands *rp;
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700297 u16 num_commands, num_events;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200298 size_t rp_size;
299 int i, err;
300
301 BT_DBG("sock %p", sk);
302
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700303 if (hci_sock_test_flag(sk, HCI_SOCK_TRUSTED)) {
304 num_commands = ARRAY_SIZE(mgmt_commands);
305 num_events = ARRAY_SIZE(mgmt_events);
306 } else {
307 num_commands = ARRAY_SIZE(mgmt_untrusted_commands);
308 num_events = ARRAY_SIZE(mgmt_untrusted_events);
309 }
310
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200311 rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));
312
313 rp = kmalloc(rp_size, GFP_KERNEL);
314 if (!rp)
315 return -ENOMEM;
316
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700317 rp->num_commands = cpu_to_le16(num_commands);
318 rp->num_events = cpu_to_le16(num_events);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200319
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700320 if (hci_sock_test_flag(sk, HCI_SOCK_TRUSTED)) {
321 __le16 *opcode = rp->opcodes;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200322
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700323 for (i = 0; i < num_commands; i++, opcode++)
324 put_unaligned_le16(mgmt_commands[i], opcode);
325
326 for (i = 0; i < num_events; i++, opcode++)
327 put_unaligned_le16(mgmt_events[i], opcode);
328 } else {
329 __le16 *opcode = rp->opcodes;
330
331 for (i = 0; i < num_commands; i++, opcode++)
332 put_unaligned_le16(mgmt_untrusted_commands[i], opcode);
333
334 for (i = 0; i < num_events; i++, opcode++)
335 put_unaligned_le16(mgmt_untrusted_events[i], opcode);
336 }
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200337
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200338 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0,
339 rp, rp_size);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200340 kfree(rp);
341
342 return err;
343}
344
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300345static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
346 u16 data_len)
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200347{
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200348 struct mgmt_rp_read_index_list *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200349 struct hci_dev *d;
Johan Hedberga38528f2011-01-22 06:46:43 +0200350 size_t rp_len;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200351 u16 count;
Johan Hedberg476e44c2012-10-19 20:10:46 +0300352 int err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200353
354 BT_DBG("sock %p", sk);
355
356 read_lock(&hci_dev_list_lock);
357
358 count = 0;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300359 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200360 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700361 !hci_dev_test_flag(d, HCI_UNCONFIGURED))
Marcel Holtmann1514b892013-10-06 08:25:01 -0700362 count++;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200363 }
364
Johan Hedberga38528f2011-01-22 06:46:43 +0200365 rp_len = sizeof(*rp) + (2 * count);
366 rp = kmalloc(rp_len, GFP_ATOMIC);
367 if (!rp) {
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100368 read_unlock(&hci_dev_list_lock);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200369 return -ENOMEM;
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100370 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200371
Johan Hedberg476e44c2012-10-19 20:10:46 +0300372 count = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200373 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700374 if (hci_dev_test_flag(d, HCI_SETUP) ||
375 hci_dev_test_flag(d, HCI_CONFIG) ||
376 hci_dev_test_flag(d, HCI_USER_CHANNEL))
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200377 continue;
378
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200379 /* Devices marked as raw-only are neither configured
380 * nor unconfigured controllers.
381 */
382 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
Marcel Holtmann0736cfa2013-08-26 21:40:51 -0700383 continue;
384
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200385 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700386 !hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
Marcel Holtmann1514b892013-10-06 08:25:01 -0700387 rp->index[count++] = cpu_to_le16(d->id);
388 BT_DBG("Added hci%u", d->id);
389 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200390 }
391
Johan Hedberg476e44c2012-10-19 20:10:46 +0300392 rp->num_controllers = cpu_to_le16(count);
393 rp_len = sizeof(*rp) + (2 * count);
394
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200395 read_unlock(&hci_dev_list_lock);
396
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200397 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST,
398 0, rp, rp_len);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200399
Johan Hedberga38528f2011-01-22 06:46:43 +0200400 kfree(rp);
401
402 return err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200403}
404
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200405static int read_unconf_index_list(struct sock *sk, struct hci_dev *hdev,
406 void *data, u16 data_len)
407{
408 struct mgmt_rp_read_unconf_index_list *rp;
409 struct hci_dev *d;
410 size_t rp_len;
411 u16 count;
412 int err;
413
414 BT_DBG("sock %p", sk);
415
416 read_lock(&hci_dev_list_lock);
417
418 count = 0;
419 list_for_each_entry(d, &hci_dev_list, list) {
420 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700421 hci_dev_test_flag(d, HCI_UNCONFIGURED))
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200422 count++;
423 }
424
425 rp_len = sizeof(*rp) + (2 * count);
426 rp = kmalloc(rp_len, GFP_ATOMIC);
427 if (!rp) {
428 read_unlock(&hci_dev_list_lock);
429 return -ENOMEM;
430 }
431
432 count = 0;
433 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700434 if (hci_dev_test_flag(d, HCI_SETUP) ||
435 hci_dev_test_flag(d, HCI_CONFIG) ||
436 hci_dev_test_flag(d, HCI_USER_CHANNEL))
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200437 continue;
438
439 /* Devices marked as raw-only are neither configured
440 * nor unconfigured controllers.
441 */
442 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
443 continue;
444
445 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700446 hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200447 rp->index[count++] = cpu_to_le16(d->id);
448 BT_DBG("Added hci%u", d->id);
449 }
450 }
451
452 rp->num_controllers = cpu_to_le16(count);
453 rp_len = sizeof(*rp) + (2 * count);
454
455 read_unlock(&hci_dev_list_lock);
456
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200457 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
458 MGMT_OP_READ_UNCONF_INDEX_LIST, 0, rp, rp_len);
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200459
460 kfree(rp);
461
462 return err;
463}
464
Marcel Holtmann96f14742015-03-14 19:27:57 -0700465static int read_ext_index_list(struct sock *sk, struct hci_dev *hdev,
466 void *data, u16 data_len)
467{
468 struct mgmt_rp_read_ext_index_list *rp;
469 struct hci_dev *d;
470 size_t rp_len;
471 u16 count;
472 int err;
473
474 BT_DBG("sock %p", sk);
475
476 read_lock(&hci_dev_list_lock);
477
478 count = 0;
479 list_for_each_entry(d, &hci_dev_list, list) {
480 if (d->dev_type == HCI_BREDR || d->dev_type == HCI_AMP)
481 count++;
482 }
483
484 rp_len = sizeof(*rp) + (sizeof(rp->entry[0]) * count);
485 rp = kmalloc(rp_len, GFP_ATOMIC);
486 if (!rp) {
487 read_unlock(&hci_dev_list_lock);
488 return -ENOMEM;
489 }
490
491 count = 0;
492 list_for_each_entry(d, &hci_dev_list, list) {
493 if (hci_dev_test_flag(d, HCI_SETUP) ||
494 hci_dev_test_flag(d, HCI_CONFIG) ||
495 hci_dev_test_flag(d, HCI_USER_CHANNEL))
496 continue;
497
498 /* Devices marked as raw-only are neither configured
499 * nor unconfigured controllers.
500 */
501 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
502 continue;
503
504 if (d->dev_type == HCI_BREDR) {
505 if (hci_dev_test_flag(d, HCI_UNCONFIGURED))
506 rp->entry[count].type = 0x01;
507 else
508 rp->entry[count].type = 0x00;
509 } else if (d->dev_type == HCI_AMP) {
510 rp->entry[count].type = 0x02;
511 } else {
512 continue;
513 }
514
515 rp->entry[count].bus = d->bus;
516 rp->entry[count++].index = cpu_to_le16(d->id);
517 BT_DBG("Added hci%u", d->id);
518 }
519
520 rp->num_controllers = cpu_to_le16(count);
521 rp_len = sizeof(*rp) + (sizeof(rp->entry[0]) * count);
522
523 read_unlock(&hci_dev_list_lock);
524
525 /* If this command is called at least once, then all the
526 * default index and unconfigured index events are disabled
527 * and from now on only extended index events are used.
528 */
529 hci_sock_set_flag(sk, HCI_MGMT_EXT_INDEX_EVENTS);
530 hci_sock_clear_flag(sk, HCI_MGMT_INDEX_EVENTS);
531 hci_sock_clear_flag(sk, HCI_MGMT_UNCONF_INDEX_EVENTS);
532
533 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
534 MGMT_OP_READ_EXT_INDEX_LIST, 0, rp, rp_len);
535
536 kfree(rp);
537
538 return err;
539}
540
Marcel Holtmanndbece372014-07-04 18:11:55 +0200541static bool is_configured(struct hci_dev *hdev)
542{
543 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700544 !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
Marcel Holtmanndbece372014-07-04 18:11:55 +0200545 return false;
546
547 if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
548 !bacmp(&hdev->public_addr, BDADDR_ANY))
549 return false;
550
551 return true;
552}
553
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200554static __le32 get_missing_options(struct hci_dev *hdev)
555{
556 u32 options = 0;
557
Marcel Holtmanndbece372014-07-04 18:11:55 +0200558 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700559 !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200560 options |= MGMT_OPTION_EXTERNAL_CONFIG;
561
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200562 if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
563 !bacmp(&hdev->public_addr, BDADDR_ANY))
564 options |= MGMT_OPTION_PUBLIC_ADDRESS;
565
566 return cpu_to_le32(options);
567}
568
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200569static int new_options(struct hci_dev *hdev, struct sock *skip)
570{
571 __le32 options = get_missing_options(hdev);
572
Marcel Holtmannf6b77122015-03-14 19:28:05 -0700573 return mgmt_generic_event(MGMT_EV_NEW_CONFIG_OPTIONS, hdev, &options,
574 sizeof(options), skip);
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200575}
576
Marcel Holtmanndbece372014-07-04 18:11:55 +0200577static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
578{
579 __le32 options = get_missing_options(hdev);
580
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200581 return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &options,
582 sizeof(options));
Marcel Holtmanndbece372014-07-04 18:11:55 +0200583}
584
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200585static int read_config_info(struct sock *sk, struct hci_dev *hdev,
586 void *data, u16 data_len)
587{
588 struct mgmt_rp_read_config_info rp;
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200589 u32 options = 0;
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200590
591 BT_DBG("sock %p %s", sk, hdev->name);
592
593 hci_dev_lock(hdev);
594
595 memset(&rp, 0, sizeof(rp));
596 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200597
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200598 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
599 options |= MGMT_OPTION_EXTERNAL_CONFIG;
600
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200601 if (hdev->set_bdaddr)
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200602 options |= MGMT_OPTION_PUBLIC_ADDRESS;
603
604 rp.supported_options = cpu_to_le32(options);
605 rp.missing_options = get_missing_options(hdev);
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200606
607 hci_dev_unlock(hdev);
608
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200609 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0,
610 &rp, sizeof(rp));
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200611}
612
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200613static u32 get_supported_settings(struct hci_dev *hdev)
Johan Hedberg03811012010-12-08 00:21:06 +0200614{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200615 u32 settings = 0;
Johan Hedberg03811012010-12-08 00:21:06 +0200616
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200617 settings |= MGMT_SETTING_POWERED;
Johan Hedbergb2939472014-07-30 09:22:23 +0300618 settings |= MGMT_SETTING_BONDABLE;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800619 settings |= MGMT_SETTING_DEBUG_KEYS;
Johan Hedberg3742abf2014-07-08 16:07:34 +0300620 settings |= MGMT_SETTING_CONNECTABLE;
621 settings |= MGMT_SETTING_DISCOVERABLE;
Johan Hedberg03811012010-12-08 00:21:06 +0200622
Andre Guedesed3fa312012-07-24 15:03:46 -0300623 if (lmp_bredr_capable(hdev)) {
Johan Hedberg1a47aee2013-03-15 17:07:06 -0500624 if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
625 settings |= MGMT_SETTING_FAST_CONNECTABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200626 settings |= MGMT_SETTING_BREDR;
627 settings |= MGMT_SETTING_LINK_SECURITY;
Marcel Holtmanna82974c2013-10-11 09:48:47 -0700628
629 if (lmp_ssp_capable(hdev)) {
630 settings |= MGMT_SETTING_SSP;
631 settings |= MGMT_SETTING_HS;
632 }
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800633
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -0800634 if (lmp_sc_capable(hdev))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800635 settings |= MGMT_SETTING_SECURE_CONN;
Marcel Holtmann848566b2013-10-01 22:59:22 -0700636 }
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100637
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300638 if (lmp_le_capable(hdev)) {
Marcel Holtmann9d428202012-05-03 07:12:31 +0200639 settings |= MGMT_SETTING_LE;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300640 settings |= MGMT_SETTING_ADVERTISING;
Johan Hedberga3209692014-05-26 11:23:35 +0300641 settings |= MGMT_SETTING_SECURE_CONN;
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200642 settings |= MGMT_SETTING_PRIVACY;
Marcel Holtmann93690c22015-03-06 10:11:21 -0800643 settings |= MGMT_SETTING_STATIC_ADDRESS;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300644 }
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200645
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200646 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
647 hdev->set_bdaddr)
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200648 settings |= MGMT_SETTING_CONFIGURATION;
649
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200650 return settings;
651}
Johan Hedbergebc99fe2011-01-04 11:54:26 +0200652
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200653static u32 get_current_settings(struct hci_dev *hdev)
654{
655 u32 settings = 0;
Johan Hedbergdc4fe302011-03-16 14:29:36 +0200656
Johan Hedbergf1f0eb02012-02-21 17:15:41 +0200657 if (hdev_is_powered(hdev))
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100658 settings |= MGMT_SETTING_POWERED;
659
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700660 if (hci_dev_test_flag(hdev, HCI_CONNECTABLE))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200661 settings |= MGMT_SETTING_CONNECTABLE;
662
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700663 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
Johan Hedberg1a4d3c42013-03-15 17:07:08 -0500664 settings |= MGMT_SETTING_FAST_CONNECTABLE;
665
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700666 if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200667 settings |= MGMT_SETTING_DISCOVERABLE;
668
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700669 if (hci_dev_test_flag(hdev, HCI_BONDABLE))
Johan Hedbergb2939472014-07-30 09:22:23 +0300670 settings |= MGMT_SETTING_BONDABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200671
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700672 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200673 settings |= MGMT_SETTING_BREDR;
674
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700675 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200676 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200677
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700678 if (hci_dev_test_flag(hdev, HCI_LINK_SECURITY))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200679 settings |= MGMT_SETTING_LINK_SECURITY;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200680
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700681 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200682 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200683
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700684 if (hci_dev_test_flag(hdev, HCI_HS_ENABLED))
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200685 settings |= MGMT_SETTING_HS;
686
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700687 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300688 settings |= MGMT_SETTING_ADVERTISING;
689
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700690 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800691 settings |= MGMT_SETTING_SECURE_CONN;
692
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700693 if (hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS))
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800694 settings |= MGMT_SETTING_DEBUG_KEYS;
695
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700696 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200697 settings |= MGMT_SETTING_PRIVACY;
698
Marcel Holtmann93690c22015-03-06 10:11:21 -0800699 /* The current setting for static address has two purposes. The
700 * first is to indicate if the static address will be used and
701 * the second is to indicate if it is actually set.
702 *
703 * This means if the static address is not configured, this flag
Marcel Holtmann08dc0e92015-03-25 18:32:13 -0700704 * will never be set. If the address is configured, then if the
Marcel Holtmann93690c22015-03-06 10:11:21 -0800705 * address is actually used decides if the flag is set or not.
706 *
707 * For single mode LE only controllers and dual-mode controllers
708 * with BR/EDR disabled, the existence of the static address will
709 * be evaluated.
710 */
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -0700711 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700712 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
Marcel Holtmann93690c22015-03-06 10:11:21 -0800713 !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
714 if (bacmp(&hdev->static_addr, BDADDR_ANY))
715 settings |= MGMT_SETTING_STATIC_ADDRESS;
716 }
717
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200718 return settings;
Johan Hedbergc542a062011-01-26 13:11:03 +0200719}
720
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300721#define PNP_INFO_SVCLASS_ID 0x1200
722
Johan Hedberg213202e2013-01-27 00:31:33 +0200723static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
724{
725 u8 *ptr = data, *uuids_start = NULL;
726 struct bt_uuid *uuid;
727
728 if (len < 4)
729 return ptr;
730
731 list_for_each_entry(uuid, &hdev->uuids, list) {
732 u16 uuid16;
733
734 if (uuid->size != 16)
735 continue;
736
737 uuid16 = get_unaligned_le16(&uuid->uuid[12]);
738 if (uuid16 < 0x1100)
739 continue;
740
741 if (uuid16 == PNP_INFO_SVCLASS_ID)
742 continue;
743
744 if (!uuids_start) {
745 uuids_start = ptr;
746 uuids_start[0] = 1;
747 uuids_start[1] = EIR_UUID16_ALL;
748 ptr += 2;
749 }
750
751 /* Stop if not enough space to put next UUID */
752 if ((ptr - data) + sizeof(u16) > len) {
753 uuids_start[1] = EIR_UUID16_SOME;
754 break;
755 }
756
757 *ptr++ = (uuid16 & 0x00ff);
758 *ptr++ = (uuid16 & 0xff00) >> 8;
759 uuids_start[0] += sizeof(uuid16);
760 }
761
762 return ptr;
763}
764
Johan Hedbergcdf19632013-01-27 00:31:34 +0200765static u8 *create_uuid32_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
766{
767 u8 *ptr = data, *uuids_start = NULL;
768 struct bt_uuid *uuid;
769
770 if (len < 6)
771 return ptr;
772
773 list_for_each_entry(uuid, &hdev->uuids, list) {
774 if (uuid->size != 32)
775 continue;
776
777 if (!uuids_start) {
778 uuids_start = ptr;
779 uuids_start[0] = 1;
780 uuids_start[1] = EIR_UUID32_ALL;
781 ptr += 2;
782 }
783
784 /* Stop if not enough space to put next UUID */
785 if ((ptr - data) + sizeof(u32) > len) {
786 uuids_start[1] = EIR_UUID32_SOME;
787 break;
788 }
789
790 memcpy(ptr, &uuid->uuid[12], sizeof(u32));
791 ptr += sizeof(u32);
792 uuids_start[0] += sizeof(u32);
793 }
794
795 return ptr;
796}
797
Johan Hedbergc00d5752013-01-27 00:31:35 +0200798static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
799{
800 u8 *ptr = data, *uuids_start = NULL;
801 struct bt_uuid *uuid;
802
803 if (len < 18)
804 return ptr;
805
806 list_for_each_entry(uuid, &hdev->uuids, list) {
807 if (uuid->size != 128)
808 continue;
809
810 if (!uuids_start) {
811 uuids_start = ptr;
812 uuids_start[0] = 1;
813 uuids_start[1] = EIR_UUID128_ALL;
814 ptr += 2;
815 }
816
817 /* Stop if not enough space to put next UUID */
818 if ((ptr - data) + 16 > len) {
819 uuids_start[1] = EIR_UUID128_SOME;
820 break;
821 }
822
823 memcpy(ptr, uuid->uuid, 16);
824 ptr += 16;
825 uuids_start[0] += 16;
826 }
827
828 return ptr;
829}
830
Johan Hedberg333ae952015-03-17 13:48:47 +0200831static struct mgmt_pending_cmd *pending_find(u16 opcode, struct hci_dev *hdev)
832{
833 return mgmt_pending_find(HCI_CHANNEL_CONTROL, opcode, hdev);
834}
835
Johan Hedberg333ae952015-03-17 13:48:47 +0200836static struct mgmt_pending_cmd *pending_find_data(u16 opcode,
837 struct hci_dev *hdev,
838 const void *data)
839{
840 return mgmt_pending_find_data(HCI_CHANNEL_CONTROL, opcode, hdev, data);
841}
842
Florian Grandel91aa9bb2015-06-18 03:16:36 +0200843static u8 get_current_adv_instance(struct hci_dev *hdev)
844{
845 /* The "Set Advertising" setting supersedes the "Add Advertising"
846 * setting. Here we set the advertising data based on which
847 * setting was set. When neither apply, default to the global settings,
848 * represented by instance "0".
849 */
850 if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
851 !hci_dev_test_flag(hdev, HCI_ADVERTISING))
Florian Grandel3ff37e62015-06-18 03:16:39 +0200852 return hdev->cur_adv_instance;
Florian Grandel91aa9bb2015-06-18 03:16:36 +0200853
854 return 0x00;
855}
856
Arman Uguray4117ed72015-03-23 15:57:14 -0700857static u8 create_default_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700858{
Marcel Holtmann7a5f4992013-10-16 00:16:49 -0700859 u8 ad_len = 0;
860 size_t name_len;
861
862 name_len = strlen(hdev->dev_name);
863 if (name_len > 0) {
864 size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2;
865
866 if (name_len > max_len) {
867 name_len = max_len;
868 ptr[1] = EIR_NAME_SHORT;
869 } else
870 ptr[1] = EIR_NAME_COMPLETE;
871
872 ptr[0] = name_len + 1;
873
874 memcpy(ptr + 2, hdev->dev_name, name_len);
875
876 ad_len += (name_len + 2);
877 ptr += (name_len + 2);
878 }
879
880 return ad_len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700881}
882
Florian Grandelca21fbe2015-06-18 03:16:43 +0200883static u8 create_instance_scan_rsp_data(struct hci_dev *hdev, u8 instance,
884 u8 *ptr)
Arman Uguray4117ed72015-03-23 15:57:14 -0700885{
Florian Grandelca21fbe2015-06-18 03:16:43 +0200886 struct adv_info *adv_instance;
887
888 adv_instance = hci_find_adv_instance(hdev, instance);
889 if (!adv_instance)
890 return 0;
891
Arman Uguray4117ed72015-03-23 15:57:14 -0700892 /* TODO: Set the appropriate entries based on advertising instance flags
893 * here once flags other than 0 are supported.
894 */
Florian Grandelca21fbe2015-06-18 03:16:43 +0200895 memcpy(ptr, adv_instance->scan_rsp_data,
896 adv_instance->scan_rsp_len);
Arman Uguray4117ed72015-03-23 15:57:14 -0700897
Florian Grandelca21fbe2015-06-18 03:16:43 +0200898 return adv_instance->scan_rsp_len;
Arman Uguray4117ed72015-03-23 15:57:14 -0700899}
900
Florian Grandelefae0022015-06-18 03:16:37 +0200901static void update_inst_scan_rsp_data(struct hci_request *req, u8 instance)
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700902{
903 struct hci_dev *hdev = req->hdev;
904 struct hci_cp_le_set_scan_rsp_data cp;
905 u8 len;
906
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700907 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700908 return;
909
910 memset(&cp, 0, sizeof(cp));
911
Arman Uguray4117ed72015-03-23 15:57:14 -0700912 if (instance)
Florian Grandelca21fbe2015-06-18 03:16:43 +0200913 len = create_instance_scan_rsp_data(hdev, instance, cp.data);
Arman Uguray4117ed72015-03-23 15:57:14 -0700914 else
915 len = create_default_scan_rsp_data(hdev, cp.data);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700916
Johan Hedbergeb438b52013-10-16 15:31:07 +0300917 if (hdev->scan_rsp_data_len == len &&
Arman Uguray4117ed72015-03-23 15:57:14 -0700918 !memcmp(cp.data, hdev->scan_rsp_data, len))
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700919 return;
920
Johan Hedbergeb438b52013-10-16 15:31:07 +0300921 memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
922 hdev->scan_rsp_data_len = len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700923
924 cp.length = len;
925
926 hci_req_add(req, HCI_OP_LE_SET_SCAN_RSP_DATA, sizeof(cp), &cp);
927}
928
Arman Uguray4117ed72015-03-23 15:57:14 -0700929static void update_scan_rsp_data(struct hci_request *req)
930{
Florian Grandelefae0022015-06-18 03:16:37 +0200931 update_inst_scan_rsp_data(req, get_current_adv_instance(req->hdev));
Arman Uguray4117ed72015-03-23 15:57:14 -0700932}
933
Johan Hedberg9a43e252013-10-20 19:00:07 +0300934static u8 get_adv_discov_flags(struct hci_dev *hdev)
935{
Johan Hedberg3b0602c2015-03-06 21:08:55 +0200936 struct mgmt_pending_cmd *cmd;
Johan Hedberg9a43e252013-10-20 19:00:07 +0300937
938 /* If there's a pending mgmt command the flags will not yet have
939 * their final values, so check for this first.
940 */
Johan Hedberg333ae952015-03-17 13:48:47 +0200941 cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg9a43e252013-10-20 19:00:07 +0300942 if (cmd) {
943 struct mgmt_mode *cp = cmd->param;
944 if (cp->val == 0x01)
945 return LE_AD_GENERAL;
946 else if (cp->val == 0x02)
947 return LE_AD_LIMITED;
948 } else {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700949 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
Johan Hedberg9a43e252013-10-20 19:00:07 +0300950 return LE_AD_LIMITED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700951 else if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
Johan Hedberg9a43e252013-10-20 19:00:07 +0300952 return LE_AD_GENERAL;
953 }
954
955 return 0;
956}
957
Arman Uguraye7a685d2015-03-25 18:53:40 -0700958static bool get_connectable(struct hci_dev *hdev)
959{
960 struct mgmt_pending_cmd *cmd;
961
962 /* If there's a pending mgmt command the flag will not yet have
963 * it's final value, so check for this first.
964 */
965 cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
966 if (cmd) {
967 struct mgmt_mode *cp = cmd->param;
968
969 return cp->val;
970 }
971
972 return hci_dev_test_flag(hdev, HCI_CONNECTABLE);
973}
974
975static u32 get_adv_instance_flags(struct hci_dev *hdev, u8 instance)
976{
977 u32 flags;
Florian Grandel411b4122015-06-18 03:16:40 +0200978 struct adv_info *adv_instance;
Arman Uguraye7a685d2015-03-25 18:53:40 -0700979
Florian Grandelbea28e62015-06-18 03:16:41 +0200980 if (instance == 0x00) {
981 /* Instance 0 always manages the "Tx Power" and "Flags"
982 * fields
983 */
984 flags = MGMT_ADV_FLAG_TX_POWER | MGMT_ADV_FLAG_MANAGED_FLAGS;
Arman Uguraye7a685d2015-03-25 18:53:40 -0700985
Florian Grandelbea28e62015-06-18 03:16:41 +0200986 /* For instance 0, the HCI_ADVERTISING_CONNECTABLE setting
987 * corresponds to the "connectable" instance flag.
988 */
989 if (hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE))
990 flags |= MGMT_ADV_FLAG_CONNECTABLE;
Florian Grandel411b4122015-06-18 03:16:40 +0200991
Florian Grandelbea28e62015-06-18 03:16:41 +0200992 return flags;
Florian Grandel411b4122015-06-18 03:16:40 +0200993 }
Arman Uguraye7a685d2015-03-25 18:53:40 -0700994
Florian Grandelbea28e62015-06-18 03:16:41 +0200995 adv_instance = hci_find_adv_instance(hdev, instance);
Arman Uguraye7a685d2015-03-25 18:53:40 -0700996
Florian Grandelbea28e62015-06-18 03:16:41 +0200997 /* Return 0 when we got an invalid instance identifier. */
998 if (!adv_instance)
999 return 0;
Arman Uguraye7a685d2015-03-25 18:53:40 -07001000
Florian Grandelbea28e62015-06-18 03:16:41 +02001001 return adv_instance->flags;
Arman Uguraye7a685d2015-03-25 18:53:40 -07001002}
1003
Florian Grandel7b683b72015-06-18 03:16:42 +02001004static u8 get_cur_adv_instance_scan_rsp_len(struct hci_dev *hdev)
Arman Ugurayc7d48832015-03-28 12:38:59 -07001005{
Florian Grandel7b683b72015-06-18 03:16:42 +02001006 u8 instance = get_current_adv_instance(hdev);
1007 struct adv_info *adv_instance;
1008
1009 /* Ignore instance 0 */
1010 if (instance == 0x00)
1011 return 0;
1012
1013 adv_instance = hci_find_adv_instance(hdev, instance);
1014 if (!adv_instance)
Arman Ugurayc7d48832015-03-28 12:38:59 -07001015 return 0;
1016
1017 /* TODO: Take into account the "appearance" and "local-name" flags here.
1018 * These are currently being ignored as they are not supported.
1019 */
Florian Grandel7b683b72015-06-18 03:16:42 +02001020 return adv_instance->scan_rsp_len;
Arman Ugurayc7d48832015-03-28 12:38:59 -07001021}
1022
Arman Ugurayfdf51782015-03-25 18:53:46 -07001023static u8 create_instance_adv_data(struct hci_dev *hdev, u8 instance, u8 *ptr)
1024{
Florian Grandelf63ba242015-06-18 03:16:44 +02001025 struct adv_info *adv_instance = NULL;
Arman Ugurayfdf51782015-03-25 18:53:46 -07001026 u8 ad_len = 0, flags = 0;
Florian Grandelf63ba242015-06-18 03:16:44 +02001027 u32 instance_flags;
1028
1029 /* Return 0 when the current instance identifier is invalid. */
1030 if (instance) {
1031 adv_instance = hci_find_adv_instance(hdev, instance);
1032 if (!adv_instance)
1033 return 0;
1034 }
1035
1036 instance_flags = get_adv_instance_flags(hdev, instance);
Arman Ugurayfdf51782015-03-25 18:53:46 -07001037
1038 /* The Add Advertising command allows userspace to set both the general
1039 * and limited discoverable flags.
1040 */
1041 if (instance_flags & MGMT_ADV_FLAG_DISCOV)
1042 flags |= LE_AD_GENERAL;
1043
1044 if (instance_flags & MGMT_ADV_FLAG_LIMITED_DISCOV)
1045 flags |= LE_AD_LIMITED;
1046
1047 if (flags || (instance_flags & MGMT_ADV_FLAG_MANAGED_FLAGS)) {
1048 /* If a discovery flag wasn't provided, simply use the global
1049 * settings.
1050 */
1051 if (!flags)
1052 flags |= get_adv_discov_flags(hdev);
1053
1054 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1055 flags |= LE_AD_NO_BREDR;
1056
1057 /* If flags would still be empty, then there is no need to
1058 * include the "Flags" AD field".
1059 */
1060 if (flags) {
1061 ptr[0] = 0x02;
1062 ptr[1] = EIR_FLAGS;
1063 ptr[2] = flags;
1064
1065 ad_len += 3;
1066 ptr += 3;
1067 }
1068 }
1069
Florian Grandelf63ba242015-06-18 03:16:44 +02001070 if (adv_instance) {
1071 memcpy(ptr, adv_instance->adv_data,
1072 adv_instance->adv_data_len);
1073 ad_len += adv_instance->adv_data_len;
1074 ptr += adv_instance->adv_data_len;
Marcel Holtmann38c8af62015-04-03 13:23:12 -07001075 }
1076
Arman Ugurayfdf51782015-03-25 18:53:46 -07001077 /* Provide Tx Power only if we can provide a valid value for it */
1078 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID &&
1079 (instance_flags & MGMT_ADV_FLAG_TX_POWER)) {
1080 ptr[0] = 0x02;
1081 ptr[1] = EIR_TX_POWER;
1082 ptr[2] = (u8)hdev->adv_tx_power;
1083
1084 ad_len += 3;
1085 ptr += 3;
1086 }
1087
Arman Ugurayfdf51782015-03-25 18:53:46 -07001088 return ad_len;
1089}
1090
Florian Grandelefae0022015-06-18 03:16:37 +02001091static void update_inst_adv_data(struct hci_request *req, u8 instance)
Arman Ugurayfdf51782015-03-25 18:53:46 -07001092{
1093 struct hci_dev *hdev = req->hdev;
1094 struct hci_cp_le_set_adv_data cp;
1095 u8 len;
1096
1097 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1098 return;
1099
1100 memset(&cp, 0, sizeof(cp));
1101
1102 len = create_instance_adv_data(hdev, instance, cp.data);
1103
1104 /* There's nothing to do if the data hasn't changed */
1105 if (hdev->adv_data_len == len &&
1106 memcmp(cp.data, hdev->adv_data, len) == 0)
1107 return;
1108
1109 memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
1110 hdev->adv_data_len = len;
1111
1112 cp.length = len;
1113
1114 hci_req_add(req, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);
1115}
1116
Arman Uguraye7a685d2015-03-25 18:53:40 -07001117static void update_adv_data(struct hci_request *req)
1118{
Florian Grandelefae0022015-06-18 03:16:37 +02001119 update_inst_adv_data(req, get_current_adv_instance(req->hdev));
Arman Uguray24b4f382015-03-23 15:57:12 -07001120}
1121
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001122int mgmt_update_adv_data(struct hci_dev *hdev)
1123{
1124 struct hci_request req;
1125
1126 hci_req_init(&req, hdev);
1127 update_adv_data(&req);
1128
1129 return hci_req_run(&req, NULL);
1130}
1131
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001132static void create_eir(struct hci_dev *hdev, u8 *data)
1133{
1134 u8 *ptr = data;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001135 size_t name_len;
1136
1137 name_len = strlen(hdev->dev_name);
1138
1139 if (name_len > 0) {
1140 /* EIR Data type */
1141 if (name_len > 48) {
1142 name_len = 48;
1143 ptr[1] = EIR_NAME_SHORT;
1144 } else
1145 ptr[1] = EIR_NAME_COMPLETE;
1146
1147 /* EIR Data length */
1148 ptr[0] = name_len + 1;
1149
1150 memcpy(ptr + 2, hdev->dev_name, name_len);
1151
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001152 ptr += (name_len + 2);
1153 }
1154
Johan Hedbergbbaf4442012-11-08 01:22:59 +01001155 if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -07001156 ptr[0] = 2;
1157 ptr[1] = EIR_TX_POWER;
1158 ptr[2] = (u8) hdev->inq_tx_power;
1159
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -07001160 ptr += 3;
1161 }
1162
Marcel Holtmann2b9be132012-03-11 19:32:12 -07001163 if (hdev->devid_source > 0) {
1164 ptr[0] = 9;
1165 ptr[1] = EIR_DEVICE_ID;
1166
1167 put_unaligned_le16(hdev->devid_source, ptr + 2);
1168 put_unaligned_le16(hdev->devid_vendor, ptr + 4);
1169 put_unaligned_le16(hdev->devid_product, ptr + 6);
1170 put_unaligned_le16(hdev->devid_version, ptr + 8);
1171
Marcel Holtmann2b9be132012-03-11 19:32:12 -07001172 ptr += 10;
1173 }
1174
Johan Hedberg213202e2013-01-27 00:31:33 +02001175 ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergcdf19632013-01-27 00:31:34 +02001176 ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergc00d5752013-01-27 00:31:35 +02001177 ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001178}
1179
Johan Hedberg890ea892013-03-15 17:06:52 -05001180static void update_eir(struct hci_request *req)
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001181{
Johan Hedberg890ea892013-03-15 17:06:52 -05001182 struct hci_dev *hdev = req->hdev;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001183 struct hci_cp_write_eir cp;
1184
Johan Hedberg504c8dc2012-02-23 13:30:41 +02001185 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05001186 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +02001187
Johan Hedberg976eb202012-10-24 21:12:01 +03001188 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05001189 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001190
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001191 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberg890ea892013-03-15 17:06:52 -05001192 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001193
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001194 if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
Johan Hedberg890ea892013-03-15 17:06:52 -05001195 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001196
1197 memset(&cp, 0, sizeof(cp));
1198
1199 create_eir(hdev, cp.data);
1200
1201 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -05001202 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001203
1204 memcpy(hdev->eir, cp.data, sizeof(cp.data));
1205
Johan Hedberg890ea892013-03-15 17:06:52 -05001206 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001207}
1208
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001209static u8 get_service_classes(struct hci_dev *hdev)
1210{
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -03001211 struct bt_uuid *uuid;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001212 u8 val = 0;
1213
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -03001214 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001215 val |= uuid->svc_hint;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001216
1217 return val;
1218}
1219
Johan Hedberg890ea892013-03-15 17:06:52 -05001220static void update_class(struct hci_request *req)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001221{
Johan Hedberg890ea892013-03-15 17:06:52 -05001222 struct hci_dev *hdev = req->hdev;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001223 u8 cod[3];
1224
1225 BT_DBG("%s", hdev->name);
1226
Johan Hedberg504c8dc2012-02-23 13:30:41 +02001227 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05001228 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +02001229
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001230 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedbergf87ea1d2013-10-19 23:38:17 +03001231 return;
1232
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001233 if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
Johan Hedberg890ea892013-03-15 17:06:52 -05001234 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001235
1236 cod[0] = hdev->minor_class;
1237 cod[1] = hdev->major_class;
1238 cod[2] = get_service_classes(hdev);
1239
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001240 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
Marcel Holtmann6acd7db2013-10-15 06:33:53 -07001241 cod[1] |= 0x20;
1242
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001243 if (memcmp(cod, hdev->dev_class, 3) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -05001244 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001245
Johan Hedberg890ea892013-03-15 17:06:52 -05001246 hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001247}
1248
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001249static void disable_advertising(struct hci_request *req)
1250{
1251 u8 enable = 0x00;
1252
1253 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
1254}
1255
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001256static void enable_advertising(struct hci_request *req)
1257{
1258 struct hci_dev *hdev = req->hdev;
1259 struct hci_cp_le_set_adv_param cp;
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001260 u8 own_addr_type, enable = 0x01;
Johan Hedberga4858cb2014-02-25 19:56:31 +02001261 bool connectable;
Arman Uguraye7a685d2015-03-25 18:53:40 -07001262 u8 instance;
1263 u32 flags;
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001264
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001265 if (hci_conn_num(hdev, LE_LINK) > 0)
1266 return;
1267
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001268 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001269 disable_advertising(req);
1270
Johan Hedberg5ce194c2014-07-08 15:07:49 +03001271 /* Clear the HCI_LE_ADV bit temporarily so that the
Johan Hedberg8d972502014-02-28 12:54:14 +02001272 * hci_update_random_address knows that it's safe to go ahead
1273 * and write a new random address. The flag will be set back on
1274 * as soon as the SET_ADV_ENABLE HCI command completes.
1275 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001276 hci_dev_clear_flag(hdev, HCI_LE_ADV);
Johan Hedberg8d972502014-02-28 12:54:14 +02001277
Arman Uguraye7a685d2015-03-25 18:53:40 -07001278 instance = get_current_adv_instance(hdev);
1279 flags = get_adv_instance_flags(hdev, instance);
Arman Ugurayfaccb952015-03-28 12:38:58 -07001280
1281 /* If the "connectable" instance flag was not set, then choose between
1282 * ADV_IND and ADV_NONCONN_IND based on the global connectable setting.
1283 */
1284 connectable = (flags & MGMT_ADV_FLAG_CONNECTABLE) ||
1285 get_connectable(hdev);
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001286
Johan Hedberga4858cb2014-02-25 19:56:31 +02001287 /* Set require_privacy to true only when non-connectable
1288 * advertising is used. In that case it is fine to use a
1289 * non-resolvable private address.
1290 */
1291 if (hci_update_random_address(req, !connectable, &own_addr_type) < 0)
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001292 return;
1293
Marcel Holtmann41c90c12014-02-23 20:25:55 -08001294 memset(&cp, 0, sizeof(cp));
Georg Lukas628531c2014-07-26 13:59:57 +02001295 cp.min_interval = cpu_to_le16(hdev->le_adv_min_interval);
1296 cp.max_interval = cpu_to_le16(hdev->le_adv_max_interval);
Arman Ugurayc7d48832015-03-28 12:38:59 -07001297
1298 if (connectable)
1299 cp.type = LE_ADV_IND;
Florian Grandel7b683b72015-06-18 03:16:42 +02001300 else if (get_cur_adv_instance_scan_rsp_len(hdev))
Arman Ugurayc7d48832015-03-28 12:38:59 -07001301 cp.type = LE_ADV_SCAN_IND;
1302 else
1303 cp.type = LE_ADV_NONCONN_IND;
1304
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001305 cp.own_address_type = own_addr_type;
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001306 cp.channel_map = hdev->le_adv_channel_map;
1307
1308 hci_req_add(req, HCI_OP_LE_SET_ADV_PARAM, sizeof(cp), &cp);
1309
1310 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
1311}
1312
Johan Hedberg7d785252011-12-15 00:47:39 +02001313static void service_cache_off(struct work_struct *work)
1314{
1315 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001316 service_cache.work);
Johan Hedberg890ea892013-03-15 17:06:52 -05001317 struct hci_request req;
Johan Hedberg7d785252011-12-15 00:47:39 +02001318
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001319 if (!hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
Johan Hedberg7d785252011-12-15 00:47:39 +02001320 return;
1321
Johan Hedberg890ea892013-03-15 17:06:52 -05001322 hci_req_init(&req, hdev);
1323
Johan Hedberg7d785252011-12-15 00:47:39 +02001324 hci_dev_lock(hdev);
1325
Johan Hedberg890ea892013-03-15 17:06:52 -05001326 update_eir(&req);
1327 update_class(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02001328
1329 hci_dev_unlock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05001330
1331 hci_req_run(&req, NULL);
Johan Hedberg7d785252011-12-15 00:47:39 +02001332}
1333
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001334static void rpa_expired(struct work_struct *work)
1335{
1336 struct hci_dev *hdev = container_of(work, struct hci_dev,
1337 rpa_expired.work);
1338 struct hci_request req;
1339
1340 BT_DBG("");
1341
Marcel Holtmanna1536da2015-03-13 02:11:01 -07001342 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001343
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001344 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001345 return;
1346
1347 /* The generation of a new RPA and programming it into the
1348 * controller happens in the enable_advertising() function.
1349 */
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001350 hci_req_init(&req, hdev);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001351 enable_advertising(&req);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001352 hci_req_run(&req, NULL);
1353}
1354
Johan Hedberg6a919082012-02-28 06:17:26 +02001355static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +02001356{
Marcel Holtmann238be782015-03-13 02:11:06 -07001357 if (hci_dev_test_and_set_flag(hdev, HCI_MGMT))
Johan Hedberg6a919082012-02-28 06:17:26 +02001358 return;
1359
Johan Hedberg4f87da82012-03-02 19:55:56 +02001360 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001361 INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
Johan Hedberg7d785252011-12-15 00:47:39 +02001362
Johan Hedberg4f87da82012-03-02 19:55:56 +02001363 /* Non-mgmt controlled devices get this bit set
1364 * implicitly so that pairing works for them, however
1365 * for mgmt we require user-space to explicitly enable
1366 * it
1367 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001368 hci_dev_clear_flag(hdev, HCI_BONDABLE);
Johan Hedberg7d785252011-12-15 00:47:39 +02001369}
1370
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02001371static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001372 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +02001373{
1374 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +02001375
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001376 BT_DBG("sock %p %s", sk, hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001377
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001378 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001379
Johan Hedberg03811012010-12-08 00:21:06 +02001380 memset(&rp, 0, sizeof(rp));
1381
Johan Hedberg03811012010-12-08 00:21:06 +02001382 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001383
1384 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001385 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001386
1387 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
1388 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
1389
1390 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedberg03811012010-12-08 00:21:06 +02001391
1392 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +02001393 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedberg03811012010-12-08 00:21:06 +02001394
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001395 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001396
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001397 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
1398 sizeof(rp));
Johan Hedberg03811012010-12-08 00:21:06 +02001399}
1400
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001401static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +02001402{
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001403 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +02001404
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001405 return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &settings,
1406 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +02001407}
1408
Marcel Holtmann1904a852015-01-11 13:50:44 -08001409static void clean_up_hci_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg8b064a32014-02-24 14:52:22 +02001410{
1411 BT_DBG("%s status 0x%02x", hdev->name, status);
1412
Johan Hedberga3172b72014-02-28 09:33:44 +02001413 if (hci_conn_count(hdev) == 0) {
1414 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001415 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02001416 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001417}
1418
Johan Hedberg23a48092014-07-08 16:05:06 +03001419static bool hci_stop_discovery(struct hci_request *req)
Johan Hedberg21a60d32014-06-10 14:05:58 +03001420{
1421 struct hci_dev *hdev = req->hdev;
1422 struct hci_cp_remote_name_req_cancel cp;
1423 struct inquiry_entry *e;
1424
1425 switch (hdev->discovery.state) {
1426 case DISCOVERY_FINDING:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07001427 if (test_bit(HCI_INQUIRY, &hdev->flags))
Johan Hedberg21a60d32014-06-10 14:05:58 +03001428 hci_req_add(req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
Jakub Pawlowski07d23342015-03-17 09:04:14 -07001429
1430 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
Johan Hedberg21a60d32014-06-10 14:05:58 +03001431 cancel_delayed_work(&hdev->le_scan_disable);
1432 hci_req_add_le_scan_disable(req);
1433 }
1434
Johan Hedberg23a48092014-07-08 16:05:06 +03001435 return true;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001436
1437 case DISCOVERY_RESOLVING:
1438 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
1439 NAME_PENDING);
1440 if (!e)
Johan Hedberg23a48092014-07-08 16:05:06 +03001441 break;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001442
1443 bacpy(&cp.bdaddr, &e->data.bdaddr);
1444 hci_req_add(req, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp),
1445 &cp);
1446
Johan Hedberg23a48092014-07-08 16:05:06 +03001447 return true;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001448
1449 default:
1450 /* Passive scanning */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001451 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
Johan Hedberg21a60d32014-06-10 14:05:58 +03001452 hci_req_add_le_scan_disable(req);
Johan Hedberg23a48092014-07-08 16:05:06 +03001453 return true;
1454 }
1455
Johan Hedberg21a60d32014-06-10 14:05:58 +03001456 break;
1457 }
Johan Hedberg23a48092014-07-08 16:05:06 +03001458
1459 return false;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001460}
1461
Arman Uguray912098a2015-03-23 15:57:15 -07001462static void advertising_added(struct sock *sk, struct hci_dev *hdev,
1463 u8 instance)
1464{
1465 struct mgmt_ev_advertising_added ev;
1466
1467 ev.instance = instance;
1468
1469 mgmt_event(MGMT_EV_ADVERTISING_ADDED, hdev, &ev, sizeof(ev), sk);
1470}
1471
1472static void advertising_removed(struct sock *sk, struct hci_dev *hdev,
1473 u8 instance)
1474{
1475 struct mgmt_ev_advertising_removed ev;
1476
1477 ev.instance = instance;
1478
1479 mgmt_event(MGMT_EV_ADVERTISING_REMOVED, hdev, &ev, sizeof(ev), sk);
1480}
1481
Florian Grandel7816b822015-06-18 03:16:45 +02001482static int schedule_adv_instance(struct hci_request *req, u8 instance,
1483 bool force) {
1484 struct hci_dev *hdev = req->hdev;
1485 struct adv_info *adv_instance = NULL;
1486 u16 timeout;
1487
1488 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
1489 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
1490 return -EPERM;
1491
1492 if (hdev->adv_instance_timeout)
1493 return -EBUSY;
1494
1495 adv_instance = hci_find_adv_instance(hdev, instance);
1496 if (!adv_instance)
1497 return -ENOENT;
1498
1499 /* A zero timeout means unlimited advertising. As long as there is
1500 * only one instance, duration should be ignored. We still set a timeout
1501 * in case further instances are being added later on.
1502 *
1503 * If the remaining lifetime of the instance is more than the duration
1504 * then the timeout corresponds to the duration, otherwise it will be
1505 * reduced to the remaining instance lifetime.
1506 */
1507 if (adv_instance->timeout == 0 ||
1508 adv_instance->duration <= adv_instance->remaining_time)
1509 timeout = adv_instance->duration;
1510 else
1511 timeout = adv_instance->remaining_time;
1512
1513 /* The remaining time is being reduced unless the instance is being
1514 * advertised without time limit.
1515 */
1516 if (adv_instance->timeout)
1517 adv_instance->remaining_time =
1518 adv_instance->remaining_time - timeout;
1519
1520 hdev->adv_instance_timeout = timeout;
1521 queue_delayed_work(hdev->workqueue,
1522 &hdev->adv_instance_expire,
1523 msecs_to_jiffies(timeout * 1000));
1524
1525 /* If we're just re-scheduling the same instance again then do not
1526 * execute any HCI commands. This happens when a single instance is
1527 * being advertised.
1528 */
1529 if (!force && hdev->cur_adv_instance == instance &&
1530 hci_dev_test_flag(hdev, HCI_LE_ADV))
1531 return 0;
1532
1533 hdev->cur_adv_instance = instance;
1534 update_adv_data(req);
1535 update_scan_rsp_data(req);
1536 enable_advertising(req);
1537
1538 return 0;
1539}
1540
1541static void cancel_adv_timeout(struct hci_dev *hdev)
1542{
1543 if (hdev->adv_instance_timeout) {
1544 hdev->adv_instance_timeout = 0;
1545 cancel_delayed_work(&hdev->adv_instance_expire);
1546 }
1547}
1548
Florian Grandel847818d2015-06-18 03:16:46 +02001549/* For a single instance:
1550 * - force == true: The instance will be removed even when its remaining
1551 * lifetime is not zero.
1552 * - force == false: the instance will be deactivated but kept stored unless
1553 * the remaining lifetime is zero.
1554 *
1555 * For instance == 0x00:
1556 * - force == true: All instances will be removed regardless of their timeout
1557 * setting.
1558 * - force == false: Only instances that have a timeout will be removed.
1559 */
1560static void clear_adv_instance(struct hci_dev *hdev, struct hci_request *req,
1561 u8 instance, bool force)
Arman Uguray912098a2015-03-23 15:57:15 -07001562{
Florian Grandel847818d2015-06-18 03:16:46 +02001563 struct adv_info *adv_instance, *n, *next_instance = NULL;
1564 int err;
1565 u8 rem_inst;
Arman Uguray912098a2015-03-23 15:57:15 -07001566
Florian Grandel847818d2015-06-18 03:16:46 +02001567 /* Cancel any timeout concerning the removed instance(s). */
1568 if (!instance || hdev->cur_adv_instance == instance)
1569 cancel_adv_timeout(hdev);
Arman Uguray912098a2015-03-23 15:57:15 -07001570
Florian Grandel847818d2015-06-18 03:16:46 +02001571 /* Get the next instance to advertise BEFORE we remove
1572 * the current one. This can be the same instance again
1573 * if there is only one instance.
1574 */
1575 if (instance && hdev->cur_adv_instance == instance)
1576 next_instance = hci_get_next_instance(hdev, instance);
Arman Uguray912098a2015-03-23 15:57:15 -07001577
Florian Grandel847818d2015-06-18 03:16:46 +02001578 if (instance == 0x00) {
1579 list_for_each_entry_safe(adv_instance, n, &hdev->adv_instances,
1580 list) {
1581 if (!(force || adv_instance->timeout))
1582 continue;
Arman Uguray912098a2015-03-23 15:57:15 -07001583
Florian Grandel847818d2015-06-18 03:16:46 +02001584 rem_inst = adv_instance->instance;
1585 err = hci_remove_adv_instance(hdev, rem_inst);
1586 if (!err)
1587 advertising_removed(NULL, hdev, rem_inst);
1588 }
1589 hdev->cur_adv_instance = 0x00;
1590 } else {
1591 adv_instance = hci_find_adv_instance(hdev, instance);
1592
1593 if (force || (adv_instance && adv_instance->timeout &&
1594 !adv_instance->remaining_time)) {
1595 /* Don't advertise a removed instance. */
1596 if (next_instance &&
1597 next_instance->instance == instance)
1598 next_instance = NULL;
1599
1600 err = hci_remove_adv_instance(hdev, instance);
1601 if (!err)
1602 advertising_removed(NULL, hdev, instance);
1603 }
1604 }
1605
1606 if (list_empty(&hdev->adv_instances)) {
1607 hdev->cur_adv_instance = 0x00;
1608 hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
1609 }
1610
1611 if (!req || !hdev_is_powered(hdev) ||
Arman Uguray912098a2015-03-23 15:57:15 -07001612 hci_dev_test_flag(hdev, HCI_ADVERTISING))
1613 return;
1614
Florian Grandel847818d2015-06-18 03:16:46 +02001615 if (next_instance)
1616 schedule_adv_instance(req, next_instance->instance, false);
Arman Uguray912098a2015-03-23 15:57:15 -07001617}
1618
Johan Hedberg8b064a32014-02-24 14:52:22 +02001619static int clean_up_hci_state(struct hci_dev *hdev)
1620{
1621 struct hci_request req;
1622 struct hci_conn *conn;
Johan Hedberg23a48092014-07-08 16:05:06 +03001623 bool discov_stopped;
1624 int err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001625
1626 hci_req_init(&req, hdev);
1627
1628 if (test_bit(HCI_ISCAN, &hdev->flags) ||
1629 test_bit(HCI_PSCAN, &hdev->flags)) {
1630 u8 scan = 0x00;
1631 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1632 }
1633
Florian Grandel847818d2015-06-18 03:16:46 +02001634 clear_adv_instance(hdev, NULL, 0x00, false);
Arman Uguray912098a2015-03-23 15:57:15 -07001635
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001636 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Johan Hedberg8b064a32014-02-24 14:52:22 +02001637 disable_advertising(&req);
1638
Johan Hedberg23a48092014-07-08 16:05:06 +03001639 discov_stopped = hci_stop_discovery(&req);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001640
1641 list_for_each_entry(conn, &hdev->conn_hash.list, list) {
Johan Hedberg89e0ccc2015-10-22 10:49:38 +03001642 /* 0x15 == Terminated due to Power Off */
1643 __hci_abort_conn(&req, conn, 0x15);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001644 }
1645
Johan Hedberg23a48092014-07-08 16:05:06 +03001646 err = hci_req_run(&req, clean_up_hci_complete);
1647 if (!err && discov_stopped)
1648 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
1649
1650 return err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001651}
1652
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001653static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001654 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001655{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001656 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001657 struct mgmt_pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001658 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02001659
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001660 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001661
Johan Hedberga7e80f22013-01-09 16:05:19 +02001662 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001663 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1664 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001665
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001666 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001667
Johan Hedberg333ae952015-03-17 13:48:47 +02001668 if (pending_find(MGMT_OP_SET_POWERED, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001669 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1670 MGMT_STATUS_BUSY);
Johan Hedberg87b95ba2013-09-25 13:26:06 +03001671 goto failed;
1672 }
1673
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001674 if (hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) {
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001675 cancel_delayed_work(&hdev->power_off);
1676
1677 if (cp->val) {
Johan Hedberga1d70452013-01-09 15:29:40 +02001678 mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
1679 data, len);
1680 err = mgmt_powered(hdev, 1);
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001681 goto failed;
1682 }
1683 }
1684
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001685 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001686 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001687 goto failed;
1688 }
1689
Johan Hedberg03811012010-12-08 00:21:06 +02001690 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1691 if (!cmd) {
1692 err = -ENOMEM;
1693 goto failed;
1694 }
1695
Johan Hedberg8b064a32014-02-24 14:52:22 +02001696 if (cp->val) {
Johan Hedberg19202572013-01-14 22:33:51 +02001697 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001698 err = 0;
1699 } else {
1700 /* Disconnect connections, stop scans, etc */
1701 err = clean_up_hci_state(hdev);
Johan Hedberga3172b72014-02-28 09:33:44 +02001702 if (!err)
1703 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1704 HCI_POWER_OFF_TIMEOUT);
Johan Hedberg03811012010-12-08 00:21:06 +02001705
Johan Hedberg8b064a32014-02-24 14:52:22 +02001706 /* ENODATA means there were no HCI commands queued */
1707 if (err == -ENODATA) {
Johan Hedberga3172b72014-02-28 09:33:44 +02001708 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001709 queue_work(hdev->req_workqueue, &hdev->power_off.work);
1710 err = 0;
1711 }
1712 }
Johan Hedberg03811012010-12-08 00:21:06 +02001713
1714failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001715 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001716 return err;
1717}
1718
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001719static int new_settings(struct hci_dev *hdev, struct sock *skip)
1720{
Marcel Holtmannf6b77122015-03-14 19:28:05 -07001721 __le32 ev = cpu_to_le32(get_current_settings(hdev));
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001722
Marcel Holtmannf6b77122015-03-14 19:28:05 -07001723 return mgmt_generic_event(MGMT_EV_NEW_SETTINGS, hdev, &ev,
1724 sizeof(ev), skip);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001725}
1726
Johan Hedberg91a668b2014-07-09 13:28:26 +03001727int mgmt_new_settings(struct hci_dev *hdev)
1728{
1729 return new_settings(hdev, NULL);
1730}
1731
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001732struct cmd_lookup {
1733 struct sock *sk;
1734 struct hci_dev *hdev;
1735 u8 mgmt_status;
1736};
1737
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001738static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001739{
1740 struct cmd_lookup *match = data;
1741
1742 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
1743
1744 list_del(&cmd->list);
1745
1746 if (match->sk == NULL) {
1747 match->sk = cmd->sk;
1748 sock_hold(match->sk);
1749 }
1750
1751 mgmt_pending_free(cmd);
1752}
1753
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001754static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001755{
1756 u8 *status = data;
1757
Johan Hedberga69e8372015-03-06 21:08:53 +02001758 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001759 mgmt_pending_remove(cmd);
1760}
1761
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001762static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg1b9b5ee2014-12-05 13:36:00 +02001763{
1764 if (cmd->cmd_complete) {
1765 u8 *status = data;
1766
1767 cmd->cmd_complete(cmd, *status);
1768 mgmt_pending_remove(cmd);
1769
1770 return;
1771 }
1772
1773 cmd_status_rsp(cmd, data);
1774}
1775
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001776static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedbergf5818c22014-12-05 13:36:02 +02001777{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001778 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1779 cmd->param, cmd->param_len);
Johan Hedbergf5818c22014-12-05 13:36:02 +02001780}
1781
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001782static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001783{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001784 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1785 cmd->param, sizeof(struct mgmt_addr_info));
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001786}
1787
Johan Hedberge6fe7982013-10-02 15:45:22 +03001788static u8 mgmt_bredr_support(struct hci_dev *hdev)
1789{
1790 if (!lmp_bredr_capable(hdev))
1791 return MGMT_STATUS_NOT_SUPPORTED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001792 else if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberge6fe7982013-10-02 15:45:22 +03001793 return MGMT_STATUS_REJECTED;
1794 else
1795 return MGMT_STATUS_SUCCESS;
1796}
1797
1798static u8 mgmt_le_support(struct hci_dev *hdev)
1799{
1800 if (!lmp_le_capable(hdev))
1801 return MGMT_STATUS_NOT_SUPPORTED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001802 else if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberge6fe7982013-10-02 15:45:22 +03001803 return MGMT_STATUS_REJECTED;
1804 else
1805 return MGMT_STATUS_SUCCESS;
1806}
1807
Marcel Holtmann1904a852015-01-11 13:50:44 -08001808static void set_discoverable_complete(struct hci_dev *hdev, u8 status,
1809 u16 opcode)
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001810{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001811 struct mgmt_pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001812 struct mgmt_mode *cp;
Marcel Holtmann970ba522013-10-15 06:33:57 -07001813 struct hci_request req;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001814 bool changed;
1815
1816 BT_DBG("status 0x%02x", status);
1817
1818 hci_dev_lock(hdev);
1819
Johan Hedberg333ae952015-03-17 13:48:47 +02001820 cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001821 if (!cmd)
1822 goto unlock;
1823
1824 if (status) {
1825 u8 mgmt_err = mgmt_status(status);
Johan Hedberga69e8372015-03-06 21:08:53 +02001826 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001827 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001828 goto remove_cmd;
1829 }
1830
1831 cp = cmd->param;
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001832 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07001833 changed = !hci_dev_test_and_set_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001834
1835 if (hdev->discov_timeout > 0) {
1836 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1837 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1838 to);
1839 }
1840 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001841 changed = hci_dev_test_and_clear_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001842 }
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001843
1844 send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1845
1846 if (changed)
1847 new_settings(hdev, cmd->sk);
1848
Marcel Holtmann970ba522013-10-15 06:33:57 -07001849 /* When the discoverable mode gets changed, make sure
1850 * that class of device has the limited discoverable
Johan Hedberg432df052014-08-01 11:13:31 +03001851 * bit correctly set. Also update page scan based on whitelist
1852 * entries.
Marcel Holtmann970ba522013-10-15 06:33:57 -07001853 */
1854 hci_req_init(&req, hdev);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02001855 __hci_update_page_scan(&req);
Marcel Holtmann970ba522013-10-15 06:33:57 -07001856 update_class(&req);
1857 hci_req_run(&req, NULL);
1858
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001859remove_cmd:
1860 mgmt_pending_remove(cmd);
1861
1862unlock:
1863 hci_dev_unlock(hdev);
1864}
1865
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001866static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001867 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001868{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001869 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001870 struct mgmt_pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001871 struct hci_request req;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001872 u16 timeout;
Johan Hedberg9a43e252013-10-20 19:00:07 +03001873 u8 scan;
Johan Hedberg03811012010-12-08 00:21:06 +02001874 int err;
Johan Hedberge41d8b42010-12-13 21:07:03 +02001875
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001876 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001877
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001878 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
1879 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02001880 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1881 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001882
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001883 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02001884 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1885 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001886
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001887 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001888
1889 /* Disabling discoverable requires that no timeout is set,
1890 * and enabling limited discoverable requires a timeout.
1891 */
1892 if ((cp->val == 0x00 && timeout > 0) ||
1893 (cp->val == 0x02 && timeout == 0))
Johan Hedberga69e8372015-03-06 21:08:53 +02001894 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1895 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001896
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001897 hci_dev_lock(hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001898
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001899 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001900 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1901 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001902 goto failed;
1903 }
1904
Johan Hedberg333ae952015-03-17 13:48:47 +02001905 if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
1906 pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001907 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1908 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001909 goto failed;
1910 }
1911
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001912 if (!hci_dev_test_flag(hdev, HCI_CONNECTABLE)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001913 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1914 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001915 goto failed;
1916 }
1917
1918 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001919 bool changed = false;
1920
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001921 /* Setting limited discoverable when powered off is
1922 * not a valid operation since it requires a timeout
1923 * and so no need to check HCI_LIMITED_DISCOVERABLE.
1924 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001925 if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07001926 hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001927 changed = true;
1928 }
1929
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001930 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001931 if (err < 0)
1932 goto failed;
1933
1934 if (changed)
1935 err = new_settings(hdev, sk);
1936
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001937 goto failed;
1938 }
1939
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001940 /* If the current mode is the same, then just update the timeout
1941 * value with the new value. And if only the timeout gets updated,
1942 * then no need for any HCI transactions.
1943 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001944 if (!!cp->val == hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
1945 (cp->val == 0x02) == hci_dev_test_flag(hdev,
1946 HCI_LIMITED_DISCOVERABLE)) {
Marcel Holtmann36261542013-10-15 08:28:51 -07001947 cancel_delayed_work(&hdev->discov_off);
1948 hdev->discov_timeout = timeout;
Marcel Holtmann955638e2012-02-22 18:21:00 +01001949
Marcel Holtmann36261542013-10-15 08:28:51 -07001950 if (cp->val && hdev->discov_timeout > 0) {
1951 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001952 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
Marcel Holtmann36261542013-10-15 08:28:51 -07001953 to);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001954 }
1955
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001956 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001957 goto failed;
1958 }
1959
1960 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1961 if (!cmd) {
1962 err = -ENOMEM;
1963 goto failed;
1964 }
1965
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001966 /* Cancel any potential discoverable timeout that might be
1967 * still active and store new timeout value. The arming of
1968 * the timeout happens in the complete handler.
1969 */
1970 cancel_delayed_work(&hdev->discov_off);
1971 hdev->discov_timeout = timeout;
1972
Johan Hedbergb456f872013-10-19 23:38:22 +03001973 /* Limited discoverable mode */
1974 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07001975 hci_dev_set_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergb456f872013-10-19 23:38:22 +03001976 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001977 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergb456f872013-10-19 23:38:22 +03001978
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001979 hci_req_init(&req, hdev);
1980
Johan Hedberg9a43e252013-10-20 19:00:07 +03001981 /* The procedure for LE-only controllers is much simpler - just
1982 * update the advertising data.
1983 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001984 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg9a43e252013-10-20 19:00:07 +03001985 goto update_ad;
1986
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001987 scan = SCAN_PAGE;
1988
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001989 if (cp->val) {
1990 struct hci_cp_write_current_iac_lap hci_cp;
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001991
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001992 if (cp->val == 0x02) {
1993 /* Limited discoverable mode */
Marcel Holtmann33337dc2013-10-23 08:28:01 -07001994 hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001995 hci_cp.iac_lap[0] = 0x00; /* LIAC */
1996 hci_cp.iac_lap[1] = 0x8b;
1997 hci_cp.iac_lap[2] = 0x9e;
1998 hci_cp.iac_lap[3] = 0x33; /* GIAC */
1999 hci_cp.iac_lap[4] = 0x8b;
2000 hci_cp.iac_lap[5] = 0x9e;
2001 } else {
2002 /* General discoverable mode */
Marcel Holtmann310a3d42013-10-15 09:13:39 -07002003 hci_cp.num_iac = 1;
2004 hci_cp.iac_lap[0] = 0x33; /* GIAC */
2005 hci_cp.iac_lap[1] = 0x8b;
2006 hci_cp.iac_lap[2] = 0x9e;
2007 }
2008
2009 hci_req_add(&req, HCI_OP_WRITE_CURRENT_IAC_LAP,
2010 (hci_cp.num_iac * 3) + 1, &hci_cp);
2011
2012 scan |= SCAN_INQUIRY;
2013 } else {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002014 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07002015 }
2016
2017 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03002018
Johan Hedberg9a43e252013-10-20 19:00:07 +03002019update_ad:
2020 update_adv_data(&req);
2021
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03002022 err = hci_req_run(&req, set_discoverable_complete);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002023 if (err < 0)
2024 mgmt_pending_remove(cmd);
2025
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002026failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002027 hci_dev_unlock(hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002028 return err;
2029}
2030
Johan Hedberg406d7802013-03-15 17:07:09 -05002031static void write_fast_connectable(struct hci_request *req, bool enable)
2032{
Johan Hedbergbd98b992013-03-15 17:07:13 -05002033 struct hci_dev *hdev = req->hdev;
Johan Hedberg406d7802013-03-15 17:07:09 -05002034 struct hci_cp_write_page_scan_activity acp;
2035 u8 type;
2036
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002037 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg547003b2013-10-21 16:51:53 +03002038 return;
2039
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05002040 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
2041 return;
2042
Johan Hedberg406d7802013-03-15 17:07:09 -05002043 if (enable) {
2044 type = PAGE_SCAN_TYPE_INTERLACED;
2045
2046 /* 160 msec page scan interval */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07002047 acp.interval = cpu_to_le16(0x0100);
Johan Hedberg406d7802013-03-15 17:07:09 -05002048 } else {
2049 type = PAGE_SCAN_TYPE_STANDARD; /* default */
2050
2051 /* default 1.28 sec page scan */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07002052 acp.interval = cpu_to_le16(0x0800);
Johan Hedberg406d7802013-03-15 17:07:09 -05002053 }
2054
Joe Perchesdcf4adb2014-03-12 10:52:35 -07002055 acp.window = cpu_to_le16(0x0012);
Johan Hedberg406d7802013-03-15 17:07:09 -05002056
Johan Hedbergbd98b992013-03-15 17:07:13 -05002057 if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval ||
2058 __cpu_to_le16(hdev->page_scan_window) != acp.window)
2059 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
2060 sizeof(acp), &acp);
2061
2062 if (hdev->page_scan_type != type)
2063 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
Johan Hedberg406d7802013-03-15 17:07:09 -05002064}
2065
Marcel Holtmann1904a852015-01-11 13:50:44 -08002066static void set_connectable_complete(struct hci_dev *hdev, u8 status,
2067 u16 opcode)
Johan Hedberg2b76f452013-03-15 17:07:04 -05002068{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002069 struct mgmt_pending_cmd *cmd;
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002070 struct mgmt_mode *cp;
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002071 bool conn_changed, discov_changed;
Johan Hedberg2b76f452013-03-15 17:07:04 -05002072
2073 BT_DBG("status 0x%02x", status);
2074
2075 hci_dev_lock(hdev);
2076
Johan Hedberg333ae952015-03-17 13:48:47 +02002077 cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberg2b76f452013-03-15 17:07:04 -05002078 if (!cmd)
2079 goto unlock;
2080
Johan Hedberg37438c12013-10-14 16:20:05 +03002081 if (status) {
2082 u8 mgmt_err = mgmt_status(status);
Johan Hedberga69e8372015-03-06 21:08:53 +02002083 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg37438c12013-10-14 16:20:05 +03002084 goto remove_cmd;
2085 }
2086
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002087 cp = cmd->param;
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002088 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07002089 conn_changed = !hci_dev_test_and_set_flag(hdev,
2090 HCI_CONNECTABLE);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002091 discov_changed = false;
2092 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002093 conn_changed = hci_dev_test_and_clear_flag(hdev,
2094 HCI_CONNECTABLE);
2095 discov_changed = hci_dev_test_and_clear_flag(hdev,
2096 HCI_DISCOVERABLE);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002097 }
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002098
Johan Hedberg2b76f452013-03-15 17:07:04 -05002099 send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);
2100
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002101 if (conn_changed || discov_changed) {
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002102 new_settings(hdev, cmd->sk);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02002103 hci_update_page_scan(hdev);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002104 if (discov_changed)
2105 mgmt_update_adv_data(hdev);
Johan Hedberg2b7be332014-07-07 14:40:22 +03002106 hci_update_background_scan(hdev);
2107 }
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002108
Johan Hedberg37438c12013-10-14 16:20:05 +03002109remove_cmd:
Johan Hedberg2b76f452013-03-15 17:07:04 -05002110 mgmt_pending_remove(cmd);
2111
2112unlock:
2113 hci_dev_unlock(hdev);
2114}
2115
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002116static int set_connectable_update_settings(struct hci_dev *hdev,
2117 struct sock *sk, u8 val)
2118{
2119 bool changed = false;
2120 int err;
2121
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002122 if (!!val != hci_dev_test_flag(hdev, HCI_CONNECTABLE))
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002123 changed = true;
2124
2125 if (val) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07002126 hci_dev_set_flag(hdev, HCI_CONNECTABLE);
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002127 } else {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002128 hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
2129 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002130 }
2131
2132 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
2133 if (err < 0)
2134 return err;
2135
Johan Hedberg562064e2014-07-08 16:35:34 +03002136 if (changed) {
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02002137 hci_update_page_scan(hdev);
Johan Hedberg562064e2014-07-08 16:35:34 +03002138 hci_update_background_scan(hdev);
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002139 return new_settings(hdev, sk);
Johan Hedberg562064e2014-07-08 16:35:34 +03002140 }
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002141
2142 return 0;
2143}
2144
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002145static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002146 u16 len)
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002147{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002148 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002149 struct mgmt_pending_cmd *cmd;
Johan Hedberg2b76f452013-03-15 17:07:04 -05002150 struct hci_request req;
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002151 u8 scan;
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002152 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02002153
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002154 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +02002155
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002156 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
2157 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02002158 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2159 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03002160
Johan Hedberga7e80f22013-01-09 16:05:19 +02002161 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002162 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2163 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002164
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002165 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002166
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002167 if (!hdev_is_powered(hdev)) {
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002168 err = set_connectable_update_settings(hdev, sk, cp->val);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002169 goto failed;
2170 }
2171
Johan Hedberg333ae952015-03-17 13:48:47 +02002172 if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
2173 pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002174 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2175 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002176 goto failed;
2177 }
2178
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002179 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
2180 if (!cmd) {
2181 err = -ENOMEM;
2182 goto failed;
2183 }
2184
Johan Hedberg2b76f452013-03-15 17:07:04 -05002185 hci_req_init(&req, hdev);
2186
Johan Hedberg9a43e252013-10-20 19:00:07 +03002187 /* If BR/EDR is not enabled and we disable advertising as a
2188 * by-product of disabling connectable, we need to update the
2189 * advertising flags.
2190 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002191 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg9a43e252013-10-20 19:00:07 +03002192 if (!cp->val) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002193 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
2194 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberg9a43e252013-10-20 19:00:07 +03002195 }
2196 update_adv_data(&req);
2197 } else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg9b742462013-10-14 16:20:03 +03002198 if (cp->val) {
2199 scan = SCAN_PAGE;
2200 } else {
Johan Hedberg3bd27242014-07-28 20:53:58 +03002201 /* If we don't have any whitelist entries just
2202 * disable all scanning. If there are entries
2203 * and we had both page and inquiry scanning
2204 * enabled then fall back to only page scanning.
2205 * Otherwise no changes are needed.
2206 */
2207 if (list_empty(&hdev->whitelist))
2208 scan = SCAN_DISABLED;
2209 else if (test_bit(HCI_ISCAN, &hdev->flags))
2210 scan = SCAN_PAGE;
2211 else
2212 goto no_scan_update;
Johan Hedberg9b742462013-10-14 16:20:03 +03002213
2214 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Marcel Holtmann8d6083f2013-10-14 16:38:45 -07002215 hdev->discov_timeout > 0)
Johan Hedberg9b742462013-10-14 16:20:03 +03002216 cancel_delayed_work(&hdev->discov_off);
2217 }
2218
2219 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
2220 }
Johan Hedberg2b76f452013-03-15 17:07:04 -05002221
Johan Hedberg3bd27242014-07-28 20:53:58 +03002222no_scan_update:
Johan Hedberge8b12022014-07-10 10:51:27 +03002223 /* Update the advertising parameters if necessary */
Arman Uguray880897d2015-03-28 12:39:00 -07002224 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
2225 hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002226 enable_advertising(&req);
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002227
Johan Hedberg2b76f452013-03-15 17:07:04 -05002228 err = hci_req_run(&req, set_connectable_complete);
Johan Hedberg9b742462013-10-14 16:20:03 +03002229 if (err < 0) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002230 mgmt_pending_remove(cmd);
Johan Hedberg9b742462013-10-14 16:20:03 +03002231 if (err == -ENODATA)
Johan Hedberga81070b2013-10-19 23:38:19 +03002232 err = set_connectable_update_settings(hdev, sk,
2233 cp->val);
Johan Hedberg9b742462013-10-14 16:20:03 +03002234 goto failed;
2235 }
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002236
2237failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002238 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002239 return err;
2240}
2241
Johan Hedbergb2939472014-07-30 09:22:23 +03002242static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002243 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02002244{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002245 struct mgmt_mode *cp = data;
Marcel Holtmann55594352013-10-06 16:11:57 -07002246 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02002247 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002248
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002249 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002250
Johan Hedberga7e80f22013-01-09 16:05:19 +02002251 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002252 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE,
2253 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002254
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002255 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002256
2257 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07002258 changed = !hci_dev_test_and_set_flag(hdev, HCI_BONDABLE);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002259 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002260 changed = hci_dev_test_and_clear_flag(hdev, HCI_BONDABLE);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002261
Johan Hedbergb2939472014-07-30 09:22:23 +03002262 err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002263 if (err < 0)
Marcel Holtmann55594352013-10-06 16:11:57 -07002264 goto unlock;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002265
Marcel Holtmann55594352013-10-06 16:11:57 -07002266 if (changed)
2267 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002268
Marcel Holtmann55594352013-10-06 16:11:57 -07002269unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002270 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002271 return err;
2272}
Johan Hedberg72a734e2010-12-30 00:38:22 +02002273
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002274static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
2275 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002276{
2277 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002278 struct mgmt_pending_cmd *cmd;
Johan Hedberge6fe7982013-10-02 15:45:22 +03002279 u8 val, status;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002280 int err;
2281
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002282 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002283
Johan Hedberge6fe7982013-10-02 15:45:22 +03002284 status = mgmt_bredr_support(hdev);
2285 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002286 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2287 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +03002288
Johan Hedberga7e80f22013-01-09 16:05:19 +02002289 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002290 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2291 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002292
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002293 hci_dev_lock(hdev);
2294
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002295 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02002296 bool changed = false;
2297
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002298 if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07002299 hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02002300 changed = true;
2301 }
2302
2303 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
2304 if (err < 0)
2305 goto failed;
2306
2307 if (changed)
2308 err = new_settings(hdev, sk);
2309
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002310 goto failed;
2311 }
2312
Johan Hedberg333ae952015-03-17 13:48:47 +02002313 if (pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002314 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2315 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002316 goto failed;
2317 }
2318
2319 val = !!cp->val;
2320
2321 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
2322 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
2323 goto failed;
2324 }
2325
2326 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
2327 if (!cmd) {
2328 err = -ENOMEM;
2329 goto failed;
2330 }
2331
2332 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
2333 if (err < 0) {
2334 mgmt_pending_remove(cmd);
2335 goto failed;
2336 }
2337
2338failed:
2339 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002340 return err;
2341}
2342
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002343static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002344{
2345 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002346 struct mgmt_pending_cmd *cmd;
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002347 u8 status;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002348 int err;
2349
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002350 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002351
Marcel Holtmanncdba5282013-10-02 21:31:52 -07002352 status = mgmt_bredr_support(hdev);
2353 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002354 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
Marcel Holtmanncdba5282013-10-02 21:31:52 -07002355
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002356 if (!lmp_ssp_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002357 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2358 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002359
Johan Hedberga7e80f22013-01-09 16:05:19 +02002360 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002361 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2362 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002363
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002364 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02002365
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002366 if (!hdev_is_powered(hdev)) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002367 bool changed;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02002368
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002369 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07002370 changed = !hci_dev_test_and_set_flag(hdev,
2371 HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002372 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002373 changed = hci_dev_test_and_clear_flag(hdev,
2374 HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002375 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002376 changed = hci_dev_test_and_clear_flag(hdev,
2377 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002378 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002379 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02002380 }
2381
2382 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
2383 if (err < 0)
2384 goto failed;
2385
2386 if (changed)
2387 err = new_settings(hdev, sk);
2388
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002389 goto failed;
2390 }
2391
Johan Hedberg333ae952015-03-17 13:48:47 +02002392 if (pending_find(MGMT_OP_SET_SSP, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002393 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2394 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002395 goto failed;
2396 }
2397
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002398 if (!!cp->val == hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002399 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
2400 goto failed;
2401 }
2402
2403 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
2404 if (!cmd) {
2405 err = -ENOMEM;
2406 goto failed;
2407 }
2408
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002409 if (!cp->val && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03002410 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
2411 sizeof(cp->val), &cp->val);
2412
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002413 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002414 if (err < 0) {
2415 mgmt_pending_remove(cmd);
2416 goto failed;
2417 }
2418
2419failed:
2420 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002421 return err;
2422}
2423
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002424static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002425{
2426 struct mgmt_mode *cp = data;
Marcel Holtmannee392692013-10-01 22:59:23 -07002427 bool changed;
Johan Hedberge6fe7982013-10-02 15:45:22 +03002428 u8 status;
Marcel Holtmannee392692013-10-01 22:59:23 -07002429 int err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002430
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002431 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002432
Johan Hedberge6fe7982013-10-02 15:45:22 +03002433 status = mgmt_bredr_support(hdev);
2434 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002435 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002436
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002437 if (!lmp_ssp_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002438 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2439 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002440
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002441 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02002442 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2443 MGMT_STATUS_REJECTED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002444
Johan Hedberga7e80f22013-01-09 16:05:19 +02002445 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002446 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2447 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002448
Marcel Holtmannee392692013-10-01 22:59:23 -07002449 hci_dev_lock(hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002450
Johan Hedberg333ae952015-03-17 13:48:47 +02002451 if (pending_find(MGMT_OP_SET_SSP, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002452 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2453 MGMT_STATUS_BUSY);
Johan Hedberga2cb01d2015-02-19 17:38:07 +02002454 goto unlock;
2455 }
2456
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002457 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07002458 changed = !hci_dev_test_and_set_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002459 } else {
2460 if (hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002461 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2462 MGMT_STATUS_REJECTED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002463 goto unlock;
2464 }
2465
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002466 changed = hci_dev_test_and_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002467 }
Marcel Holtmannee392692013-10-01 22:59:23 -07002468
2469 err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
2470 if (err < 0)
2471 goto unlock;
2472
2473 if (changed)
2474 err = new_settings(hdev, sk);
2475
2476unlock:
2477 hci_dev_unlock(hdev);
2478 return err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002479}
2480
Marcel Holtmann1904a852015-01-11 13:50:44 -08002481static void le_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002482{
2483 struct cmd_lookup match = { NULL, hdev };
2484
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302485 hci_dev_lock(hdev);
2486
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002487 if (status) {
2488 u8 mgmt_err = mgmt_status(status);
2489
2490 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
2491 &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302492 goto unlock;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002493 }
2494
2495 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
2496
2497 new_settings(hdev, match.sk);
2498
2499 if (match.sk)
2500 sock_put(match.sk);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002501
2502 /* Make sure the controller has a good default for
2503 * advertising data. Restrict the update to when LE
2504 * has actually been enabled. During power on, the
2505 * update in powered_update_hci will take care of it.
2506 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002507 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002508 struct hci_request req;
2509
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002510 hci_req_init(&req, hdev);
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07002511 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07002512 update_scan_rsp_data(&req);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002513 hci_req_run(&req, NULL);
Johan Hedberg2e93e532015-11-11 08:11:17 +02002514 hci_update_background_scan(hdev);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002515 }
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302516
2517unlock:
2518 hci_dev_unlock(hdev);
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002519}
2520
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002521static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002522{
2523 struct mgmt_mode *cp = data;
2524 struct hci_cp_write_le_host_supported hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002525 struct mgmt_pending_cmd *cmd;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002526 struct hci_request req;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002527 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002528 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002529
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002530 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002531
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002532 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002533 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2534 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002535
Johan Hedberga7e80f22013-01-09 16:05:19 +02002536 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002537 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2538 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002539
Marcel Holtmanne7844ee2015-03-18 16:15:07 -07002540 /* Bluetooth single mode LE only controllers or dual-mode
2541 * controllers configured as LE only devices, do not allow
2542 * switching LE off. These have either LE enabled explicitly
2543 * or BR/EDR has been previously switched off.
2544 *
2545 * When trying to enable an already enabled LE, then gracefully
2546 * send a positive response. Trying to disable it however will
2547 * result into rejection.
2548 */
2549 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
2550 if (cp->val == 0x01)
2551 return send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
2552
Johan Hedberga69e8372015-03-06 21:08:53 +02002553 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2554 MGMT_STATUS_REJECTED);
Marcel Holtmanne7844ee2015-03-18 16:15:07 -07002555 }
Johan Hedbergc73eee92013-04-19 18:35:21 +03002556
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002557 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002558
2559 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02002560 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002561
Florian Grandel847818d2015-06-18 03:16:46 +02002562 if (!val)
2563 clear_adv_instance(hdev, NULL, 0x00, true);
2564
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002565 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02002566 bool changed = false;
2567
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002568 if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07002569 hci_dev_change_flag(hdev, HCI_LE_ENABLED);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002570 changed = true;
2571 }
2572
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002573 if (!val && hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002574 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03002575 changed = true;
2576 }
2577
Johan Hedberg06199cf2012-02-22 16:37:11 +02002578 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
2579 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08002580 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002581
2582 if (changed)
2583 err = new_settings(hdev, sk);
2584
Johan Hedberg1de028c2012-02-29 19:55:35 -08002585 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002586 }
2587
Johan Hedberg333ae952015-03-17 13:48:47 +02002588 if (pending_find(MGMT_OP_SET_LE, hdev) ||
2589 pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002590 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2591 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002592 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002593 }
2594
2595 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
2596 if (!cmd) {
2597 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08002598 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002599 }
2600
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002601 hci_req_init(&req, hdev);
2602
Johan Hedberg06199cf2012-02-22 16:37:11 +02002603 memset(&hci_cp, 0, sizeof(hci_cp));
2604
2605 if (val) {
2606 hci_cp.le = val;
Marcel Holtmann32226e42014-07-24 20:04:16 +02002607 hci_cp.simul = 0x00;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002608 } else {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002609 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002610 disable_advertising(&req);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002611 }
2612
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002613 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
2614 &hci_cp);
2615
2616 err = hci_req_run(&req, le_enable_complete);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05302617 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002618 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002619
Johan Hedberg1de028c2012-02-29 19:55:35 -08002620unlock:
2621 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002622 return err;
2623}
2624
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002625/* This is a helper function to test for pending mgmt commands that can
2626 * cause CoD or EIR HCI commands. We can only allow one such pending
2627 * mgmt command at a time since otherwise we cannot easily track what
2628 * the current values are, will be, and based on that calculate if a new
2629 * HCI command needs to be sent and if yes with what value.
2630 */
2631static bool pending_eir_or_class(struct hci_dev *hdev)
2632{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002633 struct mgmt_pending_cmd *cmd;
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002634
2635 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
2636 switch (cmd->opcode) {
2637 case MGMT_OP_ADD_UUID:
2638 case MGMT_OP_REMOVE_UUID:
2639 case MGMT_OP_SET_DEV_CLASS:
2640 case MGMT_OP_SET_POWERED:
2641 return true;
2642 }
2643 }
2644
2645 return false;
2646}
2647
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002648static const u8 bluetooth_base_uuid[] = {
2649 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
2650 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2651};
2652
2653static u8 get_uuid_size(const u8 *uuid)
2654{
2655 u32 val;
2656
2657 if (memcmp(uuid, bluetooth_base_uuid, 12))
2658 return 128;
2659
2660 val = get_unaligned_le32(&uuid[12]);
2661 if (val > 0xffff)
2662 return 32;
2663
2664 return 16;
2665}
2666
Johan Hedberg92da6092013-03-15 17:06:55 -05002667static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
2668{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002669 struct mgmt_pending_cmd *cmd;
Johan Hedberg92da6092013-03-15 17:06:55 -05002670
2671 hci_dev_lock(hdev);
2672
Johan Hedberg333ae952015-03-17 13:48:47 +02002673 cmd = pending_find(mgmt_op, hdev);
Johan Hedberg92da6092013-03-15 17:06:55 -05002674 if (!cmd)
2675 goto unlock;
2676
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002677 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
2678 mgmt_status(status), hdev->dev_class, 3);
Johan Hedberg92da6092013-03-15 17:06:55 -05002679
2680 mgmt_pending_remove(cmd);
2681
2682unlock:
2683 hci_dev_unlock(hdev);
2684}
2685
Marcel Holtmann1904a852015-01-11 13:50:44 -08002686static void add_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002687{
2688 BT_DBG("status 0x%02x", status);
2689
2690 mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
2691}
2692
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002693static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002694{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002695 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002696 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002697 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002698 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002699 int err;
2700
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002701 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002702
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002703 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002704
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002705 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002706 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
2707 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002708 goto failed;
2709 }
2710
Andre Guedes92c4c202012-06-07 19:05:44 -03002711 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002712 if (!uuid) {
2713 err = -ENOMEM;
2714 goto failed;
2715 }
2716
2717 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002718 uuid->svc_hint = cp->svc_hint;
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002719 uuid->size = get_uuid_size(cp->uuid);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002720
Johan Hedbergde66aa62013-01-27 00:31:27 +02002721 list_add_tail(&uuid->list, &hdev->uuids);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002722
Johan Hedberg890ea892013-03-15 17:06:52 -05002723 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002724
Johan Hedberg890ea892013-03-15 17:06:52 -05002725 update_class(&req);
2726 update_eir(&req);
2727
Johan Hedberg92da6092013-03-15 17:06:55 -05002728 err = hci_req_run(&req, add_uuid_complete);
2729 if (err < 0) {
2730 if (err != -ENODATA)
2731 goto failed;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002732
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002733 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
2734 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002735 goto failed;
2736 }
2737
2738 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002739 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002740 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002741 goto failed;
2742 }
2743
2744 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002745
2746failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002747 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002748 return err;
2749}
2750
Johan Hedberg24b78d02012-02-23 23:24:30 +02002751static bool enable_service_cache(struct hci_dev *hdev)
2752{
2753 if (!hdev_is_powered(hdev))
2754 return false;
2755
Marcel Holtmann238be782015-03-13 02:11:06 -07002756 if (!hci_dev_test_and_set_flag(hdev, HCI_SERVICE_CACHE)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02002757 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
2758 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002759 return true;
2760 }
2761
2762 return false;
2763}
2764
Marcel Holtmann1904a852015-01-11 13:50:44 -08002765static void remove_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002766{
2767 BT_DBG("status 0x%02x", status);
2768
2769 mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
2770}
2771
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002772static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002773 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002774{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002775 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002776 struct mgmt_pending_cmd *cmd;
Johan Hedberg056341c2013-01-27 00:31:30 +02002777 struct bt_uuid *match, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002778 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 -05002779 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002780 int err, found;
2781
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002782 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002783
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002784 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002785
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002786 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002787 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
2788 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002789 goto unlock;
2790 }
2791
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002792 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
Johan Hedberg35f74982014-02-18 17:14:32 +02002793 hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002794
Johan Hedberg24b78d02012-02-23 23:24:30 +02002795 if (enable_service_cache(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002796 err = mgmt_cmd_complete(sk, hdev->id,
2797 MGMT_OP_REMOVE_UUID,
2798 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002799 goto unlock;
2800 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002801
Johan Hedberg9246a862012-02-23 21:33:16 +02002802 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002803 }
2804
2805 found = 0;
2806
Johan Hedberg056341c2013-01-27 00:31:30 +02002807 list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002808 if (memcmp(match->uuid, cp->uuid, 16) != 0)
2809 continue;
2810
2811 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01002812 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002813 found++;
2814 }
2815
2816 if (found == 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002817 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
2818 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002819 goto unlock;
2820 }
2821
Johan Hedberg9246a862012-02-23 21:33:16 +02002822update_class:
Johan Hedberg890ea892013-03-15 17:06:52 -05002823 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002824
Johan Hedberg890ea892013-03-15 17:06:52 -05002825 update_class(&req);
2826 update_eir(&req);
2827
Johan Hedberg92da6092013-03-15 17:06:55 -05002828 err = hci_req_run(&req, remove_uuid_complete);
2829 if (err < 0) {
2830 if (err != -ENODATA)
2831 goto unlock;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002832
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002833 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
2834 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002835 goto unlock;
2836 }
2837
2838 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002839 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002840 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002841 goto unlock;
2842 }
2843
2844 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002845
2846unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002847 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002848 return err;
2849}
2850
Marcel Holtmann1904a852015-01-11 13:50:44 -08002851static void set_class_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002852{
2853 BT_DBG("status 0x%02x", status);
2854
2855 mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
2856}
2857
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002858static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002859 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002860{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002861 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002862 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002863 struct hci_request req;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002864 int err;
2865
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002866 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002867
Marcel Holtmann6203fc92013-10-02 23:37:29 -07002868 if (!lmp_bredr_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002869 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2870 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002871
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002872 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002873
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002874 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002875 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2876 MGMT_STATUS_BUSY);
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002877 goto unlock;
2878 }
2879
2880 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002881 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2882 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002883 goto unlock;
2884 }
2885
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002886 hdev->major_class = cp->major;
2887 hdev->minor_class = cp->minor;
2888
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002889 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002890 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
2891 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002892 goto unlock;
2893 }
2894
Johan Hedberg890ea892013-03-15 17:06:52 -05002895 hci_req_init(&req, hdev);
2896
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002897 if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02002898 hci_dev_unlock(hdev);
2899 cancel_delayed_work_sync(&hdev->service_cache);
2900 hci_dev_lock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05002901 update_eir(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02002902 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02002903
Johan Hedberg890ea892013-03-15 17:06:52 -05002904 update_class(&req);
2905
Johan Hedberg92da6092013-03-15 17:06:55 -05002906 err = hci_req_run(&req, set_class_complete);
2907 if (err < 0) {
2908 if (err != -ENODATA)
2909 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002910
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002911 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
2912 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002913 goto unlock;
2914 }
2915
2916 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002917 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002918 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002919 goto unlock;
2920 }
2921
2922 err = 0;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002923
Johan Hedbergb5235a62012-02-21 14:32:24 +02002924unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002925 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002926 return err;
2927}
2928
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002929static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002930 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002931{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002932 struct mgmt_cp_load_link_keys *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03002933 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
2934 sizeof(struct mgmt_link_key_info));
Szymon Janc4e51eae2011-02-25 19:05:48 +01002935 u16 key_count, expected_len;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002936 bool changed;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002937 int i;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002938
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002939 BT_DBG("request for %s", hdev->name);
2940
2941 if (!lmp_bredr_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002942 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2943 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002944
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002945 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002946 if (key_count > max_key_count) {
2947 BT_ERR("load_link_keys: too big key_count value %u",
2948 key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02002949 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2950 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002951 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002952
Johan Hedberg86742e12011-11-07 23:13:38 +02002953 expected_len = sizeof(*cp) + key_count *
2954 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002955 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002956 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02002957 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02002958 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2959 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002960 }
2961
Johan Hedberg4ae14302013-01-20 14:27:13 +02002962 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002963 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2964 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ae14302013-01-20 14:27:13 +02002965
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002966 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002967 key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002968
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002969 for (i = 0; i < key_count; i++) {
2970 struct mgmt_link_key_info *key = &cp->keys[i];
2971
Marcel Holtmann8e991132014-01-10 02:07:25 -08002972 if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
Johan Hedberga69e8372015-03-06 21:08:53 +02002973 return mgmt_cmd_status(sk, hdev->id,
2974 MGMT_OP_LOAD_LINK_KEYS,
2975 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002976 }
2977
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002978 hci_dev_lock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002979
2980 hci_link_keys_clear(hdev);
2981
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002982 if (cp->debug_keys)
Marcel Holtmann238be782015-03-13 02:11:06 -07002983 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002984 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002985 changed = hci_dev_test_and_clear_flag(hdev,
2986 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002987
2988 if (changed)
2989 new_settings(hdev, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002990
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002991 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002992 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002993
Johan Hedberg58e92932014-06-24 14:00:26 +03002994 /* Always ignore debug keys and require a new pairing if
2995 * the user wants to use them.
2996 */
2997 if (key->type == HCI_LK_DEBUG_COMBINATION)
2998 continue;
2999
Johan Hedberg7652ff62014-06-24 13:15:49 +03003000 hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
3001 key->type, key->pin_len, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003002 }
3003
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003004 mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02003005
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003006 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003007
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003008 return 0;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003009}
3010
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003011static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003012 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003013{
3014 struct mgmt_ev_device_unpaired ev;
3015
3016 bacpy(&ev.addr.bdaddr, bdaddr);
3017 ev.addr.type = addr_type;
3018
3019 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003020 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003021}
3022
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003023static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003024 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003025{
Johan Hedberg124f6e32012-02-09 13:50:12 +02003026 struct mgmt_cp_unpair_device *cp = data;
3027 struct mgmt_rp_unpair_device rp;
Johan Hedbergfc643612015-10-22 09:38:31 +03003028 struct hci_conn_params *params;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003029 struct mgmt_pending_cmd *cmd;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003030 struct hci_conn *conn;
Johan Hedbergec182f02015-10-21 18:03:03 +03003031 u8 addr_type;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003032 int err;
3033
Johan Hedberga8a1d192011-11-10 15:54:38 +02003034 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02003035 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3036 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02003037
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003038 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003039 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
3040 MGMT_STATUS_INVALID_PARAMS,
3041 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003042
Johan Hedberg118da702013-01-20 14:27:20 +02003043 if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003044 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
3045 MGMT_STATUS_INVALID_PARAMS,
3046 &rp, sizeof(rp));
Johan Hedberg118da702013-01-20 14:27:20 +02003047
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003048 hci_dev_lock(hdev);
3049
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02003050 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003051 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
3052 MGMT_STATUS_NOT_POWERED, &rp,
3053 sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02003054 goto unlock;
3055 }
3056
Johan Hedberge0b2b272014-02-18 17:14:31 +02003057 if (cp->addr.type == BDADDR_BREDR) {
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003058 /* If disconnection is requested, then look up the
3059 * connection. If the remote device is connected, it
3060 * will be later used to terminate the link.
3061 *
3062 * Setting it to NULL explicitly will cause no
3063 * termination of the link.
3064 */
3065 if (cp->disconnect)
3066 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
3067 &cp->addr.bdaddr);
3068 else
3069 conn = NULL;
3070
Johan Hedberg124f6e32012-02-09 13:50:12 +02003071 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
Johan Hedbergec182f02015-10-21 18:03:03 +03003072 if (err < 0) {
3073 err = mgmt_cmd_complete(sk, hdev->id,
3074 MGMT_OP_UNPAIR_DEVICE,
3075 MGMT_STATUS_NOT_PAIRED, &rp,
3076 sizeof(rp));
3077 goto unlock;
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003078 }
3079
Johan Hedbergec182f02015-10-21 18:03:03 +03003080 goto done;
Johan Hedberge0b2b272014-02-18 17:14:31 +02003081 }
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03003082
Johan Hedbergec182f02015-10-21 18:03:03 +03003083 /* LE address type */
3084 addr_type = le_addr_type(cp->addr.type);
3085
3086 hci_remove_irk(hdev, &cp->addr.bdaddr, addr_type);
3087
3088 err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003089 if (err < 0) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003090 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
3091 MGMT_STATUS_NOT_PAIRED, &rp,
3092 sizeof(rp));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003093 goto unlock;
3094 }
3095
Johan Hedbergec182f02015-10-21 18:03:03 +03003096 conn = hci_conn_hash_lookup_le(hdev, &cp->addr.bdaddr, addr_type);
3097 if (!conn) {
3098 hci_conn_params_del(hdev, &cp->addr.bdaddr, addr_type);
3099 goto done;
3100 }
3101
Johan Hedbergc81d5552015-10-22 09:38:35 +03003102 /* Abort any ongoing SMP pairing */
3103 smp_cancel_pairing(conn);
3104
Johan Hedbergec182f02015-10-21 18:03:03 +03003105 /* Defer clearing up the connection parameters until closing to
3106 * give a chance of keeping them if a repairing happens.
3107 */
3108 set_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
3109
Johan Hedbergfc643612015-10-22 09:38:31 +03003110 /* Disable auto-connection parameters if present */
3111 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr, addr_type);
3112 if (params) {
3113 if (params->explicit_connect)
3114 params->auto_connect = HCI_AUTO_CONN_EXPLICIT;
3115 else
3116 params->auto_connect = HCI_AUTO_CONN_DISABLED;
3117 }
3118
Johan Hedbergec182f02015-10-21 18:03:03 +03003119 /* If disconnection is not requested, then clear the connection
3120 * variable so that the link is not terminated.
3121 */
3122 if (!cp->disconnect)
3123 conn = NULL;
3124
3125done:
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003126 /* If the connection variable is set, then termination of the
3127 * link is requested.
3128 */
Johan Hedberga8a1d192011-11-10 15:54:38 +02003129 if (!conn) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003130 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
3131 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003132 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02003133 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003134 }
3135
Johan Hedberg124f6e32012-02-09 13:50:12 +02003136 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003137 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02003138 if (!cmd) {
3139 err = -ENOMEM;
3140 goto unlock;
3141 }
3142
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02003143 cmd->cmd_complete = addr_cmd_complete;
3144
Johan Hedberg89e0ccc2015-10-22 10:49:38 +03003145 err = hci_abort_conn(conn, HCI_ERROR_REMOTE_USER_TERM);
Johan Hedberga8a1d192011-11-10 15:54:38 +02003146 if (err < 0)
3147 mgmt_pending_remove(cmd);
3148
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003149unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003150 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003151 return err;
3152}
3153
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003154static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003155 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02003156{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003157 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg06a63b12013-01-20 14:27:21 +02003158 struct mgmt_rp_disconnect rp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003159 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003160 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003161 int err;
3162
3163 BT_DBG("");
3164
Johan Hedberg06a63b12013-01-20 14:27:21 +02003165 memset(&rp, 0, sizeof(rp));
3166 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3167 rp.addr.type = cp->addr.type;
3168
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003169 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003170 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3171 MGMT_STATUS_INVALID_PARAMS,
3172 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003173
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003174 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003175
3176 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003177 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3178 MGMT_STATUS_NOT_POWERED, &rp,
3179 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003180 goto failed;
3181 }
3182
Johan Hedberg333ae952015-03-17 13:48:47 +02003183 if (pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003184 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3185 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003186 goto failed;
3187 }
3188
Andre Guedes591f47f2012-04-24 21:02:49 -03003189 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003190 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
3191 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02003192 else
Johan Hedberg9d4c1cc2015-10-21 18:03:01 +03003193 conn = hci_conn_hash_lookup_le(hdev, &cp->addr.bdaddr,
3194 le_addr_type(cp->addr.type));
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03003195
Vishal Agarwalf9607272012-06-13 05:32:43 +05303196 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003197 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3198 MGMT_STATUS_NOT_CONNECTED, &rp,
3199 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003200 goto failed;
3201 }
3202
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003203 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03003204 if (!cmd) {
3205 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003206 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03003207 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02003208
Johan Hedbergf5818c22014-12-05 13:36:02 +02003209 cmd->cmd_complete = generic_cmd_complete;
3210
Johan Hedberge3f2f922014-08-18 20:33:33 +03003211 err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003212 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03003213 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003214
3215failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003216 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003217 return err;
3218}
3219
Andre Guedes57c14772012-04-24 21:02:50 -03003220static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02003221{
3222 switch (link_type) {
3223 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02003224 switch (addr_type) {
3225 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03003226 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03003227
Johan Hedberg48264f02011-11-09 13:58:58 +02003228 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03003229 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03003230 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02003231 }
Andre Guedes0ed09142012-04-03 08:46:54 -03003232
Johan Hedberg4c659c32011-11-07 23:13:39 +02003233 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03003234 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03003235 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003236 }
3237}
3238
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003239static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
3240 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02003241{
Johan Hedberg2784eb42011-01-21 13:56:35 +02003242 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02003243 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02003244 size_t rp_len;
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003245 int err;
3246 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02003247
3248 BT_DBG("");
3249
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003250 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003251
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003252 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003253 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
3254 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003255 goto unlock;
3256 }
3257
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003258 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02003259 list_for_each_entry(c, &hdev->conn_hash.list, list) {
3260 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003261 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02003262 }
3263
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003264 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03003265 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02003266 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02003267 err = -ENOMEM;
3268 goto unlock;
3269 }
3270
Johan Hedberg2784eb42011-01-21 13:56:35 +02003271 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003272 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02003273 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
3274 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003275 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03003276 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03003277 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02003278 continue;
3279 i++;
3280 }
3281
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003282 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003283
Johan Hedberg4c659c32011-11-07 23:13:39 +02003284 /* Recalculate length in case of filtered SCO connections, etc */
3285 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02003286
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003287 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
3288 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003289
Johan Hedberga38528f2011-01-22 06:46:43 +02003290 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003291
3292unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003293 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003294 return err;
3295}
3296
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003297static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003298 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003299{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003300 struct mgmt_pending_cmd *cmd;
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003301 int err;
3302
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003303 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003304 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003305 if (!cmd)
3306 return -ENOMEM;
3307
Johan Hedbergd8457692012-02-17 14:24:57 +02003308 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003309 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003310 if (err < 0)
3311 mgmt_pending_remove(cmd);
3312
3313 return err;
3314}
3315
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003316static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003317 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003318{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003319 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003320 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003321 struct hci_cp_pin_code_reply reply;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003322 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003323 int err;
3324
3325 BT_DBG("");
3326
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003327 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003328
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003329 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003330 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3331 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003332 goto failed;
3333 }
3334
Johan Hedbergd8457692012-02-17 14:24:57 +02003335 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003336 if (!conn) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003337 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3338 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003339 goto failed;
3340 }
3341
3342 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02003343 struct mgmt_cp_pin_code_neg_reply ncp;
3344
3345 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003346
3347 BT_ERR("PIN code is not 16 bytes long");
3348
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003349 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003350 if (err >= 0)
Johan Hedberga69e8372015-03-06 21:08:53 +02003351 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3352 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003353
3354 goto failed;
3355 }
3356
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03003357 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03003358 if (!cmd) {
3359 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003360 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03003361 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02003362
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003363 cmd->cmd_complete = addr_cmd_complete;
3364
Johan Hedbergd8457692012-02-17 14:24:57 +02003365 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003366 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02003367 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003368
3369 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
3370 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03003371 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003372
3373failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003374 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003375 return err;
3376}
3377
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003378static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
3379 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003380{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003381 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003382
3383 BT_DBG("");
3384
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003385 if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003386 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
3387 MGMT_STATUS_INVALID_PARAMS, NULL, 0);
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003388
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003389 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003390
3391 hdev->io_capability = cp->io_capability;
3392
3393 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003394 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003395
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003396 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003397
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003398 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0,
3399 NULL, 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003400}
3401
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003402static struct mgmt_pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003403{
3404 struct hci_dev *hdev = conn->hdev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003405 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003406
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003407 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03003408 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
3409 continue;
3410
Johan Hedberge9a416b2011-02-19 12:05:56 -03003411 if (cmd->user_data != conn)
3412 continue;
3413
3414 return cmd;
3415 }
3416
3417 return NULL;
3418}
3419
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003420static int pairing_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003421{
3422 struct mgmt_rp_pair_device rp;
3423 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9df74652014-12-19 22:26:03 +02003424 int err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003425
Johan Hedberg61b1a7f2014-03-20 12:54:16 +02003426 bacpy(&rp.addr.bdaddr, &conn->dst);
3427 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003428
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003429 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE,
3430 status, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003431
3432 /* So we don't get further callbacks for this connection */
3433 conn->connect_cfm_cb = NULL;
3434 conn->security_cfm_cb = NULL;
3435 conn->disconn_cfm_cb = NULL;
3436
David Herrmann76a68ba2013-04-06 20:28:37 +02003437 hci_conn_drop(conn);
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003438
3439 /* The device is paired so there is no need to remove
3440 * its connection parameters anymore.
3441 */
3442 clear_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
Johan Hedberg15013ae2014-12-11 21:45:44 +02003443
3444 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02003445
3446 return err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003447}
3448
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003449void mgmt_smp_complete(struct hci_conn *conn, bool complete)
3450{
3451 u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003452 struct mgmt_pending_cmd *cmd;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003453
3454 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003455 if (cmd) {
Johan Hedberg04ab2742014-12-05 13:36:04 +02003456 cmd->cmd_complete(cmd, status);
Johan Hedberga511b352014-12-11 21:45:45 +02003457 mgmt_pending_remove(cmd);
3458 }
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003459}
3460
Johan Hedberge9a416b2011-02-19 12:05:56 -03003461static void pairing_complete_cb(struct hci_conn *conn, u8 status)
3462{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003463 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003464
3465 BT_DBG("status %u", status);
3466
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003467 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003468 if (!cmd) {
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003469 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02003470 return;
3471 }
3472
3473 cmd->cmd_complete(cmd, mgmt_status(status));
3474 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003475}
3476
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003477static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303478{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003479 struct mgmt_pending_cmd *cmd;
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303480
3481 BT_DBG("status %u", status);
3482
3483 if (!status)
3484 return;
3485
3486 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003487 if (!cmd) {
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303488 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02003489 return;
3490 }
3491
3492 cmd->cmd_complete(cmd, mgmt_status(status));
3493 mgmt_pending_remove(cmd);
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303494}
3495
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003496static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003497 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003498{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003499 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02003500 struct mgmt_rp_pair_device rp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003501 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003502 u8 sec_level, auth_type;
3503 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003504 int err;
3505
3506 BT_DBG("");
3507
Szymon Jancf950a30e2013-01-18 12:48:07 +01003508 memset(&rp, 0, sizeof(rp));
3509 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3510 rp.addr.type = cp->addr.type;
3511
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003512 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003513 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3514 MGMT_STATUS_INVALID_PARAMS,
3515 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003516
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003517 if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003518 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3519 MGMT_STATUS_INVALID_PARAMS,
3520 &rp, sizeof(rp));
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003521
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003522 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003523
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003524 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003525 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3526 MGMT_STATUS_NOT_POWERED, &rp,
3527 sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003528 goto unlock;
3529 }
3530
Johan Hedberg55e76b32015-03-10 22:34:40 +02003531 if (hci_bdaddr_is_paired(hdev, &cp->addr.bdaddr, cp->addr.type)) {
3532 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3533 MGMT_STATUS_ALREADY_PAIRED, &rp,
3534 sizeof(rp));
3535 goto unlock;
3536 }
3537
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03003538 sec_level = BT_SECURITY_MEDIUM;
Mikel Astiz6fd6b912014-04-08 14:21:32 +02003539 auth_type = HCI_AT_DEDICATED_BONDING;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003540
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003541 if (cp->addr.type == BDADDR_BREDR) {
Andre Guedes04a6c582014-02-26 20:21:44 -03003542 conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
3543 auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003544 } else {
Johan Hedberg85813a72015-10-21 18:02:59 +03003545 u8 addr_type = le_addr_type(cp->addr.type);
Jakub Pawlowski5157b8a2015-10-16 10:07:54 +03003546 struct hci_conn_params *p;
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003547
Marcel Holtmann7c264b12014-06-30 12:34:40 +02003548 /* When pairing a new device, it is expected to remember
3549 * this device for future connections. Adding the connection
3550 * parameter information ahead of time allows tracking
3551 * of the slave preferred values and will speed up any
3552 * further connection establishment.
3553 *
3554 * If connection parameters already exist, then they
3555 * will be kept and this function does nothing.
3556 */
Jakub Pawlowski5157b8a2015-10-16 10:07:54 +03003557 p = hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);
3558
3559 if (p->auto_connect == HCI_AUTO_CONN_EXPLICIT)
3560 p->auto_connect = HCI_AUTO_CONN_DISABLED;
Marcel Holtmann7c264b12014-06-30 12:34:40 +02003561
Jakub Pawlowskifa142222015-08-07 20:22:56 +02003562 conn = hci_connect_le_scan(hdev, &cp->addr.bdaddr,
3563 addr_type, sec_level,
3564 HCI_LE_CONN_TIMEOUT,
3565 HCI_ROLE_MASTER);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003566 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003567
Ville Tervo30e76272011-02-22 16:10:53 -03003568 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02003569 int status;
3570
3571 if (PTR_ERR(conn) == -EBUSY)
3572 status = MGMT_STATUS_BUSY;
Lukasz Rymanowskifaa81032015-02-11 12:31:42 +01003573 else if (PTR_ERR(conn) == -EOPNOTSUPP)
3574 status = MGMT_STATUS_NOT_SUPPORTED;
3575 else if (PTR_ERR(conn) == -ECONNREFUSED)
3576 status = MGMT_STATUS_REJECTED;
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02003577 else
3578 status = MGMT_STATUS_CONNECT_FAILED;
3579
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003580 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3581 status, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003582 goto unlock;
3583 }
3584
3585 if (conn->connect_cfm_cb) {
David Herrmann76a68ba2013-04-06 20:28:37 +02003586 hci_conn_drop(conn);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003587 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3588 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003589 goto unlock;
3590 }
3591
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003592 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003593 if (!cmd) {
3594 err = -ENOMEM;
David Herrmann76a68ba2013-04-06 20:28:37 +02003595 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003596 goto unlock;
3597 }
3598
Johan Hedberg04ab2742014-12-05 13:36:04 +02003599 cmd->cmd_complete = pairing_complete;
3600
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003601 /* For LE, just connecting isn't a proof that the pairing finished */
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003602 if (cp->addr.type == BDADDR_BREDR) {
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003603 conn->connect_cfm_cb = pairing_complete_cb;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003604 conn->security_cfm_cb = pairing_complete_cb;
3605 conn->disconn_cfm_cb = pairing_complete_cb;
3606 } else {
3607 conn->connect_cfm_cb = le_pairing_complete_cb;
3608 conn->security_cfm_cb = le_pairing_complete_cb;
3609 conn->disconn_cfm_cb = le_pairing_complete_cb;
3610 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003611
Johan Hedberge9a416b2011-02-19 12:05:56 -03003612 conn->io_capability = cp->io_cap;
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03003613 cmd->user_data = hci_conn_get(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003614
Johan Hedberg6f78fd42014-07-30 08:35:48 +03003615 if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
Johan Hedberga511b352014-12-11 21:45:45 +02003616 hci_conn_security(conn, sec_level, auth_type, true)) {
3617 cmd->cmd_complete(cmd, 0);
3618 mgmt_pending_remove(cmd);
3619 }
Johan Hedberge9a416b2011-02-19 12:05:56 -03003620
3621 err = 0;
3622
3623unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003624 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003625 return err;
3626}
3627
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003628static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3629 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02003630{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003631 struct mgmt_addr_info *addr = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003632 struct mgmt_pending_cmd *cmd;
Johan Hedberg28424702012-02-02 04:02:29 +02003633 struct hci_conn *conn;
3634 int err;
3635
3636 BT_DBG("");
3637
Johan Hedberg28424702012-02-02 04:02:29 +02003638 hci_dev_lock(hdev);
3639
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003640 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003641 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3642 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003643 goto unlock;
3644 }
3645
Johan Hedberg333ae952015-03-17 13:48:47 +02003646 cmd = pending_find(MGMT_OP_PAIR_DEVICE, hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003647 if (!cmd) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003648 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3649 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003650 goto unlock;
3651 }
3652
3653 conn = cmd->user_data;
3654
3655 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003656 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3657 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003658 goto unlock;
3659 }
3660
Johan Hedberga511b352014-12-11 21:45:45 +02003661 cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
3662 mgmt_pending_remove(cmd);
Johan Hedberg28424702012-02-02 04:02:29 +02003663
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003664 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
3665 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02003666unlock:
3667 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003668 return err;
3669}
3670
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003671static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Johan Hedberg1707c602013-03-15 17:07:15 -05003672 struct mgmt_addr_info *addr, u16 mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003673 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03003674{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003675 struct mgmt_pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08003676 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003677 int err;
3678
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003679 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02003680
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003681 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003682 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3683 MGMT_STATUS_NOT_POWERED, addr,
3684 sizeof(*addr));
Brian Gix0df4c182011-11-16 13:53:13 -08003685 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003686 }
3687
Johan Hedberg1707c602013-03-15 17:07:15 -05003688 if (addr->type == BDADDR_BREDR)
3689 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
Johan Hedberg272d90d2012-02-09 15:26:12 +02003690 else
Johan Hedberg9d4c1cc2015-10-21 18:03:01 +03003691 conn = hci_conn_hash_lookup_le(hdev, &addr->bdaddr,
3692 le_addr_type(addr->type));
Brian Gix47c15e22011-11-16 13:53:14 -08003693
Johan Hedberg272d90d2012-02-09 15:26:12 +02003694 if (!conn) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003695 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3696 MGMT_STATUS_NOT_CONNECTED, addr,
3697 sizeof(*addr));
Johan Hedberg272d90d2012-02-09 15:26:12 +02003698 goto done;
3699 }
3700
Johan Hedberg1707c602013-03-15 17:07:15 -05003701 if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
Brian Gix5fe57d92011-12-21 16:12:13 -08003702 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix5fe57d92011-12-21 16:12:13 -08003703 if (!err)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003704 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3705 MGMT_STATUS_SUCCESS, addr,
3706 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003707 else
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003708 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3709 MGMT_STATUS_FAILED, addr,
3710 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003711
Brian Gix47c15e22011-11-16 13:53:14 -08003712 goto done;
3713 }
3714
Johan Hedberg1707c602013-03-15 17:07:15 -05003715 cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
Johan Hedberga5c29682011-02-19 12:05:57 -03003716 if (!cmd) {
3717 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08003718 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003719 }
3720
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003721 cmd->cmd_complete = addr_cmd_complete;
3722
Brian Gix0df4c182011-11-16 13:53:13 -08003723 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08003724 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
3725 struct hci_cp_user_passkey_reply cp;
3726
Johan Hedberg1707c602013-03-15 17:07:15 -05003727 bacpy(&cp.bdaddr, &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003728 cp.passkey = passkey;
3729 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
3730 } else
Johan Hedberg1707c602013-03-15 17:07:15 -05003731 err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
3732 &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003733
Johan Hedberga664b5b2011-02-19 12:06:02 -03003734 if (err < 0)
3735 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003736
Brian Gix0df4c182011-11-16 13:53:13 -08003737done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003738 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003739 return err;
3740}
3741
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303742static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3743 void *data, u16 len)
3744{
3745 struct mgmt_cp_pin_code_neg_reply *cp = data;
3746
3747 BT_DBG("");
3748
Johan Hedberg1707c602013-03-15 17:07:15 -05003749 return user_pairing_resp(sk, hdev, &cp->addr,
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303750 MGMT_OP_PIN_CODE_NEG_REPLY,
3751 HCI_OP_PIN_CODE_NEG_REPLY, 0);
3752}
3753
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003754static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3755 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003756{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003757 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003758
3759 BT_DBG("");
3760
3761 if (len != sizeof(*cp))
Johan Hedberga69e8372015-03-06 21:08:53 +02003762 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
3763 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08003764
Johan Hedberg1707c602013-03-15 17:07:15 -05003765 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003766 MGMT_OP_USER_CONFIRM_REPLY,
3767 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003768}
3769
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003770static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003771 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003772{
Johan Hedbergc9c26592011-12-15 00:47:41 +02003773 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003774
3775 BT_DBG("");
3776
Johan Hedberg1707c602013-03-15 17:07:15 -05003777 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003778 MGMT_OP_USER_CONFIRM_NEG_REPLY,
3779 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003780}
3781
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003782static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3783 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003784{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003785 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003786
3787 BT_DBG("");
3788
Johan Hedberg1707c602013-03-15 17:07:15 -05003789 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003790 MGMT_OP_USER_PASSKEY_REPLY,
3791 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08003792}
3793
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003794static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003795 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003796{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003797 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003798
3799 BT_DBG("");
3800
Johan Hedberg1707c602013-03-15 17:07:15 -05003801 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003802 MGMT_OP_USER_PASSKEY_NEG_REPLY,
3803 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08003804}
3805
Johan Hedberg13928972013-03-15 17:07:00 -05003806static void update_name(struct hci_request *req)
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003807{
Johan Hedberg13928972013-03-15 17:07:00 -05003808 struct hci_dev *hdev = req->hdev;
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003809 struct hci_cp_write_local_name cp;
3810
Johan Hedberg13928972013-03-15 17:07:00 -05003811 memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003812
Johan Hedberg890ea892013-03-15 17:06:52 -05003813 hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003814}
3815
Marcel Holtmann1904a852015-01-11 13:50:44 -08003816static void set_name_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg13928972013-03-15 17:07:00 -05003817{
3818 struct mgmt_cp_set_local_name *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003819 struct mgmt_pending_cmd *cmd;
Johan Hedberg13928972013-03-15 17:07:00 -05003820
3821 BT_DBG("status 0x%02x", status);
3822
3823 hci_dev_lock(hdev);
3824
Johan Hedberg333ae952015-03-17 13:48:47 +02003825 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05003826 if (!cmd)
3827 goto unlock;
3828
3829 cp = cmd->param;
3830
3831 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02003832 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3833 mgmt_status(status));
Johan Hedberg13928972013-03-15 17:07:00 -05003834 else
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003835 mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3836 cp, sizeof(*cp));
Johan Hedberg13928972013-03-15 17:07:00 -05003837
3838 mgmt_pending_remove(cmd);
3839
3840unlock:
3841 hci_dev_unlock(hdev);
3842}
3843
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003844static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003845 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003846{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003847 struct mgmt_cp_set_local_name *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003848 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05003849 struct hci_request req;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003850 int err;
3851
3852 BT_DBG("");
3853
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003854 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003855
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003856 /* If the old values are the same as the new ones just return a
3857 * direct command complete event.
3858 */
3859 if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
3860 !memcmp(hdev->short_name, cp->short_name,
3861 sizeof(hdev->short_name))) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003862 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3863 data, len);
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003864 goto failed;
3865 }
3866
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003867 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003868
Johan Hedbergb5235a62012-02-21 14:32:24 +02003869 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003870 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003871
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003872 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3873 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003874 if (err < 0)
3875 goto failed;
3876
Marcel Holtmannf6b77122015-03-14 19:28:05 -07003877 err = mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev,
3878 data, len, sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003879
Johan Hedbergb5235a62012-02-21 14:32:24 +02003880 goto failed;
3881 }
3882
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003883 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003884 if (!cmd) {
3885 err = -ENOMEM;
3886 goto failed;
3887 }
3888
Johan Hedberg13928972013-03-15 17:07:00 -05003889 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3890
Johan Hedberg890ea892013-03-15 17:06:52 -05003891 hci_req_init(&req, hdev);
Johan Hedberg3f985052013-03-15 17:07:02 -05003892
3893 if (lmp_bredr_capable(hdev)) {
3894 update_name(&req);
3895 update_eir(&req);
3896 }
3897
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003898 /* The name is stored in the scan response data and so
3899 * no need to udpate the advertising data here.
3900 */
Johan Hedberg3f985052013-03-15 17:07:02 -05003901 if (lmp_le_capable(hdev))
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003902 update_scan_rsp_data(&req);
Johan Hedberg3f985052013-03-15 17:07:02 -05003903
Johan Hedberg13928972013-03-15 17:07:00 -05003904 err = hci_req_run(&req, set_name_complete);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003905 if (err < 0)
3906 mgmt_pending_remove(cmd);
3907
3908failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003909 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003910 return err;
3911}
3912
Johan Hedberg1b9441f2015-04-02 13:41:13 +03003913static void read_local_oob_data_complete(struct hci_dev *hdev, u8 status,
3914 u16 opcode, struct sk_buff *skb)
3915{
3916 struct mgmt_rp_read_local_oob_data mgmt_rp;
3917 size_t rp_size = sizeof(mgmt_rp);
3918 struct mgmt_pending_cmd *cmd;
3919
3920 BT_DBG("%s status %u", hdev->name, status);
3921
3922 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
3923 if (!cmd)
3924 return;
3925
3926 if (status || !skb) {
3927 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3928 status ? mgmt_status(status) : MGMT_STATUS_FAILED);
3929 goto remove;
3930 }
3931
3932 memset(&mgmt_rp, 0, sizeof(mgmt_rp));
3933
3934 if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
3935 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
3936
3937 if (skb->len < sizeof(*rp)) {
3938 mgmt_cmd_status(cmd->sk, hdev->id,
3939 MGMT_OP_READ_LOCAL_OOB_DATA,
3940 MGMT_STATUS_FAILED);
3941 goto remove;
3942 }
3943
3944 memcpy(mgmt_rp.hash192, rp->hash, sizeof(rp->hash));
3945 memcpy(mgmt_rp.rand192, rp->rand, sizeof(rp->rand));
3946
3947 rp_size -= sizeof(mgmt_rp.hash256) + sizeof(mgmt_rp.rand256);
3948 } else {
3949 struct hci_rp_read_local_oob_ext_data *rp = (void *) skb->data;
3950
3951 if (skb->len < sizeof(*rp)) {
3952 mgmt_cmd_status(cmd->sk, hdev->id,
3953 MGMT_OP_READ_LOCAL_OOB_DATA,
3954 MGMT_STATUS_FAILED);
3955 goto remove;
3956 }
3957
3958 memcpy(mgmt_rp.hash192, rp->hash192, sizeof(rp->hash192));
3959 memcpy(mgmt_rp.rand192, rp->rand192, sizeof(rp->rand192));
3960
3961 memcpy(mgmt_rp.hash256, rp->hash256, sizeof(rp->hash256));
3962 memcpy(mgmt_rp.rand256, rp->rand256, sizeof(rp->rand256));
3963 }
3964
3965 mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3966 MGMT_STATUS_SUCCESS, &mgmt_rp, rp_size);
3967
3968remove:
3969 mgmt_pending_remove(cmd);
3970}
3971
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003972static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003973 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01003974{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003975 struct mgmt_pending_cmd *cmd;
Johan Hedberg1b9441f2015-04-02 13:41:13 +03003976 struct hci_request req;
Szymon Jancc35938b2011-03-22 13:12:21 +01003977 int err;
3978
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003979 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01003980
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003981 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003982
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003983 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003984 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3985 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003986 goto unlock;
3987 }
3988
Andre Guedes9a1a1992012-07-24 15:03:48 -03003989 if (!lmp_ssp_capable(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003990 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3991 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003992 goto unlock;
3993 }
3994
Johan Hedberg333ae952015-03-17 13:48:47 +02003995 if (pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003996 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3997 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01003998 goto unlock;
3999 }
4000
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004001 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01004002 if (!cmd) {
4003 err = -ENOMEM;
4004 goto unlock;
4005 }
4006
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004007 hci_req_init(&req, hdev);
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08004008
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004009 if (bredr_sc_enabled(hdev))
4010 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
4011 else
4012 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
4013
4014 err = hci_req_run_skb(&req, read_local_oob_data_complete);
Szymon Jancc35938b2011-03-22 13:12:21 +01004015 if (err < 0)
4016 mgmt_pending_remove(cmd);
4017
4018unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004019 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01004020 return err;
4021}
4022
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004023static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004024 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01004025{
Johan Hedberg5d57e792015-01-23 10:10:38 +02004026 struct mgmt_addr_info *addr = data;
Szymon Janc2763eda2011-03-22 13:12:22 +01004027 int err;
4028
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004029 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01004030
Johan Hedberg5d57e792015-01-23 10:10:38 +02004031 if (!bdaddr_type_is_valid(addr->type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004032 return mgmt_cmd_complete(sk, hdev->id,
4033 MGMT_OP_ADD_REMOTE_OOB_DATA,
4034 MGMT_STATUS_INVALID_PARAMS,
4035 addr, sizeof(*addr));
Johan Hedberg5d57e792015-01-23 10:10:38 +02004036
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004037 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004038
Marcel Holtmannec109112014-01-10 02:07:30 -08004039 if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
4040 struct mgmt_cp_add_remote_oob_data *cp = data;
4041 u8 status;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004042
Johan Hedbergc19a4952014-11-17 20:52:19 +02004043 if (cp->addr.type != BDADDR_BREDR) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004044 err = mgmt_cmd_complete(sk, hdev->id,
4045 MGMT_OP_ADD_REMOTE_OOB_DATA,
4046 MGMT_STATUS_INVALID_PARAMS,
4047 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02004048 goto unlock;
4049 }
4050
Marcel Holtmannec109112014-01-10 02:07:30 -08004051 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg6928a922014-10-26 20:46:09 +01004052 cp->addr.type, cp->hash,
4053 cp->rand, NULL, NULL);
Marcel Holtmannec109112014-01-10 02:07:30 -08004054 if (err < 0)
4055 status = MGMT_STATUS_FAILED;
4056 else
4057 status = MGMT_STATUS_SUCCESS;
4058
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004059 err = mgmt_cmd_complete(sk, hdev->id,
4060 MGMT_OP_ADD_REMOTE_OOB_DATA, status,
4061 &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08004062 } else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
4063 struct mgmt_cp_add_remote_oob_ext_data *cp = data;
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004064 u8 *rand192, *hash192, *rand256, *hash256;
Marcel Holtmannec109112014-01-10 02:07:30 -08004065 u8 status;
4066
Johan Hedberg86df9202014-10-26 20:52:27 +01004067 if (bdaddr_type_is_le(cp->addr.type)) {
Johan Hedbergd25b78e2015-01-27 12:55:52 +02004068 /* Enforce zero-valued 192-bit parameters as
4069 * long as legacy SMP OOB isn't implemented.
4070 */
4071 if (memcmp(cp->rand192, ZERO_KEY, 16) ||
4072 memcmp(cp->hash192, ZERO_KEY, 16)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004073 err = mgmt_cmd_complete(sk, hdev->id,
4074 MGMT_OP_ADD_REMOTE_OOB_DATA,
4075 MGMT_STATUS_INVALID_PARAMS,
4076 addr, sizeof(*addr));
Johan Hedbergd25b78e2015-01-27 12:55:52 +02004077 goto unlock;
4078 }
4079
Johan Hedberg86df9202014-10-26 20:52:27 +01004080 rand192 = NULL;
4081 hash192 = NULL;
4082 } else {
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004083 /* In case one of the P-192 values is set to zero,
4084 * then just disable OOB data for P-192.
4085 */
4086 if (!memcmp(cp->rand192, ZERO_KEY, 16) ||
4087 !memcmp(cp->hash192, ZERO_KEY, 16)) {
4088 rand192 = NULL;
4089 hash192 = NULL;
4090 } else {
4091 rand192 = cp->rand192;
4092 hash192 = cp->hash192;
4093 }
4094 }
4095
4096 /* In case one of the P-256 values is set to zero, then just
4097 * disable OOB data for P-256.
4098 */
4099 if (!memcmp(cp->rand256, ZERO_KEY, 16) ||
4100 !memcmp(cp->hash256, ZERO_KEY, 16)) {
4101 rand256 = NULL;
4102 hash256 = NULL;
4103 } else {
4104 rand256 = cp->rand256;
4105 hash256 = cp->hash256;
Johan Hedberg86df9202014-10-26 20:52:27 +01004106 }
4107
Johan Hedberg81328d5c2014-10-26 20:33:47 +01004108 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg86df9202014-10-26 20:52:27 +01004109 cp->addr.type, hash192, rand192,
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004110 hash256, rand256);
Marcel Holtmannec109112014-01-10 02:07:30 -08004111 if (err < 0)
4112 status = MGMT_STATUS_FAILED;
4113 else
4114 status = MGMT_STATUS_SUCCESS;
4115
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004116 err = mgmt_cmd_complete(sk, hdev->id,
4117 MGMT_OP_ADD_REMOTE_OOB_DATA,
4118 status, &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08004119 } else {
4120 BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
Johan Hedberga69e8372015-03-06 21:08:53 +02004121 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
4122 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannec109112014-01-10 02:07:30 -08004123 }
Szymon Janc2763eda2011-03-22 13:12:22 +01004124
Johan Hedbergc19a4952014-11-17 20:52:19 +02004125unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004126 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004127 return err;
4128}
4129
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004130static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004131 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01004132{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004133 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004134 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01004135 int err;
4136
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004137 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01004138
Johan Hedbergc19a4952014-11-17 20:52:19 +02004139 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004140 return mgmt_cmd_complete(sk, hdev->id,
4141 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
4142 MGMT_STATUS_INVALID_PARAMS,
4143 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02004144
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004145 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004146
Johan Hedbergeedbd582014-11-15 09:34:23 +02004147 if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
4148 hci_remote_oob_data_clear(hdev);
4149 status = MGMT_STATUS_SUCCESS;
4150 goto done;
4151 }
4152
Johan Hedberg6928a922014-10-26 20:46:09 +01004153 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
Szymon Janc2763eda2011-03-22 13:12:22 +01004154 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004155 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01004156 else
Szymon Janca6785be2012-12-13 15:11:21 +01004157 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004158
Johan Hedbergeedbd582014-11-15 09:34:23 +02004159done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004160 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
4161 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01004162
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004163 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004164 return err;
4165}
4166
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004167static bool trigger_bredr_inquiry(struct hci_request *req, u8 *status)
4168{
4169 struct hci_dev *hdev = req->hdev;
4170 struct hci_cp_inquiry cp;
4171 /* General inquiry access code (GIAC) */
4172 u8 lap[3] = { 0x33, 0x8b, 0x9e };
4173
4174 *status = mgmt_bredr_support(hdev);
4175 if (*status)
4176 return false;
4177
4178 if (hci_dev_test_flag(hdev, HCI_INQUIRY)) {
4179 *status = MGMT_STATUS_BUSY;
4180 return false;
4181 }
4182
4183 hci_inquiry_cache_flush(hdev);
4184
4185 memset(&cp, 0, sizeof(cp));
4186 memcpy(&cp.lap, lap, sizeof(cp.lap));
4187 cp.length = DISCOV_BREDR_INQUIRY_LEN;
4188
4189 hci_req_add(req, HCI_OP_INQUIRY, sizeof(cp), &cp);
4190
4191 return true;
4192}
4193
4194static bool trigger_le_scan(struct hci_request *req, u16 interval, u8 *status)
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004195{
Marcel Holtmann80190442014-12-04 11:36:36 +01004196 struct hci_dev *hdev = req->hdev;
4197 struct hci_cp_le_set_scan_param param_cp;
4198 struct hci_cp_le_set_scan_enable enable_cp;
Marcel Holtmann80190442014-12-04 11:36:36 +01004199 u8 own_addr_type;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004200 int err;
4201
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004202 *status = mgmt_le_support(hdev);
4203 if (*status)
4204 return false;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004205
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004206 if (hci_dev_test_flag(hdev, HCI_LE_ADV)) {
4207 /* Don't let discovery abort an outgoing connection attempt
4208 * that's using directed advertising.
4209 */
Jakub Pawlowskie7d9ab72015-08-07 20:22:52 +02004210 if (hci_lookup_le_connect(hdev)) {
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004211 *status = MGMT_STATUS_REJECTED;
Marcel Holtmann80190442014-12-04 11:36:36 +01004212 return false;
4213 }
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004214
Florian Grandel9d5fc2f2015-06-18 03:16:50 +02004215 cancel_adv_timeout(hdev);
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004216 disable_advertising(req);
4217 }
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004218
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004219 /* If controller is scanning, it means the background scanning is
4220 * running. Thus, we should temporarily stop it in order to set the
4221 * discovery scanning parameters.
4222 */
4223 if (hci_dev_test_flag(hdev, HCI_LE_SCAN))
4224 hci_req_add_le_scan_disable(req);
4225
4226 /* All active scans will be done with either a resolvable private
4227 * address (when privacy feature has been enabled) or non-resolvable
4228 * private address.
4229 */
4230 err = hci_update_random_address(req, true, &own_addr_type);
4231 if (err < 0) {
4232 *status = MGMT_STATUS_FAILED;
4233 return false;
4234 }
4235
4236 memset(&param_cp, 0, sizeof(param_cp));
4237 param_cp.type = LE_SCAN_ACTIVE;
4238 param_cp.interval = cpu_to_le16(interval);
4239 param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
4240 param_cp.own_address_type = own_addr_type;
4241
4242 hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
4243 &param_cp);
4244
4245 memset(&enable_cp, 0, sizeof(enable_cp));
4246 enable_cp.enable = LE_SCAN_ENABLE;
4247 enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
4248
4249 hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
4250 &enable_cp);
4251
4252 return true;
4253}
4254
4255static bool trigger_discovery(struct hci_request *req, u8 *status)
4256{
4257 struct hci_dev *hdev = req->hdev;
4258
4259 switch (hdev->discovery.type) {
4260 case DISCOV_TYPE_BREDR:
4261 if (!trigger_bredr_inquiry(req, status))
4262 return false;
Marcel Holtmann80190442014-12-04 11:36:36 +01004263 break;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004264
Marcel Holtmann80190442014-12-04 11:36:36 +01004265 case DISCOV_TYPE_INTERLEAVED:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07004266 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY,
4267 &hdev->quirks)) {
4268 /* During simultaneous discovery, we double LE scan
4269 * interval. We must leave some time for the controller
4270 * to do BR/EDR inquiry.
4271 */
4272 if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT * 2,
4273 status))
4274 return false;
4275
4276 if (!trigger_bredr_inquiry(req, status))
4277 return false;
4278
4279 return true;
4280 }
4281
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004282 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Marcel Holtmann80190442014-12-04 11:36:36 +01004283 *status = MGMT_STATUS_NOT_SUPPORTED;
4284 return false;
4285 }
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004286 /* fall through */
Marcel Holtmann80190442014-12-04 11:36:36 +01004287
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004288 case DISCOV_TYPE_LE:
4289 if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT, status))
Marcel Holtmann80190442014-12-04 11:36:36 +01004290 return false;
Marcel Holtmann80190442014-12-04 11:36:36 +01004291 break;
4292
4293 default:
4294 *status = MGMT_STATUS_INVALID_PARAMS;
4295 return false;
4296 }
4297
4298 return true;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004299}
4300
Marcel Holtmann1904a852015-01-11 13:50:44 -08004301static void start_discovery_complete(struct hci_dev *hdev, u8 status,
4302 u16 opcode)
Andre Guedes7c307722013-04-30 15:29:28 -03004303{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004304 struct mgmt_pending_cmd *cmd;
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004305 unsigned long timeout;
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004306
Andre Guedes7c307722013-04-30 15:29:28 -03004307 BT_DBG("status %d", status);
4308
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004309 hci_dev_lock(hdev);
4310
Johan Hedberg333ae952015-03-17 13:48:47 +02004311 cmd = pending_find(MGMT_OP_START_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004312 if (!cmd)
Johan Hedberg333ae952015-03-17 13:48:47 +02004313 cmd = pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004314
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004315 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02004316 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004317 mgmt_pending_remove(cmd);
Andre Guedes7c307722013-04-30 15:29:28 -03004318 }
4319
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004320 if (status) {
4321 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4322 goto unlock;
4323 }
4324
Andre Guedes7c307722013-04-30 15:29:28 -03004325 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Andre Guedes7c307722013-04-30 15:29:28 -03004326
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004327 /* If the scan involves LE scan, pick proper timeout to schedule
4328 * hdev->le_scan_disable that will stop it.
4329 */
Andre Guedes7c307722013-04-30 15:29:28 -03004330 switch (hdev->discovery.type) {
4331 case DISCOV_TYPE_LE:
Lukasz Rymanowski3d5a76f2014-03-27 20:55:21 +01004332 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
Andre Guedes7c307722013-04-30 15:29:28 -03004333 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004334 case DISCOV_TYPE_INTERLEAVED:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07004335 /* When running simultaneous discovery, the LE scanning time
4336 * should occupy the whole discovery time sine BR/EDR inquiry
4337 * and LE scanning are scheduled by the controller.
4338 *
4339 * For interleaving discovery in comparison, BR/EDR inquiry
4340 * and LE scanning are done sequentially with separate
4341 * timeouts.
4342 */
4343 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks))
4344 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
4345 else
4346 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
Andre Guedes7c307722013-04-30 15:29:28 -03004347 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004348 case DISCOV_TYPE_BREDR:
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004349 timeout = 0;
Andre Guedes7c307722013-04-30 15:29:28 -03004350 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004351 default:
4352 BT_ERR("Invalid discovery type %d", hdev->discovery.type);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004353 timeout = 0;
4354 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004355 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004356
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004357 if (timeout) {
4358 /* When service discovery is used and the controller has
4359 * a strict duplicate filter, it is important to remember
4360 * the start and duration of the scan. This is required
4361 * for restarting scanning during the discovery phase.
4362 */
4363 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER,
4364 &hdev->quirks) &&
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08004365 hdev->discovery.result_filtering) {
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004366 hdev->discovery.scan_start = jiffies;
4367 hdev->discovery.scan_duration = timeout;
4368 }
4369
Johan Hedberg7c1fbed2015-11-11 08:11:23 +02004370 queue_delayed_work(hdev->req_workqueue,
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004371 &hdev->le_scan_disable, timeout);
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004372 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004373
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004374unlock:
4375 hci_dev_unlock(hdev);
Andre Guedes7c307722013-04-30 15:29:28 -03004376}
4377
Johan Hedberg591752a2015-11-11 08:11:24 +02004378static bool discovery_type_is_valid(struct hci_dev *hdev, uint8_t type,
4379 uint8_t *mgmt_status)
4380{
4381 switch (type) {
4382 case DISCOV_TYPE_LE:
4383 *mgmt_status = mgmt_le_support(hdev);
4384 if (*mgmt_status)
4385 return false;
4386 break;
4387 case DISCOV_TYPE_INTERLEAVED:
4388 *mgmt_status = mgmt_le_support(hdev);
4389 if (*mgmt_status)
4390 return false;
4391 /* Intentional fall-through */
4392 case DISCOV_TYPE_BREDR:
4393 *mgmt_status = mgmt_bredr_support(hdev);
4394 if (*mgmt_status)
4395 return false;
4396 break;
4397 default:
4398 *mgmt_status = MGMT_STATUS_INVALID_PARAMS;
4399 return false;
4400 }
4401
4402 return true;
4403}
4404
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004405static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004406 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04004407{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004408 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004409 struct mgmt_pending_cmd *cmd;
Andre Guedes7c307722013-04-30 15:29:28 -03004410 struct hci_request req;
Marcel Holtmann80190442014-12-04 11:36:36 +01004411 u8 status;
Johan Hedberg14a53662011-04-27 10:29:56 -04004412 int err;
4413
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004414 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04004415
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004416 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004417
Johan Hedberg4b34ee782012-02-21 14:13:02 +02004418 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004419 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4420 MGMT_STATUS_NOT_POWERED,
4421 &cp->type, sizeof(cp->type));
Johan Hedbergbd2d1332011-11-07 23:13:37 +02004422 goto failed;
4423 }
4424
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004425 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004426 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004427 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4428 MGMT_STATUS_BUSY, &cp->type,
4429 sizeof(cp->type));
Andre Guedes642be6c2012-03-21 00:03:37 -03004430 goto failed;
4431 }
4432
Johan Hedberg591752a2015-11-11 08:11:24 +02004433 if (!discovery_type_is_valid(hdev, cp->type, &status)) {
4434 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4435 status, &cp->type, sizeof(cp->type));
4436 goto failed;
4437 }
4438
Johan Hedberg2922a942014-12-05 13:36:06 +02004439 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04004440 if (!cmd) {
4441 err = -ENOMEM;
4442 goto failed;
4443 }
4444
Johan Hedberg2922a942014-12-05 13:36:06 +02004445 cmd->cmd_complete = generic_cmd_complete;
4446
Marcel Holtmann22078802014-12-05 11:45:22 +01004447 /* Clear the discovery filter first to free any previously
4448 * allocated memory for the UUID list.
4449 */
4450 hci_discovery_filter_clear(hdev);
4451
Andre Guedes4aab14e2012-02-17 20:39:36 -03004452 hdev->discovery.type = cp->type;
Marcel Holtmannda25cf62014-12-05 13:03:35 +01004453 hdev->discovery.report_invalid_rssi = false;
Andre Guedes4aab14e2012-02-17 20:39:36 -03004454
Andre Guedes7c307722013-04-30 15:29:28 -03004455 hci_req_init(&req, hdev);
4456
Marcel Holtmann80190442014-12-04 11:36:36 +01004457 if (!trigger_discovery(&req, &status)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004458 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4459 status, &cp->type, sizeof(cp->type));
Johan Hedberg04106752013-01-10 14:54:09 +02004460 mgmt_pending_remove(cmd);
4461 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03004462 }
Andre Guedes3fd24152012-02-03 17:48:01 -03004463
Andre Guedes7c307722013-04-30 15:29:28 -03004464 err = hci_req_run(&req, start_discovery_complete);
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004465 if (err < 0) {
Johan Hedberg14a53662011-04-27 10:29:56 -04004466 mgmt_pending_remove(cmd);
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004467 goto failed;
4468 }
4469
4470 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04004471
4472failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004473 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004474 return err;
4475}
4476
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004477static int service_discovery_cmd_complete(struct mgmt_pending_cmd *cmd,
4478 u8 status)
Andre Guedes1183fdc2013-04-30 15:29:35 -03004479{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004480 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
4481 cmd->param, 1);
Johan Hedberg2922a942014-12-05 13:36:06 +02004482}
4483
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004484static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
4485 void *data, u16 len)
4486{
4487 struct mgmt_cp_start_service_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004488 struct mgmt_pending_cmd *cmd;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004489 struct hci_request req;
4490 const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
4491 u16 uuid_count, expected_len;
4492 u8 status;
Andre Guedes1183fdc2013-04-30 15:29:35 -03004493 int err;
4494
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004495 BT_DBG("%s", hdev->name);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004496
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004497 hci_dev_lock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004498
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004499 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004500 err = mgmt_cmd_complete(sk, hdev->id,
4501 MGMT_OP_START_SERVICE_DISCOVERY,
4502 MGMT_STATUS_NOT_POWERED,
4503 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004504 goto failed;
4505 }
4506
4507 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004508 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004509 err = mgmt_cmd_complete(sk, hdev->id,
4510 MGMT_OP_START_SERVICE_DISCOVERY,
4511 MGMT_STATUS_BUSY, &cp->type,
4512 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004513 goto failed;
4514 }
4515
4516 uuid_count = __le16_to_cpu(cp->uuid_count);
4517 if (uuid_count > max_uuid_count) {
4518 BT_ERR("service_discovery: too big uuid_count value %u",
4519 uuid_count);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004520 err = mgmt_cmd_complete(sk, hdev->id,
4521 MGMT_OP_START_SERVICE_DISCOVERY,
4522 MGMT_STATUS_INVALID_PARAMS, &cp->type,
4523 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004524 goto failed;
4525 }
4526
4527 expected_len = sizeof(*cp) + uuid_count * 16;
4528 if (expected_len != len) {
4529 BT_ERR("service_discovery: expected %u bytes, got %u bytes",
4530 expected_len, len);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004531 err = mgmt_cmd_complete(sk, hdev->id,
4532 MGMT_OP_START_SERVICE_DISCOVERY,
4533 MGMT_STATUS_INVALID_PARAMS, &cp->type,
4534 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004535 goto failed;
4536 }
4537
Johan Hedberg591752a2015-11-11 08:11:24 +02004538 if (!discovery_type_is_valid(hdev, cp->type, &status)) {
4539 err = mgmt_cmd_complete(sk, hdev->id,
4540 MGMT_OP_START_SERVICE_DISCOVERY,
4541 status, &cp->type, sizeof(cp->type));
4542 goto failed;
4543 }
4544
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004545 cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
Johan Hedberg2922a942014-12-05 13:36:06 +02004546 hdev, data, len);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004547 if (!cmd) {
4548 err = -ENOMEM;
4549 goto failed;
4550 }
4551
Johan Hedberg2922a942014-12-05 13:36:06 +02004552 cmd->cmd_complete = service_discovery_cmd_complete;
4553
Marcel Holtmann22078802014-12-05 11:45:22 +01004554 /* Clear the discovery filter first to free any previously
4555 * allocated memory for the UUID list.
4556 */
4557 hci_discovery_filter_clear(hdev);
4558
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08004559 hdev->discovery.result_filtering = true;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004560 hdev->discovery.type = cp->type;
4561 hdev->discovery.rssi = cp->rssi;
4562 hdev->discovery.uuid_count = uuid_count;
4563
4564 if (uuid_count > 0) {
4565 hdev->discovery.uuids = kmemdup(cp->uuids, uuid_count * 16,
4566 GFP_KERNEL);
4567 if (!hdev->discovery.uuids) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004568 err = mgmt_cmd_complete(sk, hdev->id,
4569 MGMT_OP_START_SERVICE_DISCOVERY,
4570 MGMT_STATUS_FAILED,
4571 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004572 mgmt_pending_remove(cmd);
4573 goto failed;
4574 }
4575 }
4576
4577 hci_req_init(&req, hdev);
4578
4579 if (!trigger_discovery(&req, &status)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004580 err = mgmt_cmd_complete(sk, hdev->id,
4581 MGMT_OP_START_SERVICE_DISCOVERY,
4582 status, &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004583 mgmt_pending_remove(cmd);
4584 goto failed;
4585 }
4586
4587 err = hci_req_run(&req, start_discovery_complete);
4588 if (err < 0) {
4589 mgmt_pending_remove(cmd);
4590 goto failed;
4591 }
4592
4593 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4594
4595failed:
4596 hci_dev_unlock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004597 return err;
4598}
4599
Marcel Holtmann1904a852015-01-11 13:50:44 -08004600static void stop_discovery_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Andre Guedes0e05bba2013-04-30 15:29:33 -03004601{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004602 struct mgmt_pending_cmd *cmd;
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004603
Andre Guedes0e05bba2013-04-30 15:29:33 -03004604 BT_DBG("status %d", status);
4605
4606 hci_dev_lock(hdev);
4607
Johan Hedberg333ae952015-03-17 13:48:47 +02004608 cmd = pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004609 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02004610 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004611 mgmt_pending_remove(cmd);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004612 }
4613
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004614 if (!status)
4615 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004616
Andre Guedes0e05bba2013-04-30 15:29:33 -03004617 hci_dev_unlock(hdev);
4618}
4619
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004620static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004621 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04004622{
Johan Hedbergd9306502012-02-20 23:25:18 +02004623 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004624 struct mgmt_pending_cmd *cmd;
Andre Guedes0e05bba2013-04-30 15:29:33 -03004625 struct hci_request req;
Johan Hedberg14a53662011-04-27 10:29:56 -04004626 int err;
4627
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004628 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04004629
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004630 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004631
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004632 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004633 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
4634 MGMT_STATUS_REJECTED, &mgmt_cp->type,
4635 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02004636 goto unlock;
4637 }
4638
4639 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004640 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
4641 MGMT_STATUS_INVALID_PARAMS,
4642 &mgmt_cp->type, sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004643 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02004644 }
4645
Johan Hedberg2922a942014-12-05 13:36:06 +02004646 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04004647 if (!cmd) {
4648 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004649 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04004650 }
4651
Johan Hedberg2922a942014-12-05 13:36:06 +02004652 cmd->cmd_complete = generic_cmd_complete;
4653
Andre Guedes0e05bba2013-04-30 15:29:33 -03004654 hci_req_init(&req, hdev);
4655
Johan Hedberg21a60d32014-06-10 14:05:58 +03004656 hci_stop_discovery(&req);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004657
Johan Hedberg21a60d32014-06-10 14:05:58 +03004658 err = hci_req_run(&req, stop_discovery_complete);
4659 if (!err) {
4660 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004661 goto unlock;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004662 }
4663
Johan Hedberg21a60d32014-06-10 14:05:58 +03004664 mgmt_pending_remove(cmd);
4665
4666 /* If no HCI commands were sent we're done */
4667 if (err == -ENODATA) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004668 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
4669 &mgmt_cp->type, sizeof(mgmt_cp->type));
Johan Hedberg21a60d32014-06-10 14:05:58 +03004670 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4671 }
Johan Hedberg14a53662011-04-27 10:29:56 -04004672
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004673unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004674 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004675 return err;
4676}
4677
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004678static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004679 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02004680{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004681 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02004682 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02004683 int err;
4684
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004685 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004686
Johan Hedberg561aafb2012-01-04 13:31:59 +02004687 hci_dev_lock(hdev);
4688
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004689 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004690 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
4691 MGMT_STATUS_FAILED, &cp->addr,
4692 sizeof(cp->addr));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004693 goto failed;
4694 }
4695
Johan Hedberga198e7b2012-02-17 14:27:06 +02004696 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004697 if (!e) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004698 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
4699 MGMT_STATUS_INVALID_PARAMS, &cp->addr,
4700 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02004701 goto failed;
4702 }
4703
4704 if (cp->name_known) {
4705 e->name_state = NAME_KNOWN;
4706 list_del(&e->list);
4707 } else {
4708 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02004709 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004710 }
4711
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004712 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
4713 &cp->addr, sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02004714
4715failed:
4716 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004717 return err;
4718}
4719
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004720static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004721 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03004722{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004723 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004724 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03004725 int err;
4726
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004727 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03004728
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004729 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004730 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
4731 MGMT_STATUS_INVALID_PARAMS,
4732 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004733
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004734 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004735
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004736 err = hci_bdaddr_list_add(&hdev->blacklist, &cp->addr.bdaddr,
4737 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004738 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004739 status = MGMT_STATUS_FAILED;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004740 goto done;
4741 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004742
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004743 mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &cp->addr, sizeof(cp->addr),
4744 sk);
4745 status = MGMT_STATUS_SUCCESS;
4746
4747done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004748 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
4749 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03004750
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004751 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03004752
4753 return err;
4754}
4755
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004756static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004757 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03004758{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004759 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004760 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03004761 int err;
4762
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004763 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03004764
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004765 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004766 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
4767 MGMT_STATUS_INVALID_PARAMS,
4768 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004769
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004770 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004771
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004772 err = hci_bdaddr_list_del(&hdev->blacklist, &cp->addr.bdaddr,
4773 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004774 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004775 status = MGMT_STATUS_INVALID_PARAMS;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004776 goto done;
4777 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004778
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004779 mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &cp->addr, sizeof(cp->addr),
4780 sk);
4781 status = MGMT_STATUS_SUCCESS;
4782
4783done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004784 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
4785 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03004786
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004787 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03004788
4789 return err;
4790}
4791
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004792static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
4793 u16 len)
4794{
4795 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05004796 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004797 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01004798 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004799
4800 BT_DBG("%s", hdev->name);
4801
Szymon Jancc72d4b82012-03-16 16:02:57 +01004802 source = __le16_to_cpu(cp->source);
4803
4804 if (source > 0x0002)
Johan Hedberga69e8372015-03-06 21:08:53 +02004805 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
4806 MGMT_STATUS_INVALID_PARAMS);
Szymon Jancc72d4b82012-03-16 16:02:57 +01004807
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004808 hci_dev_lock(hdev);
4809
Szymon Jancc72d4b82012-03-16 16:02:57 +01004810 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004811 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
4812 hdev->devid_product = __le16_to_cpu(cp->product);
4813 hdev->devid_version = __le16_to_cpu(cp->version);
4814
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004815 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
4816 NULL, 0);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004817
Johan Hedberg890ea892013-03-15 17:06:52 -05004818 hci_req_init(&req, hdev);
4819 update_eir(&req);
4820 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004821
4822 hci_dev_unlock(hdev);
4823
4824 return err;
4825}
4826
Arman Uguray24b4f382015-03-23 15:57:12 -07004827static void enable_advertising_instance(struct hci_dev *hdev, u8 status,
4828 u16 opcode)
4829{
4830 BT_DBG("status %d", status);
4831}
4832
Marcel Holtmann1904a852015-01-11 13:50:44 -08004833static void set_advertising_complete(struct hci_dev *hdev, u8 status,
4834 u16 opcode)
Johan Hedberg4375f102013-09-25 13:26:10 +03004835{
4836 struct cmd_lookup match = { NULL, hdev };
Arman Uguray24b4f382015-03-23 15:57:12 -07004837 struct hci_request req;
Florian Grandel7816b822015-06-18 03:16:45 +02004838 u8 instance;
4839 struct adv_info *adv_instance;
4840 int err;
Johan Hedberg4375f102013-09-25 13:26:10 +03004841
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304842 hci_dev_lock(hdev);
4843
Johan Hedberg4375f102013-09-25 13:26:10 +03004844 if (status) {
4845 u8 mgmt_err = mgmt_status(status);
4846
4847 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
4848 cmd_status_rsp, &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304849 goto unlock;
Johan Hedberg4375f102013-09-25 13:26:10 +03004850 }
4851
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004852 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004853 hci_dev_set_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03004854 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004855 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03004856
Johan Hedberg4375f102013-09-25 13:26:10 +03004857 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
4858 &match);
4859
4860 new_settings(hdev, match.sk);
4861
4862 if (match.sk)
4863 sock_put(match.sk);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304864
Arman Uguray24b4f382015-03-23 15:57:12 -07004865 /* If "Set Advertising" was just disabled and instance advertising was
Florian Grandel7816b822015-06-18 03:16:45 +02004866 * set up earlier, then re-enable multi-instance advertising.
Arman Uguray24b4f382015-03-23 15:57:12 -07004867 */
4868 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
Florian Grandel7816b822015-06-18 03:16:45 +02004869 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) ||
4870 list_empty(&hdev->adv_instances))
Arman Uguray24b4f382015-03-23 15:57:12 -07004871 goto unlock;
4872
Florian Grandel7816b822015-06-18 03:16:45 +02004873 instance = hdev->cur_adv_instance;
4874 if (!instance) {
4875 adv_instance = list_first_entry_or_null(&hdev->adv_instances,
4876 struct adv_info, list);
4877 if (!adv_instance)
4878 goto unlock;
4879
4880 instance = adv_instance->instance;
4881 }
4882
Arman Uguray24b4f382015-03-23 15:57:12 -07004883 hci_req_init(&req, hdev);
4884
Florian Grandel7816b822015-06-18 03:16:45 +02004885 err = schedule_adv_instance(&req, instance, true);
Arman Uguray24b4f382015-03-23 15:57:12 -07004886
Florian Grandel7816b822015-06-18 03:16:45 +02004887 if (!err)
4888 err = hci_req_run(&req, enable_advertising_instance);
4889
4890 if (err)
Arman Uguray24b4f382015-03-23 15:57:12 -07004891 BT_ERR("Failed to re-configure advertising");
4892
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304893unlock:
4894 hci_dev_unlock(hdev);
Johan Hedberg4375f102013-09-25 13:26:10 +03004895}
4896
Marcel Holtmann21b51872013-10-10 09:47:53 -07004897static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
4898 u16 len)
Johan Hedberg4375f102013-09-25 13:26:10 +03004899{
4900 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004901 struct mgmt_pending_cmd *cmd;
Johan Hedberg4375f102013-09-25 13:26:10 +03004902 struct hci_request req;
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004903 u8 val, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03004904 int err;
4905
4906 BT_DBG("request for %s", hdev->name);
4907
Johan Hedberge6fe7982013-10-02 15:45:22 +03004908 status = mgmt_le_support(hdev);
4909 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02004910 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4911 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03004912
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004913 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02004914 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4915 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4375f102013-09-25 13:26:10 +03004916
4917 hci_dev_lock(hdev);
4918
4919 val = !!cp->val;
Johan Hedberg4375f102013-09-25 13:26:10 +03004920
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02004921 /* The following conditions are ones which mean that we should
4922 * not do any HCI communication but directly send a mgmt
4923 * response to user space (after toggling the flag if
4924 * necessary).
4925 */
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004926 if (!hdev_is_powered(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004927 (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
4928 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
Johan Hedberge8bb6b92014-07-08 15:07:53 +03004929 hci_conn_num(hdev, LE_LINK) > 0 ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004930 (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Johan Hedberge8bb6b92014-07-08 15:07:53 +03004931 hdev->le_scan_type == LE_SCAN_ACTIVE)) {
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004932 bool changed;
Johan Hedberg4375f102013-09-25 13:26:10 +03004933
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004934 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07004935 changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004936 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004937 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004938 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004939 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004940 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07004941 changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004942 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Johan Hedberg4375f102013-09-25 13:26:10 +03004943 }
4944
4945 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
4946 if (err < 0)
4947 goto unlock;
4948
4949 if (changed)
4950 err = new_settings(hdev, sk);
4951
4952 goto unlock;
4953 }
4954
Johan Hedberg333ae952015-03-17 13:48:47 +02004955 if (pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
4956 pending_find(MGMT_OP_SET_LE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004957 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4958 MGMT_STATUS_BUSY);
Johan Hedberg4375f102013-09-25 13:26:10 +03004959 goto unlock;
4960 }
4961
4962 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
4963 if (!cmd) {
4964 err = -ENOMEM;
4965 goto unlock;
4966 }
4967
4968 hci_req_init(&req, hdev);
4969
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004970 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004971 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004972 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004973 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004974
Florian Grandel7816b822015-06-18 03:16:45 +02004975 cancel_adv_timeout(hdev);
4976
Arman Uguray24b4f382015-03-23 15:57:12 -07004977 if (val) {
Florian Grandel7816b822015-06-18 03:16:45 +02004978 /* Switch to instance "0" for the Set Advertising setting.
4979 * We cannot use update_[adv|scan_rsp]_data() here as the
4980 * HCI_ADVERTISING flag is not yet set.
4981 */
Florian Grandelefae0022015-06-18 03:16:37 +02004982 update_inst_adv_data(&req, 0x00);
4983 update_inst_scan_rsp_data(&req, 0x00);
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004984 enable_advertising(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07004985 } else {
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004986 disable_advertising(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07004987 }
Johan Hedberg4375f102013-09-25 13:26:10 +03004988
4989 err = hci_req_run(&req, set_advertising_complete);
4990 if (err < 0)
4991 mgmt_pending_remove(cmd);
4992
4993unlock:
4994 hci_dev_unlock(hdev);
4995 return err;
4996}
4997
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004998static int set_static_address(struct sock *sk, struct hci_dev *hdev,
4999 void *data, u16 len)
5000{
5001 struct mgmt_cp_set_static_address *cp = data;
5002 int err;
5003
5004 BT_DBG("%s", hdev->name);
5005
Marcel Holtmann62af4442013-10-02 22:10:32 -07005006 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005007 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
5008 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005009
5010 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005011 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
5012 MGMT_STATUS_REJECTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005013
5014 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
5015 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
Johan Hedberga69e8372015-03-06 21:08:53 +02005016 return mgmt_cmd_status(sk, hdev->id,
5017 MGMT_OP_SET_STATIC_ADDRESS,
5018 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005019
5020 /* Two most significant bits shall be set */
5021 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
Johan Hedberga69e8372015-03-06 21:08:53 +02005022 return mgmt_cmd_status(sk, hdev->id,
5023 MGMT_OP_SET_STATIC_ADDRESS,
5024 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005025 }
5026
5027 hci_dev_lock(hdev);
5028
5029 bacpy(&hdev->static_addr, &cp->bdaddr);
5030
Marcel Holtmann93690c22015-03-06 10:11:21 -08005031 err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
5032 if (err < 0)
5033 goto unlock;
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005034
Marcel Holtmann93690c22015-03-06 10:11:21 -08005035 err = new_settings(hdev, sk);
5036
5037unlock:
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005038 hci_dev_unlock(hdev);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005039 return err;
5040}
5041
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005042static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
5043 void *data, u16 len)
5044{
5045 struct mgmt_cp_set_scan_params *cp = data;
5046 __u16 interval, window;
5047 int err;
5048
5049 BT_DBG("%s", hdev->name);
5050
5051 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005052 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5053 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005054
5055 interval = __le16_to_cpu(cp->interval);
5056
5057 if (interval < 0x0004 || interval > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02005058 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5059 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005060
5061 window = __le16_to_cpu(cp->window);
5062
5063 if (window < 0x0004 || window > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02005064 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5065 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005066
Marcel Holtmann899e1072013-10-14 09:55:32 -07005067 if (window > interval)
Johan Hedberga69e8372015-03-06 21:08:53 +02005068 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5069 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann899e1072013-10-14 09:55:32 -07005070
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005071 hci_dev_lock(hdev);
5072
5073 hdev->le_scan_interval = interval;
5074 hdev->le_scan_window = window;
5075
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005076 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
5077 NULL, 0);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005078
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03005079 /* If background scan is running, restart it so new parameters are
5080 * loaded.
5081 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005082 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03005083 hdev->discovery.state == DISCOVERY_STOPPED) {
5084 struct hci_request req;
5085
5086 hci_req_init(&req, hdev);
5087
5088 hci_req_add_le_scan_disable(&req);
5089 hci_req_add_le_passive_scan(&req);
5090
5091 hci_req_run(&req, NULL);
5092 }
5093
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005094 hci_dev_unlock(hdev);
5095
5096 return err;
5097}
5098
Marcel Holtmann1904a852015-01-11 13:50:44 -08005099static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
5100 u16 opcode)
Johan Hedberg33e38b32013-03-15 17:07:05 -05005101{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005102 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05005103
5104 BT_DBG("status 0x%02x", status);
5105
5106 hci_dev_lock(hdev);
5107
Johan Hedberg333ae952015-03-17 13:48:47 +02005108 cmd = pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005109 if (!cmd)
5110 goto unlock;
5111
5112 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005113 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5114 mgmt_status(status));
Johan Hedberg33e38b32013-03-15 17:07:05 -05005115 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005116 struct mgmt_mode *cp = cmd->param;
5117
5118 if (cp->val)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005119 hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005120 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005121 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005122
Johan Hedberg33e38b32013-03-15 17:07:05 -05005123 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
5124 new_settings(hdev, cmd->sk);
5125 }
5126
5127 mgmt_pending_remove(cmd);
5128
5129unlock:
5130 hci_dev_unlock(hdev);
5131}
5132
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005133static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005134 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03005135{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005136 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005137 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05005138 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03005139 int err;
5140
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005141 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005142
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005143 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
Johan Hedberg56f87902013-10-02 13:43:13 +03005144 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberga69e8372015-03-06 21:08:53 +02005145 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5146 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03005147
Johan Hedberga7e80f22013-01-09 16:05:19 +02005148 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005149 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5150 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02005151
Antti Julkuf6422ec2011-06-22 13:11:56 +03005152 hci_dev_lock(hdev);
5153
Johan Hedberg333ae952015-03-17 13:48:47 +02005154 if (pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005155 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5156 MGMT_STATUS_BUSY);
Johan Hedberg05cbf292013-03-15 17:07:07 -05005157 goto unlock;
5158 }
5159
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005160 if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005161 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
5162 hdev);
5163 goto unlock;
5164 }
5165
Johan Hedberg406ef2a2015-03-10 20:14:27 +02005166 if (!hdev_is_powered(hdev)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07005167 hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg406ef2a2015-03-10 20:14:27 +02005168 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
5169 hdev);
5170 new_settings(hdev, sk);
5171 goto unlock;
5172 }
5173
Johan Hedberg33e38b32013-03-15 17:07:05 -05005174 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
5175 data, len);
5176 if (!cmd) {
5177 err = -ENOMEM;
5178 goto unlock;
5179 }
5180
5181 hci_req_init(&req, hdev);
5182
Johan Hedberg406d7802013-03-15 17:07:09 -05005183 write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005184
5185 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005186 if (err < 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005187 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5188 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005189 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005190 }
5191
Johan Hedberg33e38b32013-03-15 17:07:05 -05005192unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03005193 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005194
Antti Julkuf6422ec2011-06-22 13:11:56 +03005195 return err;
5196}
5197
Marcel Holtmann1904a852015-01-11 13:50:44 -08005198static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg0663ca22013-10-02 13:43:14 +03005199{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005200 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03005201
5202 BT_DBG("status 0x%02x", status);
5203
5204 hci_dev_lock(hdev);
5205
Johan Hedberg333ae952015-03-17 13:48:47 +02005206 cmd = pending_find(MGMT_OP_SET_BREDR, hdev);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005207 if (!cmd)
5208 goto unlock;
5209
5210 if (status) {
5211 u8 mgmt_err = mgmt_status(status);
5212
5213 /* We need to restore the flag if related HCI commands
5214 * failed.
5215 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005216 hci_dev_clear_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005217
Johan Hedberga69e8372015-03-06 21:08:53 +02005218 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005219 } else {
5220 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
5221 new_settings(hdev, cmd->sk);
5222 }
5223
5224 mgmt_pending_remove(cmd);
5225
5226unlock:
5227 hci_dev_unlock(hdev);
5228}
5229
5230static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
5231{
5232 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005233 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03005234 struct hci_request req;
5235 int err;
5236
5237 BT_DBG("request for %s", hdev->name);
5238
5239 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005240 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5241 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005242
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005243 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005244 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5245 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005246
5247 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005248 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5249 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005250
5251 hci_dev_lock(hdev);
5252
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005253 if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg0663ca22013-10-02 13:43:14 +03005254 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
5255 goto unlock;
5256 }
5257
5258 if (!hdev_is_powered(hdev)) {
5259 if (!cp->val) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005260 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
5261 hci_dev_clear_flag(hdev, HCI_SSP_ENABLED);
5262 hci_dev_clear_flag(hdev, HCI_LINK_SECURITY);
5263 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
5264 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005265 }
5266
Marcel Holtmannce05d602015-03-13 02:11:03 -07005267 hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005268
5269 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
5270 if (err < 0)
5271 goto unlock;
5272
5273 err = new_settings(hdev, sk);
5274 goto unlock;
5275 }
5276
5277 /* Reject disabling when powered on */
5278 if (!cp->val) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005279 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5280 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005281 goto unlock;
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005282 } else {
5283 /* When configuring a dual-mode controller to operate
5284 * with LE only and using a static address, then switching
5285 * BR/EDR back on is not allowed.
5286 *
5287 * Dual-mode controllers shall operate with the public
5288 * address as its identity address for BR/EDR and LE. So
5289 * reject the attempt to create an invalid configuration.
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08005290 *
5291 * The same restrictions applies when secure connections
5292 * has been enabled. For BR/EDR this is a controller feature
5293 * while for LE it is a host stack feature. This means that
5294 * switching BR/EDR back on when secure connections has been
5295 * enabled is not a supported transaction.
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005296 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005297 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08005298 (bacmp(&hdev->static_addr, BDADDR_ANY) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005299 hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005300 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5301 MGMT_STATUS_REJECTED);
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005302 goto unlock;
5303 }
Johan Hedberg0663ca22013-10-02 13:43:14 +03005304 }
5305
Johan Hedberg333ae952015-03-17 13:48:47 +02005306 if (pending_find(MGMT_OP_SET_BREDR, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005307 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5308 MGMT_STATUS_BUSY);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005309 goto unlock;
5310 }
5311
5312 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
5313 if (!cmd) {
5314 err = -ENOMEM;
5315 goto unlock;
5316 }
5317
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07005318 /* We need to flip the bit already here so that update_adv_data
Johan Hedberg0663ca22013-10-02 13:43:14 +03005319 * generates the correct flags.
5320 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005321 hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005322
5323 hci_req_init(&req, hdev);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005324
Johan Hedberg432df052014-08-01 11:13:31 +03005325 write_fast_connectable(&req, false);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02005326 __hci_update_page_scan(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005327
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07005328 /* Since only the advertising data flags will change, there
5329 * is no need to update the scan response data.
5330 */
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07005331 update_adv_data(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005332
Johan Hedberg0663ca22013-10-02 13:43:14 +03005333 err = hci_req_run(&req, set_bredr_complete);
5334 if (err < 0)
5335 mgmt_pending_remove(cmd);
5336
5337unlock:
5338 hci_dev_unlock(hdev);
5339 return err;
5340}
5341
Johan Hedberga1443f52015-01-23 15:42:46 +02005342static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5343{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005344 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02005345 struct mgmt_mode *cp;
5346
5347 BT_DBG("%s status %u", hdev->name, status);
5348
5349 hci_dev_lock(hdev);
5350
Johan Hedberg333ae952015-03-17 13:48:47 +02005351 cmd = pending_find(MGMT_OP_SET_SECURE_CONN, hdev);
Johan Hedberga1443f52015-01-23 15:42:46 +02005352 if (!cmd)
5353 goto unlock;
5354
5355 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005356 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
5357 mgmt_status(status));
Johan Hedberga1443f52015-01-23 15:42:46 +02005358 goto remove;
5359 }
5360
5361 cp = cmd->param;
5362
5363 switch (cp->val) {
5364 case 0x00:
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005365 hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
5366 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005367 break;
5368 case 0x01:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005369 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005370 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005371 break;
5372 case 0x02:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005373 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
5374 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005375 break;
5376 }
5377
5378 send_settings_rsp(cmd->sk, MGMT_OP_SET_SECURE_CONN, hdev);
5379 new_settings(hdev, cmd->sk);
5380
5381remove:
5382 mgmt_pending_remove(cmd);
5383unlock:
5384 hci_dev_unlock(hdev);
5385}
5386
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005387static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
5388 void *data, u16 len)
5389{
5390 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005391 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02005392 struct hci_request req;
Johan Hedberga3209692014-05-26 11:23:35 +03005393 u8 val;
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005394 int err;
5395
5396 BT_DBG("request for %s", hdev->name);
5397
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08005398 if (!lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005399 !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005400 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5401 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005402
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005403 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Johan Hedberg59200282015-01-28 19:56:00 +02005404 lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005405 !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005406 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5407 MGMT_STATUS_REJECTED);
Marcel Holtmanned93ec62015-01-22 11:15:22 -08005408
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005409 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005410 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005411 MGMT_STATUS_INVALID_PARAMS);
5412
5413 hci_dev_lock(hdev);
5414
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08005415 if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005416 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005417 bool changed;
5418
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005419 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07005420 changed = !hci_dev_test_and_set_flag(hdev,
5421 HCI_SC_ENABLED);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005422 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005423 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005424 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005425 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005426 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005427 changed = hci_dev_test_and_clear_flag(hdev,
5428 HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005429 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005430 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005431
5432 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
5433 if (err < 0)
5434 goto failed;
5435
5436 if (changed)
5437 err = new_settings(hdev, sk);
5438
5439 goto failed;
5440 }
5441
Johan Hedberg333ae952015-03-17 13:48:47 +02005442 if (pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005443 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5444 MGMT_STATUS_BUSY);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005445 goto failed;
5446 }
5447
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005448 val = !!cp->val;
5449
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005450 if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
5451 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005452 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
5453 goto failed;
5454 }
5455
5456 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
5457 if (!cmd) {
5458 err = -ENOMEM;
5459 goto failed;
5460 }
5461
Johan Hedberga1443f52015-01-23 15:42:46 +02005462 hci_req_init(&req, hdev);
5463 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
5464 err = hci_req_run(&req, sc_enable_complete);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005465 if (err < 0) {
5466 mgmt_pending_remove(cmd);
5467 goto failed;
5468 }
5469
5470failed:
5471 hci_dev_unlock(hdev);
5472 return err;
5473}
5474
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005475static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
5476 void *data, u16 len)
5477{
5478 struct mgmt_mode *cp = data;
Johan Hedbergb97109792014-06-24 14:00:28 +03005479 bool changed, use_changed;
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005480 int err;
5481
5482 BT_DBG("request for %s", hdev->name);
5483
Johan Hedbergb97109792014-06-24 14:00:28 +03005484 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005485 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
5486 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005487
5488 hci_dev_lock(hdev);
5489
5490 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07005491 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005492 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005493 changed = hci_dev_test_and_clear_flag(hdev,
5494 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005495
Johan Hedbergb97109792014-06-24 14:00:28 +03005496 if (cp->val == 0x02)
Marcel Holtmann238be782015-03-13 02:11:06 -07005497 use_changed = !hci_dev_test_and_set_flag(hdev,
5498 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03005499 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005500 use_changed = hci_dev_test_and_clear_flag(hdev,
5501 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03005502
5503 if (hdev_is_powered(hdev) && use_changed &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005504 hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedbergb97109792014-06-24 14:00:28 +03005505 u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
5506 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
5507 sizeof(mode), &mode);
5508 }
5509
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005510 err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
5511 if (err < 0)
5512 goto unlock;
5513
5514 if (changed)
5515 err = new_settings(hdev, sk);
5516
5517unlock:
5518 hci_dev_unlock(hdev);
5519 return err;
5520}
5521
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005522static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
5523 u16 len)
5524{
5525 struct mgmt_cp_set_privacy *cp = cp_data;
5526 bool changed;
5527 int err;
5528
5529 BT_DBG("request for %s", hdev->name);
5530
5531 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005532 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5533 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005534
5535 if (cp->privacy != 0x00 && cp->privacy != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005536 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5537 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005538
5539 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005540 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5541 MGMT_STATUS_REJECTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005542
5543 hci_dev_lock(hdev);
5544
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02005545 /* If user space supports this command it is also expected to
5546 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
5547 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005548 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02005549
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005550 if (cp->privacy) {
Marcel Holtmann238be782015-03-13 02:11:06 -07005551 changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005552 memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005553 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005554 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005555 changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005556 memset(hdev->irk, 0, sizeof(hdev->irk));
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005557 hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005558 }
5559
5560 err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
5561 if (err < 0)
5562 goto unlock;
5563
5564 if (changed)
5565 err = new_settings(hdev, sk);
5566
5567unlock:
5568 hci_dev_unlock(hdev);
5569 return err;
5570}
5571
Johan Hedberg41edf162014-02-18 10:19:35 +02005572static bool irk_is_valid(struct mgmt_irk_info *irk)
5573{
5574 switch (irk->addr.type) {
5575 case BDADDR_LE_PUBLIC:
5576 return true;
5577
5578 case BDADDR_LE_RANDOM:
5579 /* Two most significant bits shall be set */
5580 if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
5581 return false;
5582 return true;
5583 }
5584
5585 return false;
5586}
5587
5588static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
5589 u16 len)
5590{
5591 struct mgmt_cp_load_irks *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005592 const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
5593 sizeof(struct mgmt_irk_info));
Johan Hedberg41edf162014-02-18 10:19:35 +02005594 u16 irk_count, expected_len;
5595 int i, err;
5596
5597 BT_DBG("request for %s", hdev->name);
5598
5599 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005600 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5601 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg41edf162014-02-18 10:19:35 +02005602
5603 irk_count = __le16_to_cpu(cp->irk_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005604 if (irk_count > max_irk_count) {
5605 BT_ERR("load_irks: too big irk_count value %u", irk_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02005606 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5607 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005608 }
Johan Hedberg41edf162014-02-18 10:19:35 +02005609
5610 expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
5611 if (expected_len != len) {
5612 BT_ERR("load_irks: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02005613 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02005614 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5615 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02005616 }
5617
5618 BT_DBG("%s irk_count %u", hdev->name, irk_count);
5619
5620 for (i = 0; i < irk_count; i++) {
5621 struct mgmt_irk_info *key = &cp->irks[i];
5622
5623 if (!irk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02005624 return mgmt_cmd_status(sk, hdev->id,
5625 MGMT_OP_LOAD_IRKS,
5626 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02005627 }
5628
5629 hci_dev_lock(hdev);
5630
5631 hci_smp_irks_clear(hdev);
5632
5633 for (i = 0; i < irk_count; i++) {
5634 struct mgmt_irk_info *irk = &cp->irks[i];
Johan Hedberg41edf162014-02-18 10:19:35 +02005635
Johan Hedberg85813a72015-10-21 18:02:59 +03005636 hci_add_irk(hdev, &irk->addr.bdaddr,
5637 le_addr_type(irk->addr.type), irk->val,
Johan Hedberg41edf162014-02-18 10:19:35 +02005638 BDADDR_ANY);
5639 }
5640
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005641 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedberg41edf162014-02-18 10:19:35 +02005642
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005643 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
Johan Hedberg41edf162014-02-18 10:19:35 +02005644
5645 hci_dev_unlock(hdev);
5646
5647 return err;
5648}
5649
Johan Hedberg3f706b72013-01-20 14:27:16 +02005650static bool ltk_is_valid(struct mgmt_ltk_info *key)
5651{
5652 if (key->master != 0x00 && key->master != 0x01)
5653 return false;
Marcel Holtmann490cb0b2014-02-16 12:59:05 -08005654
5655 switch (key->addr.type) {
5656 case BDADDR_LE_PUBLIC:
5657 return true;
5658
5659 case BDADDR_LE_RANDOM:
5660 /* Two most significant bits shall be set */
5661 if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
5662 return false;
5663 return true;
5664 }
5665
5666 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02005667}
5668
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005669static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005670 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005671{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005672 struct mgmt_cp_load_long_term_keys *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005673 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
5674 sizeof(struct mgmt_ltk_info));
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005675 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005676 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005677
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07005678 BT_DBG("request for %s", hdev->name);
5679
5680 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005681 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5682 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07005683
Marcel Holtmann1f350c82012-03-12 20:31:08 -07005684 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005685 if (key_count > max_key_count) {
5686 BT_ERR("load_ltks: too big key_count value %u", key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02005687 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5688 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005689 }
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005690
5691 expected_len = sizeof(*cp) + key_count *
5692 sizeof(struct mgmt_ltk_info);
5693 if (expected_len != len) {
5694 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02005695 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02005696 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5697 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005698 }
5699
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005700 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005701
Johan Hedberg54ad6d82013-01-20 14:27:15 +02005702 for (i = 0; i < key_count; i++) {
5703 struct mgmt_ltk_info *key = &cp->keys[i];
5704
Johan Hedberg3f706b72013-01-20 14:27:16 +02005705 if (!ltk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02005706 return mgmt_cmd_status(sk, hdev->id,
5707 MGMT_OP_LOAD_LONG_TERM_KEYS,
5708 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg54ad6d82013-01-20 14:27:15 +02005709 }
5710
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005711 hci_dev_lock(hdev);
5712
5713 hci_smp_ltks_clear(hdev);
5714
5715 for (i = 0; i < key_count; i++) {
5716 struct mgmt_ltk_info *key = &cp->keys[i];
Johan Hedberg85813a72015-10-21 18:02:59 +03005717 u8 type, authenticated;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005718
Johan Hedberg61b43352014-05-29 19:36:53 +03005719 switch (key->type) {
5720 case MGMT_LTK_UNAUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03005721 authenticated = 0x00;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005722 type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
Johan Hedberg61b43352014-05-29 19:36:53 +03005723 break;
5724 case MGMT_LTK_AUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03005725 authenticated = 0x01;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005726 type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
Johan Hedberg61b43352014-05-29 19:36:53 +03005727 break;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005728 case MGMT_LTK_P256_UNAUTH:
5729 authenticated = 0x00;
5730 type = SMP_LTK_P256;
5731 break;
5732 case MGMT_LTK_P256_AUTH:
5733 authenticated = 0x01;
5734 type = SMP_LTK_P256;
5735 break;
5736 case MGMT_LTK_P256_DEBUG:
5737 authenticated = 0x00;
5738 type = SMP_LTK_P256_DEBUG;
Johan Hedberg61b43352014-05-29 19:36:53 +03005739 default:
5740 continue;
5741 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03005742
Johan Hedberg85813a72015-10-21 18:02:59 +03005743 hci_add_ltk(hdev, &key->addr.bdaddr,
5744 le_addr_type(key->addr.type), type, authenticated,
5745 key->val, key->enc_size, key->ediv, key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005746 }
5747
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005748 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005749 NULL, 0);
5750
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005751 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005752
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005753 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005754}
5755
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005756static int conn_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005757{
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005758 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005759 struct mgmt_rp_get_conn_info rp;
Johan Hedberg9df74652014-12-19 22:26:03 +02005760 int err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005761
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005762 memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005763
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005764 if (status == MGMT_STATUS_SUCCESS) {
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005765 rp.rssi = conn->rssi;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005766 rp.tx_power = conn->tx_power;
5767 rp.max_tx_power = conn->max_tx_power;
5768 } else {
5769 rp.rssi = HCI_RSSI_INVALID;
5770 rp.tx_power = HCI_TX_POWER_INVALID;
5771 rp.max_tx_power = HCI_TX_POWER_INVALID;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005772 }
5773
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005774 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
5775 status, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005776
5777 hci_conn_drop(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005778 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02005779
5780 return err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005781}
5782
Marcel Holtmann1904a852015-01-11 13:50:44 -08005783static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
5784 u16 opcode)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005785{
5786 struct hci_cp_read_rssi *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005787 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005788 struct hci_conn *conn;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005789 u16 handle;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005790 u8 status;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005791
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005792 BT_DBG("status 0x%02x", hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005793
5794 hci_dev_lock(hdev);
5795
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005796 /* Commands sent in request are either Read RSSI or Read Transmit Power
5797 * Level so we check which one was last sent to retrieve connection
5798 * handle. Both commands have handle as first parameter so it's safe to
5799 * cast data on the same command struct.
5800 *
5801 * First command sent is always Read RSSI and we fail only if it fails.
5802 * In other case we simply override error to indicate success as we
5803 * already remembered if TX power value is actually valid.
5804 */
5805 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI);
5806 if (!cp) {
5807 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005808 status = MGMT_STATUS_SUCCESS;
5809 } else {
5810 status = mgmt_status(hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005811 }
5812
5813 if (!cp) {
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005814 BT_ERR("invalid sent_cmd in conn_info response");
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005815 goto unlock;
5816 }
5817
5818 handle = __le16_to_cpu(cp->handle);
5819 conn = hci_conn_hash_lookup_handle(hdev, handle);
5820 if (!conn) {
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005821 BT_ERR("unknown handle (%d) in conn_info response", handle);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005822 goto unlock;
5823 }
5824
Johan Hedberg333ae952015-03-17 13:48:47 +02005825 cmd = pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005826 if (!cmd)
5827 goto unlock;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005828
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005829 cmd->cmd_complete(cmd, status);
5830 mgmt_pending_remove(cmd);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005831
5832unlock:
5833 hci_dev_unlock(hdev);
5834}
5835
5836static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data,
5837 u16 len)
5838{
5839 struct mgmt_cp_get_conn_info *cp = data;
5840 struct mgmt_rp_get_conn_info rp;
5841 struct hci_conn *conn;
5842 unsigned long conn_info_age;
5843 int err = 0;
5844
5845 BT_DBG("%s", hdev->name);
5846
5847 memset(&rp, 0, sizeof(rp));
5848 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5849 rp.addr.type = cp->addr.type;
5850
5851 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005852 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5853 MGMT_STATUS_INVALID_PARAMS,
5854 &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005855
5856 hci_dev_lock(hdev);
5857
5858 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005859 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5860 MGMT_STATUS_NOT_POWERED, &rp,
5861 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005862 goto unlock;
5863 }
5864
5865 if (cp->addr.type == BDADDR_BREDR)
5866 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
5867 &cp->addr.bdaddr);
5868 else
5869 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
5870
5871 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005872 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5873 MGMT_STATUS_NOT_CONNECTED, &rp,
5874 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005875 goto unlock;
5876 }
5877
Johan Hedberg333ae952015-03-17 13:48:47 +02005878 if (pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005879 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5880 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005881 goto unlock;
5882 }
5883
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005884 /* To avoid client trying to guess when to poll again for information we
5885 * calculate conn info age as random value between min/max set in hdev.
5886 */
5887 conn_info_age = hdev->conn_info_min_age +
5888 prandom_u32_max(hdev->conn_info_max_age -
5889 hdev->conn_info_min_age);
5890
5891 /* Query controller to refresh cached values if they are too old or were
5892 * never read.
5893 */
Andrzej Kaczmarekf4e2dd52014-05-16 16:48:57 +02005894 if (time_after(jiffies, conn->conn_info_timestamp +
5895 msecs_to_jiffies(conn_info_age)) ||
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005896 !conn->conn_info_timestamp) {
5897 struct hci_request req;
5898 struct hci_cp_read_tx_power req_txp_cp;
5899 struct hci_cp_read_rssi req_rssi_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005900 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005901
5902 hci_req_init(&req, hdev);
5903 req_rssi_cp.handle = cpu_to_le16(conn->handle);
5904 hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp),
5905 &req_rssi_cp);
5906
Andrzej Kaczmarekf7faab02014-05-14 13:43:04 +02005907 /* For LE links TX power does not change thus we don't need to
5908 * query for it once value is known.
5909 */
5910 if (!bdaddr_type_is_le(cp->addr.type) ||
5911 conn->tx_power == HCI_TX_POWER_INVALID) {
5912 req_txp_cp.handle = cpu_to_le16(conn->handle);
5913 req_txp_cp.type = 0x00;
5914 hci_req_add(&req, HCI_OP_READ_TX_POWER,
5915 sizeof(req_txp_cp), &req_txp_cp);
5916 }
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005917
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02005918 /* Max TX power needs to be read only once per connection */
5919 if (conn->max_tx_power == HCI_TX_POWER_INVALID) {
5920 req_txp_cp.handle = cpu_to_le16(conn->handle);
5921 req_txp_cp.type = 0x01;
5922 hci_req_add(&req, HCI_OP_READ_TX_POWER,
5923 sizeof(req_txp_cp), &req_txp_cp);
5924 }
5925
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005926 err = hci_req_run(&req, conn_info_refresh_complete);
5927 if (err < 0)
5928 goto unlock;
5929
5930 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CONN_INFO, hdev,
5931 data, len);
5932 if (!cmd) {
5933 err = -ENOMEM;
5934 goto unlock;
5935 }
5936
5937 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005938 cmd->user_data = hci_conn_get(conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005939 cmd->cmd_complete = conn_info_cmd_complete;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005940
5941 conn->conn_info_timestamp = jiffies;
5942 } else {
5943 /* Cache is valid, just reply with values cached in hci_conn */
5944 rp.rssi = conn->rssi;
5945 rp.tx_power = conn->tx_power;
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02005946 rp.max_tx_power = conn->max_tx_power;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005947
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005948 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5949 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005950 }
5951
5952unlock:
5953 hci_dev_unlock(hdev);
5954 return err;
5955}
5956
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005957static int clock_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg69487372014-12-05 13:36:07 +02005958{
5959 struct hci_conn *conn = cmd->user_data;
5960 struct mgmt_rp_get_clock_info rp;
5961 struct hci_dev *hdev;
Johan Hedberg9df74652014-12-19 22:26:03 +02005962 int err;
Johan Hedberg69487372014-12-05 13:36:07 +02005963
5964 memset(&rp, 0, sizeof(rp));
5965 memcpy(&rp.addr, &cmd->param, sizeof(rp.addr));
5966
5967 if (status)
5968 goto complete;
5969
5970 hdev = hci_dev_get(cmd->index);
5971 if (hdev) {
5972 rp.local_clock = cpu_to_le32(hdev->clock);
5973 hci_dev_put(hdev);
5974 }
5975
5976 if (conn) {
5977 rp.piconet_clock = cpu_to_le32(conn->clock);
5978 rp.accuracy = cpu_to_le16(conn->clock_accuracy);
5979 }
5980
5981complete:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005982 err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
5983 sizeof(rp));
Johan Hedberg69487372014-12-05 13:36:07 +02005984
5985 if (conn) {
5986 hci_conn_drop(conn);
5987 hci_conn_put(conn);
5988 }
Johan Hedberg9df74652014-12-19 22:26:03 +02005989
5990 return err;
Johan Hedberg69487372014-12-05 13:36:07 +02005991}
5992
Marcel Holtmann1904a852015-01-11 13:50:44 -08005993static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg95868422014-06-28 17:54:07 +03005994{
Johan Hedberg95868422014-06-28 17:54:07 +03005995 struct hci_cp_read_clock *hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005996 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03005997 struct hci_conn *conn;
5998
5999 BT_DBG("%s status %u", hdev->name, status);
6000
6001 hci_dev_lock(hdev);
6002
6003 hci_cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
6004 if (!hci_cp)
6005 goto unlock;
6006
6007 if (hci_cp->which) {
6008 u16 handle = __le16_to_cpu(hci_cp->handle);
6009 conn = hci_conn_hash_lookup_handle(hdev, handle);
6010 } else {
6011 conn = NULL;
6012 }
6013
Johan Hedberg333ae952015-03-17 13:48:47 +02006014 cmd = pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
Johan Hedberg95868422014-06-28 17:54:07 +03006015 if (!cmd)
6016 goto unlock;
6017
Johan Hedberg69487372014-12-05 13:36:07 +02006018 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberg95868422014-06-28 17:54:07 +03006019 mgmt_pending_remove(cmd);
Johan Hedberg95868422014-06-28 17:54:07 +03006020
6021unlock:
6022 hci_dev_unlock(hdev);
6023}
6024
6025static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data,
6026 u16 len)
6027{
6028 struct mgmt_cp_get_clock_info *cp = data;
6029 struct mgmt_rp_get_clock_info rp;
6030 struct hci_cp_read_clock hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006031 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03006032 struct hci_request req;
6033 struct hci_conn *conn;
6034 int err;
6035
6036 BT_DBG("%s", hdev->name);
6037
6038 memset(&rp, 0, sizeof(rp));
6039 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
6040 rp.addr.type = cp->addr.type;
6041
6042 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006043 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
6044 MGMT_STATUS_INVALID_PARAMS,
6045 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006046
6047 hci_dev_lock(hdev);
6048
6049 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006050 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
6051 MGMT_STATUS_NOT_POWERED, &rp,
6052 sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006053 goto unlock;
6054 }
6055
6056 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
6057 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
6058 &cp->addr.bdaddr);
6059 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006060 err = mgmt_cmd_complete(sk, hdev->id,
6061 MGMT_OP_GET_CLOCK_INFO,
6062 MGMT_STATUS_NOT_CONNECTED,
6063 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006064 goto unlock;
6065 }
6066 } else {
6067 conn = NULL;
6068 }
6069
6070 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CLOCK_INFO, hdev, data, len);
6071 if (!cmd) {
6072 err = -ENOMEM;
6073 goto unlock;
6074 }
6075
Johan Hedberg69487372014-12-05 13:36:07 +02006076 cmd->cmd_complete = clock_info_cmd_complete;
6077
Johan Hedberg95868422014-06-28 17:54:07 +03006078 hci_req_init(&req, hdev);
6079
6080 memset(&hci_cp, 0, sizeof(hci_cp));
6081 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
6082
6083 if (conn) {
6084 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03006085 cmd->user_data = hci_conn_get(conn);
Johan Hedberg95868422014-06-28 17:54:07 +03006086
6087 hci_cp.handle = cpu_to_le16(conn->handle);
6088 hci_cp.which = 0x01; /* Piconet clock */
6089 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
6090 }
6091
6092 err = hci_req_run(&req, get_clock_info_complete);
6093 if (err < 0)
6094 mgmt_pending_remove(cmd);
6095
6096unlock:
6097 hci_dev_unlock(hdev);
6098 return err;
6099}
6100
Johan Hedberg5a154e62014-12-19 22:26:02 +02006101static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
6102{
6103 struct hci_conn *conn;
6104
6105 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
6106 if (!conn)
6107 return false;
6108
6109 if (conn->dst_type != type)
6110 return false;
6111
6112 if (conn->state != BT_CONNECTED)
6113 return false;
6114
6115 return true;
6116}
6117
6118/* This function requires the caller holds hdev->lock */
Johan Hedberg51d7a942015-11-11 08:11:18 +02006119static int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr,
Johan Hedberg5a154e62014-12-19 22:26:02 +02006120 u8 addr_type, u8 auto_connect)
6121{
Johan Hedberg5a154e62014-12-19 22:26:02 +02006122 struct hci_conn_params *params;
6123
6124 params = hci_conn_params_add(hdev, addr, addr_type);
6125 if (!params)
6126 return -EIO;
6127
6128 if (params->auto_connect == auto_connect)
6129 return 0;
6130
6131 list_del_init(&params->action);
6132
6133 switch (auto_connect) {
6134 case HCI_AUTO_CONN_DISABLED:
6135 case HCI_AUTO_CONN_LINK_LOSS:
Jakub Pawlowski28a667c2015-08-07 20:22:54 +02006136 /* If auto connect is being disabled when we're trying to
6137 * connect to device, keep connecting.
6138 */
6139 if (params->explicit_connect)
6140 list_add(&params->action, &hdev->pend_le_conns);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006141 break;
6142 case HCI_AUTO_CONN_REPORT:
Johan Hedberg49c50922015-10-16 10:07:51 +03006143 if (params->explicit_connect)
6144 list_add(&params->action, &hdev->pend_le_conns);
6145 else
6146 list_add(&params->action, &hdev->pend_le_reports);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006147 break;
6148 case HCI_AUTO_CONN_DIRECT:
6149 case HCI_AUTO_CONN_ALWAYS:
Johan Hedberg51d7a942015-11-11 08:11:18 +02006150 if (!is_connected(hdev, addr, addr_type))
Johan Hedberg5a154e62014-12-19 22:26:02 +02006151 list_add(&params->action, &hdev->pend_le_conns);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006152 break;
6153 }
6154
6155 params->auto_connect = auto_connect;
6156
6157 BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
6158 auto_connect);
6159
6160 return 0;
6161}
6162
Marcel Holtmann8afef092014-06-29 22:28:34 +02006163static void device_added(struct sock *sk, struct hci_dev *hdev,
6164 bdaddr_t *bdaddr, u8 type, u8 action)
6165{
6166 struct mgmt_ev_device_added ev;
6167
6168 bacpy(&ev.addr.bdaddr, bdaddr);
6169 ev.addr.type = type;
6170 ev.action = action;
6171
6172 mgmt_event(MGMT_EV_DEVICE_ADDED, hdev, &ev, sizeof(ev), sk);
6173}
6174
Marcel Holtmann2faade52014-06-29 19:44:03 +02006175static int add_device(struct sock *sk, struct hci_dev *hdev,
6176 void *data, u16 len)
6177{
6178 struct mgmt_cp_add_device *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006179 struct mgmt_pending_cmd *cmd;
Johan Hedberg5a154e62014-12-19 22:26:02 +02006180 struct hci_request req;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006181 u8 auto_conn, addr_type;
6182 int err;
6183
6184 BT_DBG("%s", hdev->name);
6185
Johan Hedberg66593582014-07-09 12:59:14 +03006186 if (!bdaddr_type_is_valid(cp->addr.type) ||
Marcel Holtmann2faade52014-06-29 19:44:03 +02006187 !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006188 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6189 MGMT_STATUS_INVALID_PARAMS,
6190 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006191
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006192 if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006193 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6194 MGMT_STATUS_INVALID_PARAMS,
6195 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006196
Johan Hedberg5a154e62014-12-19 22:26:02 +02006197 hci_req_init(&req, hdev);
6198
Marcel Holtmann2faade52014-06-29 19:44:03 +02006199 hci_dev_lock(hdev);
6200
Johan Hedberg5a154e62014-12-19 22:26:02 +02006201 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_DEVICE, hdev, data, len);
6202 if (!cmd) {
6203 err = -ENOMEM;
6204 goto unlock;
6205 }
6206
6207 cmd->cmd_complete = addr_cmd_complete;
6208
Johan Hedberg66593582014-07-09 12:59:14 +03006209 if (cp->addr.type == BDADDR_BREDR) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006210 /* Only incoming connections action is supported for now */
Johan Hedberg66593582014-07-09 12:59:14 +03006211 if (cp->action != 0x01) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006212 err = mgmt_cmd_complete(sk, hdev->id,
6213 MGMT_OP_ADD_DEVICE,
6214 MGMT_STATUS_INVALID_PARAMS,
6215 &cp->addr, sizeof(cp->addr));
Johan Hedberg66593582014-07-09 12:59:14 +03006216 goto unlock;
6217 }
6218
6219 err = hci_bdaddr_list_add(&hdev->whitelist, &cp->addr.bdaddr,
6220 cp->addr.type);
6221 if (err)
6222 goto unlock;
Johan Hedberga3974072014-07-09 12:59:15 +03006223
Johan Hedberg5a154e62014-12-19 22:26:02 +02006224 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03006225
Johan Hedberg66593582014-07-09 12:59:14 +03006226 goto added;
6227 }
6228
Johan Hedberg85813a72015-10-21 18:02:59 +03006229 addr_type = le_addr_type(cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006230
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006231 if (cp->action == 0x02)
Marcel Holtmann2faade52014-06-29 19:44:03 +02006232 auto_conn = HCI_AUTO_CONN_ALWAYS;
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006233 else if (cp->action == 0x01)
6234 auto_conn = HCI_AUTO_CONN_DIRECT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006235 else
Johan Hedberga3451d22014-07-02 17:37:27 +03006236 auto_conn = HCI_AUTO_CONN_REPORT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006237
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02006238 /* Kernel internally uses conn_params with resolvable private
6239 * address, but Add Device allows only identity addresses.
6240 * Make sure it is enforced before calling
6241 * hci_conn_params_lookup.
6242 */
6243 if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006244 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6245 MGMT_STATUS_INVALID_PARAMS,
6246 &cp->addr, sizeof(cp->addr));
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02006247 goto unlock;
6248 }
6249
Marcel Holtmannbf5b3c82014-06-30 12:34:39 +02006250 /* If the connection parameters don't exist for this device,
6251 * they will be created and configured with defaults.
6252 */
Johan Hedberg51d7a942015-11-11 08:11:18 +02006253 if (hci_conn_params_set(hdev, &cp->addr.bdaddr, addr_type,
Marcel Holtmannd06b50c2014-07-01 12:11:06 +02006254 auto_conn) < 0) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006255 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6256 MGMT_STATUS_FAILED, &cp->addr,
6257 sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006258 goto unlock;
6259 }
6260
Johan Hedberg51d7a942015-11-11 08:11:18 +02006261 hci_update_background_scan(hdev);
6262
Johan Hedberg66593582014-07-09 12:59:14 +03006263added:
Marcel Holtmann8afef092014-06-29 22:28:34 +02006264 device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);
6265
Johan Hedberg51d7a942015-11-11 08:11:18 +02006266 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6267 MGMT_STATUS_SUCCESS, &cp->addr,
6268 sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006269
6270unlock:
6271 hci_dev_unlock(hdev);
6272 return err;
6273}
6274
Marcel Holtmann8afef092014-06-29 22:28:34 +02006275static void device_removed(struct sock *sk, struct hci_dev *hdev,
6276 bdaddr_t *bdaddr, u8 type)
6277{
6278 struct mgmt_ev_device_removed ev;
6279
6280 bacpy(&ev.addr.bdaddr, bdaddr);
6281 ev.addr.type = type;
6282
6283 mgmt_event(MGMT_EV_DEVICE_REMOVED, hdev, &ev, sizeof(ev), sk);
6284}
6285
Marcel Holtmann2faade52014-06-29 19:44:03 +02006286static int remove_device(struct sock *sk, struct hci_dev *hdev,
6287 void *data, u16 len)
6288{
6289 struct mgmt_cp_remove_device *cp = data;
6290 int err;
6291
6292 BT_DBG("%s", hdev->name);
6293
6294 hci_dev_lock(hdev);
6295
6296 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
Johan Hedbergc71593d2014-07-02 17:37:28 +03006297 struct hci_conn_params *params;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006298 u8 addr_type;
6299
Johan Hedberg66593582014-07-09 12:59:14 +03006300 if (!bdaddr_type_is_valid(cp->addr.type)) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006301 err = mgmt_cmd_complete(sk, hdev->id,
6302 MGMT_OP_REMOVE_DEVICE,
6303 MGMT_STATUS_INVALID_PARAMS,
6304 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006305 goto unlock;
6306 }
6307
Johan Hedberg66593582014-07-09 12:59:14 +03006308 if (cp->addr.type == BDADDR_BREDR) {
6309 err = hci_bdaddr_list_del(&hdev->whitelist,
6310 &cp->addr.bdaddr,
6311 cp->addr.type);
6312 if (err) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006313 err = mgmt_cmd_complete(sk, hdev->id,
6314 MGMT_OP_REMOVE_DEVICE,
6315 MGMT_STATUS_INVALID_PARAMS,
6316 &cp->addr,
6317 sizeof(cp->addr));
Johan Hedberg66593582014-07-09 12:59:14 +03006318 goto unlock;
6319 }
6320
Johan Hedberg51d7a942015-11-11 08:11:18 +02006321 hci_update_page_scan(hdev);
Johan Hedberga3974072014-07-09 12:59:15 +03006322
Johan Hedberg66593582014-07-09 12:59:14 +03006323 device_removed(sk, hdev, &cp->addr.bdaddr,
6324 cp->addr.type);
6325 goto complete;
6326 }
6327
Johan Hedberg85813a72015-10-21 18:02:59 +03006328 addr_type = le_addr_type(cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006329
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02006330 /* Kernel internally uses conn_params with resolvable private
6331 * address, but Remove Device allows only identity addresses.
6332 * Make sure it is enforced before calling
6333 * hci_conn_params_lookup.
6334 */
6335 if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006336 err = mgmt_cmd_complete(sk, hdev->id,
6337 MGMT_OP_REMOVE_DEVICE,
6338 MGMT_STATUS_INVALID_PARAMS,
6339 &cp->addr, sizeof(cp->addr));
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02006340 goto unlock;
6341 }
6342
Johan Hedbergc71593d2014-07-02 17:37:28 +03006343 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
6344 addr_type);
6345 if (!params) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006346 err = mgmt_cmd_complete(sk, hdev->id,
6347 MGMT_OP_REMOVE_DEVICE,
6348 MGMT_STATUS_INVALID_PARAMS,
6349 &cp->addr, sizeof(cp->addr));
Johan Hedbergc71593d2014-07-02 17:37:28 +03006350 goto unlock;
6351 }
6352
Johan Hedberg679d2b62015-10-16 10:07:52 +03006353 if (params->auto_connect == HCI_AUTO_CONN_DISABLED ||
6354 params->auto_connect == HCI_AUTO_CONN_EXPLICIT) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006355 err = mgmt_cmd_complete(sk, hdev->id,
6356 MGMT_OP_REMOVE_DEVICE,
6357 MGMT_STATUS_INVALID_PARAMS,
6358 &cp->addr, sizeof(cp->addr));
Johan Hedbergc71593d2014-07-02 17:37:28 +03006359 goto unlock;
6360 }
6361
Johan Hedbergd1dbf122014-07-04 16:17:23 +03006362 list_del(&params->action);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006363 list_del(&params->list);
6364 kfree(params);
Johan Hedberg51d7a942015-11-11 08:11:18 +02006365 hci_update_background_scan(hdev);
Marcel Holtmann8afef092014-06-29 22:28:34 +02006366
6367 device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006368 } else {
Johan Hedberg19de0822014-07-06 13:06:51 +03006369 struct hci_conn_params *p, *tmp;
Johan Hedberg66593582014-07-09 12:59:14 +03006370 struct bdaddr_list *b, *btmp;
Johan Hedberg19de0822014-07-06 13:06:51 +03006371
Marcel Holtmann2faade52014-06-29 19:44:03 +02006372 if (cp->addr.type) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006373 err = mgmt_cmd_complete(sk, hdev->id,
6374 MGMT_OP_REMOVE_DEVICE,
6375 MGMT_STATUS_INVALID_PARAMS,
6376 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006377 goto unlock;
6378 }
6379
Johan Hedberg66593582014-07-09 12:59:14 +03006380 list_for_each_entry_safe(b, btmp, &hdev->whitelist, list) {
6381 device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type);
6382 list_del(&b->list);
6383 kfree(b);
6384 }
6385
Johan Hedberg51d7a942015-11-11 08:11:18 +02006386 hci_update_page_scan(hdev);
Johan Hedberga3974072014-07-09 12:59:15 +03006387
Johan Hedberg19de0822014-07-06 13:06:51 +03006388 list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) {
6389 if (p->auto_connect == HCI_AUTO_CONN_DISABLED)
6390 continue;
6391 device_removed(sk, hdev, &p->addr, p->addr_type);
Johan Hedberg679d2b62015-10-16 10:07:52 +03006392 if (p->explicit_connect) {
6393 p->auto_connect = HCI_AUTO_CONN_EXPLICIT;
6394 continue;
6395 }
Johan Hedberg19de0822014-07-06 13:06:51 +03006396 list_del(&p->action);
6397 list_del(&p->list);
6398 kfree(p);
6399 }
6400
6401 BT_DBG("All LE connection parameters were removed");
6402
Johan Hedberg51d7a942015-11-11 08:11:18 +02006403 hci_update_background_scan(hdev);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006404 }
6405
Johan Hedberg66593582014-07-09 12:59:14 +03006406complete:
Johan Hedberg51d7a942015-11-11 08:11:18 +02006407 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE,
6408 MGMT_STATUS_SUCCESS, &cp->addr,
6409 sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006410unlock:
6411 hci_dev_unlock(hdev);
6412 return err;
6413}
6414
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006415static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
6416 u16 len)
6417{
6418 struct mgmt_cp_load_conn_param *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03006419 const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
6420 sizeof(struct mgmt_conn_param));
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006421 u16 param_count, expected_len;
6422 int i;
6423
6424 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006425 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6426 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006427
6428 param_count = __le16_to_cpu(cp->param_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006429 if (param_count > max_param_count) {
6430 BT_ERR("load_conn_param: too big param_count value %u",
6431 param_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02006432 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6433 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006434 }
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006435
6436 expected_len = sizeof(*cp) + param_count *
6437 sizeof(struct mgmt_conn_param);
6438 if (expected_len != len) {
6439 BT_ERR("load_conn_param: expected %u bytes, got %u bytes",
6440 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02006441 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6442 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006443 }
6444
6445 BT_DBG("%s param_count %u", hdev->name, param_count);
6446
6447 hci_dev_lock(hdev);
6448
6449 hci_conn_params_clear_disabled(hdev);
6450
6451 for (i = 0; i < param_count; i++) {
6452 struct mgmt_conn_param *param = &cp->params[i];
6453 struct hci_conn_params *hci_param;
6454 u16 min, max, latency, timeout;
6455 u8 addr_type;
6456
6457 BT_DBG("Adding %pMR (type %u)", &param->addr.bdaddr,
6458 param->addr.type);
6459
6460 if (param->addr.type == BDADDR_LE_PUBLIC) {
6461 addr_type = ADDR_LE_DEV_PUBLIC;
6462 } else if (param->addr.type == BDADDR_LE_RANDOM) {
6463 addr_type = ADDR_LE_DEV_RANDOM;
6464 } else {
6465 BT_ERR("Ignoring invalid connection parameters");
6466 continue;
6467 }
6468
6469 min = le16_to_cpu(param->min_interval);
6470 max = le16_to_cpu(param->max_interval);
6471 latency = le16_to_cpu(param->latency);
6472 timeout = le16_to_cpu(param->timeout);
6473
6474 BT_DBG("min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x",
6475 min, max, latency, timeout);
6476
6477 if (hci_check_conn_params(min, max, latency, timeout) < 0) {
6478 BT_ERR("Ignoring invalid connection parameters");
6479 continue;
6480 }
6481
6482 hci_param = hci_conn_params_add(hdev, &param->addr.bdaddr,
6483 addr_type);
6484 if (!hci_param) {
6485 BT_ERR("Failed to add connection parameters");
6486 continue;
6487 }
6488
6489 hci_param->conn_min_interval = min;
6490 hci_param->conn_max_interval = max;
6491 hci_param->conn_latency = latency;
6492 hci_param->supervision_timeout = timeout;
6493 }
6494
6495 hci_dev_unlock(hdev);
6496
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006497 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
6498 NULL, 0);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006499}
6500
Marcel Holtmanndbece372014-07-04 18:11:55 +02006501static int set_external_config(struct sock *sk, struct hci_dev *hdev,
6502 void *data, u16 len)
6503{
6504 struct mgmt_cp_set_external_config *cp = data;
6505 bool changed;
6506 int err;
6507
6508 BT_DBG("%s", hdev->name);
6509
6510 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006511 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6512 MGMT_STATUS_REJECTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006513
6514 if (cp->config != 0x00 && cp->config != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02006515 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6516 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006517
6518 if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
Johan Hedberga69e8372015-03-06 21:08:53 +02006519 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6520 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006521
6522 hci_dev_lock(hdev);
6523
6524 if (cp->config)
Marcel Holtmann238be782015-03-13 02:11:06 -07006525 changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006526 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07006527 changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006528
6529 err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
6530 if (err < 0)
6531 goto unlock;
6532
6533 if (!changed)
6534 goto unlock;
6535
Marcel Holtmannf4537c02014-07-04 19:06:23 +02006536 err = new_options(hdev, sk);
6537
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006538 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
Marcel Holtmanndbece372014-07-04 18:11:55 +02006539 mgmt_index_removed(hdev);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02006540
Marcel Holtmann516018a2015-03-13 02:11:04 -07006541 if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006542 hci_dev_set_flag(hdev, HCI_CONFIG);
6543 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02006544
6545 queue_work(hdev->req_workqueue, &hdev->power_on);
6546 } else {
Marcel Holtmann5ea234d2014-07-06 12:11:16 +02006547 set_bit(HCI_RAW, &hdev->flags);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02006548 mgmt_index_added(hdev);
6549 }
Marcel Holtmanndbece372014-07-04 18:11:55 +02006550 }
6551
6552unlock:
6553 hci_dev_unlock(hdev);
6554 return err;
6555}
6556
Marcel Holtmann9713c172014-07-06 12:11:15 +02006557static int set_public_address(struct sock *sk, struct hci_dev *hdev,
6558 void *data, u16 len)
6559{
6560 struct mgmt_cp_set_public_address *cp = data;
6561 bool changed;
6562 int err;
6563
6564 BT_DBG("%s", hdev->name);
6565
6566 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006567 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6568 MGMT_STATUS_REJECTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006569
6570 if (!bacmp(&cp->bdaddr, BDADDR_ANY))
Johan Hedberga69e8372015-03-06 21:08:53 +02006571 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6572 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006573
6574 if (!hdev->set_bdaddr)
Johan Hedberga69e8372015-03-06 21:08:53 +02006575 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6576 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006577
6578 hci_dev_lock(hdev);
6579
6580 changed = !!bacmp(&hdev->public_addr, &cp->bdaddr);
6581 bacpy(&hdev->public_addr, &cp->bdaddr);
6582
6583 err = send_options_rsp(sk, MGMT_OP_SET_PUBLIC_ADDRESS, hdev);
6584 if (err < 0)
6585 goto unlock;
6586
6587 if (!changed)
6588 goto unlock;
6589
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006590 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
Marcel Holtmann9713c172014-07-06 12:11:15 +02006591 err = new_options(hdev, sk);
6592
6593 if (is_configured(hdev)) {
6594 mgmt_index_removed(hdev);
6595
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006596 hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006597
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006598 hci_dev_set_flag(hdev, HCI_CONFIG);
6599 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006600
6601 queue_work(hdev->req_workqueue, &hdev->power_on);
6602 }
6603
6604unlock:
6605 hci_dev_unlock(hdev);
6606 return err;
6607}
6608
Marcel Holtmannbea41602015-03-14 22:43:17 -07006609static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
6610 u8 data_len)
6611{
6612 eir[eir_len++] = sizeof(type) + data_len;
6613 eir[eir_len++] = type;
6614 memcpy(&eir[eir_len], data, data_len);
6615 eir_len += data_len;
6616
6617 return eir_len;
6618}
6619
Johan Hedberg40f66c02015-04-07 21:52:22 +03006620static void read_local_oob_ext_data_complete(struct hci_dev *hdev, u8 status,
6621 u16 opcode, struct sk_buff *skb)
6622{
6623 const struct mgmt_cp_read_local_oob_ext_data *mgmt_cp;
6624 struct mgmt_rp_read_local_oob_ext_data *mgmt_rp;
6625 u8 *h192, *r192, *h256, *r256;
6626 struct mgmt_pending_cmd *cmd;
6627 u16 eir_len;
6628 int err;
6629
6630 BT_DBG("%s status %u", hdev->name, status);
6631
6632 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev);
6633 if (!cmd)
6634 return;
6635
6636 mgmt_cp = cmd->param;
6637
6638 if (status) {
6639 status = mgmt_status(status);
6640 eir_len = 0;
6641
6642 h192 = NULL;
6643 r192 = NULL;
6644 h256 = NULL;
6645 r256 = NULL;
6646 } else if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
6647 struct hci_rp_read_local_oob_data *rp;
6648
6649 if (skb->len != sizeof(*rp)) {
6650 status = MGMT_STATUS_FAILED;
6651 eir_len = 0;
6652 } else {
6653 status = MGMT_STATUS_SUCCESS;
6654 rp = (void *)skb->data;
6655
6656 eir_len = 5 + 18 + 18;
6657 h192 = rp->hash;
6658 r192 = rp->rand;
6659 h256 = NULL;
6660 r256 = NULL;
6661 }
6662 } else {
6663 struct hci_rp_read_local_oob_ext_data *rp;
6664
6665 if (skb->len != sizeof(*rp)) {
6666 status = MGMT_STATUS_FAILED;
6667 eir_len = 0;
6668 } else {
6669 status = MGMT_STATUS_SUCCESS;
6670 rp = (void *)skb->data;
6671
6672 if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
6673 eir_len = 5 + 18 + 18;
6674 h192 = NULL;
6675 r192 = NULL;
6676 } else {
6677 eir_len = 5 + 18 + 18 + 18 + 18;
6678 h192 = rp->hash192;
6679 r192 = rp->rand192;
6680 }
6681
6682 h256 = rp->hash256;
6683 r256 = rp->rand256;
6684 }
6685 }
6686
6687 mgmt_rp = kmalloc(sizeof(*mgmt_rp) + eir_len, GFP_KERNEL);
6688 if (!mgmt_rp)
6689 goto done;
6690
6691 if (status)
6692 goto send_rsp;
6693
6694 eir_len = eir_append_data(mgmt_rp->eir, 0, EIR_CLASS_OF_DEV,
6695 hdev->dev_class, 3);
6696
6697 if (h192 && r192) {
6698 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6699 EIR_SSP_HASH_C192, h192, 16);
6700 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6701 EIR_SSP_RAND_R192, r192, 16);
6702 }
6703
6704 if (h256 && r256) {
6705 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6706 EIR_SSP_HASH_C256, h256, 16);
6707 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6708 EIR_SSP_RAND_R256, r256, 16);
6709 }
6710
6711send_rsp:
6712 mgmt_rp->type = mgmt_cp->type;
6713 mgmt_rp->eir_len = cpu_to_le16(eir_len);
6714
6715 err = mgmt_cmd_complete(cmd->sk, hdev->id,
6716 MGMT_OP_READ_LOCAL_OOB_EXT_DATA, status,
6717 mgmt_rp, sizeof(*mgmt_rp) + eir_len);
6718 if (err < 0 || status)
6719 goto done;
6720
6721 hci_sock_set_flag(cmd->sk, HCI_MGMT_OOB_DATA_EVENTS);
6722
6723 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
6724 mgmt_rp, sizeof(*mgmt_rp) + eir_len,
6725 HCI_MGMT_OOB_DATA_EVENTS, cmd->sk);
6726done:
6727 kfree(mgmt_rp);
6728 mgmt_pending_remove(cmd);
6729}
6730
6731static int read_local_ssp_oob_req(struct hci_dev *hdev, struct sock *sk,
6732 struct mgmt_cp_read_local_oob_ext_data *cp)
6733{
6734 struct mgmt_pending_cmd *cmd;
6735 struct hci_request req;
6736 int err;
6737
6738 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev,
6739 cp, sizeof(*cp));
6740 if (!cmd)
6741 return -ENOMEM;
6742
6743 hci_req_init(&req, hdev);
6744
6745 if (bredr_sc_enabled(hdev))
6746 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
6747 else
6748 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
6749
6750 err = hci_req_run_skb(&req, read_local_oob_ext_data_complete);
6751 if (err < 0) {
6752 mgmt_pending_remove(cmd);
6753 return err;
6754 }
6755
6756 return 0;
6757}
6758
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006759static int read_local_oob_ext_data(struct sock *sk, struct hci_dev *hdev,
6760 void *data, u16 data_len)
6761{
6762 struct mgmt_cp_read_local_oob_ext_data *cp = data;
6763 struct mgmt_rp_read_local_oob_ext_data *rp;
6764 size_t rp_len;
6765 u16 eir_len;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006766 u8 status, flags, role, addr[7], hash[16], rand[16];
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006767 int err;
6768
6769 BT_DBG("%s", hdev->name);
6770
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006771 if (hdev_is_powered(hdev)) {
6772 switch (cp->type) {
6773 case BIT(BDADDR_BREDR):
6774 status = mgmt_bredr_support(hdev);
6775 if (status)
6776 eir_len = 0;
6777 else
6778 eir_len = 5;
6779 break;
6780 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
6781 status = mgmt_le_support(hdev);
6782 if (status)
6783 eir_len = 0;
6784 else
6785 eir_len = 9 + 3 + 18 + 18 + 3;
6786 break;
6787 default:
6788 status = MGMT_STATUS_INVALID_PARAMS;
6789 eir_len = 0;
6790 break;
6791 }
6792 } else {
6793 status = MGMT_STATUS_NOT_POWERED;
6794 eir_len = 0;
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006795 }
6796
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006797 rp_len = sizeof(*rp) + eir_len;
6798 rp = kmalloc(rp_len, GFP_ATOMIC);
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006799 if (!rp)
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006800 return -ENOMEM;
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006801
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006802 if (status)
6803 goto complete;
6804
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006805 hci_dev_lock(hdev);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006806
6807 eir_len = 0;
6808 switch (cp->type) {
6809 case BIT(BDADDR_BREDR):
Johan Hedberg40f66c02015-04-07 21:52:22 +03006810 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
6811 err = read_local_ssp_oob_req(hdev, sk, cp);
6812 hci_dev_unlock(hdev);
6813 if (!err)
6814 goto done;
6815
6816 status = MGMT_STATUS_FAILED;
6817 goto complete;
6818 } else {
6819 eir_len = eir_append_data(rp->eir, eir_len,
6820 EIR_CLASS_OF_DEV,
6821 hdev->dev_class, 3);
6822 }
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006823 break;
6824 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
Marcel Holtmann5082a592015-03-16 12:39:00 -07006825 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
6826 smp_generate_oob(hdev, hash, rand) < 0) {
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006827 hci_dev_unlock(hdev);
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006828 status = MGMT_STATUS_FAILED;
6829 goto complete;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006830 }
6831
Marcel Holtmanne2135682015-04-02 12:00:58 -07006832 /* This should return the active RPA, but since the RPA
6833 * is only programmed on demand, it is really hard to fill
6834 * this in at the moment. For now disallow retrieving
6835 * local out-of-band data when privacy is in use.
6836 *
6837 * Returning the identity address will not help here since
6838 * pairing happens before the identity resolving key is
6839 * known and thus the connection establishment happens
6840 * based on the RPA and not the identity address.
6841 */
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006842 if (hci_dev_test_flag(hdev, HCI_PRIVACY)) {
Marcel Holtmanne2135682015-04-02 12:00:58 -07006843 hci_dev_unlock(hdev);
6844 status = MGMT_STATUS_REJECTED;
6845 goto complete;
6846 }
6847
6848 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
6849 !bacmp(&hdev->bdaddr, BDADDR_ANY) ||
6850 (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
6851 bacmp(&hdev->static_addr, BDADDR_ANY))) {
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006852 memcpy(addr, &hdev->static_addr, 6);
6853 addr[6] = 0x01;
6854 } else {
6855 memcpy(addr, &hdev->bdaddr, 6);
6856 addr[6] = 0x00;
6857 }
6858
6859 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_BDADDR,
6860 addr, sizeof(addr));
6861
6862 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
6863 role = 0x02;
6864 else
6865 role = 0x01;
6866
6867 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_ROLE,
6868 &role, sizeof(role));
6869
Marcel Holtmann5082a592015-03-16 12:39:00 -07006870 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED)) {
6871 eir_len = eir_append_data(rp->eir, eir_len,
6872 EIR_LE_SC_CONFIRM,
6873 hash, sizeof(hash));
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006874
Marcel Holtmann5082a592015-03-16 12:39:00 -07006875 eir_len = eir_append_data(rp->eir, eir_len,
6876 EIR_LE_SC_RANDOM,
6877 rand, sizeof(rand));
6878 }
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006879
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006880 flags = get_adv_discov_flags(hdev);
6881
6882 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
6883 flags |= LE_AD_NO_BREDR;
6884
6885 eir_len = eir_append_data(rp->eir, eir_len, EIR_FLAGS,
6886 &flags, sizeof(flags));
6887 break;
6888 }
6889
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006890 hci_dev_unlock(hdev);
6891
Marcel Holtmann72000df2015-03-16 16:11:21 -07006892 hci_sock_set_flag(sk, HCI_MGMT_OOB_DATA_EVENTS);
6893
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006894 status = MGMT_STATUS_SUCCESS;
6895
6896complete:
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006897 rp->type = cp->type;
6898 rp->eir_len = cpu_to_le16(eir_len);
6899
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006900 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006901 status, rp, sizeof(*rp) + eir_len);
6902 if (err < 0 || status)
Marcel Holtmann72000df2015-03-16 16:11:21 -07006903 goto done;
6904
6905 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
6906 rp, sizeof(*rp) + eir_len,
6907 HCI_MGMT_OOB_DATA_EVENTS, sk);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006908
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006909done:
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006910 kfree(rp);
6911
6912 return err;
6913}
6914
Arman Uguray089fa8c2015-03-25 18:53:45 -07006915static u32 get_supported_adv_flags(struct hci_dev *hdev)
6916{
6917 u32 flags = 0;
6918
6919 flags |= MGMT_ADV_FLAG_CONNECTABLE;
6920 flags |= MGMT_ADV_FLAG_DISCOV;
6921 flags |= MGMT_ADV_FLAG_LIMITED_DISCOV;
6922 flags |= MGMT_ADV_FLAG_MANAGED_FLAGS;
6923
6924 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID)
6925 flags |= MGMT_ADV_FLAG_TX_POWER;
6926
6927 return flags;
6928}
6929
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006930static int read_adv_features(struct sock *sk, struct hci_dev *hdev,
6931 void *data, u16 data_len)
6932{
6933 struct mgmt_rp_read_adv_features *rp;
6934 size_t rp_len;
Florian Grandel286e0c82015-06-18 03:16:38 +02006935 int err, i;
Arman Uguray24b4f382015-03-23 15:57:12 -07006936 bool instance;
Florian Grandel286e0c82015-06-18 03:16:38 +02006937 struct adv_info *adv_instance;
Arman Uguray089fa8c2015-03-25 18:53:45 -07006938 u32 supported_flags;
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006939
6940 BT_DBG("%s", hdev->name);
6941
Arman Uguray089fa8c2015-03-25 18:53:45 -07006942 if (!lmp_le_capable(hdev))
6943 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
6944 MGMT_STATUS_REJECTED);
6945
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006946 hci_dev_lock(hdev);
6947
6948 rp_len = sizeof(*rp);
Arman Uguray24b4f382015-03-23 15:57:12 -07006949
Arman Uguray24b4f382015-03-23 15:57:12 -07006950 instance = hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE);
6951 if (instance)
Florian Grandel286e0c82015-06-18 03:16:38 +02006952 rp_len += hdev->adv_instance_cnt;
Arman Uguray24b4f382015-03-23 15:57:12 -07006953
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006954 rp = kmalloc(rp_len, GFP_ATOMIC);
6955 if (!rp) {
6956 hci_dev_unlock(hdev);
6957 return -ENOMEM;
6958 }
6959
Arman Uguray089fa8c2015-03-25 18:53:45 -07006960 supported_flags = get_supported_adv_flags(hdev);
6961
6962 rp->supported_flags = cpu_to_le32(supported_flags);
Marcel Holtmanndc5d82a2015-03-19 17:22:25 -07006963 rp->max_adv_data_len = HCI_MAX_AD_LENGTH;
6964 rp->max_scan_rsp_len = HCI_MAX_AD_LENGTH;
Florian Grandeld2609b32015-06-18 03:16:34 +02006965 rp->max_instances = HCI_MAX_ADV_INSTANCES;
Arman Uguray24b4f382015-03-23 15:57:12 -07006966
Arman Uguray24b4f382015-03-23 15:57:12 -07006967 if (instance) {
Florian Grandel286e0c82015-06-18 03:16:38 +02006968 i = 0;
6969 list_for_each_entry(adv_instance, &hdev->adv_instances, list) {
6970 if (i >= hdev->adv_instance_cnt)
6971 break;
6972
6973 rp->instance[i] = adv_instance->instance;
6974 i++;
6975 }
6976 rp->num_instances = hdev->adv_instance_cnt;
Arman Uguray24b4f382015-03-23 15:57:12 -07006977 } else {
6978 rp->num_instances = 0;
6979 }
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006980
6981 hci_dev_unlock(hdev);
6982
6983 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
6984 MGMT_STATUS_SUCCESS, rp, rp_len);
6985
6986 kfree(rp);
6987
6988 return err;
6989}
6990
Arman Uguray4117ed72015-03-23 15:57:14 -07006991static bool tlv_data_is_valid(struct hci_dev *hdev, u32 adv_flags, u8 *data,
Arman Ugurayb44133f2015-03-25 18:53:41 -07006992 u8 len, bool is_adv_data)
Arman Uguray24b4f382015-03-23 15:57:12 -07006993{
Arman Uguray4117ed72015-03-23 15:57:14 -07006994 u8 max_len = HCI_MAX_AD_LENGTH;
Arman Uguray24b4f382015-03-23 15:57:12 -07006995 int i, cur_len;
Arman Ugurayb44133f2015-03-25 18:53:41 -07006996 bool flags_managed = false;
Arman Uguray5507e352015-03-25 18:53:44 -07006997 bool tx_power_managed = false;
Arman Uguray67e0c0c2015-03-25 18:53:43 -07006998 u32 flags_params = MGMT_ADV_FLAG_DISCOV | MGMT_ADV_FLAG_LIMITED_DISCOV |
6999 MGMT_ADV_FLAG_MANAGED_FLAGS;
Arman Uguray24b4f382015-03-23 15:57:12 -07007000
Arman Uguray807ec772015-03-25 18:53:42 -07007001 if (is_adv_data && (adv_flags & flags_params)) {
Arman Ugurayb44133f2015-03-25 18:53:41 -07007002 flags_managed = true;
7003 max_len -= 3;
7004 }
Arman Uguray24b4f382015-03-23 15:57:12 -07007005
Arman Uguray5507e352015-03-25 18:53:44 -07007006 if (is_adv_data && (adv_flags & MGMT_ADV_FLAG_TX_POWER)) {
7007 tx_power_managed = true;
7008 max_len -= 3;
7009 }
7010
Arman Uguray4117ed72015-03-23 15:57:14 -07007011 if (len > max_len)
Arman Uguray24b4f382015-03-23 15:57:12 -07007012 return false;
7013
Arman Uguray4117ed72015-03-23 15:57:14 -07007014 /* Make sure that the data is correctly formatted. */
7015 for (i = 0, cur_len = 0; i < len; i += (cur_len + 1)) {
7016 cur_len = data[i];
Arman Uguray24b4f382015-03-23 15:57:12 -07007017
Arman Ugurayb44133f2015-03-25 18:53:41 -07007018 if (flags_managed && data[i + 1] == EIR_FLAGS)
7019 return false;
7020
Arman Uguray5507e352015-03-25 18:53:44 -07007021 if (tx_power_managed && data[i + 1] == EIR_TX_POWER)
7022 return false;
7023
Arman Uguray24b4f382015-03-23 15:57:12 -07007024 /* If the current field length would exceed the total data
7025 * length, then it's invalid.
7026 */
Arman Uguray4117ed72015-03-23 15:57:14 -07007027 if (i + cur_len >= len)
Arman Uguray24b4f382015-03-23 15:57:12 -07007028 return false;
7029 }
7030
7031 return true;
7032}
7033
Arman Uguray24b4f382015-03-23 15:57:12 -07007034static void add_advertising_complete(struct hci_dev *hdev, u8 status,
7035 u16 opcode)
7036{
7037 struct mgmt_pending_cmd *cmd;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007038 struct mgmt_cp_add_advertising *cp;
Arman Uguray24b4f382015-03-23 15:57:12 -07007039 struct mgmt_rp_add_advertising rp;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007040 struct adv_info *adv_instance, *n;
7041 u8 instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007042
7043 BT_DBG("status %d", status);
7044
7045 hci_dev_lock(hdev);
7046
7047 cmd = pending_find(MGMT_OP_ADD_ADVERTISING, hdev);
7048
Florian Grandelfffd38b2015-06-18 03:16:47 +02007049 if (status)
Arman Uguray24b4f382015-03-23 15:57:12 -07007050 hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
Florian Grandelfffd38b2015-06-18 03:16:47 +02007051
7052 list_for_each_entry_safe(adv_instance, n, &hdev->adv_instances, list) {
7053 if (!adv_instance->pending)
7054 continue;
7055
7056 if (!status) {
7057 adv_instance->pending = false;
7058 continue;
7059 }
7060
7061 instance = adv_instance->instance;
7062
7063 if (hdev->cur_adv_instance == instance)
7064 cancel_adv_timeout(hdev);
7065
7066 hci_remove_adv_instance(hdev, instance);
7067 advertising_removed(cmd ? cmd->sk : NULL, hdev, instance);
Arman Uguray24b4f382015-03-23 15:57:12 -07007068 }
7069
7070 if (!cmd)
7071 goto unlock;
7072
Florian Grandelfffd38b2015-06-18 03:16:47 +02007073 cp = cmd->param;
7074 rp.instance = cp->instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007075
7076 if (status)
7077 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
7078 mgmt_status(status));
7079 else
7080 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
7081 mgmt_status(status), &rp, sizeof(rp));
7082
7083 mgmt_pending_remove(cmd);
7084
7085unlock:
7086 hci_dev_unlock(hdev);
7087}
7088
Florian Grandel5d900e42015-06-18 03:16:35 +02007089void mgmt_adv_timeout_expired(struct hci_dev *hdev)
Arman Uguray912098a2015-03-23 15:57:15 -07007090{
Florian Grandel847818d2015-06-18 03:16:46 +02007091 u8 instance;
7092 struct hci_request req;
7093
Florian Grandel5d900e42015-06-18 03:16:35 +02007094 hdev->adv_instance_timeout = 0;
Arman Uguray912098a2015-03-23 15:57:15 -07007095
Florian Grandel847818d2015-06-18 03:16:46 +02007096 instance = get_current_adv_instance(hdev);
7097 if (instance == 0x00)
7098 return;
7099
Arman Uguray912098a2015-03-23 15:57:15 -07007100 hci_dev_lock(hdev);
Florian Grandel847818d2015-06-18 03:16:46 +02007101 hci_req_init(&req, hdev);
7102
7103 clear_adv_instance(hdev, &req, instance, false);
7104
7105 if (list_empty(&hdev->adv_instances))
7106 disable_advertising(&req);
7107
7108 if (!skb_queue_empty(&req.cmd_q))
7109 hci_req_run(&req, NULL);
7110
Arman Uguray912098a2015-03-23 15:57:15 -07007111 hci_dev_unlock(hdev);
7112}
7113
Arman Uguray24b4f382015-03-23 15:57:12 -07007114static int add_advertising(struct sock *sk, struct hci_dev *hdev,
7115 void *data, u16 data_len)
7116{
7117 struct mgmt_cp_add_advertising *cp = data;
7118 struct mgmt_rp_add_advertising rp;
7119 u32 flags;
Arman Uguray089fa8c2015-03-25 18:53:45 -07007120 u32 supported_flags;
Arman Uguray24b4f382015-03-23 15:57:12 -07007121 u8 status;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007122 u16 timeout, duration;
7123 unsigned int prev_instance_cnt = hdev->adv_instance_cnt;
7124 u8 schedule_instance = 0;
7125 struct adv_info *next_instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007126 int err;
7127 struct mgmt_pending_cmd *cmd;
7128 struct hci_request req;
7129
7130 BT_DBG("%s", hdev->name);
7131
7132 status = mgmt_le_support(hdev);
7133 if (status)
7134 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7135 status);
7136
7137 flags = __le32_to_cpu(cp->flags);
Arman Uguray912098a2015-03-23 15:57:15 -07007138 timeout = __le16_to_cpu(cp->timeout);
Florian Grandelfffd38b2015-06-18 03:16:47 +02007139 duration = __le16_to_cpu(cp->duration);
Arman Uguray24b4f382015-03-23 15:57:12 -07007140
Florian Grandelfffd38b2015-06-18 03:16:47 +02007141 /* The current implementation only supports a subset of the specified
7142 * flags.
Arman Uguray089fa8c2015-03-25 18:53:45 -07007143 */
7144 supported_flags = get_supported_adv_flags(hdev);
Florian Grandelfffd38b2015-06-18 03:16:47 +02007145 if (flags & ~supported_flags)
Arman Uguray24b4f382015-03-23 15:57:12 -07007146 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7147 MGMT_STATUS_INVALID_PARAMS);
7148
7149 hci_dev_lock(hdev);
7150
Arman Uguray912098a2015-03-23 15:57:15 -07007151 if (timeout && !hdev_is_powered(hdev)) {
7152 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7153 MGMT_STATUS_REJECTED);
7154 goto unlock;
7155 }
7156
Arman Uguray24b4f382015-03-23 15:57:12 -07007157 if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
Arman Ugurayda9293352015-03-23 15:57:13 -07007158 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
Arman Uguray24b4f382015-03-23 15:57:12 -07007159 pending_find(MGMT_OP_SET_LE, hdev)) {
7160 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7161 MGMT_STATUS_BUSY);
7162 goto unlock;
7163 }
7164
Arman Ugurayb44133f2015-03-25 18:53:41 -07007165 if (!tlv_data_is_valid(hdev, flags, cp->data, cp->adv_data_len, true) ||
Arman Uguray4117ed72015-03-23 15:57:14 -07007166 !tlv_data_is_valid(hdev, flags, cp->data + cp->adv_data_len,
Arman Ugurayb44133f2015-03-25 18:53:41 -07007167 cp->scan_rsp_len, false)) {
Arman Uguray24b4f382015-03-23 15:57:12 -07007168 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7169 MGMT_STATUS_INVALID_PARAMS);
7170 goto unlock;
7171 }
7172
Florian Grandelfffd38b2015-06-18 03:16:47 +02007173 err = hci_add_adv_instance(hdev, cp->instance, flags,
7174 cp->adv_data_len, cp->data,
7175 cp->scan_rsp_len,
7176 cp->data + cp->adv_data_len,
7177 timeout, duration);
7178 if (err < 0) {
7179 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7180 MGMT_STATUS_FAILED);
7181 goto unlock;
7182 }
Arman Uguray24b4f382015-03-23 15:57:12 -07007183
Florian Grandelfffd38b2015-06-18 03:16:47 +02007184 /* Only trigger an advertising added event if a new instance was
7185 * actually added.
7186 */
7187 if (hdev->adv_instance_cnt > prev_instance_cnt)
7188 advertising_added(sk, hdev, cp->instance);
Arman Uguray24b4f382015-03-23 15:57:12 -07007189
Florian Grandelfffd38b2015-06-18 03:16:47 +02007190 hci_dev_set_flag(hdev, HCI_ADVERTISING_INSTANCE);
Arman Uguray24b4f382015-03-23 15:57:12 -07007191
Florian Grandelfffd38b2015-06-18 03:16:47 +02007192 if (hdev->cur_adv_instance == cp->instance) {
7193 /* If the currently advertised instance is being changed then
7194 * cancel the current advertising and schedule the next
7195 * instance. If there is only one instance then the overridden
7196 * advertising data will be visible right away.
7197 */
7198 cancel_adv_timeout(hdev);
Arman Uguray912098a2015-03-23 15:57:15 -07007199
Florian Grandelfffd38b2015-06-18 03:16:47 +02007200 next_instance = hci_get_next_instance(hdev, cp->instance);
7201 if (next_instance)
7202 schedule_instance = next_instance->instance;
7203 } else if (!hdev->adv_instance_timeout) {
7204 /* Immediately advertise the new instance if no other
7205 * instance is currently being advertised.
7206 */
7207 schedule_instance = cp->instance;
7208 }
Arman Uguray912098a2015-03-23 15:57:15 -07007209
Florian Grandelfffd38b2015-06-18 03:16:47 +02007210 /* If the HCI_ADVERTISING flag is set or the device isn't powered or
7211 * there is no instance to be advertised then we have no HCI
7212 * communication to make. Simply return.
Arman Uguray24b4f382015-03-23 15:57:12 -07007213 */
7214 if (!hdev_is_powered(hdev) ||
Florian Grandelfffd38b2015-06-18 03:16:47 +02007215 hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
7216 !schedule_instance) {
7217 rp.instance = cp->instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007218 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7219 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
7220 goto unlock;
7221 }
7222
7223 /* We're good to go, update advertising data, parameters, and start
7224 * advertising.
7225 */
7226 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_ADVERTISING, hdev, data,
7227 data_len);
7228 if (!cmd) {
7229 err = -ENOMEM;
7230 goto unlock;
7231 }
7232
7233 hci_req_init(&req, hdev);
7234
Florian Grandelfffd38b2015-06-18 03:16:47 +02007235 err = schedule_adv_instance(&req, schedule_instance, true);
Arman Uguray24b4f382015-03-23 15:57:12 -07007236
Florian Grandelfffd38b2015-06-18 03:16:47 +02007237 if (!err)
7238 err = hci_req_run(&req, add_advertising_complete);
7239
Arman Uguray24b4f382015-03-23 15:57:12 -07007240 if (err < 0)
7241 mgmt_pending_remove(cmd);
7242
7243unlock:
7244 hci_dev_unlock(hdev);
7245
7246 return err;
7247}
7248
Arman Ugurayda9293352015-03-23 15:57:13 -07007249static void remove_advertising_complete(struct hci_dev *hdev, u8 status,
7250 u16 opcode)
7251{
7252 struct mgmt_pending_cmd *cmd;
Florian Grandel01948332015-06-18 03:16:48 +02007253 struct mgmt_cp_remove_advertising *cp;
Arman Ugurayda9293352015-03-23 15:57:13 -07007254 struct mgmt_rp_remove_advertising rp;
7255
7256 BT_DBG("status %d", status);
7257
7258 hci_dev_lock(hdev);
7259
7260 /* A failure status here only means that we failed to disable
7261 * advertising. Otherwise, the advertising instance has been removed,
7262 * so report success.
7263 */
7264 cmd = pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev);
7265 if (!cmd)
7266 goto unlock;
7267
Florian Grandel01948332015-06-18 03:16:48 +02007268 cp = cmd->param;
7269 rp.instance = cp->instance;
Arman Ugurayda9293352015-03-23 15:57:13 -07007270
7271 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, MGMT_STATUS_SUCCESS,
7272 &rp, sizeof(rp));
7273 mgmt_pending_remove(cmd);
7274
7275unlock:
7276 hci_dev_unlock(hdev);
7277}
7278
7279static int remove_advertising(struct sock *sk, struct hci_dev *hdev,
7280 void *data, u16 data_len)
7281{
7282 struct mgmt_cp_remove_advertising *cp = data;
7283 struct mgmt_rp_remove_advertising rp;
Arman Ugurayda9293352015-03-23 15:57:13 -07007284 struct mgmt_pending_cmd *cmd;
7285 struct hci_request req;
Johan Hedberg952497b2015-06-18 21:05:31 +03007286 int err;
Arman Ugurayda9293352015-03-23 15:57:13 -07007287
7288 BT_DBG("%s", hdev->name);
7289
Arman Ugurayda9293352015-03-23 15:57:13 -07007290 hci_dev_lock(hdev);
7291
Johan Hedberg952497b2015-06-18 21:05:31 +03007292 if (cp->instance && !hci_find_adv_instance(hdev, cp->instance)) {
Florian Grandel01948332015-06-18 03:16:48 +02007293 err = mgmt_cmd_status(sk, hdev->id,
7294 MGMT_OP_REMOVE_ADVERTISING,
7295 MGMT_STATUS_INVALID_PARAMS);
7296 goto unlock;
7297 }
7298
Arman Ugurayda9293352015-03-23 15:57:13 -07007299 if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
7300 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
7301 pending_find(MGMT_OP_SET_LE, hdev)) {
7302 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
7303 MGMT_STATUS_BUSY);
7304 goto unlock;
7305 }
7306
7307 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE)) {
7308 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
7309 MGMT_STATUS_INVALID_PARAMS);
7310 goto unlock;
7311 }
7312
Florian Grandel01948332015-06-18 03:16:48 +02007313 hci_req_init(&req, hdev);
Arman Uguray912098a2015-03-23 15:57:15 -07007314
Florian Grandel01948332015-06-18 03:16:48 +02007315 clear_adv_instance(hdev, &req, cp->instance, true);
Arman Ugurayda9293352015-03-23 15:57:13 -07007316
Florian Grandel01948332015-06-18 03:16:48 +02007317 if (list_empty(&hdev->adv_instances))
7318 disable_advertising(&req);
Arman Ugurayda9293352015-03-23 15:57:13 -07007319
Florian Grandel01948332015-06-18 03:16:48 +02007320 /* If no HCI commands have been collected so far or the HCI_ADVERTISING
7321 * flag is set or the device isn't powered then we have no HCI
7322 * communication to make. Simply return.
Arman Ugurayda9293352015-03-23 15:57:13 -07007323 */
Florian Grandel01948332015-06-18 03:16:48 +02007324 if (skb_queue_empty(&req.cmd_q) ||
7325 !hdev_is_powered(hdev) ||
Arman Ugurayda9293352015-03-23 15:57:13 -07007326 hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
Florian Grandel01948332015-06-18 03:16:48 +02007327 rp.instance = cp->instance;
Arman Ugurayda9293352015-03-23 15:57:13 -07007328 err = mgmt_cmd_complete(sk, hdev->id,
7329 MGMT_OP_REMOVE_ADVERTISING,
7330 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
7331 goto unlock;
7332 }
7333
7334 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_ADVERTISING, hdev, data,
7335 data_len);
7336 if (!cmd) {
7337 err = -ENOMEM;
7338 goto unlock;
7339 }
7340
Arman Ugurayda9293352015-03-23 15:57:13 -07007341 err = hci_req_run(&req, remove_advertising_complete);
7342 if (err < 0)
7343 mgmt_pending_remove(cmd);
7344
7345unlock:
7346 hci_dev_unlock(hdev);
7347
7348 return err;
7349}
7350
Johan Hedberg6d785aa32015-03-06 21:08:51 +02007351static const struct hci_mgmt_handler mgmt_handlers[] = {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02007352 { NULL }, /* 0x0000 (no command) */
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007353 { read_version, MGMT_READ_VERSION_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007354 HCI_MGMT_NO_HDEV |
7355 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007356 { read_commands, MGMT_READ_COMMANDS_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007357 HCI_MGMT_NO_HDEV |
7358 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007359 { read_index_list, MGMT_READ_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007360 HCI_MGMT_NO_HDEV |
7361 HCI_MGMT_UNTRUSTED },
7362 { read_controller_info, MGMT_READ_INFO_SIZE,
7363 HCI_MGMT_UNTRUSTED },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007364 { set_powered, MGMT_SETTING_SIZE },
7365 { set_discoverable, MGMT_SET_DISCOVERABLE_SIZE },
7366 { set_connectable, MGMT_SETTING_SIZE },
7367 { set_fast_connectable, MGMT_SETTING_SIZE },
7368 { set_bondable, MGMT_SETTING_SIZE },
7369 { set_link_security, MGMT_SETTING_SIZE },
7370 { set_ssp, MGMT_SETTING_SIZE },
7371 { set_hs, MGMT_SETTING_SIZE },
7372 { set_le, MGMT_SETTING_SIZE },
7373 { set_dev_class, MGMT_SET_DEV_CLASS_SIZE },
7374 { set_local_name, MGMT_SET_LOCAL_NAME_SIZE },
7375 { add_uuid, MGMT_ADD_UUID_SIZE },
7376 { remove_uuid, MGMT_REMOVE_UUID_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007377 { load_link_keys, MGMT_LOAD_LINK_KEYS_SIZE,
7378 HCI_MGMT_VAR_LEN },
7379 { load_long_term_keys, MGMT_LOAD_LONG_TERM_KEYS_SIZE,
7380 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007381 { disconnect, MGMT_DISCONNECT_SIZE },
7382 { get_connections, MGMT_GET_CONNECTIONS_SIZE },
7383 { pin_code_reply, MGMT_PIN_CODE_REPLY_SIZE },
7384 { pin_code_neg_reply, MGMT_PIN_CODE_NEG_REPLY_SIZE },
7385 { set_io_capability, MGMT_SET_IO_CAPABILITY_SIZE },
7386 { pair_device, MGMT_PAIR_DEVICE_SIZE },
7387 { cancel_pair_device, MGMT_CANCEL_PAIR_DEVICE_SIZE },
7388 { unpair_device, MGMT_UNPAIR_DEVICE_SIZE },
7389 { user_confirm_reply, MGMT_USER_CONFIRM_REPLY_SIZE },
7390 { user_confirm_neg_reply, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
7391 { user_passkey_reply, MGMT_USER_PASSKEY_REPLY_SIZE },
7392 { user_passkey_neg_reply, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007393 { read_local_oob_data, MGMT_READ_LOCAL_OOB_DATA_SIZE },
7394 { add_remote_oob_data, MGMT_ADD_REMOTE_OOB_DATA_SIZE,
7395 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007396 { remove_remote_oob_data, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
7397 { start_discovery, MGMT_START_DISCOVERY_SIZE },
7398 { stop_discovery, MGMT_STOP_DISCOVERY_SIZE },
7399 { confirm_name, MGMT_CONFIRM_NAME_SIZE },
7400 { block_device, MGMT_BLOCK_DEVICE_SIZE },
7401 { unblock_device, MGMT_UNBLOCK_DEVICE_SIZE },
7402 { set_device_id, MGMT_SET_DEVICE_ID_SIZE },
7403 { set_advertising, MGMT_SETTING_SIZE },
7404 { set_bredr, MGMT_SETTING_SIZE },
7405 { set_static_address, MGMT_SET_STATIC_ADDRESS_SIZE },
7406 { set_scan_params, MGMT_SET_SCAN_PARAMS_SIZE },
7407 { set_secure_conn, MGMT_SETTING_SIZE },
7408 { set_debug_keys, MGMT_SETTING_SIZE },
7409 { set_privacy, MGMT_SET_PRIVACY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007410 { load_irks, MGMT_LOAD_IRKS_SIZE,
7411 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007412 { get_conn_info, MGMT_GET_CONN_INFO_SIZE },
7413 { get_clock_info, MGMT_GET_CLOCK_INFO_SIZE },
7414 { add_device, MGMT_ADD_DEVICE_SIZE },
7415 { remove_device, MGMT_REMOVE_DEVICE_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007416 { load_conn_param, MGMT_LOAD_CONN_PARAM_SIZE,
7417 HCI_MGMT_VAR_LEN },
7418 { read_unconf_index_list, MGMT_READ_UNCONF_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007419 HCI_MGMT_NO_HDEV |
7420 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007421 { read_config_info, MGMT_READ_CONFIG_INFO_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007422 HCI_MGMT_UNCONFIGURED |
7423 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007424 { set_external_config, MGMT_SET_EXTERNAL_CONFIG_SIZE,
7425 HCI_MGMT_UNCONFIGURED },
7426 { set_public_address, MGMT_SET_PUBLIC_ADDRESS_SIZE,
7427 HCI_MGMT_UNCONFIGURED },
7428 { start_service_discovery, MGMT_START_SERVICE_DISCOVERY_SIZE,
7429 HCI_MGMT_VAR_LEN },
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007430 { read_local_oob_ext_data, MGMT_READ_LOCAL_OOB_EXT_DATA_SIZE },
Marcel Holtmann96f14742015-03-14 19:27:57 -07007431 { read_ext_index_list, MGMT_READ_EXT_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007432 HCI_MGMT_NO_HDEV |
7433 HCI_MGMT_UNTRUSTED },
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007434 { read_adv_features, MGMT_READ_ADV_FEATURES_SIZE },
Arman Uguray24b4f382015-03-23 15:57:12 -07007435 { add_advertising, MGMT_ADD_ADVERTISING_SIZE,
7436 HCI_MGMT_VAR_LEN },
Arman Ugurayda9293352015-03-23 15:57:13 -07007437 { remove_advertising, MGMT_REMOVE_ADVERTISING_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02007438};
7439
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07007440void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02007441{
Marcel Holtmannced85542015-03-14 19:27:56 -07007442 struct mgmt_ev_ext_index ev;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03007443
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02007444 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
7445 return;
7446
Marcel Holtmannf9207332015-03-14 19:27:55 -07007447 switch (hdev->dev_type) {
7448 case HCI_BREDR:
7449 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
7450 mgmt_index_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev,
7451 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007452 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007453 } else {
7454 mgmt_index_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0,
7455 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007456 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007457 }
7458 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07007459 case HCI_AMP:
7460 ev.type = 0x02;
7461 break;
7462 default:
7463 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007464 }
Marcel Holtmannced85542015-03-14 19:27:56 -07007465
7466 ev.bus = hdev->bus;
7467
7468 mgmt_index_event(MGMT_EV_EXT_INDEX_ADDED, hdev, &ev, sizeof(ev),
7469 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02007470}
7471
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07007472void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02007473{
Marcel Holtmannced85542015-03-14 19:27:56 -07007474 struct mgmt_ev_ext_index ev;
Johan Hedberg5f159032012-03-02 03:13:19 +02007475 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02007476
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02007477 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
7478 return;
7479
Marcel Holtmannf9207332015-03-14 19:27:55 -07007480 switch (hdev->dev_type) {
7481 case HCI_BREDR:
7482 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02007483
Marcel Holtmannf9207332015-03-14 19:27:55 -07007484 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
7485 mgmt_index_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev,
7486 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007487 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007488 } else {
7489 mgmt_index_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0,
7490 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007491 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007492 }
7493 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07007494 case HCI_AMP:
7495 ev.type = 0x02;
7496 break;
7497 default:
7498 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007499 }
Marcel Holtmannced85542015-03-14 19:27:56 -07007500
7501 ev.bus = hdev->bus;
7502
7503 mgmt_index_event(MGMT_EV_EXT_INDEX_REMOVED, hdev, &ev, sizeof(ev),
7504 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02007505}
7506
Andre Guedes6046dc32014-02-26 20:21:51 -03007507/* This function requires the caller holds hdev->lock */
Johan Hedbergaf02dd42015-11-11 08:11:21 +02007508static void restart_le_actions(struct hci_dev *hdev)
Andre Guedes6046dc32014-02-26 20:21:51 -03007509{
7510 struct hci_conn_params *p;
7511
7512 list_for_each_entry(p, &hdev->le_conn_params, list) {
Johan Hedbergd7347f32014-07-04 12:37:23 +03007513 /* Needed for AUTO_OFF case where might not "really"
7514 * have been powered off.
7515 */
7516 list_del_init(&p->action);
7517
7518 switch (p->auto_connect) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02007519 case HCI_AUTO_CONN_DIRECT:
Johan Hedbergd7347f32014-07-04 12:37:23 +03007520 case HCI_AUTO_CONN_ALWAYS:
7521 list_add(&p->action, &hdev->pend_le_conns);
7522 break;
7523 case HCI_AUTO_CONN_REPORT:
7524 list_add(&p->action, &hdev->pend_le_reports);
7525 break;
7526 default:
7527 break;
Marcel Holtmannc83ed192014-07-01 19:28:24 +02007528 }
Andre Guedes6046dc32014-02-26 20:21:51 -03007529 }
7530}
7531
Marcel Holtmann1904a852015-01-11 13:50:44 -08007532static void powered_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg229ab392013-03-15 17:06:53 -05007533{
7534 struct cmd_lookup match = { NULL, hdev };
7535
7536 BT_DBG("status 0x%02x", status);
7537
Marcel Holtmann162a3ba2015-01-14 15:43:11 -08007538 if (!status) {
7539 /* Register the available SMP channels (BR/EDR and LE) only
7540 * when successfully powering on the controller. This late
7541 * registration is required so that LE SMP can clearly
7542 * decide if the public address or static address is used.
7543 */
7544 smp_register(hdev);
Johan Hedbergaf02dd42015-11-11 08:11:21 +02007545
7546 restart_le_actions(hdev);
7547 hci_update_background_scan(hdev);
Marcel Holtmann162a3ba2015-01-14 15:43:11 -08007548 }
7549
Johan Hedberg229ab392013-03-15 17:06:53 -05007550 hci_dev_lock(hdev);
7551
7552 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
7553
7554 new_settings(hdev, match.sk);
7555
7556 hci_dev_unlock(hdev);
7557
7558 if (match.sk)
7559 sock_put(match.sk);
7560}
7561
Johan Hedberg70da6242013-03-15 17:06:51 -05007562static int powered_update_hci(struct hci_dev *hdev)
7563{
Johan Hedberg890ea892013-03-15 17:06:52 -05007564 struct hci_request req;
Florian Grandel320b3bf2015-06-18 03:16:49 +02007565 struct adv_info *adv_instance;
Johan Hedberg70da6242013-03-15 17:06:51 -05007566 u8 link_sec;
7567
Johan Hedberg890ea892013-03-15 17:06:52 -05007568 hci_req_init(&req, hdev);
7569
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007570 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED) &&
Johan Hedberg70da6242013-03-15 17:06:51 -05007571 !lmp_host_ssp_capable(hdev)) {
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007572 u8 mode = 0x01;
Johan Hedberg70da6242013-03-15 17:06:51 -05007573
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007574 hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);
Johan Hedberg70da6242013-03-15 17:06:51 -05007575
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007576 if (bredr_sc_enabled(hdev) && !lmp_host_sc_capable(hdev)) {
7577 u8 support = 0x01;
7578
7579 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT,
7580 sizeof(support), &support);
7581 }
Johan Hedbergec6f99b2014-12-12 13:30:11 +02007582 }
7583
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007584 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
Johan Hedbergc73eee92013-04-19 18:35:21 +03007585 lmp_bredr_capable(hdev)) {
Johan Hedberg70da6242013-03-15 17:06:51 -05007586 struct hci_cp_write_le_host_supported cp;
7587
Marcel Holtmann32226e42014-07-24 20:04:16 +02007588 cp.le = 0x01;
7589 cp.simul = 0x00;
Johan Hedberg70da6242013-03-15 17:06:51 -05007590
7591 /* Check first if we already have the right
7592 * host state (host features set)
7593 */
7594 if (cp.le != lmp_host_le_capable(hdev) ||
7595 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05007596 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
7597 sizeof(cp), &cp);
Johan Hedberg70da6242013-03-15 17:06:51 -05007598 }
7599
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07007600 if (lmp_le_capable(hdev)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07007601 /* Make sure the controller has a good default for
7602 * advertising data. This also applies to the case
7603 * where BR/EDR was toggled during the AUTO_OFF phase.
7604 */
Florian Grandel320b3bf2015-06-18 03:16:49 +02007605 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
7606 (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
7607 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))) {
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07007608 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07007609 update_scan_rsp_data(&req);
7610 }
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07007611
Florian Grandel320b3bf2015-06-18 03:16:49 +02007612 if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
7613 hdev->cur_adv_instance == 0x00 &&
7614 !list_empty(&hdev->adv_instances)) {
7615 adv_instance = list_first_entry(&hdev->adv_instances,
7616 struct adv_info, list);
7617 hdev->cur_adv_instance = adv_instance->instance;
7618 }
7619
7620 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07007621 enable_advertising(&req);
Florian Grandel320b3bf2015-06-18 03:16:49 +02007622 else if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
7623 hdev->cur_adv_instance)
7624 schedule_adv_instance(&req, hdev->cur_adv_instance,
7625 true);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03007626 }
7627
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007628 link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg70da6242013-03-15 17:06:51 -05007629 if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05007630 hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
7631 sizeof(link_sec), &link_sec);
Johan Hedberg70da6242013-03-15 17:06:51 -05007632
7633 if (lmp_bredr_capable(hdev)) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007634 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
Johan Hedberg406ef2a2015-03-10 20:14:27 +02007635 write_fast_connectable(&req, true);
7636 else
7637 write_fast_connectable(&req, false);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02007638 __hci_update_page_scan(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05007639 update_class(&req);
Johan Hedberg13928972013-03-15 17:07:00 -05007640 update_name(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05007641 update_eir(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05007642 }
7643
Johan Hedberg229ab392013-03-15 17:06:53 -05007644 return hci_req_run(&req, powered_complete);
Johan Hedberg70da6242013-03-15 17:06:51 -05007645}
7646
Johan Hedberg744cf192011-11-08 20:40:14 +02007647int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02007648{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02007649 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg98459042014-12-12 11:15:21 +02007650 u8 status, zero_cod[] = { 0, 0, 0 };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02007651 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02007652
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007653 if (!hci_dev_test_flag(hdev, HCI_MGMT))
Johan Hedberg5e5282b2012-02-21 16:01:30 +02007654 return 0;
7655
Johan Hedberg5e5282b2012-02-21 16:01:30 +02007656 if (powered) {
Johan Hedberg229ab392013-03-15 17:06:53 -05007657 if (powered_update_hci(hdev) == 0)
7658 return 0;
Johan Hedbergfe038882013-01-16 16:15:34 +02007659
Johan Hedberg229ab392013-03-15 17:06:53 -05007660 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
7661 &match);
7662 goto new_settings;
Johan Hedbergb24752f2011-11-03 14:40:33 +02007663 }
7664
Johan Hedberg229ab392013-03-15 17:06:53 -05007665 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
Johan Hedberg98459042014-12-12 11:15:21 +02007666
7667 /* If the power off is because of hdev unregistration let
7668 * use the appropriate INVALID_INDEX status. Otherwise use
7669 * NOT_POWERED. We cover both scenarios here since later in
7670 * mgmt_index_removed() any hci_conn callbacks will have already
7671 * been triggered, potentially causing misleading DISCONNECTED
7672 * status responses.
7673 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007674 if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
Johan Hedberg98459042014-12-12 11:15:21 +02007675 status = MGMT_STATUS_INVALID_INDEX;
7676 else
7677 status = MGMT_STATUS_NOT_POWERED;
7678
7679 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedberg229ab392013-03-15 17:06:53 -05007680
7681 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
Marcel Holtmannf6b77122015-03-14 19:28:05 -07007682 mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
7683 zero_cod, sizeof(zero_cod), NULL);
Johan Hedberg229ab392013-03-15 17:06:53 -05007684
7685new_settings:
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02007686 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02007687
7688 if (match.sk)
7689 sock_put(match.sk);
7690
Johan Hedberg7bb895d2012-02-17 01:20:00 +02007691 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02007692}
Johan Hedberg73f22f62010-12-29 16:00:25 +02007693
Marcel Holtmann3eec7052013-10-06 23:55:46 -07007694void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03007695{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007696 struct mgmt_pending_cmd *cmd;
Johan Hedberg96570ff2013-05-29 09:51:29 +03007697 u8 status;
7698
Johan Hedberg333ae952015-03-17 13:48:47 +02007699 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007700 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07007701 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03007702
7703 if (err == -ERFKILL)
7704 status = MGMT_STATUS_RFKILLED;
7705 else
7706 status = MGMT_STATUS_FAILED;
7707
Johan Hedberga69e8372015-03-06 21:08:53 +02007708 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007709
7710 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007711}
7712
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007713void mgmt_discoverable_timeout(struct hci_dev *hdev)
7714{
7715 struct hci_request req;
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007716
7717 hci_dev_lock(hdev);
7718
7719 /* When discoverable timeout triggers, then just make sure
7720 * the limited discoverable flag is cleared. Even in the case
7721 * of a timeout triggered from general discoverable, it is
7722 * safe to unconditionally clear the flag.
7723 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07007724 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
7725 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007726
7727 hci_req_init(&req, hdev);
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007728 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg4b580612013-10-19 23:38:21 +03007729 u8 scan = SCAN_PAGE;
7730 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
7731 sizeof(scan), &scan);
7732 }
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007733 update_class(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07007734
7735 /* Advertising instances don't use the global discoverable setting, so
7736 * only update AD if advertising was enabled using Set Advertising.
7737 */
7738 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
7739 update_adv_data(&req);
7740
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007741 hci_req_run(&req, NULL);
7742
7743 hdev->discov_timeout = 0;
7744
Johan Hedberg9a43e252013-10-20 19:00:07 +03007745 new_settings(hdev, NULL);
7746
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007747 hci_dev_unlock(hdev);
7748}
7749
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07007750void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
7751 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007752{
Johan Hedberg86742e12011-11-07 23:13:38 +02007753 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007754
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007755 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007756
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007757 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02007758 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03007759 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007760 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03007761 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007762 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007763
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07007764 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007765}
Johan Hedbergf7520542011-01-20 12:34:39 +02007766
Johan Hedbergd7b25452014-05-23 13:19:53 +03007767static u8 mgmt_ltk_type(struct smp_ltk *ltk)
7768{
Johan Hedberg23fb8de2014-05-23 13:15:37 +03007769 switch (ltk->type) {
7770 case SMP_LTK:
7771 case SMP_LTK_SLAVE:
7772 if (ltk->authenticated)
7773 return MGMT_LTK_AUTHENTICATED;
7774 return MGMT_LTK_UNAUTHENTICATED;
7775 case SMP_LTK_P256:
7776 if (ltk->authenticated)
7777 return MGMT_LTK_P256_AUTH;
7778 return MGMT_LTK_P256_UNAUTH;
7779 case SMP_LTK_P256_DEBUG:
7780 return MGMT_LTK_P256_DEBUG;
7781 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03007782
7783 return MGMT_LTK_UNAUTHENTICATED;
7784}
7785
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007786void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007787{
7788 struct mgmt_ev_new_long_term_key ev;
7789
7790 memset(&ev, 0, sizeof(ev));
7791
Marcel Holtmann5192d302014-02-19 17:11:58 -08007792 /* Devices using resolvable or non-resolvable random addresses
Florian Grandelf72186d2015-05-26 03:31:09 +02007793 * without providing an identity resolving key don't require
Marcel Holtmann5192d302014-02-19 17:11:58 -08007794 * to store long term keys. Their addresses will change the
7795 * next time around.
7796 *
7797 * Only when a remote device provides an identity address
7798 * make sure the long term key is stored. If the remote
7799 * identity is known, the long term keys are internally
7800 * mapped to the identity address. So allow static random
7801 * and public addresses here.
7802 */
Johan Hedbergba74b662014-02-19 14:57:45 +02007803 if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
7804 (key->bdaddr.b[5] & 0xc0) != 0xc0)
7805 ev.store_hint = 0x00;
7806 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007807 ev.store_hint = persistent;
Johan Hedbergba74b662014-02-19 14:57:45 +02007808
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007809 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007810 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Johan Hedbergd7b25452014-05-23 13:19:53 +03007811 ev.key.type = mgmt_ltk_type(key);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007812 ev.key.enc_size = key->enc_size;
7813 ev.key.ediv = key->ediv;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08007814 ev.key.rand = key->rand;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007815
Johan Hedberg2ceba532014-06-16 19:25:16 +03007816 if (key->type == SMP_LTK)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007817 ev.key.master = 1;
7818
Johan Hedberg1fc62c52015-06-10 11:11:20 +03007819 /* Make sure we copy only the significant bytes based on the
7820 * encryption key size, and set the rest of the value to zeroes.
7821 */
Jakub Pawlowskicb922052015-08-05 23:16:29 +02007822 memcpy(ev.key.val, key->val, key->enc_size);
Johan Hedberg1fc62c52015-06-10 11:11:20 +03007823 memset(ev.key.val + key->enc_size, 0,
7824 sizeof(ev.key.val) - key->enc_size);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007825
Marcel Holtmann083368f2013-10-15 14:26:29 -07007826 mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007827}
7828
Johan Hedbergcad20c22015-10-12 13:36:19 +02007829void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk, bool persistent)
Johan Hedberg95fbac82014-02-19 15:18:31 +02007830{
7831 struct mgmt_ev_new_irk ev;
7832
7833 memset(&ev, 0, sizeof(ev));
7834
Johan Hedbergcad20c22015-10-12 13:36:19 +02007835 ev.store_hint = persistent;
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08007836
Johan Hedberg95fbac82014-02-19 15:18:31 +02007837 bacpy(&ev.rpa, &irk->rpa);
7838 bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
7839 ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
7840 memcpy(ev.irk.val, irk->val, sizeof(irk->val));
7841
7842 mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
7843}
7844
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007845void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
7846 bool persistent)
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007847{
7848 struct mgmt_ev_new_csrk ev;
7849
7850 memset(&ev, 0, sizeof(ev));
7851
7852 /* Devices using resolvable or non-resolvable random addresses
Florian Grandelf72186d2015-05-26 03:31:09 +02007853 * without providing an identity resolving key don't require
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007854 * to store signature resolving keys. Their addresses will change
7855 * the next time around.
7856 *
7857 * Only when a remote device provides an identity address
7858 * make sure the signature resolving key is stored. So allow
7859 * static random and public addresses here.
7860 */
7861 if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
7862 (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
7863 ev.store_hint = 0x00;
7864 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007865 ev.store_hint = persistent;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007866
7867 bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
7868 ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
Johan Hedberg4cd39282015-02-27 10:11:13 +02007869 ev.key.type = csrk->type;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007870 memcpy(ev.key.val, csrk->val, sizeof(csrk->val));
7871
7872 mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
7873}
7874
Andre Guedesffb5a8272014-07-01 18:10:11 -03007875void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedbergf4869e22014-07-02 17:37:32 +03007876 u8 bdaddr_type, u8 store_hint, u16 min_interval,
7877 u16 max_interval, u16 latency, u16 timeout)
Andre Guedesffb5a8272014-07-01 18:10:11 -03007878{
7879 struct mgmt_ev_new_conn_param ev;
7880
Johan Hedbergc103aea2014-07-02 17:37:34 +03007881 if (!hci_is_identity_address(bdaddr, bdaddr_type))
7882 return;
7883
Andre Guedesffb5a8272014-07-01 18:10:11 -03007884 memset(&ev, 0, sizeof(ev));
7885 bacpy(&ev.addr.bdaddr, bdaddr);
7886 ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
Johan Hedbergf4869e22014-07-02 17:37:32 +03007887 ev.store_hint = store_hint;
Andre Guedesffb5a8272014-07-01 18:10:11 -03007888 ev.min_interval = cpu_to_le16(min_interval);
7889 ev.max_interval = cpu_to_le16(max_interval);
7890 ev.latency = cpu_to_le16(latency);
7891 ev.timeout = cpu_to_le16(timeout);
7892
7893 mgmt_event(MGMT_EV_NEW_CONN_PARAM, hdev, &ev, sizeof(ev), NULL);
7894}
7895
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00007896void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
7897 u32 flags, u8 *name, u8 name_len)
Johan Hedbergf7520542011-01-20 12:34:39 +02007898{
Johan Hedbergb644ba32012-01-17 21:48:47 +02007899 char buf[512];
7900 struct mgmt_ev_device_connected *ev = (void *) buf;
7901 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02007902
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00007903 bacpy(&ev->addr.bdaddr, &conn->dst);
7904 ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02007905
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02007906 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02007907
Alfonso Acostafd45ada2014-10-07 08:44:11 +00007908 /* We must ensure that the EIR Data fields are ordered and
7909 * unique. Keep it simple for now and avoid the problem by not
7910 * adding any BR/EDR data to the LE adv.
7911 */
7912 if (conn->le_adv_data_len > 0) {
7913 memcpy(&ev->eir[eir_len],
7914 conn->le_adv_data, conn->le_adv_data_len);
7915 eir_len = conn->le_adv_data_len;
7916 } else {
7917 if (name_len > 0)
7918 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
7919 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007920
Alfonso Acostaddbea5c2014-10-07 08:44:12 +00007921 if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
Alfonso Acostafd45ada2014-10-07 08:44:11 +00007922 eir_len = eir_append_data(ev->eir, eir_len,
7923 EIR_CLASS_OF_DEV,
7924 conn->dev_class, 3);
7925 }
Johan Hedbergb644ba32012-01-17 21:48:47 +02007926
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02007927 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007928
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07007929 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
7930 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02007931}
7932
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007933static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg8962ee72011-01-20 12:40:27 +02007934{
Johan Hedberg8962ee72011-01-20 12:40:27 +02007935 struct sock **sk = data;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007936
Johan Hedbergf5818c22014-12-05 13:36:02 +02007937 cmd->cmd_complete(cmd, 0);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007938
7939 *sk = cmd->sk;
7940 sock_hold(*sk);
7941
Johan Hedberga664b5b2011-02-19 12:06:02 -03007942 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007943}
7944
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007945static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02007946{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02007947 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02007948 struct mgmt_cp_unpair_device *cp = cmd->param;
Johan Hedberga8a1d192011-11-10 15:54:38 +02007949
Johan Hedbergb1078ad2012-02-09 17:21:16 +02007950 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
7951
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02007952 cmd->cmd_complete(cmd, 0);
Johan Hedberga8a1d192011-11-10 15:54:38 +02007953 mgmt_pending_remove(cmd);
7954}
7955
Johan Hedberg84c61d92014-08-01 11:13:30 +03007956bool mgmt_powering_down(struct hci_dev *hdev)
7957{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007958 struct mgmt_pending_cmd *cmd;
Johan Hedberg84c61d92014-08-01 11:13:30 +03007959 struct mgmt_mode *cp;
7960
Johan Hedberg333ae952015-03-17 13:48:47 +02007961 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg84c61d92014-08-01 11:13:30 +03007962 if (!cmd)
7963 return false;
7964
7965 cp = cmd->param;
7966 if (!cp->val)
7967 return true;
7968
7969 return false;
7970}
7971
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07007972void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02007973 u8 link_type, u8 addr_type, u8 reason,
7974 bool mgmt_connected)
Johan Hedbergf7520542011-01-20 12:34:39 +02007975{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02007976 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007977 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007978
Johan Hedberg84c61d92014-08-01 11:13:30 +03007979 /* The connection is still in hci_conn_hash so test for 1
7980 * instead of 0 to know if this is the last one.
7981 */
7982 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
7983 cancel_delayed_work(&hdev->power_off);
7984 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberg8b064a32014-02-24 14:52:22 +02007985 }
7986
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02007987 if (!mgmt_connected)
7988 return;
7989
Andre Guedes57eb7762013-10-30 19:01:41 -03007990 if (link_type != ACL_LINK && link_type != LE_LINK)
7991 return;
7992
Johan Hedberg744cf192011-11-08 20:40:14 +02007993 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02007994
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02007995 bacpy(&ev.addr.bdaddr, bdaddr);
7996 ev.addr.type = link_to_bdaddr(link_type, addr_type);
7997 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02007998
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07007999 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008000
8001 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01008002 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008003
Johan Hedberg124f6e32012-02-09 13:50:12 +02008004 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008005 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008006}
8007
Marcel Holtmann78929242013-10-06 23:55:47 -07008008void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
8009 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02008010{
Andre Guedes3655bba2013-10-30 19:01:40 -03008011 u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
8012 struct mgmt_cp_disconnect *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008013 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008014
Jefferson Delfes36a75f12012-09-18 13:36:54 -04008015 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
8016 hdev);
8017
Johan Hedberg333ae952015-03-17 13:48:47 +02008018 cmd = pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008019 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07008020 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008021
Andre Guedes3655bba2013-10-30 19:01:40 -03008022 cp = cmd->param;
8023
8024 if (bacmp(bdaddr, &cp->addr.bdaddr))
8025 return;
8026
8027 if (cp->addr.type != bdaddr_type)
8028 return;
8029
Johan Hedbergf5818c22014-12-05 13:36:02 +02008030 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008031 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02008032}
Johan Hedberg17d5c042011-01-22 06:09:08 +02008033
Marcel Holtmann445608d2013-10-06 23:55:48 -07008034void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
8035 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02008036{
8037 struct mgmt_ev_connect_failed ev;
Johan Hedbergc9910d02014-02-27 14:35:12 +02008038
Johan Hedberg84c61d92014-08-01 11:13:30 +03008039 /* The connection is still in hci_conn_hash so test for 1
8040 * instead of 0 to know if this is the last one.
8041 */
8042 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
8043 cancel_delayed_work(&hdev->power_off);
8044 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedbergc9910d02014-02-27 14:35:12 +02008045 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02008046
Johan Hedberg4c659c32011-11-07 23:13:39 +02008047 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008048 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02008049 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02008050
Marcel Holtmann445608d2013-10-06 23:55:48 -07008051 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02008052}
Johan Hedberg980e1a52011-01-22 06:10:07 +02008053
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07008054void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02008055{
8056 struct mgmt_ev_pin_code_request ev;
8057
Johan Hedbergd8457692012-02-17 14:24:57 +02008058 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03008059 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02008060 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008061
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07008062 mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008063}
8064
Marcel Holtmanne669cf82013-10-15 14:26:21 -07008065void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8066 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02008067{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008068 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008069
Johan Hedberg333ae952015-03-17 13:48:47 +02008070 cmd = pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008071 if (!cmd)
Marcel Holtmanne669cf82013-10-15 14:26:21 -07008072 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008073
Johan Hedberg7776d1d2014-12-05 13:36:03 +02008074 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008075 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008076}
8077
Marcel Holtmann3eb38522013-10-15 14:26:22 -07008078void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8079 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02008080{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008081 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008082
Johan Hedberg333ae952015-03-17 13:48:47 +02008083 cmd = pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008084 if (!cmd)
Marcel Holtmann3eb38522013-10-15 14:26:22 -07008085 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008086
Johan Hedberg7776d1d2014-12-05 13:36:03 +02008087 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008088 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008089}
Johan Hedberga5c29682011-02-19 12:05:57 -03008090
Johan Hedberg744cf192011-11-08 20:40:14 +02008091int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg39adbff2014-03-20 08:18:14 +02008092 u8 link_type, u8 addr_type, u32 value,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008093 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03008094{
8095 struct mgmt_ev_user_confirm_request ev;
8096
Johan Hedberg744cf192011-11-08 20:40:14 +02008097 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03008098
Johan Hedberg272d90d2012-02-09 15:26:12 +02008099 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008100 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07008101 ev.confirm_hint = confirm_hint;
Johan Hedberg39adbff2014-03-20 08:18:14 +02008102 ev.value = cpu_to_le32(value);
Johan Hedberga5c29682011-02-19 12:05:57 -03008103
Johan Hedberg744cf192011-11-08 20:40:14 +02008104 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008105 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03008106}
8107
Johan Hedberg272d90d2012-02-09 15:26:12 +02008108int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03008109 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08008110{
8111 struct mgmt_ev_user_passkey_request ev;
8112
8113 BT_DBG("%s", hdev->name);
8114
Johan Hedberg272d90d2012-02-09 15:26:12 +02008115 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008116 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08008117
8118 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008119 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08008120}
8121
Brian Gix0df4c182011-11-16 13:53:13 -08008122static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03008123 u8 link_type, u8 addr_type, u8 status,
8124 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03008125{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008126 struct mgmt_pending_cmd *cmd;
Johan Hedberga5c29682011-02-19 12:05:57 -03008127
Johan Hedberg333ae952015-03-17 13:48:47 +02008128 cmd = pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03008129 if (!cmd)
8130 return -ENOENT;
8131
Johan Hedberg7776d1d2014-12-05 13:36:03 +02008132 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008133 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03008134
Johan Hedberg7776d1d2014-12-05 13:36:03 +02008135 return 0;
Johan Hedberga5c29682011-02-19 12:05:57 -03008136}
8137
Johan Hedberg744cf192011-11-08 20:40:14 +02008138int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008139 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03008140{
Johan Hedberg272d90d2012-02-09 15:26:12 +02008141 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008142 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03008143}
8144
Johan Hedberg272d90d2012-02-09 15:26:12 +02008145int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008146 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03008147{
Johan Hedberg272d90d2012-02-09 15:26:12 +02008148 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03008149 status,
8150 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03008151}
Johan Hedberg2a611692011-02-19 12:06:00 -03008152
Brian Gix604086b2011-11-23 08:28:33 -08008153int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008154 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08008155{
Johan Hedberg272d90d2012-02-09 15:26:12 +02008156 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008157 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08008158}
8159
Johan Hedberg272d90d2012-02-09 15:26:12 +02008160int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008161 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08008162{
Johan Hedberg272d90d2012-02-09 15:26:12 +02008163 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03008164 status,
8165 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08008166}
8167
Johan Hedberg92a25252012-09-06 18:39:26 +03008168int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
8169 u8 link_type, u8 addr_type, u32 passkey,
8170 u8 entered)
8171{
8172 struct mgmt_ev_passkey_notify ev;
8173
8174 BT_DBG("%s", hdev->name);
8175
8176 bacpy(&ev.addr.bdaddr, bdaddr);
8177 ev.addr.type = link_to_bdaddr(link_type, addr_type);
8178 ev.passkey = __cpu_to_le32(passkey);
8179 ev.entered = entered;
8180
8181 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
8182}
8183
Johan Hedberge1e930f2014-09-08 17:09:49 -07008184void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
Johan Hedberg2a611692011-02-19 12:06:00 -03008185{
8186 struct mgmt_ev_auth_failed ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008187 struct mgmt_pending_cmd *cmd;
Johan Hedberge1e930f2014-09-08 17:09:49 -07008188 u8 status = mgmt_status(hci_status);
Johan Hedberg2a611692011-02-19 12:06:00 -03008189
Johan Hedberge1e930f2014-09-08 17:09:49 -07008190 bacpy(&ev.addr.bdaddr, &conn->dst);
8191 ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
8192 ev.status = status;
Johan Hedberg2a611692011-02-19 12:06:00 -03008193
Johan Hedberge1e930f2014-09-08 17:09:49 -07008194 cmd = find_pairing(conn);
8195
8196 mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
8197 cmd ? cmd->sk : NULL);
8198
Johan Hedberga511b352014-12-11 21:45:45 +02008199 if (cmd) {
8200 cmd->cmd_complete(cmd, status);
8201 mgmt_pending_remove(cmd);
8202 }
Johan Hedberg2a611692011-02-19 12:06:00 -03008203}
Johan Hedbergb312b1612011-03-16 14:29:37 +02008204
Marcel Holtmann464996a2013-10-15 14:26:24 -07008205void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008206{
8207 struct cmd_lookup match = { NULL, hdev };
Marcel Holtmann464996a2013-10-15 14:26:24 -07008208 bool changed;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008209
8210 if (status) {
8211 u8 mgmt_err = mgmt_status(status);
8212 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008213 cmd_status_rsp, &mgmt_err);
Marcel Holtmann464996a2013-10-15 14:26:24 -07008214 return;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008215 }
8216
Marcel Holtmann464996a2013-10-15 14:26:24 -07008217 if (test_bit(HCI_AUTH, &hdev->flags))
Marcel Holtmann238be782015-03-13 02:11:06 -07008218 changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
Marcel Holtmann464996a2013-10-15 14:26:24 -07008219 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008220 changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02008221
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008222 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008223 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008224
Johan Hedberg47990ea2012-02-22 11:58:37 +02008225 if (changed)
Marcel Holtmann464996a2013-10-15 14:26:24 -07008226 new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008227
8228 if (match.sk)
8229 sock_put(match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008230}
8231
Johan Hedberg890ea892013-03-15 17:06:52 -05008232static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02008233{
Johan Hedberg890ea892013-03-15 17:06:52 -05008234 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02008235 struct hci_cp_write_eir cp;
8236
Johan Hedberg976eb202012-10-24 21:12:01 +03008237 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05008238 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02008239
Johan Hedbergc80da272012-02-22 15:38:48 +02008240 memset(hdev->eir, 0, sizeof(hdev->eir));
8241
Johan Hedbergcacaf522012-02-21 00:52:42 +02008242 memset(&cp, 0, sizeof(cp));
8243
Johan Hedberg890ea892013-03-15 17:06:52 -05008244 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02008245}
8246
Marcel Holtmann3e248562013-10-15 14:26:25 -07008247void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008248{
8249 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05008250 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008251 bool changed = false;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008252
8253 if (status) {
8254 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008255
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008256 if (enable && hci_dev_test_and_clear_flag(hdev,
8257 HCI_SSP_ENABLED)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07008258 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmann3e248562013-10-15 14:26:25 -07008259 new_settings(hdev, NULL);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07008260 }
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008261
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008262 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
8263 &mgmt_err);
Marcel Holtmann3e248562013-10-15 14:26:25 -07008264 return;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008265 }
8266
8267 if (enable) {
Marcel Holtmann238be782015-03-13 02:11:06 -07008268 changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008269 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008270 changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07008271 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008272 changed = hci_dev_test_and_clear_flag(hdev,
8273 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07008274 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07008275 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008276 }
8277
8278 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
8279
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008280 if (changed)
Marcel Holtmann3e248562013-10-15 14:26:25 -07008281 new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008282
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02008283 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008284 sock_put(match.sk);
8285
Johan Hedberg890ea892013-03-15 17:06:52 -05008286 hci_req_init(&req, hdev);
8287
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07008288 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
8289 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03008290 hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
8291 sizeof(enable), &enable);
Johan Hedberg890ea892013-03-15 17:06:52 -05008292 update_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03008293 } else {
Johan Hedberg890ea892013-03-15 17:06:52 -05008294 clear_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03008295 }
Johan Hedberg890ea892013-03-15 17:06:52 -05008296
8297 hci_req_run(&req, NULL);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008298}
8299
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008300static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02008301{
8302 struct cmd_lookup *match = data;
8303
Johan Hedberg90e70452012-02-23 23:09:40 +02008304 if (match->sk == NULL) {
8305 match->sk = cmd->sk;
8306 sock_hold(match->sk);
8307 }
Johan Hedberg90e70452012-02-23 23:09:40 +02008308}
8309
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07008310void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
8311 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01008312{
Johan Hedberg90e70452012-02-23 23:09:40 +02008313 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01008314
Johan Hedberg92da6092013-03-15 17:06:55 -05008315 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
8316 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
8317 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02008318
8319 if (!status)
Marcel Holtmannf6b77122015-03-14 19:28:05 -07008320 mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
8321 dev_class, 3, NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02008322
8323 if (match.sk)
8324 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01008325}
8326
Marcel Holtmann7667da32013-10-15 14:26:27 -07008327void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02008328{
Johan Hedbergb312b1612011-03-16 14:29:37 +02008329 struct mgmt_cp_set_local_name ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008330 struct mgmt_pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02008331
Johan Hedberg13928972013-03-15 17:07:00 -05008332 if (status)
Marcel Holtmann7667da32013-10-15 14:26:27 -07008333 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02008334
8335 memset(&ev, 0, sizeof(ev));
8336 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02008337 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02008338
Johan Hedberg333ae952015-03-17 13:48:47 +02008339 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05008340 if (!cmd) {
8341 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02008342
Johan Hedberg13928972013-03-15 17:07:00 -05008343 /* If this is a HCI command related to powering on the
8344 * HCI dev don't send any mgmt signals.
8345 */
Johan Hedberg333ae952015-03-17 13:48:47 +02008346 if (pending_find(MGMT_OP_SET_POWERED, hdev))
Marcel Holtmann7667da32013-10-15 14:26:27 -07008347 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02008348 }
8349
Marcel Holtmannf6b77122015-03-14 19:28:05 -07008350 mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
8351 cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02008352}
Szymon Jancc35938b2011-03-22 13:12:21 +01008353
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008354static inline bool has_uuid(u8 *uuid, u16 uuid_count, u8 (*uuids)[16])
8355{
8356 int i;
8357
8358 for (i = 0; i < uuid_count; i++) {
8359 if (!memcmp(uuid, uuids[i], 16))
8360 return true;
8361 }
8362
8363 return false;
8364}
8365
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008366static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
8367{
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008368 u16 parsed = 0;
8369
8370 while (parsed < eir_len) {
8371 u8 field_len = eir[0];
8372 u8 uuid[16];
8373 int i;
8374
8375 if (field_len == 0)
8376 break;
8377
8378 if (eir_len - parsed < field_len + 1)
8379 break;
8380
8381 switch (eir[1]) {
8382 case EIR_UUID16_ALL:
8383 case EIR_UUID16_SOME:
8384 for (i = 0; i + 3 <= field_len; i += 2) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02008385 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008386 uuid[13] = eir[i + 3];
8387 uuid[12] = eir[i + 2];
8388 if (has_uuid(uuid, uuid_count, uuids))
8389 return true;
8390 }
8391 break;
8392 case EIR_UUID32_ALL:
8393 case EIR_UUID32_SOME:
8394 for (i = 0; i + 5 <= field_len; i += 4) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02008395 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008396 uuid[15] = eir[i + 5];
8397 uuid[14] = eir[i + 4];
8398 uuid[13] = eir[i + 3];
8399 uuid[12] = eir[i + 2];
8400 if (has_uuid(uuid, uuid_count, uuids))
8401 return true;
8402 }
8403 break;
8404 case EIR_UUID128_ALL:
8405 case EIR_UUID128_SOME:
8406 for (i = 0; i + 17 <= field_len; i += 16) {
8407 memcpy(uuid, eir + i + 2, 16);
8408 if (has_uuid(uuid, uuid_count, uuids))
8409 return true;
8410 }
8411 break;
8412 }
8413
8414 parsed += field_len + 1;
8415 eir += field_len + 1;
8416 }
8417
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008418 return false;
8419}
8420
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008421static void restart_le_scan(struct hci_dev *hdev)
8422{
8423 /* If controller is not scanning we are done. */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07008424 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008425 return;
8426
8427 if (time_after(jiffies + DISCOV_LE_RESTART_DELAY,
8428 hdev->discovery.scan_start +
8429 hdev->discovery.scan_duration))
8430 return;
8431
Johan Hedberg7c1fbed2015-11-11 08:11:23 +02008432 queue_delayed_work(hdev->req_workqueue, &hdev->le_scan_restart,
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008433 DISCOV_LE_RESTART_DELAY);
8434}
8435
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008436static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
8437 u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
8438{
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008439 /* If a RSSI threshold has been specified, and
8440 * HCI_QUIRK_STRICT_DUPLICATE_FILTER is not set, then all results with
8441 * a RSSI smaller than the RSSI threshold will be dropped. If the quirk
8442 * is set, let it through for further processing, as we might need to
8443 * restart the scan.
8444 *
8445 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
8446 * the results are also dropped.
8447 */
8448 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
8449 (rssi == HCI_RSSI_INVALID ||
8450 (rssi < hdev->discovery.rssi &&
8451 !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
8452 return false;
8453
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008454 if (hdev->discovery.uuid_count != 0) {
8455 /* If a list of UUIDs is provided in filter, results with no
8456 * matching UUID should be dropped.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008457 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008458 if (!eir_has_uuids(eir, eir_len, hdev->discovery.uuid_count,
8459 hdev->discovery.uuids) &&
8460 !eir_has_uuids(scan_rsp, scan_rsp_len,
8461 hdev->discovery.uuid_count,
8462 hdev->discovery.uuids))
8463 return false;
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008464 }
8465
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008466 /* If duplicate filtering does not report RSSI changes, then restart
8467 * scanning to ensure updated result with updated RSSI values.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008468 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008469 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks)) {
8470 restart_le_scan(hdev);
8471
8472 /* Validate RSSI value against the RSSI threshold once more. */
8473 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
8474 rssi < hdev->discovery.rssi)
8475 return false;
8476 }
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008477
8478 return true;
8479}
8480
Marcel Holtmann901801b2013-10-06 23:55:51 -07008481void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Marcel Holtmannaf589252014-07-01 14:11:20 +02008482 u8 addr_type, u8 *dev_class, s8 rssi, u32 flags,
8483 u8 *eir, u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03008484{
Johan Hedberge319d2e2012-01-15 19:51:59 +02008485 char buf[512];
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008486 struct mgmt_ev_device_found *ev = (void *)buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02008487 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03008488
Johan Hedberg75ce2082014-07-02 22:42:01 +03008489 /* Don't send events for a non-kernel initiated discovery. With
8490 * LE one exception is if we have pend_le_reports > 0 in which
8491 * case we're doing passive scanning and want these events.
8492 */
8493 if (!hci_discovery_active(hdev)) {
8494 if (link_type == ACL_LINK)
8495 return;
Johan Hedberg66f84552014-07-04 12:37:18 +03008496 if (link_type == LE_LINK && list_empty(&hdev->pend_le_reports))
Johan Hedberg75ce2082014-07-02 22:42:01 +03008497 return;
8498 }
Andre Guedes12602d02013-04-30 15:29:40 -03008499
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08008500 if (hdev->discovery.result_filtering) {
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008501 /* We are using service discovery */
8502 if (!is_filter_match(hdev, rssi, eir, eir_len, scan_rsp,
8503 scan_rsp_len))
8504 return;
8505 }
Marcel Holtmannbda157a2014-12-05 10:55:56 +01008506
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008507 /* Make sure that the buffer is big enough. The 5 extra bytes
8508 * are for the potential CoD field.
8509 */
8510 if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07008511 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03008512
Johan Hedberg1dc06092012-01-15 21:01:23 +02008513 memset(buf, 0, sizeof(buf));
8514
Marcel Holtmannda25cf62014-12-05 13:03:35 +01008515 /* In case of device discovery with BR/EDR devices (pre 1.2), the
8516 * RSSI value was reported as 0 when not available. This behavior
8517 * is kept when using device discovery. This is required for full
8518 * backwards compatibility with the API.
8519 *
8520 * However when using service discovery, the value 127 will be
8521 * returned when the RSSI is not available.
8522 */
Szymon Janc91200e92015-01-22 16:57:05 +01008523 if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi &&
8524 link_type == ACL_LINK)
Marcel Holtmannefb25132014-12-05 13:03:34 +01008525 rssi = 0;
8526
Johan Hedberg841c5642014-07-07 12:45:54 +03008527 bacpy(&ev->addr.bdaddr, bdaddr);
8528 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02008529 ev->rssi = rssi;
Marcel Holtmannaf589252014-07-01 14:11:20 +02008530 ev->flags = cpu_to_le32(flags);
Johan Hedberge17acd42011-03-30 23:57:16 +03008531
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008532 if (eir_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008533 /* Copy EIR or advertising data into event */
Johan Hedberge319d2e2012-01-15 19:51:59 +02008534 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03008535
Johan Hedberg1dc06092012-01-15 21:01:23 +02008536 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
8537 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008538 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02008539
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008540 if (scan_rsp_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008541 /* Append scan response data to event */
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008542 memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008543
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008544 ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
8545 ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
Andre Guedesf8523592011-09-09 18:56:26 -03008546
Marcel Holtmann901801b2013-10-06 23:55:51 -07008547 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03008548}
Johan Hedberga88a9652011-03-30 13:18:12 +03008549
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07008550void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
8551 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03008552{
Johan Hedbergb644ba32012-01-17 21:48:47 +02008553 struct mgmt_ev_device_found *ev;
8554 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
8555 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03008556
Johan Hedbergb644ba32012-01-17 21:48:47 +02008557 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03008558
Johan Hedbergb644ba32012-01-17 21:48:47 +02008559 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03008560
Johan Hedbergb644ba32012-01-17 21:48:47 +02008561 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008562 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008563 ev->rssi = rssi;
8564
8565 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008566 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008567
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02008568 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008569
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07008570 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03008571}
Johan Hedberg314b2382011-04-27 10:29:57 -04008572
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07008573void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04008574{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02008575 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02008576
Andre Guedes343fb142011-11-22 17:14:19 -03008577 BT_DBG("%s discovering %u", hdev->name, discovering);
8578
Johan Hedbergf963e8e2012-02-20 23:30:44 +02008579 memset(&ev, 0, sizeof(ev));
8580 ev.type = hdev->discovery.type;
8581 ev.discovering = discovering;
8582
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07008583 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04008584}
Antti Julku5e762442011-08-25 16:48:02 +03008585
Marcel Holtmann1904a852015-01-11 13:50:44 -08008586static void adv_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Marcel Holtmann5976e602013-10-06 04:08:14 -07008587{
8588 BT_DBG("%s status %u", hdev->name, status);
Marcel Holtmann5976e602013-10-06 04:08:14 -07008589}
8590
8591void mgmt_reenable_advertising(struct hci_dev *hdev)
8592{
8593 struct hci_request req;
Florian Grandeleb6f95f2015-06-18 03:16:51 +02008594 u8 instance;
Marcel Holtmann5976e602013-10-06 04:08:14 -07008595
Arman Uguray24b4f382015-03-23 15:57:12 -07008596 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
8597 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
Marcel Holtmann5976e602013-10-06 04:08:14 -07008598 return;
8599
Florian Grandeleb6f95f2015-06-18 03:16:51 +02008600 instance = get_current_adv_instance(hdev);
8601
Marcel Holtmann5976e602013-10-06 04:08:14 -07008602 hci_req_init(&req, hdev);
Florian Grandeleb6f95f2015-06-18 03:16:51 +02008603
8604 if (instance) {
8605 schedule_adv_instance(&req, instance, true);
8606 } else {
8607 update_adv_data(&req);
8608 update_scan_rsp_data(&req);
8609 enable_advertising(&req);
8610 }
8611
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03008612 hci_req_run(&req, adv_enable_complete);
Marcel Holtmann5976e602013-10-06 04:08:14 -07008613}
Johan Hedberg6d785aa32015-03-06 21:08:51 +02008614
8615static struct hci_mgmt_chan chan = {
8616 .channel = HCI_CHANNEL_CONTROL,
8617 .handler_count = ARRAY_SIZE(mgmt_handlers),
8618 .handlers = mgmt_handlers,
Johan Hedberg88b94ce2015-03-17 13:48:49 +02008619 .hdev_init = mgmt_init_hdev,
Johan Hedberg6d785aa32015-03-06 21:08:51 +02008620};
8621
8622int mgmt_init(void)
8623{
8624 return hci_mgmt_chan_register(&chan);
8625}
8626
8627void mgmt_exit(void)
8628{
8629 hci_mgmt_chan_unregister(&chan);
8630}