blob: 3fa4cafc2c03e187c7439b1676fd9f45acf3badc [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) {
1642 struct hci_cp_disconnect dc;
Johan Hedbergc9910d02014-02-27 14:35:12 +02001643 struct hci_cp_reject_conn_req rej;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001644
Johan Hedbergc9910d02014-02-27 14:35:12 +02001645 switch (conn->state) {
1646 case BT_CONNECTED:
1647 case BT_CONFIG:
1648 dc.handle = cpu_to_le16(conn->handle);
1649 dc.reason = 0x15; /* Terminated due to Power Off */
1650 hci_req_add(&req, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1651 break;
1652 case BT_CONNECT:
1653 if (conn->type == LE_LINK)
1654 hci_req_add(&req, HCI_OP_LE_CREATE_CONN_CANCEL,
1655 0, NULL);
1656 else if (conn->type == ACL_LINK)
1657 hci_req_add(&req, HCI_OP_CREATE_CONN_CANCEL,
1658 6, &conn->dst);
1659 break;
1660 case BT_CONNECT2:
1661 bacpy(&rej.bdaddr, &conn->dst);
1662 rej.reason = 0x15; /* Terminated due to Power Off */
1663 if (conn->type == ACL_LINK)
1664 hci_req_add(&req, HCI_OP_REJECT_CONN_REQ,
1665 sizeof(rej), &rej);
1666 else if (conn->type == SCO_LINK)
1667 hci_req_add(&req, HCI_OP_REJECT_SYNC_CONN_REQ,
1668 sizeof(rej), &rej);
1669 break;
1670 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001671 }
1672
Johan Hedberg23a48092014-07-08 16:05:06 +03001673 err = hci_req_run(&req, clean_up_hci_complete);
1674 if (!err && discov_stopped)
1675 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
1676
1677 return err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001678}
1679
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001680static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001681 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001682{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001683 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001684 struct mgmt_pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001685 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02001686
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001687 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001688
Johan Hedberga7e80f22013-01-09 16:05:19 +02001689 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001690 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1691 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001692
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001693 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001694
Johan Hedberg333ae952015-03-17 13:48:47 +02001695 if (pending_find(MGMT_OP_SET_POWERED, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001696 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1697 MGMT_STATUS_BUSY);
Johan Hedberg87b95ba2013-09-25 13:26:06 +03001698 goto failed;
1699 }
1700
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001701 if (hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) {
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001702 cancel_delayed_work(&hdev->power_off);
1703
1704 if (cp->val) {
Johan Hedberga1d70452013-01-09 15:29:40 +02001705 mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
1706 data, len);
1707 err = mgmt_powered(hdev, 1);
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001708 goto failed;
1709 }
1710 }
1711
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001712 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001713 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001714 goto failed;
1715 }
1716
Johan Hedberg03811012010-12-08 00:21:06 +02001717 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1718 if (!cmd) {
1719 err = -ENOMEM;
1720 goto failed;
1721 }
1722
Johan Hedberg8b064a32014-02-24 14:52:22 +02001723 if (cp->val) {
Johan Hedberg19202572013-01-14 22:33:51 +02001724 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001725 err = 0;
1726 } else {
1727 /* Disconnect connections, stop scans, etc */
1728 err = clean_up_hci_state(hdev);
Johan Hedberga3172b72014-02-28 09:33:44 +02001729 if (!err)
1730 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1731 HCI_POWER_OFF_TIMEOUT);
Johan Hedberg03811012010-12-08 00:21:06 +02001732
Johan Hedberg8b064a32014-02-24 14:52:22 +02001733 /* ENODATA means there were no HCI commands queued */
1734 if (err == -ENODATA) {
Johan Hedberga3172b72014-02-28 09:33:44 +02001735 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001736 queue_work(hdev->req_workqueue, &hdev->power_off.work);
1737 err = 0;
1738 }
1739 }
Johan Hedberg03811012010-12-08 00:21:06 +02001740
1741failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001742 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001743 return err;
1744}
1745
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001746static int new_settings(struct hci_dev *hdev, struct sock *skip)
1747{
Marcel Holtmannf6b77122015-03-14 19:28:05 -07001748 __le32 ev = cpu_to_le32(get_current_settings(hdev));
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001749
Marcel Holtmannf6b77122015-03-14 19:28:05 -07001750 return mgmt_generic_event(MGMT_EV_NEW_SETTINGS, hdev, &ev,
1751 sizeof(ev), skip);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001752}
1753
Johan Hedberg91a668b2014-07-09 13:28:26 +03001754int mgmt_new_settings(struct hci_dev *hdev)
1755{
1756 return new_settings(hdev, NULL);
1757}
1758
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001759struct cmd_lookup {
1760 struct sock *sk;
1761 struct hci_dev *hdev;
1762 u8 mgmt_status;
1763};
1764
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001765static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001766{
1767 struct cmd_lookup *match = data;
1768
1769 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
1770
1771 list_del(&cmd->list);
1772
1773 if (match->sk == NULL) {
1774 match->sk = cmd->sk;
1775 sock_hold(match->sk);
1776 }
1777
1778 mgmt_pending_free(cmd);
1779}
1780
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001781static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001782{
1783 u8 *status = data;
1784
Johan Hedberga69e8372015-03-06 21:08:53 +02001785 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001786 mgmt_pending_remove(cmd);
1787}
1788
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001789static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg1b9b5ee2014-12-05 13:36:00 +02001790{
1791 if (cmd->cmd_complete) {
1792 u8 *status = data;
1793
1794 cmd->cmd_complete(cmd, *status);
1795 mgmt_pending_remove(cmd);
1796
1797 return;
1798 }
1799
1800 cmd_status_rsp(cmd, data);
1801}
1802
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001803static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedbergf5818c22014-12-05 13:36:02 +02001804{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001805 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1806 cmd->param, cmd->param_len);
Johan Hedbergf5818c22014-12-05 13:36:02 +02001807}
1808
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001809static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001810{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001811 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1812 cmd->param, sizeof(struct mgmt_addr_info));
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001813}
1814
Johan Hedberge6fe7982013-10-02 15:45:22 +03001815static u8 mgmt_bredr_support(struct hci_dev *hdev)
1816{
1817 if (!lmp_bredr_capable(hdev))
1818 return MGMT_STATUS_NOT_SUPPORTED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001819 else if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberge6fe7982013-10-02 15:45:22 +03001820 return MGMT_STATUS_REJECTED;
1821 else
1822 return MGMT_STATUS_SUCCESS;
1823}
1824
1825static u8 mgmt_le_support(struct hci_dev *hdev)
1826{
1827 if (!lmp_le_capable(hdev))
1828 return MGMT_STATUS_NOT_SUPPORTED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001829 else if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberge6fe7982013-10-02 15:45:22 +03001830 return MGMT_STATUS_REJECTED;
1831 else
1832 return MGMT_STATUS_SUCCESS;
1833}
1834
Marcel Holtmann1904a852015-01-11 13:50:44 -08001835static void set_discoverable_complete(struct hci_dev *hdev, u8 status,
1836 u16 opcode)
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001837{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001838 struct mgmt_pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001839 struct mgmt_mode *cp;
Marcel Holtmann970ba522013-10-15 06:33:57 -07001840 struct hci_request req;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001841 bool changed;
1842
1843 BT_DBG("status 0x%02x", status);
1844
1845 hci_dev_lock(hdev);
1846
Johan Hedberg333ae952015-03-17 13:48:47 +02001847 cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001848 if (!cmd)
1849 goto unlock;
1850
1851 if (status) {
1852 u8 mgmt_err = mgmt_status(status);
Johan Hedberga69e8372015-03-06 21:08:53 +02001853 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001854 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001855 goto remove_cmd;
1856 }
1857
1858 cp = cmd->param;
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001859 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07001860 changed = !hci_dev_test_and_set_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001861
1862 if (hdev->discov_timeout > 0) {
1863 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1864 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1865 to);
1866 }
1867 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001868 changed = hci_dev_test_and_clear_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001869 }
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001870
1871 send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1872
1873 if (changed)
1874 new_settings(hdev, cmd->sk);
1875
Marcel Holtmann970ba522013-10-15 06:33:57 -07001876 /* When the discoverable mode gets changed, make sure
1877 * that class of device has the limited discoverable
Johan Hedberg432df052014-08-01 11:13:31 +03001878 * bit correctly set. Also update page scan based on whitelist
1879 * entries.
Marcel Holtmann970ba522013-10-15 06:33:57 -07001880 */
1881 hci_req_init(&req, hdev);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02001882 __hci_update_page_scan(&req);
Marcel Holtmann970ba522013-10-15 06:33:57 -07001883 update_class(&req);
1884 hci_req_run(&req, NULL);
1885
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001886remove_cmd:
1887 mgmt_pending_remove(cmd);
1888
1889unlock:
1890 hci_dev_unlock(hdev);
1891}
1892
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001893static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001894 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001895{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001896 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001897 struct mgmt_pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001898 struct hci_request req;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001899 u16 timeout;
Johan Hedberg9a43e252013-10-20 19:00:07 +03001900 u8 scan;
Johan Hedberg03811012010-12-08 00:21:06 +02001901 int err;
Johan Hedberge41d8b42010-12-13 21:07:03 +02001902
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001903 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001904
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001905 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
1906 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02001907 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1908 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001909
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001910 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02001911 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1912 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001913
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001914 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001915
1916 /* Disabling discoverable requires that no timeout is set,
1917 * and enabling limited discoverable requires a timeout.
1918 */
1919 if ((cp->val == 0x00 && timeout > 0) ||
1920 (cp->val == 0x02 && timeout == 0))
Johan Hedberga69e8372015-03-06 21:08:53 +02001921 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1922 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001923
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001924 hci_dev_lock(hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001925
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001926 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001927 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1928 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001929 goto failed;
1930 }
1931
Johan Hedberg333ae952015-03-17 13:48:47 +02001932 if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
1933 pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001934 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1935 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001936 goto failed;
1937 }
1938
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001939 if (!hci_dev_test_flag(hdev, HCI_CONNECTABLE)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001940 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1941 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001942 goto failed;
1943 }
1944
1945 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001946 bool changed = false;
1947
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001948 /* Setting limited discoverable when powered off is
1949 * not a valid operation since it requires a timeout
1950 * and so no need to check HCI_LIMITED_DISCOVERABLE.
1951 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001952 if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07001953 hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001954 changed = true;
1955 }
1956
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001957 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001958 if (err < 0)
1959 goto failed;
1960
1961 if (changed)
1962 err = new_settings(hdev, sk);
1963
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001964 goto failed;
1965 }
1966
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001967 /* If the current mode is the same, then just update the timeout
1968 * value with the new value. And if only the timeout gets updated,
1969 * then no need for any HCI transactions.
1970 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001971 if (!!cp->val == hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
1972 (cp->val == 0x02) == hci_dev_test_flag(hdev,
1973 HCI_LIMITED_DISCOVERABLE)) {
Marcel Holtmann36261542013-10-15 08:28:51 -07001974 cancel_delayed_work(&hdev->discov_off);
1975 hdev->discov_timeout = timeout;
Marcel Holtmann955638e2012-02-22 18:21:00 +01001976
Marcel Holtmann36261542013-10-15 08:28:51 -07001977 if (cp->val && hdev->discov_timeout > 0) {
1978 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001979 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
Marcel Holtmann36261542013-10-15 08:28:51 -07001980 to);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001981 }
1982
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001983 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001984 goto failed;
1985 }
1986
1987 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1988 if (!cmd) {
1989 err = -ENOMEM;
1990 goto failed;
1991 }
1992
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001993 /* Cancel any potential discoverable timeout that might be
1994 * still active and store new timeout value. The arming of
1995 * the timeout happens in the complete handler.
1996 */
1997 cancel_delayed_work(&hdev->discov_off);
1998 hdev->discov_timeout = timeout;
1999
Johan Hedbergb456f872013-10-19 23:38:22 +03002000 /* Limited discoverable mode */
2001 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07002002 hci_dev_set_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergb456f872013-10-19 23:38:22 +03002003 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002004 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergb456f872013-10-19 23:38:22 +03002005
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03002006 hci_req_init(&req, hdev);
2007
Johan Hedberg9a43e252013-10-20 19:00:07 +03002008 /* The procedure for LE-only controllers is much simpler - just
2009 * update the advertising data.
2010 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002011 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg9a43e252013-10-20 19:00:07 +03002012 goto update_ad;
2013
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002014 scan = SCAN_PAGE;
2015
Marcel Holtmann310a3d42013-10-15 09:13:39 -07002016 if (cp->val) {
2017 struct hci_cp_write_current_iac_lap hci_cp;
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002018
Marcel Holtmann310a3d42013-10-15 09:13:39 -07002019 if (cp->val == 0x02) {
2020 /* Limited discoverable mode */
Marcel Holtmann33337dc2013-10-23 08:28:01 -07002021 hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07002022 hci_cp.iac_lap[0] = 0x00; /* LIAC */
2023 hci_cp.iac_lap[1] = 0x8b;
2024 hci_cp.iac_lap[2] = 0x9e;
2025 hci_cp.iac_lap[3] = 0x33; /* GIAC */
2026 hci_cp.iac_lap[4] = 0x8b;
2027 hci_cp.iac_lap[5] = 0x9e;
2028 } else {
2029 /* General discoverable mode */
Marcel Holtmann310a3d42013-10-15 09:13:39 -07002030 hci_cp.num_iac = 1;
2031 hci_cp.iac_lap[0] = 0x33; /* GIAC */
2032 hci_cp.iac_lap[1] = 0x8b;
2033 hci_cp.iac_lap[2] = 0x9e;
2034 }
2035
2036 hci_req_add(&req, HCI_OP_WRITE_CURRENT_IAC_LAP,
2037 (hci_cp.num_iac * 3) + 1, &hci_cp);
2038
2039 scan |= SCAN_INQUIRY;
2040 } else {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002041 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07002042 }
2043
2044 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03002045
Johan Hedberg9a43e252013-10-20 19:00:07 +03002046update_ad:
2047 update_adv_data(&req);
2048
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03002049 err = hci_req_run(&req, set_discoverable_complete);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002050 if (err < 0)
2051 mgmt_pending_remove(cmd);
2052
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002053failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002054 hci_dev_unlock(hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002055 return err;
2056}
2057
Johan Hedberg406d7802013-03-15 17:07:09 -05002058static void write_fast_connectable(struct hci_request *req, bool enable)
2059{
Johan Hedbergbd98b992013-03-15 17:07:13 -05002060 struct hci_dev *hdev = req->hdev;
Johan Hedberg406d7802013-03-15 17:07:09 -05002061 struct hci_cp_write_page_scan_activity acp;
2062 u8 type;
2063
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002064 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg547003b2013-10-21 16:51:53 +03002065 return;
2066
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05002067 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
2068 return;
2069
Johan Hedberg406d7802013-03-15 17:07:09 -05002070 if (enable) {
2071 type = PAGE_SCAN_TYPE_INTERLACED;
2072
2073 /* 160 msec page scan interval */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07002074 acp.interval = cpu_to_le16(0x0100);
Johan Hedberg406d7802013-03-15 17:07:09 -05002075 } else {
2076 type = PAGE_SCAN_TYPE_STANDARD; /* default */
2077
2078 /* default 1.28 sec page scan */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07002079 acp.interval = cpu_to_le16(0x0800);
Johan Hedberg406d7802013-03-15 17:07:09 -05002080 }
2081
Joe Perchesdcf4adb2014-03-12 10:52:35 -07002082 acp.window = cpu_to_le16(0x0012);
Johan Hedberg406d7802013-03-15 17:07:09 -05002083
Johan Hedbergbd98b992013-03-15 17:07:13 -05002084 if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval ||
2085 __cpu_to_le16(hdev->page_scan_window) != acp.window)
2086 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
2087 sizeof(acp), &acp);
2088
2089 if (hdev->page_scan_type != type)
2090 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
Johan Hedberg406d7802013-03-15 17:07:09 -05002091}
2092
Marcel Holtmann1904a852015-01-11 13:50:44 -08002093static void set_connectable_complete(struct hci_dev *hdev, u8 status,
2094 u16 opcode)
Johan Hedberg2b76f452013-03-15 17:07:04 -05002095{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002096 struct mgmt_pending_cmd *cmd;
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002097 struct mgmt_mode *cp;
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002098 bool conn_changed, discov_changed;
Johan Hedberg2b76f452013-03-15 17:07:04 -05002099
2100 BT_DBG("status 0x%02x", status);
2101
2102 hci_dev_lock(hdev);
2103
Johan Hedberg333ae952015-03-17 13:48:47 +02002104 cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberg2b76f452013-03-15 17:07:04 -05002105 if (!cmd)
2106 goto unlock;
2107
Johan Hedberg37438c12013-10-14 16:20:05 +03002108 if (status) {
2109 u8 mgmt_err = mgmt_status(status);
Johan Hedberga69e8372015-03-06 21:08:53 +02002110 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg37438c12013-10-14 16:20:05 +03002111 goto remove_cmd;
2112 }
2113
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002114 cp = cmd->param;
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002115 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07002116 conn_changed = !hci_dev_test_and_set_flag(hdev,
2117 HCI_CONNECTABLE);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002118 discov_changed = false;
2119 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002120 conn_changed = hci_dev_test_and_clear_flag(hdev,
2121 HCI_CONNECTABLE);
2122 discov_changed = hci_dev_test_and_clear_flag(hdev,
2123 HCI_DISCOVERABLE);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002124 }
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002125
Johan Hedberg2b76f452013-03-15 17:07:04 -05002126 send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);
2127
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002128 if (conn_changed || discov_changed) {
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002129 new_settings(hdev, cmd->sk);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02002130 hci_update_page_scan(hdev);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03002131 if (discov_changed)
2132 mgmt_update_adv_data(hdev);
Johan Hedberg2b7be332014-07-07 14:40:22 +03002133 hci_update_background_scan(hdev);
2134 }
Johan Hedbergd7b856f2013-10-14 16:20:04 +03002135
Johan Hedberg37438c12013-10-14 16:20:05 +03002136remove_cmd:
Johan Hedberg2b76f452013-03-15 17:07:04 -05002137 mgmt_pending_remove(cmd);
2138
2139unlock:
2140 hci_dev_unlock(hdev);
2141}
2142
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002143static int set_connectable_update_settings(struct hci_dev *hdev,
2144 struct sock *sk, u8 val)
2145{
2146 bool changed = false;
2147 int err;
2148
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002149 if (!!val != hci_dev_test_flag(hdev, HCI_CONNECTABLE))
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002150 changed = true;
2151
2152 if (val) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07002153 hci_dev_set_flag(hdev, HCI_CONNECTABLE);
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002154 } else {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002155 hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
2156 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002157 }
2158
2159 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
2160 if (err < 0)
2161 return err;
2162
Johan Hedberg562064e2014-07-08 16:35:34 +03002163 if (changed) {
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02002164 hci_update_page_scan(hdev);
Johan Hedberg562064e2014-07-08 16:35:34 +03002165 hci_update_background_scan(hdev);
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002166 return new_settings(hdev, sk);
Johan Hedberg562064e2014-07-08 16:35:34 +03002167 }
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002168
2169 return 0;
2170}
2171
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002172static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002173 u16 len)
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002174{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002175 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002176 struct mgmt_pending_cmd *cmd;
Johan Hedberg2b76f452013-03-15 17:07:04 -05002177 struct hci_request req;
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002178 u8 scan;
Johan Hedbergf7b64e692010-12-13 21:07:06 +02002179 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02002180
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002181 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +02002182
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002183 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
2184 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02002185 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2186 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03002187
Johan Hedberga7e80f22013-01-09 16:05:19 +02002188 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002189 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2190 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002191
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002192 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002193
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002194 if (!hdev_is_powered(hdev)) {
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03002195 err = set_connectable_update_settings(hdev, sk, cp->val);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002196 goto failed;
2197 }
2198
Johan Hedberg333ae952015-03-17 13:48:47 +02002199 if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
2200 pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002201 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2202 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002203 goto failed;
2204 }
2205
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002206 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
2207 if (!cmd) {
2208 err = -ENOMEM;
2209 goto failed;
2210 }
2211
Johan Hedberg2b76f452013-03-15 17:07:04 -05002212 hci_req_init(&req, hdev);
2213
Johan Hedberg9a43e252013-10-20 19:00:07 +03002214 /* If BR/EDR is not enabled and we disable advertising as a
2215 * by-product of disabling connectable, we need to update the
2216 * advertising flags.
2217 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002218 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg9a43e252013-10-20 19:00:07 +03002219 if (!cp->val) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002220 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
2221 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberg9a43e252013-10-20 19:00:07 +03002222 }
2223 update_adv_data(&req);
2224 } else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg9b742462013-10-14 16:20:03 +03002225 if (cp->val) {
2226 scan = SCAN_PAGE;
2227 } else {
Johan Hedberg3bd27242014-07-28 20:53:58 +03002228 /* If we don't have any whitelist entries just
2229 * disable all scanning. If there are entries
2230 * and we had both page and inquiry scanning
2231 * enabled then fall back to only page scanning.
2232 * Otherwise no changes are needed.
2233 */
2234 if (list_empty(&hdev->whitelist))
2235 scan = SCAN_DISABLED;
2236 else if (test_bit(HCI_ISCAN, &hdev->flags))
2237 scan = SCAN_PAGE;
2238 else
2239 goto no_scan_update;
Johan Hedberg9b742462013-10-14 16:20:03 +03002240
2241 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Marcel Holtmann8d6083f2013-10-14 16:38:45 -07002242 hdev->discov_timeout > 0)
Johan Hedberg9b742462013-10-14 16:20:03 +03002243 cancel_delayed_work(&hdev->discov_off);
2244 }
2245
2246 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
2247 }
Johan Hedberg2b76f452013-03-15 17:07:04 -05002248
Johan Hedberg3bd27242014-07-28 20:53:58 +03002249no_scan_update:
Johan Hedberge8b12022014-07-10 10:51:27 +03002250 /* Update the advertising parameters if necessary */
Arman Uguray880897d2015-03-28 12:39:00 -07002251 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
2252 hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002253 enable_advertising(&req);
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002254
Johan Hedberg2b76f452013-03-15 17:07:04 -05002255 err = hci_req_run(&req, set_connectable_complete);
Johan Hedberg9b742462013-10-14 16:20:03 +03002256 if (err < 0) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002257 mgmt_pending_remove(cmd);
Johan Hedberg9b742462013-10-14 16:20:03 +03002258 if (err == -ENODATA)
Johan Hedberga81070b2013-10-19 23:38:19 +03002259 err = set_connectable_update_settings(hdev, sk,
2260 cp->val);
Johan Hedberg9b742462013-10-14 16:20:03 +03002261 goto failed;
2262 }
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002263
2264failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002265 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002266 return err;
2267}
2268
Johan Hedbergb2939472014-07-30 09:22:23 +03002269static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002270 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02002271{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002272 struct mgmt_mode *cp = data;
Marcel Holtmann55594352013-10-06 16:11:57 -07002273 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02002274 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002275
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002276 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002277
Johan Hedberga7e80f22013-01-09 16:05:19 +02002278 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002279 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE,
2280 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002281
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002282 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002283
2284 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07002285 changed = !hci_dev_test_and_set_flag(hdev, HCI_BONDABLE);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002286 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002287 changed = hci_dev_test_and_clear_flag(hdev, HCI_BONDABLE);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002288
Johan Hedbergb2939472014-07-30 09:22:23 +03002289 err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002290 if (err < 0)
Marcel Holtmann55594352013-10-06 16:11:57 -07002291 goto unlock;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002292
Marcel Holtmann55594352013-10-06 16:11:57 -07002293 if (changed)
2294 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002295
Marcel Holtmann55594352013-10-06 16:11:57 -07002296unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002297 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002298 return err;
2299}
Johan Hedberg72a734e2010-12-30 00:38:22 +02002300
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002301static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
2302 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002303{
2304 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002305 struct mgmt_pending_cmd *cmd;
Johan Hedberge6fe7982013-10-02 15:45:22 +03002306 u8 val, status;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002307 int err;
2308
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002309 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002310
Johan Hedberge6fe7982013-10-02 15:45:22 +03002311 status = mgmt_bredr_support(hdev);
2312 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002313 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2314 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +03002315
Johan Hedberga7e80f22013-01-09 16:05:19 +02002316 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002317 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2318 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002319
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002320 hci_dev_lock(hdev);
2321
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002322 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02002323 bool changed = false;
2324
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002325 if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07002326 hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02002327 changed = true;
2328 }
2329
2330 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
2331 if (err < 0)
2332 goto failed;
2333
2334 if (changed)
2335 err = new_settings(hdev, sk);
2336
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002337 goto failed;
2338 }
2339
Johan Hedberg333ae952015-03-17 13:48:47 +02002340 if (pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002341 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2342 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002343 goto failed;
2344 }
2345
2346 val = !!cp->val;
2347
2348 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
2349 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
2350 goto failed;
2351 }
2352
2353 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
2354 if (!cmd) {
2355 err = -ENOMEM;
2356 goto failed;
2357 }
2358
2359 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
2360 if (err < 0) {
2361 mgmt_pending_remove(cmd);
2362 goto failed;
2363 }
2364
2365failed:
2366 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002367 return err;
2368}
2369
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002370static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002371{
2372 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002373 struct mgmt_pending_cmd *cmd;
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002374 u8 status;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002375 int err;
2376
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002377 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002378
Marcel Holtmanncdba5282013-10-02 21:31:52 -07002379 status = mgmt_bredr_support(hdev);
2380 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002381 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
Marcel Holtmanncdba5282013-10-02 21:31:52 -07002382
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002383 if (!lmp_ssp_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002384 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2385 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002386
Johan Hedberga7e80f22013-01-09 16:05:19 +02002387 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002388 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2389 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002390
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002391 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02002392
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002393 if (!hdev_is_powered(hdev)) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002394 bool changed;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02002395
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002396 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07002397 changed = !hci_dev_test_and_set_flag(hdev,
2398 HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002399 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002400 changed = hci_dev_test_and_clear_flag(hdev,
2401 HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002402 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002403 changed = hci_dev_test_and_clear_flag(hdev,
2404 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002405 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002406 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02002407 }
2408
2409 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
2410 if (err < 0)
2411 goto failed;
2412
2413 if (changed)
2414 err = new_settings(hdev, sk);
2415
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002416 goto failed;
2417 }
2418
Johan Hedberg333ae952015-03-17 13:48:47 +02002419 if (pending_find(MGMT_OP_SET_SSP, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002420 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2421 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002422 goto failed;
2423 }
2424
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002425 if (!!cp->val == hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002426 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
2427 goto failed;
2428 }
2429
2430 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
2431 if (!cmd) {
2432 err = -ENOMEM;
2433 goto failed;
2434 }
2435
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002436 if (!cp->val && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03002437 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
2438 sizeof(cp->val), &cp->val);
2439
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002440 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002441 if (err < 0) {
2442 mgmt_pending_remove(cmd);
2443 goto failed;
2444 }
2445
2446failed:
2447 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002448 return err;
2449}
2450
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002451static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002452{
2453 struct mgmt_mode *cp = data;
Marcel Holtmannee392692013-10-01 22:59:23 -07002454 bool changed;
Johan Hedberge6fe7982013-10-02 15:45:22 +03002455 u8 status;
Marcel Holtmannee392692013-10-01 22:59:23 -07002456 int err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002457
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002458 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002459
Johan Hedberge6fe7982013-10-02 15:45:22 +03002460 status = mgmt_bredr_support(hdev);
2461 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002462 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002463
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002464 if (!lmp_ssp_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002465 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2466 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002467
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002468 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02002469 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2470 MGMT_STATUS_REJECTED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002471
Johan Hedberga7e80f22013-01-09 16:05:19 +02002472 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002473 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2474 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002475
Marcel Holtmannee392692013-10-01 22:59:23 -07002476 hci_dev_lock(hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002477
Johan Hedberg333ae952015-03-17 13:48:47 +02002478 if (pending_find(MGMT_OP_SET_SSP, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002479 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2480 MGMT_STATUS_BUSY);
Johan Hedberga2cb01d2015-02-19 17:38:07 +02002481 goto unlock;
2482 }
2483
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002484 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07002485 changed = !hci_dev_test_and_set_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002486 } else {
2487 if (hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002488 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2489 MGMT_STATUS_REJECTED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002490 goto unlock;
2491 }
2492
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002493 changed = hci_dev_test_and_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002494 }
Marcel Holtmannee392692013-10-01 22:59:23 -07002495
2496 err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
2497 if (err < 0)
2498 goto unlock;
2499
2500 if (changed)
2501 err = new_settings(hdev, sk);
2502
2503unlock:
2504 hci_dev_unlock(hdev);
2505 return err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002506}
2507
Marcel Holtmann1904a852015-01-11 13:50:44 -08002508static void le_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002509{
2510 struct cmd_lookup match = { NULL, hdev };
2511
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302512 hci_dev_lock(hdev);
2513
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002514 if (status) {
2515 u8 mgmt_err = mgmt_status(status);
2516
2517 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
2518 &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302519 goto unlock;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002520 }
2521
2522 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
2523
2524 new_settings(hdev, match.sk);
2525
2526 if (match.sk)
2527 sock_put(match.sk);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002528
2529 /* Make sure the controller has a good default for
2530 * advertising data. Restrict the update to when LE
2531 * has actually been enabled. During power on, the
2532 * update in powered_update_hci will take care of it.
2533 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002534 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002535 struct hci_request req;
2536
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002537 hci_req_init(&req, hdev);
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07002538 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07002539 update_scan_rsp_data(&req);
Johan Hedberg2cf22212014-12-19 22:26:00 +02002540 __hci_update_background_scan(&req);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002541 hci_req_run(&req, NULL);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002542 }
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302543
2544unlock:
2545 hci_dev_unlock(hdev);
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002546}
2547
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002548static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002549{
2550 struct mgmt_mode *cp = data;
2551 struct hci_cp_write_le_host_supported hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002552 struct mgmt_pending_cmd *cmd;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002553 struct hci_request req;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002554 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002555 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002556
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002557 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002558
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002559 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002560 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2561 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002562
Johan Hedberga7e80f22013-01-09 16:05:19 +02002563 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002564 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2565 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002566
Marcel Holtmanne7844ee2015-03-18 16:15:07 -07002567 /* Bluetooth single mode LE only controllers or dual-mode
2568 * controllers configured as LE only devices, do not allow
2569 * switching LE off. These have either LE enabled explicitly
2570 * or BR/EDR has been previously switched off.
2571 *
2572 * When trying to enable an already enabled LE, then gracefully
2573 * send a positive response. Trying to disable it however will
2574 * result into rejection.
2575 */
2576 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
2577 if (cp->val == 0x01)
2578 return send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
2579
Johan Hedberga69e8372015-03-06 21:08:53 +02002580 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2581 MGMT_STATUS_REJECTED);
Marcel Holtmanne7844ee2015-03-18 16:15:07 -07002582 }
Johan Hedbergc73eee92013-04-19 18:35:21 +03002583
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002584 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002585
2586 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02002587 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002588
Florian Grandel847818d2015-06-18 03:16:46 +02002589 if (!val)
2590 clear_adv_instance(hdev, NULL, 0x00, true);
2591
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002592 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02002593 bool changed = false;
2594
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002595 if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07002596 hci_dev_change_flag(hdev, HCI_LE_ENABLED);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002597 changed = true;
2598 }
2599
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002600 if (!val && hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002601 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03002602 changed = true;
2603 }
2604
Johan Hedberg06199cf2012-02-22 16:37:11 +02002605 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
2606 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08002607 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002608
2609 if (changed)
2610 err = new_settings(hdev, sk);
2611
Johan Hedberg1de028c2012-02-29 19:55:35 -08002612 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002613 }
2614
Johan Hedberg333ae952015-03-17 13:48:47 +02002615 if (pending_find(MGMT_OP_SET_LE, hdev) ||
2616 pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002617 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2618 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002619 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002620 }
2621
2622 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
2623 if (!cmd) {
2624 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08002625 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002626 }
2627
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002628 hci_req_init(&req, hdev);
2629
Johan Hedberg06199cf2012-02-22 16:37:11 +02002630 memset(&hci_cp, 0, sizeof(hci_cp));
2631
2632 if (val) {
2633 hci_cp.le = val;
Marcel Holtmann32226e42014-07-24 20:04:16 +02002634 hci_cp.simul = 0x00;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002635 } else {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002636 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002637 disable_advertising(&req);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002638 }
2639
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002640 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
2641 &hci_cp);
2642
2643 err = hci_req_run(&req, le_enable_complete);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05302644 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002645 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002646
Johan Hedberg1de028c2012-02-29 19:55:35 -08002647unlock:
2648 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002649 return err;
2650}
2651
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002652/* This is a helper function to test for pending mgmt commands that can
2653 * cause CoD or EIR HCI commands. We can only allow one such pending
2654 * mgmt command at a time since otherwise we cannot easily track what
2655 * the current values are, will be, and based on that calculate if a new
2656 * HCI command needs to be sent and if yes with what value.
2657 */
2658static bool pending_eir_or_class(struct hci_dev *hdev)
2659{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002660 struct mgmt_pending_cmd *cmd;
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002661
2662 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
2663 switch (cmd->opcode) {
2664 case MGMT_OP_ADD_UUID:
2665 case MGMT_OP_REMOVE_UUID:
2666 case MGMT_OP_SET_DEV_CLASS:
2667 case MGMT_OP_SET_POWERED:
2668 return true;
2669 }
2670 }
2671
2672 return false;
2673}
2674
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002675static const u8 bluetooth_base_uuid[] = {
2676 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
2677 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2678};
2679
2680static u8 get_uuid_size(const u8 *uuid)
2681{
2682 u32 val;
2683
2684 if (memcmp(uuid, bluetooth_base_uuid, 12))
2685 return 128;
2686
2687 val = get_unaligned_le32(&uuid[12]);
2688 if (val > 0xffff)
2689 return 32;
2690
2691 return 16;
2692}
2693
Johan Hedberg92da6092013-03-15 17:06:55 -05002694static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
2695{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002696 struct mgmt_pending_cmd *cmd;
Johan Hedberg92da6092013-03-15 17:06:55 -05002697
2698 hci_dev_lock(hdev);
2699
Johan Hedberg333ae952015-03-17 13:48:47 +02002700 cmd = pending_find(mgmt_op, hdev);
Johan Hedberg92da6092013-03-15 17:06:55 -05002701 if (!cmd)
2702 goto unlock;
2703
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002704 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
2705 mgmt_status(status), hdev->dev_class, 3);
Johan Hedberg92da6092013-03-15 17:06:55 -05002706
2707 mgmt_pending_remove(cmd);
2708
2709unlock:
2710 hci_dev_unlock(hdev);
2711}
2712
Marcel Holtmann1904a852015-01-11 13:50:44 -08002713static void add_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002714{
2715 BT_DBG("status 0x%02x", status);
2716
2717 mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
2718}
2719
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002720static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002721{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002722 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002723 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002724 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002725 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002726 int err;
2727
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002728 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002729
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002730 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002731
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002732 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002733 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
2734 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002735 goto failed;
2736 }
2737
Andre Guedes92c4c202012-06-07 19:05:44 -03002738 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002739 if (!uuid) {
2740 err = -ENOMEM;
2741 goto failed;
2742 }
2743
2744 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002745 uuid->svc_hint = cp->svc_hint;
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002746 uuid->size = get_uuid_size(cp->uuid);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002747
Johan Hedbergde66aa62013-01-27 00:31:27 +02002748 list_add_tail(&uuid->list, &hdev->uuids);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002749
Johan Hedberg890ea892013-03-15 17:06:52 -05002750 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002751
Johan Hedberg890ea892013-03-15 17:06:52 -05002752 update_class(&req);
2753 update_eir(&req);
2754
Johan Hedberg92da6092013-03-15 17:06:55 -05002755 err = hci_req_run(&req, add_uuid_complete);
2756 if (err < 0) {
2757 if (err != -ENODATA)
2758 goto failed;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002759
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002760 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
2761 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002762 goto failed;
2763 }
2764
2765 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002766 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002767 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002768 goto failed;
2769 }
2770
2771 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002772
2773failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002774 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002775 return err;
2776}
2777
Johan Hedberg24b78d02012-02-23 23:24:30 +02002778static bool enable_service_cache(struct hci_dev *hdev)
2779{
2780 if (!hdev_is_powered(hdev))
2781 return false;
2782
Marcel Holtmann238be782015-03-13 02:11:06 -07002783 if (!hci_dev_test_and_set_flag(hdev, HCI_SERVICE_CACHE)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02002784 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
2785 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002786 return true;
2787 }
2788
2789 return false;
2790}
2791
Marcel Holtmann1904a852015-01-11 13:50:44 -08002792static void remove_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002793{
2794 BT_DBG("status 0x%02x", status);
2795
2796 mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
2797}
2798
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002799static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002800 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002801{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002802 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002803 struct mgmt_pending_cmd *cmd;
Johan Hedberg056341c2013-01-27 00:31:30 +02002804 struct bt_uuid *match, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002805 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 -05002806 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002807 int err, found;
2808
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002809 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002810
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002811 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002812
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002813 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002814 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
2815 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002816 goto unlock;
2817 }
2818
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002819 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
Johan Hedberg35f74982014-02-18 17:14:32 +02002820 hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002821
Johan Hedberg24b78d02012-02-23 23:24:30 +02002822 if (enable_service_cache(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002823 err = mgmt_cmd_complete(sk, hdev->id,
2824 MGMT_OP_REMOVE_UUID,
2825 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002826 goto unlock;
2827 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002828
Johan Hedberg9246a862012-02-23 21:33:16 +02002829 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002830 }
2831
2832 found = 0;
2833
Johan Hedberg056341c2013-01-27 00:31:30 +02002834 list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002835 if (memcmp(match->uuid, cp->uuid, 16) != 0)
2836 continue;
2837
2838 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01002839 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002840 found++;
2841 }
2842
2843 if (found == 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002844 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
2845 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002846 goto unlock;
2847 }
2848
Johan Hedberg9246a862012-02-23 21:33:16 +02002849update_class:
Johan Hedberg890ea892013-03-15 17:06:52 -05002850 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002851
Johan Hedberg890ea892013-03-15 17:06:52 -05002852 update_class(&req);
2853 update_eir(&req);
2854
Johan Hedberg92da6092013-03-15 17:06:55 -05002855 err = hci_req_run(&req, remove_uuid_complete);
2856 if (err < 0) {
2857 if (err != -ENODATA)
2858 goto unlock;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002859
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002860 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
2861 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002862 goto unlock;
2863 }
2864
2865 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002866 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002867 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002868 goto unlock;
2869 }
2870
2871 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002872
2873unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002874 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002875 return err;
2876}
2877
Marcel Holtmann1904a852015-01-11 13:50:44 -08002878static void set_class_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002879{
2880 BT_DBG("status 0x%02x", status);
2881
2882 mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
2883}
2884
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002885static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002886 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002887{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002888 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002889 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002890 struct hci_request req;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002891 int err;
2892
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002893 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002894
Marcel Holtmann6203fc92013-10-02 23:37:29 -07002895 if (!lmp_bredr_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002896 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2897 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002898
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002899 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002900
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002901 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002902 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2903 MGMT_STATUS_BUSY);
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002904 goto unlock;
2905 }
2906
2907 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002908 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2909 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002910 goto unlock;
2911 }
2912
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002913 hdev->major_class = cp->major;
2914 hdev->minor_class = cp->minor;
2915
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002916 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002917 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
2918 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002919 goto unlock;
2920 }
2921
Johan Hedberg890ea892013-03-15 17:06:52 -05002922 hci_req_init(&req, hdev);
2923
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002924 if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02002925 hci_dev_unlock(hdev);
2926 cancel_delayed_work_sync(&hdev->service_cache);
2927 hci_dev_lock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05002928 update_eir(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02002929 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02002930
Johan Hedberg890ea892013-03-15 17:06:52 -05002931 update_class(&req);
2932
Johan Hedberg92da6092013-03-15 17:06:55 -05002933 err = hci_req_run(&req, set_class_complete);
2934 if (err < 0) {
2935 if (err != -ENODATA)
2936 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002937
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002938 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
2939 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002940 goto unlock;
2941 }
2942
2943 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002944 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002945 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002946 goto unlock;
2947 }
2948
2949 err = 0;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002950
Johan Hedbergb5235a62012-02-21 14:32:24 +02002951unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002952 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002953 return err;
2954}
2955
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002956static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002957 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002958{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002959 struct mgmt_cp_load_link_keys *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03002960 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
2961 sizeof(struct mgmt_link_key_info));
Szymon Janc4e51eae2011-02-25 19:05:48 +01002962 u16 key_count, expected_len;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002963 bool changed;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002964 int i;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002965
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002966 BT_DBG("request for %s", hdev->name);
2967
2968 if (!lmp_bredr_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002969 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2970 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002971
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002972 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002973 if (key_count > max_key_count) {
2974 BT_ERR("load_link_keys: too big key_count value %u",
2975 key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02002976 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2977 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002978 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002979
Johan Hedberg86742e12011-11-07 23:13:38 +02002980 expected_len = sizeof(*cp) + key_count *
2981 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002982 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002983 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02002984 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02002985 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2986 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002987 }
2988
Johan Hedberg4ae14302013-01-20 14:27:13 +02002989 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002990 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2991 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ae14302013-01-20 14:27:13 +02002992
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002993 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002994 key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002995
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002996 for (i = 0; i < key_count; i++) {
2997 struct mgmt_link_key_info *key = &cp->keys[i];
2998
Marcel Holtmann8e991132014-01-10 02:07:25 -08002999 if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
Johan Hedberga69e8372015-03-06 21:08:53 +02003000 return mgmt_cmd_status(sk, hdev->id,
3001 MGMT_OP_LOAD_LINK_KEYS,
3002 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003003 }
3004
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003005 hci_dev_lock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003006
3007 hci_link_keys_clear(hdev);
3008
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003009 if (cp->debug_keys)
Marcel Holtmann238be782015-03-13 02:11:06 -07003010 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003011 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07003012 changed = hci_dev_test_and_clear_flag(hdev,
3013 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08003014
3015 if (changed)
3016 new_settings(hdev, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003017
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003018 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02003019 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003020
Johan Hedberg58e92932014-06-24 14:00:26 +03003021 /* Always ignore debug keys and require a new pairing if
3022 * the user wants to use them.
3023 */
3024 if (key->type == HCI_LK_DEBUG_COMBINATION)
3025 continue;
3026
Johan Hedberg7652ff62014-06-24 13:15:49 +03003027 hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
3028 key->type, key->pin_len, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003029 }
3030
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003031 mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02003032
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003033 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003034
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03003035 return 0;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003036}
3037
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003038static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003039 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003040{
3041 struct mgmt_ev_device_unpaired ev;
3042
3043 bacpy(&ev.addr.bdaddr, bdaddr);
3044 ev.addr.type = addr_type;
3045
3046 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003047 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003048}
3049
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003050static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003051 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003052{
Johan Hedberg124f6e32012-02-09 13:50:12 +02003053 struct mgmt_cp_unpair_device *cp = data;
3054 struct mgmt_rp_unpair_device rp;
Johan Hedbergfc643612015-10-22 09:38:31 +03003055 struct hci_conn_params *params;
Johan Hedberga8a1d192011-11-10 15:54:38 +02003056 struct hci_cp_disconnect dc;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003057 struct mgmt_pending_cmd *cmd;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003058 struct hci_conn *conn;
Johan Hedbergec182f02015-10-21 18:03:03 +03003059 u8 addr_type;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003060 int err;
3061
Johan Hedberga8a1d192011-11-10 15:54:38 +02003062 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02003063 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3064 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02003065
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003066 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003067 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
3068 MGMT_STATUS_INVALID_PARAMS,
3069 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003070
Johan Hedberg118da702013-01-20 14:27:20 +02003071 if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003072 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
3073 MGMT_STATUS_INVALID_PARAMS,
3074 &rp, sizeof(rp));
Johan Hedberg118da702013-01-20 14:27:20 +02003075
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003076 hci_dev_lock(hdev);
3077
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02003078 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003079 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
3080 MGMT_STATUS_NOT_POWERED, &rp,
3081 sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02003082 goto unlock;
3083 }
3084
Johan Hedberge0b2b272014-02-18 17:14:31 +02003085 if (cp->addr.type == BDADDR_BREDR) {
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003086 /* If disconnection is requested, then look up the
3087 * connection. If the remote device is connected, it
3088 * will be later used to terminate the link.
3089 *
3090 * Setting it to NULL explicitly will cause no
3091 * termination of the link.
3092 */
3093 if (cp->disconnect)
3094 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
3095 &cp->addr.bdaddr);
3096 else
3097 conn = NULL;
3098
Johan Hedberg124f6e32012-02-09 13:50:12 +02003099 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
Johan Hedbergec182f02015-10-21 18:03:03 +03003100 if (err < 0) {
3101 err = mgmt_cmd_complete(sk, hdev->id,
3102 MGMT_OP_UNPAIR_DEVICE,
3103 MGMT_STATUS_NOT_PAIRED, &rp,
3104 sizeof(rp));
3105 goto unlock;
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003106 }
3107
Johan Hedbergec182f02015-10-21 18:03:03 +03003108 goto done;
Johan Hedberge0b2b272014-02-18 17:14:31 +02003109 }
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03003110
Johan Hedbergec182f02015-10-21 18:03:03 +03003111 /* LE address type */
3112 addr_type = le_addr_type(cp->addr.type);
3113
3114 hci_remove_irk(hdev, &cp->addr.bdaddr, addr_type);
3115
3116 err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003117 if (err < 0) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003118 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
3119 MGMT_STATUS_NOT_PAIRED, &rp,
3120 sizeof(rp));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003121 goto unlock;
3122 }
3123
Johan Hedbergec182f02015-10-21 18:03:03 +03003124 conn = hci_conn_hash_lookup_le(hdev, &cp->addr.bdaddr, addr_type);
3125 if (!conn) {
3126 hci_conn_params_del(hdev, &cp->addr.bdaddr, addr_type);
3127 goto done;
3128 }
3129
3130 /* Defer clearing up the connection parameters until closing to
3131 * give a chance of keeping them if a repairing happens.
3132 */
3133 set_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
3134
Johan Hedbergfc643612015-10-22 09:38:31 +03003135 /* Disable auto-connection parameters if present */
3136 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr, addr_type);
3137 if (params) {
3138 if (params->explicit_connect)
3139 params->auto_connect = HCI_AUTO_CONN_EXPLICIT;
3140 else
3141 params->auto_connect = HCI_AUTO_CONN_DISABLED;
3142 }
3143
Johan Hedbergec182f02015-10-21 18:03:03 +03003144 /* If disconnection is not requested, then clear the connection
3145 * variable so that the link is not terminated.
3146 */
3147 if (!cp->disconnect)
3148 conn = NULL;
3149
3150done:
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003151 /* If the connection variable is set, then termination of the
3152 * link is requested.
3153 */
Johan Hedberga8a1d192011-11-10 15:54:38 +02003154 if (!conn) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003155 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
3156 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02003157 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02003158 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003159 }
3160
Johan Hedberg124f6e32012-02-09 13:50:12 +02003161 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003162 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02003163 if (!cmd) {
3164 err = -ENOMEM;
3165 goto unlock;
3166 }
3167
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02003168 cmd->cmd_complete = addr_cmd_complete;
3169
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003170 dc.handle = cpu_to_le16(conn->handle);
Johan Hedberga8a1d192011-11-10 15:54:38 +02003171 dc.reason = 0x13; /* Remote User Terminated Connection */
3172 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
3173 if (err < 0)
3174 mgmt_pending_remove(cmd);
3175
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003176unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003177 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02003178 return err;
3179}
3180
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003181static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003182 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02003183{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003184 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg06a63b12013-01-20 14:27:21 +02003185 struct mgmt_rp_disconnect rp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003186 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003187 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003188 int err;
3189
3190 BT_DBG("");
3191
Johan Hedberg06a63b12013-01-20 14:27:21 +02003192 memset(&rp, 0, sizeof(rp));
3193 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3194 rp.addr.type = cp->addr.type;
3195
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003196 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003197 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3198 MGMT_STATUS_INVALID_PARAMS,
3199 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003200
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003201 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003202
3203 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003204 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3205 MGMT_STATUS_NOT_POWERED, &rp,
3206 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003207 goto failed;
3208 }
3209
Johan Hedberg333ae952015-03-17 13:48:47 +02003210 if (pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003211 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3212 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003213 goto failed;
3214 }
3215
Andre Guedes591f47f2012-04-24 21:02:49 -03003216 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003217 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
3218 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02003219 else
Johan Hedberg9d4c1cc2015-10-21 18:03:01 +03003220 conn = hci_conn_hash_lookup_le(hdev, &cp->addr.bdaddr,
3221 le_addr_type(cp->addr.type));
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03003222
Vishal Agarwalf9607272012-06-13 05:32:43 +05303223 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003224 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3225 MGMT_STATUS_NOT_CONNECTED, &rp,
3226 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003227 goto failed;
3228 }
3229
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003230 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03003231 if (!cmd) {
3232 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003233 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03003234 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02003235
Johan Hedbergf5818c22014-12-05 13:36:02 +02003236 cmd->cmd_complete = generic_cmd_complete;
3237
Johan Hedberge3f2f922014-08-18 20:33:33 +03003238 err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003239 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03003240 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003241
3242failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003243 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003244 return err;
3245}
3246
Andre Guedes57c14772012-04-24 21:02:50 -03003247static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02003248{
3249 switch (link_type) {
3250 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02003251 switch (addr_type) {
3252 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03003253 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03003254
Johan Hedberg48264f02011-11-09 13:58:58 +02003255 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03003256 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03003257 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02003258 }
Andre Guedes0ed09142012-04-03 08:46:54 -03003259
Johan Hedberg4c659c32011-11-07 23:13:39 +02003260 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03003261 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03003262 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003263 }
3264}
3265
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003266static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
3267 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02003268{
Johan Hedberg2784eb42011-01-21 13:56:35 +02003269 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02003270 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02003271 size_t rp_len;
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003272 int err;
3273 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02003274
3275 BT_DBG("");
3276
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003277 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003278
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003279 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003280 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
3281 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003282 goto unlock;
3283 }
3284
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003285 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02003286 list_for_each_entry(c, &hdev->conn_hash.list, list) {
3287 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003288 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02003289 }
3290
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003291 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03003292 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02003293 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02003294 err = -ENOMEM;
3295 goto unlock;
3296 }
3297
Johan Hedberg2784eb42011-01-21 13:56:35 +02003298 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003299 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02003300 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
3301 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003302 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03003303 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03003304 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02003305 continue;
3306 i++;
3307 }
3308
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003309 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003310
Johan Hedberg4c659c32011-11-07 23:13:39 +02003311 /* Recalculate length in case of filtered SCO connections, etc */
3312 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02003313
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003314 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
3315 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003316
Johan Hedberga38528f2011-01-22 06:46:43 +02003317 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003318
3319unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003320 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003321 return err;
3322}
3323
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003324static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003325 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003326{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003327 struct mgmt_pending_cmd *cmd;
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003328 int err;
3329
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003330 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003331 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003332 if (!cmd)
3333 return -ENOMEM;
3334
Johan Hedbergd8457692012-02-17 14:24:57 +02003335 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003336 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003337 if (err < 0)
3338 mgmt_pending_remove(cmd);
3339
3340 return err;
3341}
3342
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003343static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003344 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003345{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003346 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003347 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003348 struct hci_cp_pin_code_reply reply;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003349 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003350 int err;
3351
3352 BT_DBG("");
3353
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003354 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003355
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003356 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003357 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3358 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003359 goto failed;
3360 }
3361
Johan Hedbergd8457692012-02-17 14:24:57 +02003362 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003363 if (!conn) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003364 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3365 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003366 goto failed;
3367 }
3368
3369 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02003370 struct mgmt_cp_pin_code_neg_reply ncp;
3371
3372 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003373
3374 BT_ERR("PIN code is not 16 bytes long");
3375
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003376 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003377 if (err >= 0)
Johan Hedberga69e8372015-03-06 21:08:53 +02003378 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3379 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003380
3381 goto failed;
3382 }
3383
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03003384 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03003385 if (!cmd) {
3386 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003387 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03003388 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02003389
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003390 cmd->cmd_complete = addr_cmd_complete;
3391
Johan Hedbergd8457692012-02-17 14:24:57 +02003392 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003393 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02003394 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003395
3396 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
3397 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03003398 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003399
3400failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003401 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003402 return err;
3403}
3404
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003405static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
3406 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003407{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003408 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003409
3410 BT_DBG("");
3411
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003412 if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003413 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
3414 MGMT_STATUS_INVALID_PARAMS, NULL, 0);
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003415
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003416 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003417
3418 hdev->io_capability = cp->io_capability;
3419
3420 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003421 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003422
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003423 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003424
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003425 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0,
3426 NULL, 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003427}
3428
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003429static struct mgmt_pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003430{
3431 struct hci_dev *hdev = conn->hdev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003432 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003433
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003434 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03003435 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
3436 continue;
3437
Johan Hedberge9a416b2011-02-19 12:05:56 -03003438 if (cmd->user_data != conn)
3439 continue;
3440
3441 return cmd;
3442 }
3443
3444 return NULL;
3445}
3446
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003447static int pairing_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003448{
3449 struct mgmt_rp_pair_device rp;
3450 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9df74652014-12-19 22:26:03 +02003451 int err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003452
Johan Hedberg61b1a7f2014-03-20 12:54:16 +02003453 bacpy(&rp.addr.bdaddr, &conn->dst);
3454 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003455
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003456 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE,
3457 status, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003458
3459 /* So we don't get further callbacks for this connection */
3460 conn->connect_cfm_cb = NULL;
3461 conn->security_cfm_cb = NULL;
3462 conn->disconn_cfm_cb = NULL;
3463
David Herrmann76a68ba2013-04-06 20:28:37 +02003464 hci_conn_drop(conn);
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003465
3466 /* The device is paired so there is no need to remove
3467 * its connection parameters anymore.
3468 */
3469 clear_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
Johan Hedberg15013ae2014-12-11 21:45:44 +02003470
3471 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02003472
3473 return err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003474}
3475
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003476void mgmt_smp_complete(struct hci_conn *conn, bool complete)
3477{
3478 u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003479 struct mgmt_pending_cmd *cmd;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003480
3481 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003482 if (cmd) {
Johan Hedberg04ab2742014-12-05 13:36:04 +02003483 cmd->cmd_complete(cmd, status);
Johan Hedberga511b352014-12-11 21:45:45 +02003484 mgmt_pending_remove(cmd);
3485 }
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003486}
3487
Johan Hedberge9a416b2011-02-19 12:05:56 -03003488static void pairing_complete_cb(struct hci_conn *conn, u8 status)
3489{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003490 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003491
3492 BT_DBG("status %u", status);
3493
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003494 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003495 if (!cmd) {
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003496 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02003497 return;
3498 }
3499
3500 cmd->cmd_complete(cmd, mgmt_status(status));
3501 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003502}
3503
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003504static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303505{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003506 struct mgmt_pending_cmd *cmd;
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303507
3508 BT_DBG("status %u", status);
3509
3510 if (!status)
3511 return;
3512
3513 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003514 if (!cmd) {
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303515 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02003516 return;
3517 }
3518
3519 cmd->cmd_complete(cmd, mgmt_status(status));
3520 mgmt_pending_remove(cmd);
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303521}
3522
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003523static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003524 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003525{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003526 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02003527 struct mgmt_rp_pair_device rp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003528 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003529 u8 sec_level, auth_type;
3530 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003531 int err;
3532
3533 BT_DBG("");
3534
Szymon Jancf950a30e2013-01-18 12:48:07 +01003535 memset(&rp, 0, sizeof(rp));
3536 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3537 rp.addr.type = cp->addr.type;
3538
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003539 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003540 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3541 MGMT_STATUS_INVALID_PARAMS,
3542 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003543
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003544 if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003545 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3546 MGMT_STATUS_INVALID_PARAMS,
3547 &rp, sizeof(rp));
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003548
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003549 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003550
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003551 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003552 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3553 MGMT_STATUS_NOT_POWERED, &rp,
3554 sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003555 goto unlock;
3556 }
3557
Johan Hedberg55e76b32015-03-10 22:34:40 +02003558 if (hci_bdaddr_is_paired(hdev, &cp->addr.bdaddr, cp->addr.type)) {
3559 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3560 MGMT_STATUS_ALREADY_PAIRED, &rp,
3561 sizeof(rp));
3562 goto unlock;
3563 }
3564
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03003565 sec_level = BT_SECURITY_MEDIUM;
Mikel Astiz6fd6b912014-04-08 14:21:32 +02003566 auth_type = HCI_AT_DEDICATED_BONDING;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003567
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003568 if (cp->addr.type == BDADDR_BREDR) {
Andre Guedes04a6c582014-02-26 20:21:44 -03003569 conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
3570 auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003571 } else {
Johan Hedberg85813a72015-10-21 18:02:59 +03003572 u8 addr_type = le_addr_type(cp->addr.type);
Jakub Pawlowski5157b8a2015-10-16 10:07:54 +03003573 struct hci_conn_params *p;
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003574
Marcel Holtmann7c264b12014-06-30 12:34:40 +02003575 /* When pairing a new device, it is expected to remember
3576 * this device for future connections. Adding the connection
3577 * parameter information ahead of time allows tracking
3578 * of the slave preferred values and will speed up any
3579 * further connection establishment.
3580 *
3581 * If connection parameters already exist, then they
3582 * will be kept and this function does nothing.
3583 */
Jakub Pawlowski5157b8a2015-10-16 10:07:54 +03003584 p = hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);
3585
3586 if (p->auto_connect == HCI_AUTO_CONN_EXPLICIT)
3587 p->auto_connect = HCI_AUTO_CONN_DISABLED;
Marcel Holtmann7c264b12014-06-30 12:34:40 +02003588
Jakub Pawlowskifa142222015-08-07 20:22:56 +02003589 conn = hci_connect_le_scan(hdev, &cp->addr.bdaddr,
3590 addr_type, sec_level,
3591 HCI_LE_CONN_TIMEOUT,
3592 HCI_ROLE_MASTER);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003593 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003594
Ville Tervo30e76272011-02-22 16:10:53 -03003595 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02003596 int status;
3597
3598 if (PTR_ERR(conn) == -EBUSY)
3599 status = MGMT_STATUS_BUSY;
Lukasz Rymanowskifaa81032015-02-11 12:31:42 +01003600 else if (PTR_ERR(conn) == -EOPNOTSUPP)
3601 status = MGMT_STATUS_NOT_SUPPORTED;
3602 else if (PTR_ERR(conn) == -ECONNREFUSED)
3603 status = MGMT_STATUS_REJECTED;
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02003604 else
3605 status = MGMT_STATUS_CONNECT_FAILED;
3606
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003607 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3608 status, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003609 goto unlock;
3610 }
3611
3612 if (conn->connect_cfm_cb) {
David Herrmann76a68ba2013-04-06 20:28:37 +02003613 hci_conn_drop(conn);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003614 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3615 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003616 goto unlock;
3617 }
3618
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003619 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003620 if (!cmd) {
3621 err = -ENOMEM;
David Herrmann76a68ba2013-04-06 20:28:37 +02003622 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003623 goto unlock;
3624 }
3625
Johan Hedberg04ab2742014-12-05 13:36:04 +02003626 cmd->cmd_complete = pairing_complete;
3627
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003628 /* For LE, just connecting isn't a proof that the pairing finished */
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003629 if (cp->addr.type == BDADDR_BREDR) {
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003630 conn->connect_cfm_cb = pairing_complete_cb;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003631 conn->security_cfm_cb = pairing_complete_cb;
3632 conn->disconn_cfm_cb = pairing_complete_cb;
3633 } else {
3634 conn->connect_cfm_cb = le_pairing_complete_cb;
3635 conn->security_cfm_cb = le_pairing_complete_cb;
3636 conn->disconn_cfm_cb = le_pairing_complete_cb;
3637 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003638
Johan Hedberge9a416b2011-02-19 12:05:56 -03003639 conn->io_capability = cp->io_cap;
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03003640 cmd->user_data = hci_conn_get(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003641
Johan Hedberg6f78fd42014-07-30 08:35:48 +03003642 if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
Johan Hedberga511b352014-12-11 21:45:45 +02003643 hci_conn_security(conn, sec_level, auth_type, true)) {
3644 cmd->cmd_complete(cmd, 0);
3645 mgmt_pending_remove(cmd);
3646 }
Johan Hedberge9a416b2011-02-19 12:05:56 -03003647
3648 err = 0;
3649
3650unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003651 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003652 return err;
3653}
3654
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003655static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3656 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02003657{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003658 struct mgmt_addr_info *addr = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003659 struct mgmt_pending_cmd *cmd;
Johan Hedberg28424702012-02-02 04:02:29 +02003660 struct hci_conn *conn;
3661 int err;
3662
3663 BT_DBG("");
3664
Johan Hedberg28424702012-02-02 04:02:29 +02003665 hci_dev_lock(hdev);
3666
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003667 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003668 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3669 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003670 goto unlock;
3671 }
3672
Johan Hedberg333ae952015-03-17 13:48:47 +02003673 cmd = pending_find(MGMT_OP_PAIR_DEVICE, hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003674 if (!cmd) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003675 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3676 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003677 goto unlock;
3678 }
3679
3680 conn = cmd->user_data;
3681
3682 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003683 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3684 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003685 goto unlock;
3686 }
3687
Johan Hedberga511b352014-12-11 21:45:45 +02003688 cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
3689 mgmt_pending_remove(cmd);
Johan Hedberg28424702012-02-02 04:02:29 +02003690
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003691 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
3692 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02003693unlock:
3694 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003695 return err;
3696}
3697
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003698static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Johan Hedberg1707c602013-03-15 17:07:15 -05003699 struct mgmt_addr_info *addr, u16 mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003700 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03003701{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003702 struct mgmt_pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08003703 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003704 int err;
3705
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003706 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02003707
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003708 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003709 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3710 MGMT_STATUS_NOT_POWERED, addr,
3711 sizeof(*addr));
Brian Gix0df4c182011-11-16 13:53:13 -08003712 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003713 }
3714
Johan Hedberg1707c602013-03-15 17:07:15 -05003715 if (addr->type == BDADDR_BREDR)
3716 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
Johan Hedberg272d90d2012-02-09 15:26:12 +02003717 else
Johan Hedberg9d4c1cc2015-10-21 18:03:01 +03003718 conn = hci_conn_hash_lookup_le(hdev, &addr->bdaddr,
3719 le_addr_type(addr->type));
Brian Gix47c15e22011-11-16 13:53:14 -08003720
Johan Hedberg272d90d2012-02-09 15:26:12 +02003721 if (!conn) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003722 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3723 MGMT_STATUS_NOT_CONNECTED, addr,
3724 sizeof(*addr));
Johan Hedberg272d90d2012-02-09 15:26:12 +02003725 goto done;
3726 }
3727
Johan Hedberg1707c602013-03-15 17:07:15 -05003728 if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
Brian Gix5fe57d92011-12-21 16:12:13 -08003729 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix5fe57d92011-12-21 16:12:13 -08003730 if (!err)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003731 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3732 MGMT_STATUS_SUCCESS, addr,
3733 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003734 else
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003735 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3736 MGMT_STATUS_FAILED, addr,
3737 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003738
Brian Gix47c15e22011-11-16 13:53:14 -08003739 goto done;
3740 }
3741
Johan Hedberg1707c602013-03-15 17:07:15 -05003742 cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
Johan Hedberga5c29682011-02-19 12:05:57 -03003743 if (!cmd) {
3744 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08003745 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003746 }
3747
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003748 cmd->cmd_complete = addr_cmd_complete;
3749
Brian Gix0df4c182011-11-16 13:53:13 -08003750 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08003751 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
3752 struct hci_cp_user_passkey_reply cp;
3753
Johan Hedberg1707c602013-03-15 17:07:15 -05003754 bacpy(&cp.bdaddr, &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003755 cp.passkey = passkey;
3756 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
3757 } else
Johan Hedberg1707c602013-03-15 17:07:15 -05003758 err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
3759 &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003760
Johan Hedberga664b5b2011-02-19 12:06:02 -03003761 if (err < 0)
3762 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003763
Brian Gix0df4c182011-11-16 13:53:13 -08003764done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003765 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003766 return err;
3767}
3768
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303769static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3770 void *data, u16 len)
3771{
3772 struct mgmt_cp_pin_code_neg_reply *cp = data;
3773
3774 BT_DBG("");
3775
Johan Hedberg1707c602013-03-15 17:07:15 -05003776 return user_pairing_resp(sk, hdev, &cp->addr,
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303777 MGMT_OP_PIN_CODE_NEG_REPLY,
3778 HCI_OP_PIN_CODE_NEG_REPLY, 0);
3779}
3780
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003781static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3782 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003783{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003784 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003785
3786 BT_DBG("");
3787
3788 if (len != sizeof(*cp))
Johan Hedberga69e8372015-03-06 21:08:53 +02003789 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
3790 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08003791
Johan Hedberg1707c602013-03-15 17:07:15 -05003792 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003793 MGMT_OP_USER_CONFIRM_REPLY,
3794 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003795}
3796
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003797static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003798 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003799{
Johan Hedbergc9c26592011-12-15 00:47:41 +02003800 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003801
3802 BT_DBG("");
3803
Johan Hedberg1707c602013-03-15 17:07:15 -05003804 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003805 MGMT_OP_USER_CONFIRM_NEG_REPLY,
3806 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003807}
3808
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003809static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3810 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003811{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003812 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003813
3814 BT_DBG("");
3815
Johan Hedberg1707c602013-03-15 17:07:15 -05003816 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003817 MGMT_OP_USER_PASSKEY_REPLY,
3818 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08003819}
3820
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003821static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003822 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003823{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003824 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003825
3826 BT_DBG("");
3827
Johan Hedberg1707c602013-03-15 17:07:15 -05003828 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003829 MGMT_OP_USER_PASSKEY_NEG_REPLY,
3830 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08003831}
3832
Johan Hedberg13928972013-03-15 17:07:00 -05003833static void update_name(struct hci_request *req)
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003834{
Johan Hedberg13928972013-03-15 17:07:00 -05003835 struct hci_dev *hdev = req->hdev;
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003836 struct hci_cp_write_local_name cp;
3837
Johan Hedberg13928972013-03-15 17:07:00 -05003838 memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003839
Johan Hedberg890ea892013-03-15 17:06:52 -05003840 hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003841}
3842
Marcel Holtmann1904a852015-01-11 13:50:44 -08003843static void set_name_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg13928972013-03-15 17:07:00 -05003844{
3845 struct mgmt_cp_set_local_name *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003846 struct mgmt_pending_cmd *cmd;
Johan Hedberg13928972013-03-15 17:07:00 -05003847
3848 BT_DBG("status 0x%02x", status);
3849
3850 hci_dev_lock(hdev);
3851
Johan Hedberg333ae952015-03-17 13:48:47 +02003852 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05003853 if (!cmd)
3854 goto unlock;
3855
3856 cp = cmd->param;
3857
3858 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02003859 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3860 mgmt_status(status));
Johan Hedberg13928972013-03-15 17:07:00 -05003861 else
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003862 mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3863 cp, sizeof(*cp));
Johan Hedberg13928972013-03-15 17:07:00 -05003864
3865 mgmt_pending_remove(cmd);
3866
3867unlock:
3868 hci_dev_unlock(hdev);
3869}
3870
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003871static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003872 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003873{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003874 struct mgmt_cp_set_local_name *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003875 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05003876 struct hci_request req;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003877 int err;
3878
3879 BT_DBG("");
3880
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003881 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003882
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003883 /* If the old values are the same as the new ones just return a
3884 * direct command complete event.
3885 */
3886 if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
3887 !memcmp(hdev->short_name, cp->short_name,
3888 sizeof(hdev->short_name))) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003889 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3890 data, len);
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003891 goto failed;
3892 }
3893
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003894 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003895
Johan Hedbergb5235a62012-02-21 14:32:24 +02003896 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003897 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003898
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003899 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3900 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003901 if (err < 0)
3902 goto failed;
3903
Marcel Holtmannf6b77122015-03-14 19:28:05 -07003904 err = mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev,
3905 data, len, sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003906
Johan Hedbergb5235a62012-02-21 14:32:24 +02003907 goto failed;
3908 }
3909
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003910 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003911 if (!cmd) {
3912 err = -ENOMEM;
3913 goto failed;
3914 }
3915
Johan Hedberg13928972013-03-15 17:07:00 -05003916 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3917
Johan Hedberg890ea892013-03-15 17:06:52 -05003918 hci_req_init(&req, hdev);
Johan Hedberg3f985052013-03-15 17:07:02 -05003919
3920 if (lmp_bredr_capable(hdev)) {
3921 update_name(&req);
3922 update_eir(&req);
3923 }
3924
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003925 /* The name is stored in the scan response data and so
3926 * no need to udpate the advertising data here.
3927 */
Johan Hedberg3f985052013-03-15 17:07:02 -05003928 if (lmp_le_capable(hdev))
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003929 update_scan_rsp_data(&req);
Johan Hedberg3f985052013-03-15 17:07:02 -05003930
Johan Hedberg13928972013-03-15 17:07:00 -05003931 err = hci_req_run(&req, set_name_complete);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003932 if (err < 0)
3933 mgmt_pending_remove(cmd);
3934
3935failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003936 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003937 return err;
3938}
3939
Johan Hedberg1b9441f2015-04-02 13:41:13 +03003940static void read_local_oob_data_complete(struct hci_dev *hdev, u8 status,
3941 u16 opcode, struct sk_buff *skb)
3942{
3943 struct mgmt_rp_read_local_oob_data mgmt_rp;
3944 size_t rp_size = sizeof(mgmt_rp);
3945 struct mgmt_pending_cmd *cmd;
3946
3947 BT_DBG("%s status %u", hdev->name, status);
3948
3949 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
3950 if (!cmd)
3951 return;
3952
3953 if (status || !skb) {
3954 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3955 status ? mgmt_status(status) : MGMT_STATUS_FAILED);
3956 goto remove;
3957 }
3958
3959 memset(&mgmt_rp, 0, sizeof(mgmt_rp));
3960
3961 if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
3962 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
3963
3964 if (skb->len < sizeof(*rp)) {
3965 mgmt_cmd_status(cmd->sk, hdev->id,
3966 MGMT_OP_READ_LOCAL_OOB_DATA,
3967 MGMT_STATUS_FAILED);
3968 goto remove;
3969 }
3970
3971 memcpy(mgmt_rp.hash192, rp->hash, sizeof(rp->hash));
3972 memcpy(mgmt_rp.rand192, rp->rand, sizeof(rp->rand));
3973
3974 rp_size -= sizeof(mgmt_rp.hash256) + sizeof(mgmt_rp.rand256);
3975 } else {
3976 struct hci_rp_read_local_oob_ext_data *rp = (void *) skb->data;
3977
3978 if (skb->len < sizeof(*rp)) {
3979 mgmt_cmd_status(cmd->sk, hdev->id,
3980 MGMT_OP_READ_LOCAL_OOB_DATA,
3981 MGMT_STATUS_FAILED);
3982 goto remove;
3983 }
3984
3985 memcpy(mgmt_rp.hash192, rp->hash192, sizeof(rp->hash192));
3986 memcpy(mgmt_rp.rand192, rp->rand192, sizeof(rp->rand192));
3987
3988 memcpy(mgmt_rp.hash256, rp->hash256, sizeof(rp->hash256));
3989 memcpy(mgmt_rp.rand256, rp->rand256, sizeof(rp->rand256));
3990 }
3991
3992 mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3993 MGMT_STATUS_SUCCESS, &mgmt_rp, rp_size);
3994
3995remove:
3996 mgmt_pending_remove(cmd);
3997}
3998
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003999static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004000 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01004001{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004002 struct mgmt_pending_cmd *cmd;
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004003 struct hci_request req;
Szymon Jancc35938b2011-03-22 13:12:21 +01004004 int err;
4005
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004006 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01004007
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004008 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01004009
Johan Hedberg4b34ee782012-02-21 14:13:02 +02004010 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004011 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4012 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01004013 goto unlock;
4014 }
4015
Andre Guedes9a1a1992012-07-24 15:03:48 -03004016 if (!lmp_ssp_capable(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004017 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4018 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01004019 goto unlock;
4020 }
4021
Johan Hedberg333ae952015-03-17 13:48:47 +02004022 if (pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004023 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4024 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01004025 goto unlock;
4026 }
4027
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004028 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01004029 if (!cmd) {
4030 err = -ENOMEM;
4031 goto unlock;
4032 }
4033
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004034 hci_req_init(&req, hdev);
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08004035
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004036 if (bredr_sc_enabled(hdev))
4037 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
4038 else
4039 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
4040
4041 err = hci_req_run_skb(&req, read_local_oob_data_complete);
Szymon Jancc35938b2011-03-22 13:12:21 +01004042 if (err < 0)
4043 mgmt_pending_remove(cmd);
4044
4045unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004046 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01004047 return err;
4048}
4049
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004050static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004051 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01004052{
Johan Hedberg5d57e792015-01-23 10:10:38 +02004053 struct mgmt_addr_info *addr = data;
Szymon Janc2763eda2011-03-22 13:12:22 +01004054 int err;
4055
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004056 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01004057
Johan Hedberg5d57e792015-01-23 10:10:38 +02004058 if (!bdaddr_type_is_valid(addr->type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004059 return mgmt_cmd_complete(sk, hdev->id,
4060 MGMT_OP_ADD_REMOTE_OOB_DATA,
4061 MGMT_STATUS_INVALID_PARAMS,
4062 addr, sizeof(*addr));
Johan Hedberg5d57e792015-01-23 10:10:38 +02004063
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004064 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004065
Marcel Holtmannec109112014-01-10 02:07:30 -08004066 if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
4067 struct mgmt_cp_add_remote_oob_data *cp = data;
4068 u8 status;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004069
Johan Hedbergc19a4952014-11-17 20:52:19 +02004070 if (cp->addr.type != BDADDR_BREDR) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004071 err = mgmt_cmd_complete(sk, hdev->id,
4072 MGMT_OP_ADD_REMOTE_OOB_DATA,
4073 MGMT_STATUS_INVALID_PARAMS,
4074 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02004075 goto unlock;
4076 }
4077
Marcel Holtmannec109112014-01-10 02:07:30 -08004078 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg6928a922014-10-26 20:46:09 +01004079 cp->addr.type, cp->hash,
4080 cp->rand, NULL, NULL);
Marcel Holtmannec109112014-01-10 02:07:30 -08004081 if (err < 0)
4082 status = MGMT_STATUS_FAILED;
4083 else
4084 status = MGMT_STATUS_SUCCESS;
4085
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004086 err = mgmt_cmd_complete(sk, hdev->id,
4087 MGMT_OP_ADD_REMOTE_OOB_DATA, status,
4088 &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08004089 } else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
4090 struct mgmt_cp_add_remote_oob_ext_data *cp = data;
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004091 u8 *rand192, *hash192, *rand256, *hash256;
Marcel Holtmannec109112014-01-10 02:07:30 -08004092 u8 status;
4093
Johan Hedberg86df9202014-10-26 20:52:27 +01004094 if (bdaddr_type_is_le(cp->addr.type)) {
Johan Hedbergd25b78e2015-01-27 12:55:52 +02004095 /* Enforce zero-valued 192-bit parameters as
4096 * long as legacy SMP OOB isn't implemented.
4097 */
4098 if (memcmp(cp->rand192, ZERO_KEY, 16) ||
4099 memcmp(cp->hash192, ZERO_KEY, 16)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004100 err = mgmt_cmd_complete(sk, hdev->id,
4101 MGMT_OP_ADD_REMOTE_OOB_DATA,
4102 MGMT_STATUS_INVALID_PARAMS,
4103 addr, sizeof(*addr));
Johan Hedbergd25b78e2015-01-27 12:55:52 +02004104 goto unlock;
4105 }
4106
Johan Hedberg86df9202014-10-26 20:52:27 +01004107 rand192 = NULL;
4108 hash192 = NULL;
4109 } else {
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004110 /* In case one of the P-192 values is set to zero,
4111 * then just disable OOB data for P-192.
4112 */
4113 if (!memcmp(cp->rand192, ZERO_KEY, 16) ||
4114 !memcmp(cp->hash192, ZERO_KEY, 16)) {
4115 rand192 = NULL;
4116 hash192 = NULL;
4117 } else {
4118 rand192 = cp->rand192;
4119 hash192 = cp->hash192;
4120 }
4121 }
4122
4123 /* In case one of the P-256 values is set to zero, then just
4124 * disable OOB data for P-256.
4125 */
4126 if (!memcmp(cp->rand256, ZERO_KEY, 16) ||
4127 !memcmp(cp->hash256, ZERO_KEY, 16)) {
4128 rand256 = NULL;
4129 hash256 = NULL;
4130 } else {
4131 rand256 = cp->rand256;
4132 hash256 = cp->hash256;
Johan Hedberg86df9202014-10-26 20:52:27 +01004133 }
4134
Johan Hedberg81328d5c2014-10-26 20:33:47 +01004135 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg86df9202014-10-26 20:52:27 +01004136 cp->addr.type, hash192, rand192,
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004137 hash256, rand256);
Marcel Holtmannec109112014-01-10 02:07:30 -08004138 if (err < 0)
4139 status = MGMT_STATUS_FAILED;
4140 else
4141 status = MGMT_STATUS_SUCCESS;
4142
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004143 err = mgmt_cmd_complete(sk, hdev->id,
4144 MGMT_OP_ADD_REMOTE_OOB_DATA,
4145 status, &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08004146 } else {
4147 BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
Johan Hedberga69e8372015-03-06 21:08:53 +02004148 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
4149 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannec109112014-01-10 02:07:30 -08004150 }
Szymon Janc2763eda2011-03-22 13:12:22 +01004151
Johan Hedbergc19a4952014-11-17 20:52:19 +02004152unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004153 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004154 return err;
4155}
4156
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004157static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004158 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01004159{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004160 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004161 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01004162 int err;
4163
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004164 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01004165
Johan Hedbergc19a4952014-11-17 20:52:19 +02004166 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004167 return mgmt_cmd_complete(sk, hdev->id,
4168 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
4169 MGMT_STATUS_INVALID_PARAMS,
4170 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02004171
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004172 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004173
Johan Hedbergeedbd582014-11-15 09:34:23 +02004174 if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
4175 hci_remote_oob_data_clear(hdev);
4176 status = MGMT_STATUS_SUCCESS;
4177 goto done;
4178 }
4179
Johan Hedberg6928a922014-10-26 20:46:09 +01004180 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
Szymon Janc2763eda2011-03-22 13:12:22 +01004181 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004182 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01004183 else
Szymon Janca6785be2012-12-13 15:11:21 +01004184 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004185
Johan Hedbergeedbd582014-11-15 09:34:23 +02004186done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004187 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
4188 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01004189
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004190 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004191 return err;
4192}
4193
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004194static bool trigger_bredr_inquiry(struct hci_request *req, u8 *status)
4195{
4196 struct hci_dev *hdev = req->hdev;
4197 struct hci_cp_inquiry cp;
4198 /* General inquiry access code (GIAC) */
4199 u8 lap[3] = { 0x33, 0x8b, 0x9e };
4200
4201 *status = mgmt_bredr_support(hdev);
4202 if (*status)
4203 return false;
4204
4205 if (hci_dev_test_flag(hdev, HCI_INQUIRY)) {
4206 *status = MGMT_STATUS_BUSY;
4207 return false;
4208 }
4209
4210 hci_inquiry_cache_flush(hdev);
4211
4212 memset(&cp, 0, sizeof(cp));
4213 memcpy(&cp.lap, lap, sizeof(cp.lap));
4214 cp.length = DISCOV_BREDR_INQUIRY_LEN;
4215
4216 hci_req_add(req, HCI_OP_INQUIRY, sizeof(cp), &cp);
4217
4218 return true;
4219}
4220
4221static bool trigger_le_scan(struct hci_request *req, u16 interval, u8 *status)
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004222{
Marcel Holtmann80190442014-12-04 11:36:36 +01004223 struct hci_dev *hdev = req->hdev;
4224 struct hci_cp_le_set_scan_param param_cp;
4225 struct hci_cp_le_set_scan_enable enable_cp;
Marcel Holtmann80190442014-12-04 11:36:36 +01004226 u8 own_addr_type;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004227 int err;
4228
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004229 *status = mgmt_le_support(hdev);
4230 if (*status)
4231 return false;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004232
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004233 if (hci_dev_test_flag(hdev, HCI_LE_ADV)) {
4234 /* Don't let discovery abort an outgoing connection attempt
4235 * that's using directed advertising.
4236 */
Jakub Pawlowskie7d9ab72015-08-07 20:22:52 +02004237 if (hci_lookup_le_connect(hdev)) {
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004238 *status = MGMT_STATUS_REJECTED;
Marcel Holtmann80190442014-12-04 11:36:36 +01004239 return false;
4240 }
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004241
Florian Grandel9d5fc2f2015-06-18 03:16:50 +02004242 cancel_adv_timeout(hdev);
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004243 disable_advertising(req);
4244 }
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004245
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004246 /* If controller is scanning, it means the background scanning is
4247 * running. Thus, we should temporarily stop it in order to set the
4248 * discovery scanning parameters.
4249 */
4250 if (hci_dev_test_flag(hdev, HCI_LE_SCAN))
4251 hci_req_add_le_scan_disable(req);
4252
4253 /* All active scans will be done with either a resolvable private
4254 * address (when privacy feature has been enabled) or non-resolvable
4255 * private address.
4256 */
4257 err = hci_update_random_address(req, true, &own_addr_type);
4258 if (err < 0) {
4259 *status = MGMT_STATUS_FAILED;
4260 return false;
4261 }
4262
4263 memset(&param_cp, 0, sizeof(param_cp));
4264 param_cp.type = LE_SCAN_ACTIVE;
4265 param_cp.interval = cpu_to_le16(interval);
4266 param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
4267 param_cp.own_address_type = own_addr_type;
4268
4269 hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
4270 &param_cp);
4271
4272 memset(&enable_cp, 0, sizeof(enable_cp));
4273 enable_cp.enable = LE_SCAN_ENABLE;
4274 enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
4275
4276 hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
4277 &enable_cp);
4278
4279 return true;
4280}
4281
4282static bool trigger_discovery(struct hci_request *req, u8 *status)
4283{
4284 struct hci_dev *hdev = req->hdev;
4285
4286 switch (hdev->discovery.type) {
4287 case DISCOV_TYPE_BREDR:
4288 if (!trigger_bredr_inquiry(req, status))
4289 return false;
Marcel Holtmann80190442014-12-04 11:36:36 +01004290 break;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004291
Marcel Holtmann80190442014-12-04 11:36:36 +01004292 case DISCOV_TYPE_INTERLEAVED:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07004293 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY,
4294 &hdev->quirks)) {
4295 /* During simultaneous discovery, we double LE scan
4296 * interval. We must leave some time for the controller
4297 * to do BR/EDR inquiry.
4298 */
4299 if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT * 2,
4300 status))
4301 return false;
4302
4303 if (!trigger_bredr_inquiry(req, status))
4304 return false;
4305
4306 return true;
4307 }
4308
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004309 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Marcel Holtmann80190442014-12-04 11:36:36 +01004310 *status = MGMT_STATUS_NOT_SUPPORTED;
4311 return false;
4312 }
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004313 /* fall through */
Marcel Holtmann80190442014-12-04 11:36:36 +01004314
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004315 case DISCOV_TYPE_LE:
4316 if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT, status))
Marcel Holtmann80190442014-12-04 11:36:36 +01004317 return false;
Marcel Holtmann80190442014-12-04 11:36:36 +01004318 break;
4319
4320 default:
4321 *status = MGMT_STATUS_INVALID_PARAMS;
4322 return false;
4323 }
4324
4325 return true;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004326}
4327
Marcel Holtmann1904a852015-01-11 13:50:44 -08004328static void start_discovery_complete(struct hci_dev *hdev, u8 status,
4329 u16 opcode)
Andre Guedes7c307722013-04-30 15:29:28 -03004330{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004331 struct mgmt_pending_cmd *cmd;
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004332 unsigned long timeout;
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004333
Andre Guedes7c307722013-04-30 15:29:28 -03004334 BT_DBG("status %d", status);
4335
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004336 hci_dev_lock(hdev);
4337
Johan Hedberg333ae952015-03-17 13:48:47 +02004338 cmd = pending_find(MGMT_OP_START_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004339 if (!cmd)
Johan Hedberg333ae952015-03-17 13:48:47 +02004340 cmd = pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004341
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004342 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02004343 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004344 mgmt_pending_remove(cmd);
Andre Guedes7c307722013-04-30 15:29:28 -03004345 }
4346
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004347 if (status) {
4348 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4349 goto unlock;
4350 }
4351
Andre Guedes7c307722013-04-30 15:29:28 -03004352 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Andre Guedes7c307722013-04-30 15:29:28 -03004353
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004354 /* If the scan involves LE scan, pick proper timeout to schedule
4355 * hdev->le_scan_disable that will stop it.
4356 */
Andre Guedes7c307722013-04-30 15:29:28 -03004357 switch (hdev->discovery.type) {
4358 case DISCOV_TYPE_LE:
Lukasz Rymanowski3d5a76f2014-03-27 20:55:21 +01004359 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
Andre Guedes7c307722013-04-30 15:29:28 -03004360 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004361 case DISCOV_TYPE_INTERLEAVED:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07004362 /* When running simultaneous discovery, the LE scanning time
4363 * should occupy the whole discovery time sine BR/EDR inquiry
4364 * and LE scanning are scheduled by the controller.
4365 *
4366 * For interleaving discovery in comparison, BR/EDR inquiry
4367 * and LE scanning are done sequentially with separate
4368 * timeouts.
4369 */
4370 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks))
4371 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
4372 else
4373 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
Andre Guedes7c307722013-04-30 15:29:28 -03004374 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004375 case DISCOV_TYPE_BREDR:
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004376 timeout = 0;
Andre Guedes7c307722013-04-30 15:29:28 -03004377 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004378 default:
4379 BT_ERR("Invalid discovery type %d", hdev->discovery.type);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004380 timeout = 0;
4381 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004382 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004383
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004384 if (timeout) {
4385 /* When service discovery is used and the controller has
4386 * a strict duplicate filter, it is important to remember
4387 * the start and duration of the scan. This is required
4388 * for restarting scanning during the discovery phase.
4389 */
4390 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER,
4391 &hdev->quirks) &&
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08004392 hdev->discovery.result_filtering) {
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004393 hdev->discovery.scan_start = jiffies;
4394 hdev->discovery.scan_duration = timeout;
4395 }
4396
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004397 queue_delayed_work(hdev->workqueue,
4398 &hdev->le_scan_disable, timeout);
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004399 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004400
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004401unlock:
4402 hci_dev_unlock(hdev);
Andre Guedes7c307722013-04-30 15:29:28 -03004403}
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 Hedberg2922a942014-12-05 13:36:06 +02004433 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04004434 if (!cmd) {
4435 err = -ENOMEM;
4436 goto failed;
4437 }
4438
Johan Hedberg2922a942014-12-05 13:36:06 +02004439 cmd->cmd_complete = generic_cmd_complete;
4440
Marcel Holtmann22078802014-12-05 11:45:22 +01004441 /* Clear the discovery filter first to free any previously
4442 * allocated memory for the UUID list.
4443 */
4444 hci_discovery_filter_clear(hdev);
4445
Andre Guedes4aab14e2012-02-17 20:39:36 -03004446 hdev->discovery.type = cp->type;
Marcel Holtmannda25cf62014-12-05 13:03:35 +01004447 hdev->discovery.report_invalid_rssi = false;
Andre Guedes4aab14e2012-02-17 20:39:36 -03004448
Andre Guedes7c307722013-04-30 15:29:28 -03004449 hci_req_init(&req, hdev);
4450
Marcel Holtmann80190442014-12-04 11:36:36 +01004451 if (!trigger_discovery(&req, &status)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004452 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4453 status, &cp->type, sizeof(cp->type));
Johan Hedberg04106752013-01-10 14:54:09 +02004454 mgmt_pending_remove(cmd);
4455 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03004456 }
Andre Guedes3fd24152012-02-03 17:48:01 -03004457
Andre Guedes7c307722013-04-30 15:29:28 -03004458 err = hci_req_run(&req, start_discovery_complete);
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004459 if (err < 0) {
Johan Hedberg14a53662011-04-27 10:29:56 -04004460 mgmt_pending_remove(cmd);
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004461 goto failed;
4462 }
4463
4464 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04004465
4466failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004467 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004468 return err;
4469}
4470
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004471static int service_discovery_cmd_complete(struct mgmt_pending_cmd *cmd,
4472 u8 status)
Andre Guedes1183fdc2013-04-30 15:29:35 -03004473{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004474 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
4475 cmd->param, 1);
Johan Hedberg2922a942014-12-05 13:36:06 +02004476}
4477
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004478static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
4479 void *data, u16 len)
4480{
4481 struct mgmt_cp_start_service_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004482 struct mgmt_pending_cmd *cmd;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004483 struct hci_request req;
4484 const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
4485 u16 uuid_count, expected_len;
4486 u8 status;
Andre Guedes1183fdc2013-04-30 15:29:35 -03004487 int err;
4488
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004489 BT_DBG("%s", hdev->name);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004490
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004491 hci_dev_lock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004492
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004493 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004494 err = mgmt_cmd_complete(sk, hdev->id,
4495 MGMT_OP_START_SERVICE_DISCOVERY,
4496 MGMT_STATUS_NOT_POWERED,
4497 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004498 goto failed;
4499 }
4500
4501 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004502 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004503 err = mgmt_cmd_complete(sk, hdev->id,
4504 MGMT_OP_START_SERVICE_DISCOVERY,
4505 MGMT_STATUS_BUSY, &cp->type,
4506 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004507 goto failed;
4508 }
4509
4510 uuid_count = __le16_to_cpu(cp->uuid_count);
4511 if (uuid_count > max_uuid_count) {
4512 BT_ERR("service_discovery: too big uuid_count value %u",
4513 uuid_count);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004514 err = mgmt_cmd_complete(sk, hdev->id,
4515 MGMT_OP_START_SERVICE_DISCOVERY,
4516 MGMT_STATUS_INVALID_PARAMS, &cp->type,
4517 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004518 goto failed;
4519 }
4520
4521 expected_len = sizeof(*cp) + uuid_count * 16;
4522 if (expected_len != len) {
4523 BT_ERR("service_discovery: expected %u bytes, got %u bytes",
4524 expected_len, len);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004525 err = mgmt_cmd_complete(sk, hdev->id,
4526 MGMT_OP_START_SERVICE_DISCOVERY,
4527 MGMT_STATUS_INVALID_PARAMS, &cp->type,
4528 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004529 goto failed;
4530 }
4531
4532 cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
Johan Hedberg2922a942014-12-05 13:36:06 +02004533 hdev, data, len);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004534 if (!cmd) {
4535 err = -ENOMEM;
4536 goto failed;
4537 }
4538
Johan Hedberg2922a942014-12-05 13:36:06 +02004539 cmd->cmd_complete = service_discovery_cmd_complete;
4540
Marcel Holtmann22078802014-12-05 11:45:22 +01004541 /* Clear the discovery filter first to free any previously
4542 * allocated memory for the UUID list.
4543 */
4544 hci_discovery_filter_clear(hdev);
4545
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08004546 hdev->discovery.result_filtering = true;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004547 hdev->discovery.type = cp->type;
4548 hdev->discovery.rssi = cp->rssi;
4549 hdev->discovery.uuid_count = uuid_count;
4550
4551 if (uuid_count > 0) {
4552 hdev->discovery.uuids = kmemdup(cp->uuids, uuid_count * 16,
4553 GFP_KERNEL);
4554 if (!hdev->discovery.uuids) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004555 err = mgmt_cmd_complete(sk, hdev->id,
4556 MGMT_OP_START_SERVICE_DISCOVERY,
4557 MGMT_STATUS_FAILED,
4558 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004559 mgmt_pending_remove(cmd);
4560 goto failed;
4561 }
4562 }
4563
4564 hci_req_init(&req, hdev);
4565
4566 if (!trigger_discovery(&req, &status)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004567 err = mgmt_cmd_complete(sk, hdev->id,
4568 MGMT_OP_START_SERVICE_DISCOVERY,
4569 status, &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004570 mgmt_pending_remove(cmd);
4571 goto failed;
4572 }
4573
4574 err = hci_req_run(&req, start_discovery_complete);
4575 if (err < 0) {
4576 mgmt_pending_remove(cmd);
4577 goto failed;
4578 }
4579
4580 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4581
4582failed:
4583 hci_dev_unlock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004584 return err;
4585}
4586
Marcel Holtmann1904a852015-01-11 13:50:44 -08004587static void stop_discovery_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Andre Guedes0e05bba2013-04-30 15:29:33 -03004588{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004589 struct mgmt_pending_cmd *cmd;
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004590
Andre Guedes0e05bba2013-04-30 15:29:33 -03004591 BT_DBG("status %d", status);
4592
4593 hci_dev_lock(hdev);
4594
Johan Hedberg333ae952015-03-17 13:48:47 +02004595 cmd = pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004596 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02004597 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004598 mgmt_pending_remove(cmd);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004599 }
4600
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004601 if (!status)
4602 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004603
Andre Guedes0e05bba2013-04-30 15:29:33 -03004604 hci_dev_unlock(hdev);
4605}
4606
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004607static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004608 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04004609{
Johan Hedbergd9306502012-02-20 23:25:18 +02004610 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004611 struct mgmt_pending_cmd *cmd;
Andre Guedes0e05bba2013-04-30 15:29:33 -03004612 struct hci_request req;
Johan Hedberg14a53662011-04-27 10:29:56 -04004613 int err;
4614
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004615 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04004616
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004617 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004618
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004619 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004620 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
4621 MGMT_STATUS_REJECTED, &mgmt_cp->type,
4622 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02004623 goto unlock;
4624 }
4625
4626 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004627 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
4628 MGMT_STATUS_INVALID_PARAMS,
4629 &mgmt_cp->type, sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004630 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02004631 }
4632
Johan Hedberg2922a942014-12-05 13:36:06 +02004633 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04004634 if (!cmd) {
4635 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004636 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04004637 }
4638
Johan Hedberg2922a942014-12-05 13:36:06 +02004639 cmd->cmd_complete = generic_cmd_complete;
4640
Andre Guedes0e05bba2013-04-30 15:29:33 -03004641 hci_req_init(&req, hdev);
4642
Johan Hedberg21a60d32014-06-10 14:05:58 +03004643 hci_stop_discovery(&req);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004644
Johan Hedberg21a60d32014-06-10 14:05:58 +03004645 err = hci_req_run(&req, stop_discovery_complete);
4646 if (!err) {
4647 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004648 goto unlock;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004649 }
4650
Johan Hedberg21a60d32014-06-10 14:05:58 +03004651 mgmt_pending_remove(cmd);
4652
4653 /* If no HCI commands were sent we're done */
4654 if (err == -ENODATA) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004655 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
4656 &mgmt_cp->type, sizeof(mgmt_cp->type));
Johan Hedberg21a60d32014-06-10 14:05:58 +03004657 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4658 }
Johan Hedberg14a53662011-04-27 10:29:56 -04004659
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004660unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004661 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004662 return err;
4663}
4664
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004665static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004666 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02004667{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004668 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02004669 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02004670 int err;
4671
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004672 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004673
Johan Hedberg561aafb2012-01-04 13:31:59 +02004674 hci_dev_lock(hdev);
4675
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004676 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004677 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
4678 MGMT_STATUS_FAILED, &cp->addr,
4679 sizeof(cp->addr));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004680 goto failed;
4681 }
4682
Johan Hedberga198e7b2012-02-17 14:27:06 +02004683 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004684 if (!e) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004685 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
4686 MGMT_STATUS_INVALID_PARAMS, &cp->addr,
4687 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02004688 goto failed;
4689 }
4690
4691 if (cp->name_known) {
4692 e->name_state = NAME_KNOWN;
4693 list_del(&e->list);
4694 } else {
4695 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02004696 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004697 }
4698
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004699 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
4700 &cp->addr, sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02004701
4702failed:
4703 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004704 return err;
4705}
4706
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004707static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004708 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03004709{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004710 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004711 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03004712 int err;
4713
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004714 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03004715
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004716 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004717 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
4718 MGMT_STATUS_INVALID_PARAMS,
4719 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004720
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004721 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004722
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004723 err = hci_bdaddr_list_add(&hdev->blacklist, &cp->addr.bdaddr,
4724 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004725 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004726 status = MGMT_STATUS_FAILED;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004727 goto done;
4728 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004729
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004730 mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &cp->addr, sizeof(cp->addr),
4731 sk);
4732 status = MGMT_STATUS_SUCCESS;
4733
4734done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004735 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
4736 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03004737
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004738 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03004739
4740 return err;
4741}
4742
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004743static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004744 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03004745{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004746 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004747 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03004748 int err;
4749
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004750 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03004751
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004752 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004753 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
4754 MGMT_STATUS_INVALID_PARAMS,
4755 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004756
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004757 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004758
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004759 err = hci_bdaddr_list_del(&hdev->blacklist, &cp->addr.bdaddr,
4760 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004761 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004762 status = MGMT_STATUS_INVALID_PARAMS;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004763 goto done;
4764 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004765
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004766 mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &cp->addr, sizeof(cp->addr),
4767 sk);
4768 status = MGMT_STATUS_SUCCESS;
4769
4770done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004771 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
4772 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03004773
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004774 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03004775
4776 return err;
4777}
4778
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004779static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
4780 u16 len)
4781{
4782 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05004783 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004784 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01004785 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004786
4787 BT_DBG("%s", hdev->name);
4788
Szymon Jancc72d4b82012-03-16 16:02:57 +01004789 source = __le16_to_cpu(cp->source);
4790
4791 if (source > 0x0002)
Johan Hedberga69e8372015-03-06 21:08:53 +02004792 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
4793 MGMT_STATUS_INVALID_PARAMS);
Szymon Jancc72d4b82012-03-16 16:02:57 +01004794
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004795 hci_dev_lock(hdev);
4796
Szymon Jancc72d4b82012-03-16 16:02:57 +01004797 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004798 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
4799 hdev->devid_product = __le16_to_cpu(cp->product);
4800 hdev->devid_version = __le16_to_cpu(cp->version);
4801
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004802 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
4803 NULL, 0);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004804
Johan Hedberg890ea892013-03-15 17:06:52 -05004805 hci_req_init(&req, hdev);
4806 update_eir(&req);
4807 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004808
4809 hci_dev_unlock(hdev);
4810
4811 return err;
4812}
4813
Arman Uguray24b4f382015-03-23 15:57:12 -07004814static void enable_advertising_instance(struct hci_dev *hdev, u8 status,
4815 u16 opcode)
4816{
4817 BT_DBG("status %d", status);
4818}
4819
Marcel Holtmann1904a852015-01-11 13:50:44 -08004820static void set_advertising_complete(struct hci_dev *hdev, u8 status,
4821 u16 opcode)
Johan Hedberg4375f102013-09-25 13:26:10 +03004822{
4823 struct cmd_lookup match = { NULL, hdev };
Arman Uguray24b4f382015-03-23 15:57:12 -07004824 struct hci_request req;
Florian Grandel7816b822015-06-18 03:16:45 +02004825 u8 instance;
4826 struct adv_info *adv_instance;
4827 int err;
Johan Hedberg4375f102013-09-25 13:26:10 +03004828
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304829 hci_dev_lock(hdev);
4830
Johan Hedberg4375f102013-09-25 13:26:10 +03004831 if (status) {
4832 u8 mgmt_err = mgmt_status(status);
4833
4834 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
4835 cmd_status_rsp, &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304836 goto unlock;
Johan Hedberg4375f102013-09-25 13:26:10 +03004837 }
4838
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004839 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004840 hci_dev_set_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03004841 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004842 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03004843
Johan Hedberg4375f102013-09-25 13:26:10 +03004844 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
4845 &match);
4846
4847 new_settings(hdev, match.sk);
4848
4849 if (match.sk)
4850 sock_put(match.sk);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304851
Arman Uguray24b4f382015-03-23 15:57:12 -07004852 /* If "Set Advertising" was just disabled and instance advertising was
Florian Grandel7816b822015-06-18 03:16:45 +02004853 * set up earlier, then re-enable multi-instance advertising.
Arman Uguray24b4f382015-03-23 15:57:12 -07004854 */
4855 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
Florian Grandel7816b822015-06-18 03:16:45 +02004856 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) ||
4857 list_empty(&hdev->adv_instances))
Arman Uguray24b4f382015-03-23 15:57:12 -07004858 goto unlock;
4859
Florian Grandel7816b822015-06-18 03:16:45 +02004860 instance = hdev->cur_adv_instance;
4861 if (!instance) {
4862 adv_instance = list_first_entry_or_null(&hdev->adv_instances,
4863 struct adv_info, list);
4864 if (!adv_instance)
4865 goto unlock;
4866
4867 instance = adv_instance->instance;
4868 }
4869
Arman Uguray24b4f382015-03-23 15:57:12 -07004870 hci_req_init(&req, hdev);
4871
Florian Grandel7816b822015-06-18 03:16:45 +02004872 err = schedule_adv_instance(&req, instance, true);
Arman Uguray24b4f382015-03-23 15:57:12 -07004873
Florian Grandel7816b822015-06-18 03:16:45 +02004874 if (!err)
4875 err = hci_req_run(&req, enable_advertising_instance);
4876
4877 if (err)
Arman Uguray24b4f382015-03-23 15:57:12 -07004878 BT_ERR("Failed to re-configure advertising");
4879
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304880unlock:
4881 hci_dev_unlock(hdev);
Johan Hedberg4375f102013-09-25 13:26:10 +03004882}
4883
Marcel Holtmann21b51872013-10-10 09:47:53 -07004884static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
4885 u16 len)
Johan Hedberg4375f102013-09-25 13:26:10 +03004886{
4887 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004888 struct mgmt_pending_cmd *cmd;
Johan Hedberg4375f102013-09-25 13:26:10 +03004889 struct hci_request req;
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004890 u8 val, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03004891 int err;
4892
4893 BT_DBG("request for %s", hdev->name);
4894
Johan Hedberge6fe7982013-10-02 15:45:22 +03004895 status = mgmt_le_support(hdev);
4896 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02004897 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4898 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03004899
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004900 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02004901 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4902 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4375f102013-09-25 13:26:10 +03004903
4904 hci_dev_lock(hdev);
4905
4906 val = !!cp->val;
Johan Hedberg4375f102013-09-25 13:26:10 +03004907
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02004908 /* The following conditions are ones which mean that we should
4909 * not do any HCI communication but directly send a mgmt
4910 * response to user space (after toggling the flag if
4911 * necessary).
4912 */
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004913 if (!hdev_is_powered(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004914 (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
4915 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
Johan Hedberge8bb6b92014-07-08 15:07:53 +03004916 hci_conn_num(hdev, LE_LINK) > 0 ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004917 (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Johan Hedberge8bb6b92014-07-08 15:07:53 +03004918 hdev->le_scan_type == LE_SCAN_ACTIVE)) {
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004919 bool changed;
Johan Hedberg4375f102013-09-25 13:26:10 +03004920
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004921 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07004922 changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004923 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004924 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004925 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004926 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004927 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07004928 changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004929 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Johan Hedberg4375f102013-09-25 13:26:10 +03004930 }
4931
4932 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
4933 if (err < 0)
4934 goto unlock;
4935
4936 if (changed)
4937 err = new_settings(hdev, sk);
4938
4939 goto unlock;
4940 }
4941
Johan Hedberg333ae952015-03-17 13:48:47 +02004942 if (pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
4943 pending_find(MGMT_OP_SET_LE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004944 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4945 MGMT_STATUS_BUSY);
Johan Hedberg4375f102013-09-25 13:26:10 +03004946 goto unlock;
4947 }
4948
4949 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
4950 if (!cmd) {
4951 err = -ENOMEM;
4952 goto unlock;
4953 }
4954
4955 hci_req_init(&req, hdev);
4956
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004957 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004958 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004959 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004960 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004961
Florian Grandel7816b822015-06-18 03:16:45 +02004962 cancel_adv_timeout(hdev);
4963
Arman Uguray24b4f382015-03-23 15:57:12 -07004964 if (val) {
Florian Grandel7816b822015-06-18 03:16:45 +02004965 /* Switch to instance "0" for the Set Advertising setting.
4966 * We cannot use update_[adv|scan_rsp]_data() here as the
4967 * HCI_ADVERTISING flag is not yet set.
4968 */
Florian Grandelefae0022015-06-18 03:16:37 +02004969 update_inst_adv_data(&req, 0x00);
4970 update_inst_scan_rsp_data(&req, 0x00);
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004971 enable_advertising(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07004972 } else {
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004973 disable_advertising(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07004974 }
Johan Hedberg4375f102013-09-25 13:26:10 +03004975
4976 err = hci_req_run(&req, set_advertising_complete);
4977 if (err < 0)
4978 mgmt_pending_remove(cmd);
4979
4980unlock:
4981 hci_dev_unlock(hdev);
4982 return err;
4983}
4984
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004985static int set_static_address(struct sock *sk, struct hci_dev *hdev,
4986 void *data, u16 len)
4987{
4988 struct mgmt_cp_set_static_address *cp = data;
4989 int err;
4990
4991 BT_DBG("%s", hdev->name);
4992
Marcel Holtmann62af4442013-10-02 22:10:32 -07004993 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02004994 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
4995 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004996
4997 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02004998 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
4999 MGMT_STATUS_REJECTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005000
5001 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
5002 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
Johan Hedberga69e8372015-03-06 21:08:53 +02005003 return mgmt_cmd_status(sk, hdev->id,
5004 MGMT_OP_SET_STATIC_ADDRESS,
5005 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005006
5007 /* Two most significant bits shall be set */
5008 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
Johan Hedberga69e8372015-03-06 21:08:53 +02005009 return mgmt_cmd_status(sk, hdev->id,
5010 MGMT_OP_SET_STATIC_ADDRESS,
5011 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005012 }
5013
5014 hci_dev_lock(hdev);
5015
5016 bacpy(&hdev->static_addr, &cp->bdaddr);
5017
Marcel Holtmann93690c22015-03-06 10:11:21 -08005018 err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
5019 if (err < 0)
5020 goto unlock;
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005021
Marcel Holtmann93690c22015-03-06 10:11:21 -08005022 err = new_settings(hdev, sk);
5023
5024unlock:
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005025 hci_dev_unlock(hdev);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005026 return err;
5027}
5028
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005029static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
5030 void *data, u16 len)
5031{
5032 struct mgmt_cp_set_scan_params *cp = data;
5033 __u16 interval, window;
5034 int err;
5035
5036 BT_DBG("%s", hdev->name);
5037
5038 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005039 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5040 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005041
5042 interval = __le16_to_cpu(cp->interval);
5043
5044 if (interval < 0x0004 || interval > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02005045 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5046 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005047
5048 window = __le16_to_cpu(cp->window);
5049
5050 if (window < 0x0004 || window > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02005051 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5052 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005053
Marcel Holtmann899e1072013-10-14 09:55:32 -07005054 if (window > interval)
Johan Hedberga69e8372015-03-06 21:08:53 +02005055 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5056 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann899e1072013-10-14 09:55:32 -07005057
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005058 hci_dev_lock(hdev);
5059
5060 hdev->le_scan_interval = interval;
5061 hdev->le_scan_window = window;
5062
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005063 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
5064 NULL, 0);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005065
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03005066 /* If background scan is running, restart it so new parameters are
5067 * loaded.
5068 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005069 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03005070 hdev->discovery.state == DISCOVERY_STOPPED) {
5071 struct hci_request req;
5072
5073 hci_req_init(&req, hdev);
5074
5075 hci_req_add_le_scan_disable(&req);
5076 hci_req_add_le_passive_scan(&req);
5077
5078 hci_req_run(&req, NULL);
5079 }
5080
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005081 hci_dev_unlock(hdev);
5082
5083 return err;
5084}
5085
Marcel Holtmann1904a852015-01-11 13:50:44 -08005086static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
5087 u16 opcode)
Johan Hedberg33e38b32013-03-15 17:07:05 -05005088{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005089 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05005090
5091 BT_DBG("status 0x%02x", status);
5092
5093 hci_dev_lock(hdev);
5094
Johan Hedberg333ae952015-03-17 13:48:47 +02005095 cmd = pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005096 if (!cmd)
5097 goto unlock;
5098
5099 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005100 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5101 mgmt_status(status));
Johan Hedberg33e38b32013-03-15 17:07:05 -05005102 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005103 struct mgmt_mode *cp = cmd->param;
5104
5105 if (cp->val)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005106 hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005107 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005108 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005109
Johan Hedberg33e38b32013-03-15 17:07:05 -05005110 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
5111 new_settings(hdev, cmd->sk);
5112 }
5113
5114 mgmt_pending_remove(cmd);
5115
5116unlock:
5117 hci_dev_unlock(hdev);
5118}
5119
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005120static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005121 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03005122{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005123 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005124 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05005125 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03005126 int err;
5127
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005128 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005129
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005130 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
Johan Hedberg56f87902013-10-02 13:43:13 +03005131 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberga69e8372015-03-06 21:08:53 +02005132 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5133 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03005134
Johan Hedberga7e80f22013-01-09 16:05:19 +02005135 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005136 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5137 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02005138
Antti Julkuf6422ec2011-06-22 13:11:56 +03005139 hci_dev_lock(hdev);
5140
Johan Hedberg333ae952015-03-17 13:48:47 +02005141 if (pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005142 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5143 MGMT_STATUS_BUSY);
Johan Hedberg05cbf292013-03-15 17:07:07 -05005144 goto unlock;
5145 }
5146
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005147 if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005148 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
5149 hdev);
5150 goto unlock;
5151 }
5152
Johan Hedberg406ef2a2015-03-10 20:14:27 +02005153 if (!hdev_is_powered(hdev)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07005154 hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg406ef2a2015-03-10 20:14:27 +02005155 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
5156 hdev);
5157 new_settings(hdev, sk);
5158 goto unlock;
5159 }
5160
Johan Hedberg33e38b32013-03-15 17:07:05 -05005161 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
5162 data, len);
5163 if (!cmd) {
5164 err = -ENOMEM;
5165 goto unlock;
5166 }
5167
5168 hci_req_init(&req, hdev);
5169
Johan Hedberg406d7802013-03-15 17:07:09 -05005170 write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005171
5172 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005173 if (err < 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005174 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5175 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005176 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005177 }
5178
Johan Hedberg33e38b32013-03-15 17:07:05 -05005179unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03005180 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005181
Antti Julkuf6422ec2011-06-22 13:11:56 +03005182 return err;
5183}
5184
Marcel Holtmann1904a852015-01-11 13:50:44 -08005185static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg0663ca22013-10-02 13:43:14 +03005186{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005187 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03005188
5189 BT_DBG("status 0x%02x", status);
5190
5191 hci_dev_lock(hdev);
5192
Johan Hedberg333ae952015-03-17 13:48:47 +02005193 cmd = pending_find(MGMT_OP_SET_BREDR, hdev);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005194 if (!cmd)
5195 goto unlock;
5196
5197 if (status) {
5198 u8 mgmt_err = mgmt_status(status);
5199
5200 /* We need to restore the flag if related HCI commands
5201 * failed.
5202 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005203 hci_dev_clear_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005204
Johan Hedberga69e8372015-03-06 21:08:53 +02005205 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005206 } else {
5207 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
5208 new_settings(hdev, cmd->sk);
5209 }
5210
5211 mgmt_pending_remove(cmd);
5212
5213unlock:
5214 hci_dev_unlock(hdev);
5215}
5216
5217static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
5218{
5219 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005220 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03005221 struct hci_request req;
5222 int err;
5223
5224 BT_DBG("request for %s", hdev->name);
5225
5226 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005227 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5228 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005229
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005230 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005231 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5232 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005233
5234 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005235 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5236 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005237
5238 hci_dev_lock(hdev);
5239
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005240 if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg0663ca22013-10-02 13:43:14 +03005241 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
5242 goto unlock;
5243 }
5244
5245 if (!hdev_is_powered(hdev)) {
5246 if (!cp->val) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005247 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
5248 hci_dev_clear_flag(hdev, HCI_SSP_ENABLED);
5249 hci_dev_clear_flag(hdev, HCI_LINK_SECURITY);
5250 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
5251 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005252 }
5253
Marcel Holtmannce05d602015-03-13 02:11:03 -07005254 hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005255
5256 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
5257 if (err < 0)
5258 goto unlock;
5259
5260 err = new_settings(hdev, sk);
5261 goto unlock;
5262 }
5263
5264 /* Reject disabling when powered on */
5265 if (!cp->val) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005266 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5267 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005268 goto unlock;
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005269 } else {
5270 /* When configuring a dual-mode controller to operate
5271 * with LE only and using a static address, then switching
5272 * BR/EDR back on is not allowed.
5273 *
5274 * Dual-mode controllers shall operate with the public
5275 * address as its identity address for BR/EDR and LE. So
5276 * reject the attempt to create an invalid configuration.
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08005277 *
5278 * The same restrictions applies when secure connections
5279 * has been enabled. For BR/EDR this is a controller feature
5280 * while for LE it is a host stack feature. This means that
5281 * switching BR/EDR back on when secure connections has been
5282 * enabled is not a supported transaction.
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005283 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005284 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08005285 (bacmp(&hdev->static_addr, BDADDR_ANY) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005286 hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005287 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5288 MGMT_STATUS_REJECTED);
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005289 goto unlock;
5290 }
Johan Hedberg0663ca22013-10-02 13:43:14 +03005291 }
5292
Johan Hedberg333ae952015-03-17 13:48:47 +02005293 if (pending_find(MGMT_OP_SET_BREDR, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005294 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5295 MGMT_STATUS_BUSY);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005296 goto unlock;
5297 }
5298
5299 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
5300 if (!cmd) {
5301 err = -ENOMEM;
5302 goto unlock;
5303 }
5304
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07005305 /* We need to flip the bit already here so that update_adv_data
Johan Hedberg0663ca22013-10-02 13:43:14 +03005306 * generates the correct flags.
5307 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005308 hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005309
5310 hci_req_init(&req, hdev);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005311
Johan Hedberg432df052014-08-01 11:13:31 +03005312 write_fast_connectable(&req, false);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02005313 __hci_update_page_scan(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005314
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07005315 /* Since only the advertising data flags will change, there
5316 * is no need to update the scan response data.
5317 */
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07005318 update_adv_data(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005319
Johan Hedberg0663ca22013-10-02 13:43:14 +03005320 err = hci_req_run(&req, set_bredr_complete);
5321 if (err < 0)
5322 mgmt_pending_remove(cmd);
5323
5324unlock:
5325 hci_dev_unlock(hdev);
5326 return err;
5327}
5328
Johan Hedberga1443f52015-01-23 15:42:46 +02005329static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5330{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005331 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02005332 struct mgmt_mode *cp;
5333
5334 BT_DBG("%s status %u", hdev->name, status);
5335
5336 hci_dev_lock(hdev);
5337
Johan Hedberg333ae952015-03-17 13:48:47 +02005338 cmd = pending_find(MGMT_OP_SET_SECURE_CONN, hdev);
Johan Hedberga1443f52015-01-23 15:42:46 +02005339 if (!cmd)
5340 goto unlock;
5341
5342 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005343 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
5344 mgmt_status(status));
Johan Hedberga1443f52015-01-23 15:42:46 +02005345 goto remove;
5346 }
5347
5348 cp = cmd->param;
5349
5350 switch (cp->val) {
5351 case 0x00:
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005352 hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
5353 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005354 break;
5355 case 0x01:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005356 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005357 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005358 break;
5359 case 0x02:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005360 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
5361 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005362 break;
5363 }
5364
5365 send_settings_rsp(cmd->sk, MGMT_OP_SET_SECURE_CONN, hdev);
5366 new_settings(hdev, cmd->sk);
5367
5368remove:
5369 mgmt_pending_remove(cmd);
5370unlock:
5371 hci_dev_unlock(hdev);
5372}
5373
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005374static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
5375 void *data, u16 len)
5376{
5377 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005378 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02005379 struct hci_request req;
Johan Hedberga3209692014-05-26 11:23:35 +03005380 u8 val;
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005381 int err;
5382
5383 BT_DBG("request for %s", hdev->name);
5384
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08005385 if (!lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005386 !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005387 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5388 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005389
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005390 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Johan Hedberg59200282015-01-28 19:56:00 +02005391 lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005392 !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005393 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5394 MGMT_STATUS_REJECTED);
Marcel Holtmanned93ec62015-01-22 11:15:22 -08005395
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005396 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005397 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005398 MGMT_STATUS_INVALID_PARAMS);
5399
5400 hci_dev_lock(hdev);
5401
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08005402 if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005403 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005404 bool changed;
5405
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005406 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07005407 changed = !hci_dev_test_and_set_flag(hdev,
5408 HCI_SC_ENABLED);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005409 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005410 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005411 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005412 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005413 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005414 changed = hci_dev_test_and_clear_flag(hdev,
5415 HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005416 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005417 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005418
5419 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
5420 if (err < 0)
5421 goto failed;
5422
5423 if (changed)
5424 err = new_settings(hdev, sk);
5425
5426 goto failed;
5427 }
5428
Johan Hedberg333ae952015-03-17 13:48:47 +02005429 if (pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005430 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5431 MGMT_STATUS_BUSY);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005432 goto failed;
5433 }
5434
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005435 val = !!cp->val;
5436
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005437 if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
5438 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005439 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
5440 goto failed;
5441 }
5442
5443 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
5444 if (!cmd) {
5445 err = -ENOMEM;
5446 goto failed;
5447 }
5448
Johan Hedberga1443f52015-01-23 15:42:46 +02005449 hci_req_init(&req, hdev);
5450 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
5451 err = hci_req_run(&req, sc_enable_complete);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005452 if (err < 0) {
5453 mgmt_pending_remove(cmd);
5454 goto failed;
5455 }
5456
5457failed:
5458 hci_dev_unlock(hdev);
5459 return err;
5460}
5461
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005462static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
5463 void *data, u16 len)
5464{
5465 struct mgmt_mode *cp = data;
Johan Hedbergb97109792014-06-24 14:00:28 +03005466 bool changed, use_changed;
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005467 int err;
5468
5469 BT_DBG("request for %s", hdev->name);
5470
Johan Hedbergb97109792014-06-24 14:00:28 +03005471 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005472 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
5473 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005474
5475 hci_dev_lock(hdev);
5476
5477 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07005478 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005479 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005480 changed = hci_dev_test_and_clear_flag(hdev,
5481 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005482
Johan Hedbergb97109792014-06-24 14:00:28 +03005483 if (cp->val == 0x02)
Marcel Holtmann238be782015-03-13 02:11:06 -07005484 use_changed = !hci_dev_test_and_set_flag(hdev,
5485 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03005486 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005487 use_changed = hci_dev_test_and_clear_flag(hdev,
5488 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03005489
5490 if (hdev_is_powered(hdev) && use_changed &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005491 hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedbergb97109792014-06-24 14:00:28 +03005492 u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
5493 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
5494 sizeof(mode), &mode);
5495 }
5496
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005497 err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
5498 if (err < 0)
5499 goto unlock;
5500
5501 if (changed)
5502 err = new_settings(hdev, sk);
5503
5504unlock:
5505 hci_dev_unlock(hdev);
5506 return err;
5507}
5508
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005509static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
5510 u16 len)
5511{
5512 struct mgmt_cp_set_privacy *cp = cp_data;
5513 bool changed;
5514 int err;
5515
5516 BT_DBG("request for %s", hdev->name);
5517
5518 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005519 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5520 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005521
5522 if (cp->privacy != 0x00 && cp->privacy != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005523 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5524 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005525
5526 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005527 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5528 MGMT_STATUS_REJECTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005529
5530 hci_dev_lock(hdev);
5531
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02005532 /* If user space supports this command it is also expected to
5533 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
5534 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005535 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02005536
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005537 if (cp->privacy) {
Marcel Holtmann238be782015-03-13 02:11:06 -07005538 changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005539 memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005540 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005541 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005542 changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005543 memset(hdev->irk, 0, sizeof(hdev->irk));
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005544 hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005545 }
5546
5547 err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
5548 if (err < 0)
5549 goto unlock;
5550
5551 if (changed)
5552 err = new_settings(hdev, sk);
5553
5554unlock:
5555 hci_dev_unlock(hdev);
5556 return err;
5557}
5558
Johan Hedberg41edf162014-02-18 10:19:35 +02005559static bool irk_is_valid(struct mgmt_irk_info *irk)
5560{
5561 switch (irk->addr.type) {
5562 case BDADDR_LE_PUBLIC:
5563 return true;
5564
5565 case BDADDR_LE_RANDOM:
5566 /* Two most significant bits shall be set */
5567 if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
5568 return false;
5569 return true;
5570 }
5571
5572 return false;
5573}
5574
5575static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
5576 u16 len)
5577{
5578 struct mgmt_cp_load_irks *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005579 const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
5580 sizeof(struct mgmt_irk_info));
Johan Hedberg41edf162014-02-18 10:19:35 +02005581 u16 irk_count, expected_len;
5582 int i, err;
5583
5584 BT_DBG("request for %s", hdev->name);
5585
5586 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005587 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5588 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg41edf162014-02-18 10:19:35 +02005589
5590 irk_count = __le16_to_cpu(cp->irk_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005591 if (irk_count > max_irk_count) {
5592 BT_ERR("load_irks: too big irk_count value %u", irk_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02005593 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5594 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005595 }
Johan Hedberg41edf162014-02-18 10:19:35 +02005596
5597 expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
5598 if (expected_len != len) {
5599 BT_ERR("load_irks: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02005600 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02005601 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5602 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02005603 }
5604
5605 BT_DBG("%s irk_count %u", hdev->name, irk_count);
5606
5607 for (i = 0; i < irk_count; i++) {
5608 struct mgmt_irk_info *key = &cp->irks[i];
5609
5610 if (!irk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02005611 return mgmt_cmd_status(sk, hdev->id,
5612 MGMT_OP_LOAD_IRKS,
5613 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02005614 }
5615
5616 hci_dev_lock(hdev);
5617
5618 hci_smp_irks_clear(hdev);
5619
5620 for (i = 0; i < irk_count; i++) {
5621 struct mgmt_irk_info *irk = &cp->irks[i];
Johan Hedberg41edf162014-02-18 10:19:35 +02005622
Johan Hedberg85813a72015-10-21 18:02:59 +03005623 hci_add_irk(hdev, &irk->addr.bdaddr,
5624 le_addr_type(irk->addr.type), irk->val,
Johan Hedberg41edf162014-02-18 10:19:35 +02005625 BDADDR_ANY);
5626 }
5627
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005628 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedberg41edf162014-02-18 10:19:35 +02005629
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005630 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
Johan Hedberg41edf162014-02-18 10:19:35 +02005631
5632 hci_dev_unlock(hdev);
5633
5634 return err;
5635}
5636
Johan Hedberg3f706b72013-01-20 14:27:16 +02005637static bool ltk_is_valid(struct mgmt_ltk_info *key)
5638{
5639 if (key->master != 0x00 && key->master != 0x01)
5640 return false;
Marcel Holtmann490cb0b2014-02-16 12:59:05 -08005641
5642 switch (key->addr.type) {
5643 case BDADDR_LE_PUBLIC:
5644 return true;
5645
5646 case BDADDR_LE_RANDOM:
5647 /* Two most significant bits shall be set */
5648 if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
5649 return false;
5650 return true;
5651 }
5652
5653 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02005654}
5655
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005656static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005657 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005658{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005659 struct mgmt_cp_load_long_term_keys *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005660 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
5661 sizeof(struct mgmt_ltk_info));
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005662 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005663 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005664
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07005665 BT_DBG("request for %s", hdev->name);
5666
5667 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005668 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5669 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07005670
Marcel Holtmann1f350c82012-03-12 20:31:08 -07005671 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005672 if (key_count > max_key_count) {
5673 BT_ERR("load_ltks: too big key_count value %u", key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02005674 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5675 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005676 }
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005677
5678 expected_len = sizeof(*cp) + key_count *
5679 sizeof(struct mgmt_ltk_info);
5680 if (expected_len != len) {
5681 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02005682 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02005683 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5684 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005685 }
5686
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005687 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005688
Johan Hedberg54ad6d82013-01-20 14:27:15 +02005689 for (i = 0; i < key_count; i++) {
5690 struct mgmt_ltk_info *key = &cp->keys[i];
5691
Johan Hedberg3f706b72013-01-20 14:27:16 +02005692 if (!ltk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02005693 return mgmt_cmd_status(sk, hdev->id,
5694 MGMT_OP_LOAD_LONG_TERM_KEYS,
5695 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg54ad6d82013-01-20 14:27:15 +02005696 }
5697
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005698 hci_dev_lock(hdev);
5699
5700 hci_smp_ltks_clear(hdev);
5701
5702 for (i = 0; i < key_count; i++) {
5703 struct mgmt_ltk_info *key = &cp->keys[i];
Johan Hedberg85813a72015-10-21 18:02:59 +03005704 u8 type, authenticated;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005705
Johan Hedberg61b43352014-05-29 19:36:53 +03005706 switch (key->type) {
5707 case MGMT_LTK_UNAUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03005708 authenticated = 0x00;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005709 type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
Johan Hedberg61b43352014-05-29 19:36:53 +03005710 break;
5711 case MGMT_LTK_AUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03005712 authenticated = 0x01;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005713 type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
Johan Hedberg61b43352014-05-29 19:36:53 +03005714 break;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005715 case MGMT_LTK_P256_UNAUTH:
5716 authenticated = 0x00;
5717 type = SMP_LTK_P256;
5718 break;
5719 case MGMT_LTK_P256_AUTH:
5720 authenticated = 0x01;
5721 type = SMP_LTK_P256;
5722 break;
5723 case MGMT_LTK_P256_DEBUG:
5724 authenticated = 0x00;
5725 type = SMP_LTK_P256_DEBUG;
Johan Hedberg61b43352014-05-29 19:36:53 +03005726 default:
5727 continue;
5728 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03005729
Johan Hedberg85813a72015-10-21 18:02:59 +03005730 hci_add_ltk(hdev, &key->addr.bdaddr,
5731 le_addr_type(key->addr.type), type, authenticated,
5732 key->val, key->enc_size, key->ediv, key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005733 }
5734
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005735 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005736 NULL, 0);
5737
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005738 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005739
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005740 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005741}
5742
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005743static int conn_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005744{
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005745 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005746 struct mgmt_rp_get_conn_info rp;
Johan Hedberg9df74652014-12-19 22:26:03 +02005747 int err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005748
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005749 memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005750
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005751 if (status == MGMT_STATUS_SUCCESS) {
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005752 rp.rssi = conn->rssi;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005753 rp.tx_power = conn->tx_power;
5754 rp.max_tx_power = conn->max_tx_power;
5755 } else {
5756 rp.rssi = HCI_RSSI_INVALID;
5757 rp.tx_power = HCI_TX_POWER_INVALID;
5758 rp.max_tx_power = HCI_TX_POWER_INVALID;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005759 }
5760
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005761 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
5762 status, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005763
5764 hci_conn_drop(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005765 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02005766
5767 return err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005768}
5769
Marcel Holtmann1904a852015-01-11 13:50:44 -08005770static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
5771 u16 opcode)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005772{
5773 struct hci_cp_read_rssi *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005774 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005775 struct hci_conn *conn;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005776 u16 handle;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005777 u8 status;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005778
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005779 BT_DBG("status 0x%02x", hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005780
5781 hci_dev_lock(hdev);
5782
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005783 /* Commands sent in request are either Read RSSI or Read Transmit Power
5784 * Level so we check which one was last sent to retrieve connection
5785 * handle. Both commands have handle as first parameter so it's safe to
5786 * cast data on the same command struct.
5787 *
5788 * First command sent is always Read RSSI and we fail only if it fails.
5789 * In other case we simply override error to indicate success as we
5790 * already remembered if TX power value is actually valid.
5791 */
5792 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI);
5793 if (!cp) {
5794 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005795 status = MGMT_STATUS_SUCCESS;
5796 } else {
5797 status = mgmt_status(hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005798 }
5799
5800 if (!cp) {
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005801 BT_ERR("invalid sent_cmd in conn_info response");
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005802 goto unlock;
5803 }
5804
5805 handle = __le16_to_cpu(cp->handle);
5806 conn = hci_conn_hash_lookup_handle(hdev, handle);
5807 if (!conn) {
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005808 BT_ERR("unknown handle (%d) in conn_info response", handle);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005809 goto unlock;
5810 }
5811
Johan Hedberg333ae952015-03-17 13:48:47 +02005812 cmd = pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005813 if (!cmd)
5814 goto unlock;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005815
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005816 cmd->cmd_complete(cmd, status);
5817 mgmt_pending_remove(cmd);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005818
5819unlock:
5820 hci_dev_unlock(hdev);
5821}
5822
5823static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data,
5824 u16 len)
5825{
5826 struct mgmt_cp_get_conn_info *cp = data;
5827 struct mgmt_rp_get_conn_info rp;
5828 struct hci_conn *conn;
5829 unsigned long conn_info_age;
5830 int err = 0;
5831
5832 BT_DBG("%s", hdev->name);
5833
5834 memset(&rp, 0, sizeof(rp));
5835 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5836 rp.addr.type = cp->addr.type;
5837
5838 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005839 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5840 MGMT_STATUS_INVALID_PARAMS,
5841 &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005842
5843 hci_dev_lock(hdev);
5844
5845 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005846 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5847 MGMT_STATUS_NOT_POWERED, &rp,
5848 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005849 goto unlock;
5850 }
5851
5852 if (cp->addr.type == BDADDR_BREDR)
5853 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
5854 &cp->addr.bdaddr);
5855 else
5856 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
5857
5858 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005859 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5860 MGMT_STATUS_NOT_CONNECTED, &rp,
5861 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005862 goto unlock;
5863 }
5864
Johan Hedberg333ae952015-03-17 13:48:47 +02005865 if (pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005866 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5867 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005868 goto unlock;
5869 }
5870
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005871 /* To avoid client trying to guess when to poll again for information we
5872 * calculate conn info age as random value between min/max set in hdev.
5873 */
5874 conn_info_age = hdev->conn_info_min_age +
5875 prandom_u32_max(hdev->conn_info_max_age -
5876 hdev->conn_info_min_age);
5877
5878 /* Query controller to refresh cached values if they are too old or were
5879 * never read.
5880 */
Andrzej Kaczmarekf4e2dd52014-05-16 16:48:57 +02005881 if (time_after(jiffies, conn->conn_info_timestamp +
5882 msecs_to_jiffies(conn_info_age)) ||
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005883 !conn->conn_info_timestamp) {
5884 struct hci_request req;
5885 struct hci_cp_read_tx_power req_txp_cp;
5886 struct hci_cp_read_rssi req_rssi_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005887 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005888
5889 hci_req_init(&req, hdev);
5890 req_rssi_cp.handle = cpu_to_le16(conn->handle);
5891 hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp),
5892 &req_rssi_cp);
5893
Andrzej Kaczmarekf7faab02014-05-14 13:43:04 +02005894 /* For LE links TX power does not change thus we don't need to
5895 * query for it once value is known.
5896 */
5897 if (!bdaddr_type_is_le(cp->addr.type) ||
5898 conn->tx_power == HCI_TX_POWER_INVALID) {
5899 req_txp_cp.handle = cpu_to_le16(conn->handle);
5900 req_txp_cp.type = 0x00;
5901 hci_req_add(&req, HCI_OP_READ_TX_POWER,
5902 sizeof(req_txp_cp), &req_txp_cp);
5903 }
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005904
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02005905 /* Max TX power needs to be read only once per connection */
5906 if (conn->max_tx_power == HCI_TX_POWER_INVALID) {
5907 req_txp_cp.handle = cpu_to_le16(conn->handle);
5908 req_txp_cp.type = 0x01;
5909 hci_req_add(&req, HCI_OP_READ_TX_POWER,
5910 sizeof(req_txp_cp), &req_txp_cp);
5911 }
5912
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005913 err = hci_req_run(&req, conn_info_refresh_complete);
5914 if (err < 0)
5915 goto unlock;
5916
5917 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CONN_INFO, hdev,
5918 data, len);
5919 if (!cmd) {
5920 err = -ENOMEM;
5921 goto unlock;
5922 }
5923
5924 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005925 cmd->user_data = hci_conn_get(conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005926 cmd->cmd_complete = conn_info_cmd_complete;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005927
5928 conn->conn_info_timestamp = jiffies;
5929 } else {
5930 /* Cache is valid, just reply with values cached in hci_conn */
5931 rp.rssi = conn->rssi;
5932 rp.tx_power = conn->tx_power;
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02005933 rp.max_tx_power = conn->max_tx_power;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005934
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005935 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5936 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005937 }
5938
5939unlock:
5940 hci_dev_unlock(hdev);
5941 return err;
5942}
5943
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005944static int clock_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg69487372014-12-05 13:36:07 +02005945{
5946 struct hci_conn *conn = cmd->user_data;
5947 struct mgmt_rp_get_clock_info rp;
5948 struct hci_dev *hdev;
Johan Hedberg9df74652014-12-19 22:26:03 +02005949 int err;
Johan Hedberg69487372014-12-05 13:36:07 +02005950
5951 memset(&rp, 0, sizeof(rp));
5952 memcpy(&rp.addr, &cmd->param, sizeof(rp.addr));
5953
5954 if (status)
5955 goto complete;
5956
5957 hdev = hci_dev_get(cmd->index);
5958 if (hdev) {
5959 rp.local_clock = cpu_to_le32(hdev->clock);
5960 hci_dev_put(hdev);
5961 }
5962
5963 if (conn) {
5964 rp.piconet_clock = cpu_to_le32(conn->clock);
5965 rp.accuracy = cpu_to_le16(conn->clock_accuracy);
5966 }
5967
5968complete:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005969 err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
5970 sizeof(rp));
Johan Hedberg69487372014-12-05 13:36:07 +02005971
5972 if (conn) {
5973 hci_conn_drop(conn);
5974 hci_conn_put(conn);
5975 }
Johan Hedberg9df74652014-12-19 22:26:03 +02005976
5977 return err;
Johan Hedberg69487372014-12-05 13:36:07 +02005978}
5979
Marcel Holtmann1904a852015-01-11 13:50:44 -08005980static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg95868422014-06-28 17:54:07 +03005981{
Johan Hedberg95868422014-06-28 17:54:07 +03005982 struct hci_cp_read_clock *hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005983 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03005984 struct hci_conn *conn;
5985
5986 BT_DBG("%s status %u", hdev->name, status);
5987
5988 hci_dev_lock(hdev);
5989
5990 hci_cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
5991 if (!hci_cp)
5992 goto unlock;
5993
5994 if (hci_cp->which) {
5995 u16 handle = __le16_to_cpu(hci_cp->handle);
5996 conn = hci_conn_hash_lookup_handle(hdev, handle);
5997 } else {
5998 conn = NULL;
5999 }
6000
Johan Hedberg333ae952015-03-17 13:48:47 +02006001 cmd = pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
Johan Hedberg95868422014-06-28 17:54:07 +03006002 if (!cmd)
6003 goto unlock;
6004
Johan Hedberg69487372014-12-05 13:36:07 +02006005 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberg95868422014-06-28 17:54:07 +03006006 mgmt_pending_remove(cmd);
Johan Hedberg95868422014-06-28 17:54:07 +03006007
6008unlock:
6009 hci_dev_unlock(hdev);
6010}
6011
6012static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data,
6013 u16 len)
6014{
6015 struct mgmt_cp_get_clock_info *cp = data;
6016 struct mgmt_rp_get_clock_info rp;
6017 struct hci_cp_read_clock hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006018 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03006019 struct hci_request req;
6020 struct hci_conn *conn;
6021 int err;
6022
6023 BT_DBG("%s", hdev->name);
6024
6025 memset(&rp, 0, sizeof(rp));
6026 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
6027 rp.addr.type = cp->addr.type;
6028
6029 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006030 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
6031 MGMT_STATUS_INVALID_PARAMS,
6032 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006033
6034 hci_dev_lock(hdev);
6035
6036 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006037 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
6038 MGMT_STATUS_NOT_POWERED, &rp,
6039 sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006040 goto unlock;
6041 }
6042
6043 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
6044 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
6045 &cp->addr.bdaddr);
6046 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006047 err = mgmt_cmd_complete(sk, hdev->id,
6048 MGMT_OP_GET_CLOCK_INFO,
6049 MGMT_STATUS_NOT_CONNECTED,
6050 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006051 goto unlock;
6052 }
6053 } else {
6054 conn = NULL;
6055 }
6056
6057 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CLOCK_INFO, hdev, data, len);
6058 if (!cmd) {
6059 err = -ENOMEM;
6060 goto unlock;
6061 }
6062
Johan Hedberg69487372014-12-05 13:36:07 +02006063 cmd->cmd_complete = clock_info_cmd_complete;
6064
Johan Hedberg95868422014-06-28 17:54:07 +03006065 hci_req_init(&req, hdev);
6066
6067 memset(&hci_cp, 0, sizeof(hci_cp));
6068 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
6069
6070 if (conn) {
6071 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03006072 cmd->user_data = hci_conn_get(conn);
Johan Hedberg95868422014-06-28 17:54:07 +03006073
6074 hci_cp.handle = cpu_to_le16(conn->handle);
6075 hci_cp.which = 0x01; /* Piconet clock */
6076 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
6077 }
6078
6079 err = hci_req_run(&req, get_clock_info_complete);
6080 if (err < 0)
6081 mgmt_pending_remove(cmd);
6082
6083unlock:
6084 hci_dev_unlock(hdev);
6085 return err;
6086}
6087
Johan Hedberg5a154e62014-12-19 22:26:02 +02006088static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
6089{
6090 struct hci_conn *conn;
6091
6092 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
6093 if (!conn)
6094 return false;
6095
6096 if (conn->dst_type != type)
6097 return false;
6098
6099 if (conn->state != BT_CONNECTED)
6100 return false;
6101
6102 return true;
6103}
6104
6105/* This function requires the caller holds hdev->lock */
6106static int hci_conn_params_set(struct hci_request *req, bdaddr_t *addr,
6107 u8 addr_type, u8 auto_connect)
6108{
6109 struct hci_dev *hdev = req->hdev;
6110 struct hci_conn_params *params;
6111
6112 params = hci_conn_params_add(hdev, addr, addr_type);
6113 if (!params)
6114 return -EIO;
6115
6116 if (params->auto_connect == auto_connect)
6117 return 0;
6118
6119 list_del_init(&params->action);
6120
6121 switch (auto_connect) {
6122 case HCI_AUTO_CONN_DISABLED:
6123 case HCI_AUTO_CONN_LINK_LOSS:
Jakub Pawlowski28a667c2015-08-07 20:22:54 +02006124 /* If auto connect is being disabled when we're trying to
6125 * connect to device, keep connecting.
6126 */
6127 if (params->explicit_connect)
6128 list_add(&params->action, &hdev->pend_le_conns);
6129
Johan Hedberg5a154e62014-12-19 22:26:02 +02006130 __hci_update_background_scan(req);
6131 break;
6132 case HCI_AUTO_CONN_REPORT:
Johan Hedberg49c50922015-10-16 10:07:51 +03006133 if (params->explicit_connect)
6134 list_add(&params->action, &hdev->pend_le_conns);
6135 else
6136 list_add(&params->action, &hdev->pend_le_reports);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006137 __hci_update_background_scan(req);
6138 break;
6139 case HCI_AUTO_CONN_DIRECT:
6140 case HCI_AUTO_CONN_ALWAYS:
6141 if (!is_connected(hdev, addr, addr_type)) {
6142 list_add(&params->action, &hdev->pend_le_conns);
Jakub Pawlowski168b8a22015-10-16 10:07:49 +03006143 /* If we are in scan phase of connecting, we were
6144 * already added to pend_le_conns and scanning.
6145 */
6146 if (params->auto_connect != HCI_AUTO_CONN_EXPLICIT)
6147 __hci_update_background_scan(req);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006148 }
6149 break;
6150 }
6151
6152 params->auto_connect = auto_connect;
6153
6154 BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
6155 auto_connect);
6156
6157 return 0;
6158}
6159
Marcel Holtmann8afef092014-06-29 22:28:34 +02006160static void device_added(struct sock *sk, struct hci_dev *hdev,
6161 bdaddr_t *bdaddr, u8 type, u8 action)
6162{
6163 struct mgmt_ev_device_added ev;
6164
6165 bacpy(&ev.addr.bdaddr, bdaddr);
6166 ev.addr.type = type;
6167 ev.action = action;
6168
6169 mgmt_event(MGMT_EV_DEVICE_ADDED, hdev, &ev, sizeof(ev), sk);
6170}
6171
Marcel Holtmann1904a852015-01-11 13:50:44 -08006172static void add_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg5a154e62014-12-19 22:26:02 +02006173{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006174 struct mgmt_pending_cmd *cmd;
Johan Hedberg5a154e62014-12-19 22:26:02 +02006175
6176 BT_DBG("status 0x%02x", status);
6177
6178 hci_dev_lock(hdev);
6179
Johan Hedberg333ae952015-03-17 13:48:47 +02006180 cmd = pending_find(MGMT_OP_ADD_DEVICE, hdev);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006181 if (!cmd)
6182 goto unlock;
6183
6184 cmd->cmd_complete(cmd, mgmt_status(status));
6185 mgmt_pending_remove(cmd);
6186
6187unlock:
6188 hci_dev_unlock(hdev);
6189}
6190
Marcel Holtmann2faade52014-06-29 19:44:03 +02006191static int add_device(struct sock *sk, struct hci_dev *hdev,
6192 void *data, u16 len)
6193{
6194 struct mgmt_cp_add_device *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006195 struct mgmt_pending_cmd *cmd;
Johan Hedberg5a154e62014-12-19 22:26:02 +02006196 struct hci_request req;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006197 u8 auto_conn, addr_type;
6198 int err;
6199
6200 BT_DBG("%s", hdev->name);
6201
Johan Hedberg66593582014-07-09 12:59:14 +03006202 if (!bdaddr_type_is_valid(cp->addr.type) ||
Marcel Holtmann2faade52014-06-29 19:44:03 +02006203 !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006204 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6205 MGMT_STATUS_INVALID_PARAMS,
6206 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006207
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006208 if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006209 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6210 MGMT_STATUS_INVALID_PARAMS,
6211 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006212
Johan Hedberg5a154e62014-12-19 22:26:02 +02006213 hci_req_init(&req, hdev);
6214
Marcel Holtmann2faade52014-06-29 19:44:03 +02006215 hci_dev_lock(hdev);
6216
Johan Hedberg5a154e62014-12-19 22:26:02 +02006217 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_DEVICE, hdev, data, len);
6218 if (!cmd) {
6219 err = -ENOMEM;
6220 goto unlock;
6221 }
6222
6223 cmd->cmd_complete = addr_cmd_complete;
6224
Johan Hedberg66593582014-07-09 12:59:14 +03006225 if (cp->addr.type == BDADDR_BREDR) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006226 /* Only incoming connections action is supported for now */
Johan Hedberg66593582014-07-09 12:59:14 +03006227 if (cp->action != 0x01) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006228 err = cmd->cmd_complete(cmd,
6229 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006230 mgmt_pending_remove(cmd);
Johan Hedberg66593582014-07-09 12:59:14 +03006231 goto unlock;
6232 }
6233
6234 err = hci_bdaddr_list_add(&hdev->whitelist, &cp->addr.bdaddr,
6235 cp->addr.type);
6236 if (err)
6237 goto unlock;
Johan Hedberga3974072014-07-09 12:59:15 +03006238
Johan Hedberg5a154e62014-12-19 22:26:02 +02006239 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03006240
Johan Hedberg66593582014-07-09 12:59:14 +03006241 goto added;
6242 }
6243
Johan Hedberg85813a72015-10-21 18:02:59 +03006244 addr_type = le_addr_type(cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006245
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006246 if (cp->action == 0x02)
Marcel Holtmann2faade52014-06-29 19:44:03 +02006247 auto_conn = HCI_AUTO_CONN_ALWAYS;
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006248 else if (cp->action == 0x01)
6249 auto_conn = HCI_AUTO_CONN_DIRECT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006250 else
Johan Hedberga3451d22014-07-02 17:37:27 +03006251 auto_conn = HCI_AUTO_CONN_REPORT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006252
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02006253 /* Kernel internally uses conn_params with resolvable private
6254 * address, but Add Device allows only identity addresses.
6255 * Make sure it is enforced before calling
6256 * hci_conn_params_lookup.
6257 */
6258 if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
6259 err = cmd->cmd_complete(cmd, MGMT_STATUS_INVALID_PARAMS);
6260 mgmt_pending_remove(cmd);
6261 goto unlock;
6262 }
6263
Marcel Holtmannbf5b3c82014-06-30 12:34:39 +02006264 /* If the connection parameters don't exist for this device,
6265 * they will be created and configured with defaults.
6266 */
Johan Hedberg5a154e62014-12-19 22:26:02 +02006267 if (hci_conn_params_set(&req, &cp->addr.bdaddr, addr_type,
Marcel Holtmannd06b50c2014-07-01 12:11:06 +02006268 auto_conn) < 0) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006269 err = cmd->cmd_complete(cmd, MGMT_STATUS_FAILED);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006270 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006271 goto unlock;
6272 }
6273
Johan Hedberg66593582014-07-09 12:59:14 +03006274added:
Marcel Holtmann8afef092014-06-29 22:28:34 +02006275 device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);
6276
Johan Hedberg5a154e62014-12-19 22:26:02 +02006277 err = hci_req_run(&req, add_device_complete);
6278 if (err < 0) {
6279 /* ENODATA means no HCI commands were needed (e.g. if
6280 * the adapter is powered off).
6281 */
Johan Hedberg9df74652014-12-19 22:26:03 +02006282 if (err == -ENODATA)
6283 err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006284 mgmt_pending_remove(cmd);
6285 }
Marcel Holtmann2faade52014-06-29 19:44:03 +02006286
6287unlock:
6288 hci_dev_unlock(hdev);
6289 return err;
6290}
6291
Marcel Holtmann8afef092014-06-29 22:28:34 +02006292static void device_removed(struct sock *sk, struct hci_dev *hdev,
6293 bdaddr_t *bdaddr, u8 type)
6294{
6295 struct mgmt_ev_device_removed ev;
6296
6297 bacpy(&ev.addr.bdaddr, bdaddr);
6298 ev.addr.type = type;
6299
6300 mgmt_event(MGMT_EV_DEVICE_REMOVED, hdev, &ev, sizeof(ev), sk);
6301}
6302
Marcel Holtmann1904a852015-01-11 13:50:44 -08006303static void remove_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006304{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006305 struct mgmt_pending_cmd *cmd;
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006306
6307 BT_DBG("status 0x%02x", status);
6308
6309 hci_dev_lock(hdev);
6310
Johan Hedberg333ae952015-03-17 13:48:47 +02006311 cmd = pending_find(MGMT_OP_REMOVE_DEVICE, hdev);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006312 if (!cmd)
6313 goto unlock;
6314
6315 cmd->cmd_complete(cmd, mgmt_status(status));
6316 mgmt_pending_remove(cmd);
6317
6318unlock:
6319 hci_dev_unlock(hdev);
6320}
6321
Marcel Holtmann2faade52014-06-29 19:44:03 +02006322static int remove_device(struct sock *sk, struct hci_dev *hdev,
6323 void *data, u16 len)
6324{
6325 struct mgmt_cp_remove_device *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006326 struct mgmt_pending_cmd *cmd;
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006327 struct hci_request req;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006328 int err;
6329
6330 BT_DBG("%s", hdev->name);
6331
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006332 hci_req_init(&req, hdev);
6333
Marcel Holtmann2faade52014-06-29 19:44:03 +02006334 hci_dev_lock(hdev);
6335
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006336 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_DEVICE, hdev, data, len);
6337 if (!cmd) {
6338 err = -ENOMEM;
6339 goto unlock;
6340 }
6341
6342 cmd->cmd_complete = addr_cmd_complete;
6343
Marcel Holtmann2faade52014-06-29 19:44:03 +02006344 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
Johan Hedbergc71593d2014-07-02 17:37:28 +03006345 struct hci_conn_params *params;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006346 u8 addr_type;
6347
Johan Hedberg66593582014-07-09 12:59:14 +03006348 if (!bdaddr_type_is_valid(cp->addr.type)) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006349 err = cmd->cmd_complete(cmd,
6350 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006351 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006352 goto unlock;
6353 }
6354
Johan Hedberg66593582014-07-09 12:59:14 +03006355 if (cp->addr.type == BDADDR_BREDR) {
6356 err = hci_bdaddr_list_del(&hdev->whitelist,
6357 &cp->addr.bdaddr,
6358 cp->addr.type);
6359 if (err) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006360 err = cmd->cmd_complete(cmd,
6361 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006362 mgmt_pending_remove(cmd);
Johan Hedberg66593582014-07-09 12:59:14 +03006363 goto unlock;
6364 }
6365
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006366 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03006367
Johan Hedberg66593582014-07-09 12:59:14 +03006368 device_removed(sk, hdev, &cp->addr.bdaddr,
6369 cp->addr.type);
6370 goto complete;
6371 }
6372
Johan Hedberg85813a72015-10-21 18:02:59 +03006373 addr_type = le_addr_type(cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006374
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02006375 /* Kernel internally uses conn_params with resolvable private
6376 * address, but Remove Device allows only identity addresses.
6377 * Make sure it is enforced before calling
6378 * hci_conn_params_lookup.
6379 */
6380 if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
6381 err = cmd->cmd_complete(cmd,
6382 MGMT_STATUS_INVALID_PARAMS);
6383 mgmt_pending_remove(cmd);
6384 goto unlock;
6385 }
6386
Johan Hedbergc71593d2014-07-02 17:37:28 +03006387 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
6388 addr_type);
6389 if (!params) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006390 err = cmd->cmd_complete(cmd,
6391 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006392 mgmt_pending_remove(cmd);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006393 goto unlock;
6394 }
6395
Johan Hedberg679d2b62015-10-16 10:07:52 +03006396 if (params->auto_connect == HCI_AUTO_CONN_DISABLED ||
6397 params->auto_connect == HCI_AUTO_CONN_EXPLICIT) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006398 err = cmd->cmd_complete(cmd,
6399 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006400 mgmt_pending_remove(cmd);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006401 goto unlock;
6402 }
6403
Johan Hedbergd1dbf122014-07-04 16:17:23 +03006404 list_del(&params->action);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006405 list_del(&params->list);
6406 kfree(params);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006407 __hci_update_background_scan(&req);
Marcel Holtmann8afef092014-06-29 22:28:34 +02006408
6409 device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006410 } else {
Johan Hedberg19de0822014-07-06 13:06:51 +03006411 struct hci_conn_params *p, *tmp;
Johan Hedberg66593582014-07-09 12:59:14 +03006412 struct bdaddr_list *b, *btmp;
Johan Hedberg19de0822014-07-06 13:06:51 +03006413
Marcel Holtmann2faade52014-06-29 19:44:03 +02006414 if (cp->addr.type) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006415 err = cmd->cmd_complete(cmd,
6416 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006417 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006418 goto unlock;
6419 }
6420
Johan Hedberg66593582014-07-09 12:59:14 +03006421 list_for_each_entry_safe(b, btmp, &hdev->whitelist, list) {
6422 device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type);
6423 list_del(&b->list);
6424 kfree(b);
6425 }
6426
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006427 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03006428
Johan Hedberg19de0822014-07-06 13:06:51 +03006429 list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) {
6430 if (p->auto_connect == HCI_AUTO_CONN_DISABLED)
6431 continue;
6432 device_removed(sk, hdev, &p->addr, p->addr_type);
Johan Hedberg679d2b62015-10-16 10:07:52 +03006433 if (p->explicit_connect) {
6434 p->auto_connect = HCI_AUTO_CONN_EXPLICIT;
6435 continue;
6436 }
Johan Hedberg19de0822014-07-06 13:06:51 +03006437 list_del(&p->action);
6438 list_del(&p->list);
6439 kfree(p);
6440 }
6441
6442 BT_DBG("All LE connection parameters were removed");
6443
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006444 __hci_update_background_scan(&req);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006445 }
6446
Johan Hedberg66593582014-07-09 12:59:14 +03006447complete:
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006448 err = hci_req_run(&req, remove_device_complete);
6449 if (err < 0) {
6450 /* ENODATA means no HCI commands were needed (e.g. if
6451 * the adapter is powered off).
6452 */
Johan Hedberg9df74652014-12-19 22:26:03 +02006453 if (err == -ENODATA)
6454 err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006455 mgmt_pending_remove(cmd);
6456 }
Marcel Holtmann2faade52014-06-29 19:44:03 +02006457
6458unlock:
6459 hci_dev_unlock(hdev);
6460 return err;
6461}
6462
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006463static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
6464 u16 len)
6465{
6466 struct mgmt_cp_load_conn_param *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03006467 const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
6468 sizeof(struct mgmt_conn_param));
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006469 u16 param_count, expected_len;
6470 int i;
6471
6472 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006473 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6474 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006475
6476 param_count = __le16_to_cpu(cp->param_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006477 if (param_count > max_param_count) {
6478 BT_ERR("load_conn_param: too big param_count value %u",
6479 param_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02006480 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6481 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006482 }
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006483
6484 expected_len = sizeof(*cp) + param_count *
6485 sizeof(struct mgmt_conn_param);
6486 if (expected_len != len) {
6487 BT_ERR("load_conn_param: expected %u bytes, got %u bytes",
6488 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02006489 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6490 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006491 }
6492
6493 BT_DBG("%s param_count %u", hdev->name, param_count);
6494
6495 hci_dev_lock(hdev);
6496
6497 hci_conn_params_clear_disabled(hdev);
6498
6499 for (i = 0; i < param_count; i++) {
6500 struct mgmt_conn_param *param = &cp->params[i];
6501 struct hci_conn_params *hci_param;
6502 u16 min, max, latency, timeout;
6503 u8 addr_type;
6504
6505 BT_DBG("Adding %pMR (type %u)", &param->addr.bdaddr,
6506 param->addr.type);
6507
6508 if (param->addr.type == BDADDR_LE_PUBLIC) {
6509 addr_type = ADDR_LE_DEV_PUBLIC;
6510 } else if (param->addr.type == BDADDR_LE_RANDOM) {
6511 addr_type = ADDR_LE_DEV_RANDOM;
6512 } else {
6513 BT_ERR("Ignoring invalid connection parameters");
6514 continue;
6515 }
6516
6517 min = le16_to_cpu(param->min_interval);
6518 max = le16_to_cpu(param->max_interval);
6519 latency = le16_to_cpu(param->latency);
6520 timeout = le16_to_cpu(param->timeout);
6521
6522 BT_DBG("min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x",
6523 min, max, latency, timeout);
6524
6525 if (hci_check_conn_params(min, max, latency, timeout) < 0) {
6526 BT_ERR("Ignoring invalid connection parameters");
6527 continue;
6528 }
6529
6530 hci_param = hci_conn_params_add(hdev, &param->addr.bdaddr,
6531 addr_type);
6532 if (!hci_param) {
6533 BT_ERR("Failed to add connection parameters");
6534 continue;
6535 }
6536
6537 hci_param->conn_min_interval = min;
6538 hci_param->conn_max_interval = max;
6539 hci_param->conn_latency = latency;
6540 hci_param->supervision_timeout = timeout;
6541 }
6542
6543 hci_dev_unlock(hdev);
6544
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006545 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
6546 NULL, 0);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006547}
6548
Marcel Holtmanndbece372014-07-04 18:11:55 +02006549static int set_external_config(struct sock *sk, struct hci_dev *hdev,
6550 void *data, u16 len)
6551{
6552 struct mgmt_cp_set_external_config *cp = data;
6553 bool changed;
6554 int err;
6555
6556 BT_DBG("%s", hdev->name);
6557
6558 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006559 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6560 MGMT_STATUS_REJECTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006561
6562 if (cp->config != 0x00 && cp->config != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02006563 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6564 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006565
6566 if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
Johan Hedberga69e8372015-03-06 21:08:53 +02006567 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6568 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006569
6570 hci_dev_lock(hdev);
6571
6572 if (cp->config)
Marcel Holtmann238be782015-03-13 02:11:06 -07006573 changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006574 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07006575 changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006576
6577 err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
6578 if (err < 0)
6579 goto unlock;
6580
6581 if (!changed)
6582 goto unlock;
6583
Marcel Holtmannf4537c02014-07-04 19:06:23 +02006584 err = new_options(hdev, sk);
6585
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006586 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
Marcel Holtmanndbece372014-07-04 18:11:55 +02006587 mgmt_index_removed(hdev);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02006588
Marcel Holtmann516018a2015-03-13 02:11:04 -07006589 if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006590 hci_dev_set_flag(hdev, HCI_CONFIG);
6591 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02006592
6593 queue_work(hdev->req_workqueue, &hdev->power_on);
6594 } else {
Marcel Holtmann5ea234d2014-07-06 12:11:16 +02006595 set_bit(HCI_RAW, &hdev->flags);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02006596 mgmt_index_added(hdev);
6597 }
Marcel Holtmanndbece372014-07-04 18:11:55 +02006598 }
6599
6600unlock:
6601 hci_dev_unlock(hdev);
6602 return err;
6603}
6604
Marcel Holtmann9713c172014-07-06 12:11:15 +02006605static int set_public_address(struct sock *sk, struct hci_dev *hdev,
6606 void *data, u16 len)
6607{
6608 struct mgmt_cp_set_public_address *cp = data;
6609 bool changed;
6610 int err;
6611
6612 BT_DBG("%s", hdev->name);
6613
6614 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006615 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6616 MGMT_STATUS_REJECTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006617
6618 if (!bacmp(&cp->bdaddr, BDADDR_ANY))
Johan Hedberga69e8372015-03-06 21:08:53 +02006619 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6620 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006621
6622 if (!hdev->set_bdaddr)
Johan Hedberga69e8372015-03-06 21:08:53 +02006623 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6624 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006625
6626 hci_dev_lock(hdev);
6627
6628 changed = !!bacmp(&hdev->public_addr, &cp->bdaddr);
6629 bacpy(&hdev->public_addr, &cp->bdaddr);
6630
6631 err = send_options_rsp(sk, MGMT_OP_SET_PUBLIC_ADDRESS, hdev);
6632 if (err < 0)
6633 goto unlock;
6634
6635 if (!changed)
6636 goto unlock;
6637
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006638 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
Marcel Holtmann9713c172014-07-06 12:11:15 +02006639 err = new_options(hdev, sk);
6640
6641 if (is_configured(hdev)) {
6642 mgmt_index_removed(hdev);
6643
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006644 hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006645
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006646 hci_dev_set_flag(hdev, HCI_CONFIG);
6647 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006648
6649 queue_work(hdev->req_workqueue, &hdev->power_on);
6650 }
6651
6652unlock:
6653 hci_dev_unlock(hdev);
6654 return err;
6655}
6656
Marcel Holtmannbea41602015-03-14 22:43:17 -07006657static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
6658 u8 data_len)
6659{
6660 eir[eir_len++] = sizeof(type) + data_len;
6661 eir[eir_len++] = type;
6662 memcpy(&eir[eir_len], data, data_len);
6663 eir_len += data_len;
6664
6665 return eir_len;
6666}
6667
Johan Hedberg40f66c02015-04-07 21:52:22 +03006668static void read_local_oob_ext_data_complete(struct hci_dev *hdev, u8 status,
6669 u16 opcode, struct sk_buff *skb)
6670{
6671 const struct mgmt_cp_read_local_oob_ext_data *mgmt_cp;
6672 struct mgmt_rp_read_local_oob_ext_data *mgmt_rp;
6673 u8 *h192, *r192, *h256, *r256;
6674 struct mgmt_pending_cmd *cmd;
6675 u16 eir_len;
6676 int err;
6677
6678 BT_DBG("%s status %u", hdev->name, status);
6679
6680 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev);
6681 if (!cmd)
6682 return;
6683
6684 mgmt_cp = cmd->param;
6685
6686 if (status) {
6687 status = mgmt_status(status);
6688 eir_len = 0;
6689
6690 h192 = NULL;
6691 r192 = NULL;
6692 h256 = NULL;
6693 r256 = NULL;
6694 } else if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
6695 struct hci_rp_read_local_oob_data *rp;
6696
6697 if (skb->len != sizeof(*rp)) {
6698 status = MGMT_STATUS_FAILED;
6699 eir_len = 0;
6700 } else {
6701 status = MGMT_STATUS_SUCCESS;
6702 rp = (void *)skb->data;
6703
6704 eir_len = 5 + 18 + 18;
6705 h192 = rp->hash;
6706 r192 = rp->rand;
6707 h256 = NULL;
6708 r256 = NULL;
6709 }
6710 } else {
6711 struct hci_rp_read_local_oob_ext_data *rp;
6712
6713 if (skb->len != sizeof(*rp)) {
6714 status = MGMT_STATUS_FAILED;
6715 eir_len = 0;
6716 } else {
6717 status = MGMT_STATUS_SUCCESS;
6718 rp = (void *)skb->data;
6719
6720 if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
6721 eir_len = 5 + 18 + 18;
6722 h192 = NULL;
6723 r192 = NULL;
6724 } else {
6725 eir_len = 5 + 18 + 18 + 18 + 18;
6726 h192 = rp->hash192;
6727 r192 = rp->rand192;
6728 }
6729
6730 h256 = rp->hash256;
6731 r256 = rp->rand256;
6732 }
6733 }
6734
6735 mgmt_rp = kmalloc(sizeof(*mgmt_rp) + eir_len, GFP_KERNEL);
6736 if (!mgmt_rp)
6737 goto done;
6738
6739 if (status)
6740 goto send_rsp;
6741
6742 eir_len = eir_append_data(mgmt_rp->eir, 0, EIR_CLASS_OF_DEV,
6743 hdev->dev_class, 3);
6744
6745 if (h192 && r192) {
6746 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6747 EIR_SSP_HASH_C192, h192, 16);
6748 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6749 EIR_SSP_RAND_R192, r192, 16);
6750 }
6751
6752 if (h256 && r256) {
6753 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6754 EIR_SSP_HASH_C256, h256, 16);
6755 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
6756 EIR_SSP_RAND_R256, r256, 16);
6757 }
6758
6759send_rsp:
6760 mgmt_rp->type = mgmt_cp->type;
6761 mgmt_rp->eir_len = cpu_to_le16(eir_len);
6762
6763 err = mgmt_cmd_complete(cmd->sk, hdev->id,
6764 MGMT_OP_READ_LOCAL_OOB_EXT_DATA, status,
6765 mgmt_rp, sizeof(*mgmt_rp) + eir_len);
6766 if (err < 0 || status)
6767 goto done;
6768
6769 hci_sock_set_flag(cmd->sk, HCI_MGMT_OOB_DATA_EVENTS);
6770
6771 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
6772 mgmt_rp, sizeof(*mgmt_rp) + eir_len,
6773 HCI_MGMT_OOB_DATA_EVENTS, cmd->sk);
6774done:
6775 kfree(mgmt_rp);
6776 mgmt_pending_remove(cmd);
6777}
6778
6779static int read_local_ssp_oob_req(struct hci_dev *hdev, struct sock *sk,
6780 struct mgmt_cp_read_local_oob_ext_data *cp)
6781{
6782 struct mgmt_pending_cmd *cmd;
6783 struct hci_request req;
6784 int err;
6785
6786 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev,
6787 cp, sizeof(*cp));
6788 if (!cmd)
6789 return -ENOMEM;
6790
6791 hci_req_init(&req, hdev);
6792
6793 if (bredr_sc_enabled(hdev))
6794 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
6795 else
6796 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
6797
6798 err = hci_req_run_skb(&req, read_local_oob_ext_data_complete);
6799 if (err < 0) {
6800 mgmt_pending_remove(cmd);
6801 return err;
6802 }
6803
6804 return 0;
6805}
6806
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006807static int read_local_oob_ext_data(struct sock *sk, struct hci_dev *hdev,
6808 void *data, u16 data_len)
6809{
6810 struct mgmt_cp_read_local_oob_ext_data *cp = data;
6811 struct mgmt_rp_read_local_oob_ext_data *rp;
6812 size_t rp_len;
6813 u16 eir_len;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006814 u8 status, flags, role, addr[7], hash[16], rand[16];
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006815 int err;
6816
6817 BT_DBG("%s", hdev->name);
6818
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006819 if (hdev_is_powered(hdev)) {
6820 switch (cp->type) {
6821 case BIT(BDADDR_BREDR):
6822 status = mgmt_bredr_support(hdev);
6823 if (status)
6824 eir_len = 0;
6825 else
6826 eir_len = 5;
6827 break;
6828 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
6829 status = mgmt_le_support(hdev);
6830 if (status)
6831 eir_len = 0;
6832 else
6833 eir_len = 9 + 3 + 18 + 18 + 3;
6834 break;
6835 default:
6836 status = MGMT_STATUS_INVALID_PARAMS;
6837 eir_len = 0;
6838 break;
6839 }
6840 } else {
6841 status = MGMT_STATUS_NOT_POWERED;
6842 eir_len = 0;
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006843 }
6844
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006845 rp_len = sizeof(*rp) + eir_len;
6846 rp = kmalloc(rp_len, GFP_ATOMIC);
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006847 if (!rp)
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006848 return -ENOMEM;
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006849
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006850 if (status)
6851 goto complete;
6852
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006853 hci_dev_lock(hdev);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006854
6855 eir_len = 0;
6856 switch (cp->type) {
6857 case BIT(BDADDR_BREDR):
Johan Hedberg40f66c02015-04-07 21:52:22 +03006858 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
6859 err = read_local_ssp_oob_req(hdev, sk, cp);
6860 hci_dev_unlock(hdev);
6861 if (!err)
6862 goto done;
6863
6864 status = MGMT_STATUS_FAILED;
6865 goto complete;
6866 } else {
6867 eir_len = eir_append_data(rp->eir, eir_len,
6868 EIR_CLASS_OF_DEV,
6869 hdev->dev_class, 3);
6870 }
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006871 break;
6872 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
Marcel Holtmann5082a592015-03-16 12:39:00 -07006873 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
6874 smp_generate_oob(hdev, hash, rand) < 0) {
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006875 hci_dev_unlock(hdev);
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006876 status = MGMT_STATUS_FAILED;
6877 goto complete;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006878 }
6879
Marcel Holtmanne2135682015-04-02 12:00:58 -07006880 /* This should return the active RPA, but since the RPA
6881 * is only programmed on demand, it is really hard to fill
6882 * this in at the moment. For now disallow retrieving
6883 * local out-of-band data when privacy is in use.
6884 *
6885 * Returning the identity address will not help here since
6886 * pairing happens before the identity resolving key is
6887 * known and thus the connection establishment happens
6888 * based on the RPA and not the identity address.
6889 */
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006890 if (hci_dev_test_flag(hdev, HCI_PRIVACY)) {
Marcel Holtmanne2135682015-04-02 12:00:58 -07006891 hci_dev_unlock(hdev);
6892 status = MGMT_STATUS_REJECTED;
6893 goto complete;
6894 }
6895
6896 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
6897 !bacmp(&hdev->bdaddr, BDADDR_ANY) ||
6898 (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
6899 bacmp(&hdev->static_addr, BDADDR_ANY))) {
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006900 memcpy(addr, &hdev->static_addr, 6);
6901 addr[6] = 0x01;
6902 } else {
6903 memcpy(addr, &hdev->bdaddr, 6);
6904 addr[6] = 0x00;
6905 }
6906
6907 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_BDADDR,
6908 addr, sizeof(addr));
6909
6910 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
6911 role = 0x02;
6912 else
6913 role = 0x01;
6914
6915 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_ROLE,
6916 &role, sizeof(role));
6917
Marcel Holtmann5082a592015-03-16 12:39:00 -07006918 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED)) {
6919 eir_len = eir_append_data(rp->eir, eir_len,
6920 EIR_LE_SC_CONFIRM,
6921 hash, sizeof(hash));
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006922
Marcel Holtmann5082a592015-03-16 12:39:00 -07006923 eir_len = eir_append_data(rp->eir, eir_len,
6924 EIR_LE_SC_RANDOM,
6925 rand, sizeof(rand));
6926 }
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006927
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006928 flags = get_adv_discov_flags(hdev);
6929
6930 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
6931 flags |= LE_AD_NO_BREDR;
6932
6933 eir_len = eir_append_data(rp->eir, eir_len, EIR_FLAGS,
6934 &flags, sizeof(flags));
6935 break;
6936 }
6937
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006938 hci_dev_unlock(hdev);
6939
Marcel Holtmann72000df2015-03-16 16:11:21 -07006940 hci_sock_set_flag(sk, HCI_MGMT_OOB_DATA_EVENTS);
6941
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006942 status = MGMT_STATUS_SUCCESS;
6943
6944complete:
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07006945 rp->type = cp->type;
6946 rp->eir_len = cpu_to_le16(eir_len);
6947
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006948 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07006949 status, rp, sizeof(*rp) + eir_len);
6950 if (err < 0 || status)
Marcel Holtmann72000df2015-03-16 16:11:21 -07006951 goto done;
6952
6953 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
6954 rp, sizeof(*rp) + eir_len,
6955 HCI_MGMT_OOB_DATA_EVENTS, sk);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006956
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006957done:
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006958 kfree(rp);
6959
6960 return err;
6961}
6962
Arman Uguray089fa8c2015-03-25 18:53:45 -07006963static u32 get_supported_adv_flags(struct hci_dev *hdev)
6964{
6965 u32 flags = 0;
6966
6967 flags |= MGMT_ADV_FLAG_CONNECTABLE;
6968 flags |= MGMT_ADV_FLAG_DISCOV;
6969 flags |= MGMT_ADV_FLAG_LIMITED_DISCOV;
6970 flags |= MGMT_ADV_FLAG_MANAGED_FLAGS;
6971
6972 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID)
6973 flags |= MGMT_ADV_FLAG_TX_POWER;
6974
6975 return flags;
6976}
6977
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006978static int read_adv_features(struct sock *sk, struct hci_dev *hdev,
6979 void *data, u16 data_len)
6980{
6981 struct mgmt_rp_read_adv_features *rp;
6982 size_t rp_len;
Florian Grandel286e0c82015-06-18 03:16:38 +02006983 int err, i;
Arman Uguray24b4f382015-03-23 15:57:12 -07006984 bool instance;
Florian Grandel286e0c82015-06-18 03:16:38 +02006985 struct adv_info *adv_instance;
Arman Uguray089fa8c2015-03-25 18:53:45 -07006986 u32 supported_flags;
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006987
6988 BT_DBG("%s", hdev->name);
6989
Arman Uguray089fa8c2015-03-25 18:53:45 -07006990 if (!lmp_le_capable(hdev))
6991 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
6992 MGMT_STATUS_REJECTED);
6993
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006994 hci_dev_lock(hdev);
6995
6996 rp_len = sizeof(*rp);
Arman Uguray24b4f382015-03-23 15:57:12 -07006997
Arman Uguray24b4f382015-03-23 15:57:12 -07006998 instance = hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE);
6999 if (instance)
Florian Grandel286e0c82015-06-18 03:16:38 +02007000 rp_len += hdev->adv_instance_cnt;
Arman Uguray24b4f382015-03-23 15:57:12 -07007001
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007002 rp = kmalloc(rp_len, GFP_ATOMIC);
7003 if (!rp) {
7004 hci_dev_unlock(hdev);
7005 return -ENOMEM;
7006 }
7007
Arman Uguray089fa8c2015-03-25 18:53:45 -07007008 supported_flags = get_supported_adv_flags(hdev);
7009
7010 rp->supported_flags = cpu_to_le32(supported_flags);
Marcel Holtmanndc5d82a2015-03-19 17:22:25 -07007011 rp->max_adv_data_len = HCI_MAX_AD_LENGTH;
7012 rp->max_scan_rsp_len = HCI_MAX_AD_LENGTH;
Florian Grandeld2609b32015-06-18 03:16:34 +02007013 rp->max_instances = HCI_MAX_ADV_INSTANCES;
Arman Uguray24b4f382015-03-23 15:57:12 -07007014
Arman Uguray24b4f382015-03-23 15:57:12 -07007015 if (instance) {
Florian Grandel286e0c82015-06-18 03:16:38 +02007016 i = 0;
7017 list_for_each_entry(adv_instance, &hdev->adv_instances, list) {
7018 if (i >= hdev->adv_instance_cnt)
7019 break;
7020
7021 rp->instance[i] = adv_instance->instance;
7022 i++;
7023 }
7024 rp->num_instances = hdev->adv_instance_cnt;
Arman Uguray24b4f382015-03-23 15:57:12 -07007025 } else {
7026 rp->num_instances = 0;
7027 }
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007028
7029 hci_dev_unlock(hdev);
7030
7031 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
7032 MGMT_STATUS_SUCCESS, rp, rp_len);
7033
7034 kfree(rp);
7035
7036 return err;
7037}
7038
Arman Uguray4117ed72015-03-23 15:57:14 -07007039static bool tlv_data_is_valid(struct hci_dev *hdev, u32 adv_flags, u8 *data,
Arman Ugurayb44133f2015-03-25 18:53:41 -07007040 u8 len, bool is_adv_data)
Arman Uguray24b4f382015-03-23 15:57:12 -07007041{
Arman Uguray4117ed72015-03-23 15:57:14 -07007042 u8 max_len = HCI_MAX_AD_LENGTH;
Arman Uguray24b4f382015-03-23 15:57:12 -07007043 int i, cur_len;
Arman Ugurayb44133f2015-03-25 18:53:41 -07007044 bool flags_managed = false;
Arman Uguray5507e352015-03-25 18:53:44 -07007045 bool tx_power_managed = false;
Arman Uguray67e0c0c2015-03-25 18:53:43 -07007046 u32 flags_params = MGMT_ADV_FLAG_DISCOV | MGMT_ADV_FLAG_LIMITED_DISCOV |
7047 MGMT_ADV_FLAG_MANAGED_FLAGS;
Arman Uguray24b4f382015-03-23 15:57:12 -07007048
Arman Uguray807ec772015-03-25 18:53:42 -07007049 if (is_adv_data && (adv_flags & flags_params)) {
Arman Ugurayb44133f2015-03-25 18:53:41 -07007050 flags_managed = true;
7051 max_len -= 3;
7052 }
Arman Uguray24b4f382015-03-23 15:57:12 -07007053
Arman Uguray5507e352015-03-25 18:53:44 -07007054 if (is_adv_data && (adv_flags & MGMT_ADV_FLAG_TX_POWER)) {
7055 tx_power_managed = true;
7056 max_len -= 3;
7057 }
7058
Arman Uguray4117ed72015-03-23 15:57:14 -07007059 if (len > max_len)
Arman Uguray24b4f382015-03-23 15:57:12 -07007060 return false;
7061
Arman Uguray4117ed72015-03-23 15:57:14 -07007062 /* Make sure that the data is correctly formatted. */
7063 for (i = 0, cur_len = 0; i < len; i += (cur_len + 1)) {
7064 cur_len = data[i];
Arman Uguray24b4f382015-03-23 15:57:12 -07007065
Arman Ugurayb44133f2015-03-25 18:53:41 -07007066 if (flags_managed && data[i + 1] == EIR_FLAGS)
7067 return false;
7068
Arman Uguray5507e352015-03-25 18:53:44 -07007069 if (tx_power_managed && data[i + 1] == EIR_TX_POWER)
7070 return false;
7071
Arman Uguray24b4f382015-03-23 15:57:12 -07007072 /* If the current field length would exceed the total data
7073 * length, then it's invalid.
7074 */
Arman Uguray4117ed72015-03-23 15:57:14 -07007075 if (i + cur_len >= len)
Arman Uguray24b4f382015-03-23 15:57:12 -07007076 return false;
7077 }
7078
7079 return true;
7080}
7081
Arman Uguray24b4f382015-03-23 15:57:12 -07007082static void add_advertising_complete(struct hci_dev *hdev, u8 status,
7083 u16 opcode)
7084{
7085 struct mgmt_pending_cmd *cmd;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007086 struct mgmt_cp_add_advertising *cp;
Arman Uguray24b4f382015-03-23 15:57:12 -07007087 struct mgmt_rp_add_advertising rp;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007088 struct adv_info *adv_instance, *n;
7089 u8 instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007090
7091 BT_DBG("status %d", status);
7092
7093 hci_dev_lock(hdev);
7094
7095 cmd = pending_find(MGMT_OP_ADD_ADVERTISING, hdev);
7096
Florian Grandelfffd38b2015-06-18 03:16:47 +02007097 if (status)
Arman Uguray24b4f382015-03-23 15:57:12 -07007098 hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
Florian Grandelfffd38b2015-06-18 03:16:47 +02007099
7100 list_for_each_entry_safe(adv_instance, n, &hdev->adv_instances, list) {
7101 if (!adv_instance->pending)
7102 continue;
7103
7104 if (!status) {
7105 adv_instance->pending = false;
7106 continue;
7107 }
7108
7109 instance = adv_instance->instance;
7110
7111 if (hdev->cur_adv_instance == instance)
7112 cancel_adv_timeout(hdev);
7113
7114 hci_remove_adv_instance(hdev, instance);
7115 advertising_removed(cmd ? cmd->sk : NULL, hdev, instance);
Arman Uguray24b4f382015-03-23 15:57:12 -07007116 }
7117
7118 if (!cmd)
7119 goto unlock;
7120
Florian Grandelfffd38b2015-06-18 03:16:47 +02007121 cp = cmd->param;
7122 rp.instance = cp->instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007123
7124 if (status)
7125 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
7126 mgmt_status(status));
7127 else
7128 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
7129 mgmt_status(status), &rp, sizeof(rp));
7130
7131 mgmt_pending_remove(cmd);
7132
7133unlock:
7134 hci_dev_unlock(hdev);
7135}
7136
Florian Grandel5d900e42015-06-18 03:16:35 +02007137void mgmt_adv_timeout_expired(struct hci_dev *hdev)
Arman Uguray912098a2015-03-23 15:57:15 -07007138{
Florian Grandel847818d2015-06-18 03:16:46 +02007139 u8 instance;
7140 struct hci_request req;
7141
Florian Grandel5d900e42015-06-18 03:16:35 +02007142 hdev->adv_instance_timeout = 0;
Arman Uguray912098a2015-03-23 15:57:15 -07007143
Florian Grandel847818d2015-06-18 03:16:46 +02007144 instance = get_current_adv_instance(hdev);
7145 if (instance == 0x00)
7146 return;
7147
Arman Uguray912098a2015-03-23 15:57:15 -07007148 hci_dev_lock(hdev);
Florian Grandel847818d2015-06-18 03:16:46 +02007149 hci_req_init(&req, hdev);
7150
7151 clear_adv_instance(hdev, &req, instance, false);
7152
7153 if (list_empty(&hdev->adv_instances))
7154 disable_advertising(&req);
7155
7156 if (!skb_queue_empty(&req.cmd_q))
7157 hci_req_run(&req, NULL);
7158
Arman Uguray912098a2015-03-23 15:57:15 -07007159 hci_dev_unlock(hdev);
7160}
7161
Arman Uguray24b4f382015-03-23 15:57:12 -07007162static int add_advertising(struct sock *sk, struct hci_dev *hdev,
7163 void *data, u16 data_len)
7164{
7165 struct mgmt_cp_add_advertising *cp = data;
7166 struct mgmt_rp_add_advertising rp;
7167 u32 flags;
Arman Uguray089fa8c2015-03-25 18:53:45 -07007168 u32 supported_flags;
Arman Uguray24b4f382015-03-23 15:57:12 -07007169 u8 status;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007170 u16 timeout, duration;
7171 unsigned int prev_instance_cnt = hdev->adv_instance_cnt;
7172 u8 schedule_instance = 0;
7173 struct adv_info *next_instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007174 int err;
7175 struct mgmt_pending_cmd *cmd;
7176 struct hci_request req;
7177
7178 BT_DBG("%s", hdev->name);
7179
7180 status = mgmt_le_support(hdev);
7181 if (status)
7182 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7183 status);
7184
7185 flags = __le32_to_cpu(cp->flags);
Arman Uguray912098a2015-03-23 15:57:15 -07007186 timeout = __le16_to_cpu(cp->timeout);
Florian Grandelfffd38b2015-06-18 03:16:47 +02007187 duration = __le16_to_cpu(cp->duration);
Arman Uguray24b4f382015-03-23 15:57:12 -07007188
Florian Grandelfffd38b2015-06-18 03:16:47 +02007189 /* The current implementation only supports a subset of the specified
7190 * flags.
Arman Uguray089fa8c2015-03-25 18:53:45 -07007191 */
7192 supported_flags = get_supported_adv_flags(hdev);
Florian Grandelfffd38b2015-06-18 03:16:47 +02007193 if (flags & ~supported_flags)
Arman Uguray24b4f382015-03-23 15:57:12 -07007194 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7195 MGMT_STATUS_INVALID_PARAMS);
7196
7197 hci_dev_lock(hdev);
7198
Arman Uguray912098a2015-03-23 15:57:15 -07007199 if (timeout && !hdev_is_powered(hdev)) {
7200 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7201 MGMT_STATUS_REJECTED);
7202 goto unlock;
7203 }
7204
Arman Uguray24b4f382015-03-23 15:57:12 -07007205 if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
Arman Ugurayda9293352015-03-23 15:57:13 -07007206 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
Arman Uguray24b4f382015-03-23 15:57:12 -07007207 pending_find(MGMT_OP_SET_LE, hdev)) {
7208 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7209 MGMT_STATUS_BUSY);
7210 goto unlock;
7211 }
7212
Arman Ugurayb44133f2015-03-25 18:53:41 -07007213 if (!tlv_data_is_valid(hdev, flags, cp->data, cp->adv_data_len, true) ||
Arman Uguray4117ed72015-03-23 15:57:14 -07007214 !tlv_data_is_valid(hdev, flags, cp->data + cp->adv_data_len,
Arman Ugurayb44133f2015-03-25 18:53:41 -07007215 cp->scan_rsp_len, false)) {
Arman Uguray24b4f382015-03-23 15:57:12 -07007216 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7217 MGMT_STATUS_INVALID_PARAMS);
7218 goto unlock;
7219 }
7220
Florian Grandelfffd38b2015-06-18 03:16:47 +02007221 err = hci_add_adv_instance(hdev, cp->instance, flags,
7222 cp->adv_data_len, cp->data,
7223 cp->scan_rsp_len,
7224 cp->data + cp->adv_data_len,
7225 timeout, duration);
7226 if (err < 0) {
7227 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7228 MGMT_STATUS_FAILED);
7229 goto unlock;
7230 }
Arman Uguray24b4f382015-03-23 15:57:12 -07007231
Florian Grandelfffd38b2015-06-18 03:16:47 +02007232 /* Only trigger an advertising added event if a new instance was
7233 * actually added.
7234 */
7235 if (hdev->adv_instance_cnt > prev_instance_cnt)
7236 advertising_added(sk, hdev, cp->instance);
Arman Uguray24b4f382015-03-23 15:57:12 -07007237
Florian Grandelfffd38b2015-06-18 03:16:47 +02007238 hci_dev_set_flag(hdev, HCI_ADVERTISING_INSTANCE);
Arman Uguray24b4f382015-03-23 15:57:12 -07007239
Florian Grandelfffd38b2015-06-18 03:16:47 +02007240 if (hdev->cur_adv_instance == cp->instance) {
7241 /* If the currently advertised instance is being changed then
7242 * cancel the current advertising and schedule the next
7243 * instance. If there is only one instance then the overridden
7244 * advertising data will be visible right away.
7245 */
7246 cancel_adv_timeout(hdev);
Arman Uguray912098a2015-03-23 15:57:15 -07007247
Florian Grandelfffd38b2015-06-18 03:16:47 +02007248 next_instance = hci_get_next_instance(hdev, cp->instance);
7249 if (next_instance)
7250 schedule_instance = next_instance->instance;
7251 } else if (!hdev->adv_instance_timeout) {
7252 /* Immediately advertise the new instance if no other
7253 * instance is currently being advertised.
7254 */
7255 schedule_instance = cp->instance;
7256 }
Arman Uguray912098a2015-03-23 15:57:15 -07007257
Florian Grandelfffd38b2015-06-18 03:16:47 +02007258 /* If the HCI_ADVERTISING flag is set or the device isn't powered or
7259 * there is no instance to be advertised then we have no HCI
7260 * communication to make. Simply return.
Arman Uguray24b4f382015-03-23 15:57:12 -07007261 */
7262 if (!hdev_is_powered(hdev) ||
Florian Grandelfffd38b2015-06-18 03:16:47 +02007263 hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
7264 !schedule_instance) {
7265 rp.instance = cp->instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007266 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7267 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
7268 goto unlock;
7269 }
7270
7271 /* We're good to go, update advertising data, parameters, and start
7272 * advertising.
7273 */
7274 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_ADVERTISING, hdev, data,
7275 data_len);
7276 if (!cmd) {
7277 err = -ENOMEM;
7278 goto unlock;
7279 }
7280
7281 hci_req_init(&req, hdev);
7282
Florian Grandelfffd38b2015-06-18 03:16:47 +02007283 err = schedule_adv_instance(&req, schedule_instance, true);
Arman Uguray24b4f382015-03-23 15:57:12 -07007284
Florian Grandelfffd38b2015-06-18 03:16:47 +02007285 if (!err)
7286 err = hci_req_run(&req, add_advertising_complete);
7287
Arman Uguray24b4f382015-03-23 15:57:12 -07007288 if (err < 0)
7289 mgmt_pending_remove(cmd);
7290
7291unlock:
7292 hci_dev_unlock(hdev);
7293
7294 return err;
7295}
7296
Arman Ugurayda9293352015-03-23 15:57:13 -07007297static void remove_advertising_complete(struct hci_dev *hdev, u8 status,
7298 u16 opcode)
7299{
7300 struct mgmt_pending_cmd *cmd;
Florian Grandel01948332015-06-18 03:16:48 +02007301 struct mgmt_cp_remove_advertising *cp;
Arman Ugurayda9293352015-03-23 15:57:13 -07007302 struct mgmt_rp_remove_advertising rp;
7303
7304 BT_DBG("status %d", status);
7305
7306 hci_dev_lock(hdev);
7307
7308 /* A failure status here only means that we failed to disable
7309 * advertising. Otherwise, the advertising instance has been removed,
7310 * so report success.
7311 */
7312 cmd = pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev);
7313 if (!cmd)
7314 goto unlock;
7315
Florian Grandel01948332015-06-18 03:16:48 +02007316 cp = cmd->param;
7317 rp.instance = cp->instance;
Arman Ugurayda9293352015-03-23 15:57:13 -07007318
7319 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, MGMT_STATUS_SUCCESS,
7320 &rp, sizeof(rp));
7321 mgmt_pending_remove(cmd);
7322
7323unlock:
7324 hci_dev_unlock(hdev);
7325}
7326
7327static int remove_advertising(struct sock *sk, struct hci_dev *hdev,
7328 void *data, u16 data_len)
7329{
7330 struct mgmt_cp_remove_advertising *cp = data;
7331 struct mgmt_rp_remove_advertising rp;
Arman Ugurayda9293352015-03-23 15:57:13 -07007332 struct mgmt_pending_cmd *cmd;
7333 struct hci_request req;
Johan Hedberg952497b2015-06-18 21:05:31 +03007334 int err;
Arman Ugurayda9293352015-03-23 15:57:13 -07007335
7336 BT_DBG("%s", hdev->name);
7337
Arman Ugurayda9293352015-03-23 15:57:13 -07007338 hci_dev_lock(hdev);
7339
Johan Hedberg952497b2015-06-18 21:05:31 +03007340 if (cp->instance && !hci_find_adv_instance(hdev, cp->instance)) {
Florian Grandel01948332015-06-18 03:16:48 +02007341 err = mgmt_cmd_status(sk, hdev->id,
7342 MGMT_OP_REMOVE_ADVERTISING,
7343 MGMT_STATUS_INVALID_PARAMS);
7344 goto unlock;
7345 }
7346
Arman Ugurayda9293352015-03-23 15:57:13 -07007347 if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
7348 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
7349 pending_find(MGMT_OP_SET_LE, hdev)) {
7350 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
7351 MGMT_STATUS_BUSY);
7352 goto unlock;
7353 }
7354
7355 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE)) {
7356 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
7357 MGMT_STATUS_INVALID_PARAMS);
7358 goto unlock;
7359 }
7360
Florian Grandel01948332015-06-18 03:16:48 +02007361 hci_req_init(&req, hdev);
Arman Uguray912098a2015-03-23 15:57:15 -07007362
Florian Grandel01948332015-06-18 03:16:48 +02007363 clear_adv_instance(hdev, &req, cp->instance, true);
Arman Ugurayda9293352015-03-23 15:57:13 -07007364
Florian Grandel01948332015-06-18 03:16:48 +02007365 if (list_empty(&hdev->adv_instances))
7366 disable_advertising(&req);
Arman Ugurayda9293352015-03-23 15:57:13 -07007367
Florian Grandel01948332015-06-18 03:16:48 +02007368 /* If no HCI commands have been collected so far or the HCI_ADVERTISING
7369 * flag is set or the device isn't powered then we have no HCI
7370 * communication to make. Simply return.
Arman Ugurayda9293352015-03-23 15:57:13 -07007371 */
Florian Grandel01948332015-06-18 03:16:48 +02007372 if (skb_queue_empty(&req.cmd_q) ||
7373 !hdev_is_powered(hdev) ||
Arman Ugurayda9293352015-03-23 15:57:13 -07007374 hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
Florian Grandel01948332015-06-18 03:16:48 +02007375 rp.instance = cp->instance;
Arman Ugurayda9293352015-03-23 15:57:13 -07007376 err = mgmt_cmd_complete(sk, hdev->id,
7377 MGMT_OP_REMOVE_ADVERTISING,
7378 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
7379 goto unlock;
7380 }
7381
7382 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_ADVERTISING, hdev, data,
7383 data_len);
7384 if (!cmd) {
7385 err = -ENOMEM;
7386 goto unlock;
7387 }
7388
Arman Ugurayda9293352015-03-23 15:57:13 -07007389 err = hci_req_run(&req, remove_advertising_complete);
7390 if (err < 0)
7391 mgmt_pending_remove(cmd);
7392
7393unlock:
7394 hci_dev_unlock(hdev);
7395
7396 return err;
7397}
7398
Johan Hedberg6d785aa32015-03-06 21:08:51 +02007399static const struct hci_mgmt_handler mgmt_handlers[] = {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02007400 { NULL }, /* 0x0000 (no command) */
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007401 { read_version, MGMT_READ_VERSION_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007402 HCI_MGMT_NO_HDEV |
7403 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007404 { read_commands, MGMT_READ_COMMANDS_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007405 HCI_MGMT_NO_HDEV |
7406 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007407 { read_index_list, MGMT_READ_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007408 HCI_MGMT_NO_HDEV |
7409 HCI_MGMT_UNTRUSTED },
7410 { read_controller_info, MGMT_READ_INFO_SIZE,
7411 HCI_MGMT_UNTRUSTED },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007412 { set_powered, MGMT_SETTING_SIZE },
7413 { set_discoverable, MGMT_SET_DISCOVERABLE_SIZE },
7414 { set_connectable, MGMT_SETTING_SIZE },
7415 { set_fast_connectable, MGMT_SETTING_SIZE },
7416 { set_bondable, MGMT_SETTING_SIZE },
7417 { set_link_security, MGMT_SETTING_SIZE },
7418 { set_ssp, MGMT_SETTING_SIZE },
7419 { set_hs, MGMT_SETTING_SIZE },
7420 { set_le, MGMT_SETTING_SIZE },
7421 { set_dev_class, MGMT_SET_DEV_CLASS_SIZE },
7422 { set_local_name, MGMT_SET_LOCAL_NAME_SIZE },
7423 { add_uuid, MGMT_ADD_UUID_SIZE },
7424 { remove_uuid, MGMT_REMOVE_UUID_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007425 { load_link_keys, MGMT_LOAD_LINK_KEYS_SIZE,
7426 HCI_MGMT_VAR_LEN },
7427 { load_long_term_keys, MGMT_LOAD_LONG_TERM_KEYS_SIZE,
7428 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007429 { disconnect, MGMT_DISCONNECT_SIZE },
7430 { get_connections, MGMT_GET_CONNECTIONS_SIZE },
7431 { pin_code_reply, MGMT_PIN_CODE_REPLY_SIZE },
7432 { pin_code_neg_reply, MGMT_PIN_CODE_NEG_REPLY_SIZE },
7433 { set_io_capability, MGMT_SET_IO_CAPABILITY_SIZE },
7434 { pair_device, MGMT_PAIR_DEVICE_SIZE },
7435 { cancel_pair_device, MGMT_CANCEL_PAIR_DEVICE_SIZE },
7436 { unpair_device, MGMT_UNPAIR_DEVICE_SIZE },
7437 { user_confirm_reply, MGMT_USER_CONFIRM_REPLY_SIZE },
7438 { user_confirm_neg_reply, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
7439 { user_passkey_reply, MGMT_USER_PASSKEY_REPLY_SIZE },
7440 { user_passkey_neg_reply, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007441 { read_local_oob_data, MGMT_READ_LOCAL_OOB_DATA_SIZE },
7442 { add_remote_oob_data, MGMT_ADD_REMOTE_OOB_DATA_SIZE,
7443 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007444 { remove_remote_oob_data, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
7445 { start_discovery, MGMT_START_DISCOVERY_SIZE },
7446 { stop_discovery, MGMT_STOP_DISCOVERY_SIZE },
7447 { confirm_name, MGMT_CONFIRM_NAME_SIZE },
7448 { block_device, MGMT_BLOCK_DEVICE_SIZE },
7449 { unblock_device, MGMT_UNBLOCK_DEVICE_SIZE },
7450 { set_device_id, MGMT_SET_DEVICE_ID_SIZE },
7451 { set_advertising, MGMT_SETTING_SIZE },
7452 { set_bredr, MGMT_SETTING_SIZE },
7453 { set_static_address, MGMT_SET_STATIC_ADDRESS_SIZE },
7454 { set_scan_params, MGMT_SET_SCAN_PARAMS_SIZE },
7455 { set_secure_conn, MGMT_SETTING_SIZE },
7456 { set_debug_keys, MGMT_SETTING_SIZE },
7457 { set_privacy, MGMT_SET_PRIVACY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007458 { load_irks, MGMT_LOAD_IRKS_SIZE,
7459 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07007460 { get_conn_info, MGMT_GET_CONN_INFO_SIZE },
7461 { get_clock_info, MGMT_GET_CLOCK_INFO_SIZE },
7462 { add_device, MGMT_ADD_DEVICE_SIZE },
7463 { remove_device, MGMT_REMOVE_DEVICE_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007464 { load_conn_param, MGMT_LOAD_CONN_PARAM_SIZE,
7465 HCI_MGMT_VAR_LEN },
7466 { read_unconf_index_list, MGMT_READ_UNCONF_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007467 HCI_MGMT_NO_HDEV |
7468 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007469 { read_config_info, MGMT_READ_CONFIG_INFO_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007470 HCI_MGMT_UNCONFIGURED |
7471 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02007472 { set_external_config, MGMT_SET_EXTERNAL_CONFIG_SIZE,
7473 HCI_MGMT_UNCONFIGURED },
7474 { set_public_address, MGMT_SET_PUBLIC_ADDRESS_SIZE,
7475 HCI_MGMT_UNCONFIGURED },
7476 { start_service_discovery, MGMT_START_SERVICE_DISCOVERY_SIZE,
7477 HCI_MGMT_VAR_LEN },
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007478 { read_local_oob_ext_data, MGMT_READ_LOCAL_OOB_EXT_DATA_SIZE },
Marcel Holtmann96f14742015-03-14 19:27:57 -07007479 { read_ext_index_list, MGMT_READ_EXT_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07007480 HCI_MGMT_NO_HDEV |
7481 HCI_MGMT_UNTRUSTED },
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007482 { read_adv_features, MGMT_READ_ADV_FEATURES_SIZE },
Arman Uguray24b4f382015-03-23 15:57:12 -07007483 { add_advertising, MGMT_ADD_ADVERTISING_SIZE,
7484 HCI_MGMT_VAR_LEN },
Arman Ugurayda9293352015-03-23 15:57:13 -07007485 { remove_advertising, MGMT_REMOVE_ADVERTISING_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02007486};
7487
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07007488void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02007489{
Marcel Holtmannced85542015-03-14 19:27:56 -07007490 struct mgmt_ev_ext_index ev;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03007491
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02007492 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
7493 return;
7494
Marcel Holtmannf9207332015-03-14 19:27:55 -07007495 switch (hdev->dev_type) {
7496 case HCI_BREDR:
7497 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
7498 mgmt_index_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev,
7499 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007500 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007501 } else {
7502 mgmt_index_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0,
7503 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007504 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007505 }
7506 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07007507 case HCI_AMP:
7508 ev.type = 0x02;
7509 break;
7510 default:
7511 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007512 }
Marcel Holtmannced85542015-03-14 19:27:56 -07007513
7514 ev.bus = hdev->bus;
7515
7516 mgmt_index_event(MGMT_EV_EXT_INDEX_ADDED, hdev, &ev, sizeof(ev),
7517 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02007518}
7519
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07007520void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02007521{
Marcel Holtmannced85542015-03-14 19:27:56 -07007522 struct mgmt_ev_ext_index ev;
Johan Hedberg5f159032012-03-02 03:13:19 +02007523 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02007524
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02007525 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
7526 return;
7527
Marcel Holtmannf9207332015-03-14 19:27:55 -07007528 switch (hdev->dev_type) {
7529 case HCI_BREDR:
7530 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02007531
Marcel Holtmannf9207332015-03-14 19:27:55 -07007532 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
7533 mgmt_index_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev,
7534 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007535 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007536 } else {
7537 mgmt_index_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0,
7538 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07007539 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007540 }
7541 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07007542 case HCI_AMP:
7543 ev.type = 0x02;
7544 break;
7545 default:
7546 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07007547 }
Marcel Holtmannced85542015-03-14 19:27:56 -07007548
7549 ev.bus = hdev->bus;
7550
7551 mgmt_index_event(MGMT_EV_EXT_INDEX_REMOVED, hdev, &ev, sizeof(ev),
7552 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02007553}
7554
Andre Guedes6046dc32014-02-26 20:21:51 -03007555/* This function requires the caller holds hdev->lock */
Johan Hedberg2cf22212014-12-19 22:26:00 +02007556static void restart_le_actions(struct hci_request *req)
Andre Guedes6046dc32014-02-26 20:21:51 -03007557{
Johan Hedberg2cf22212014-12-19 22:26:00 +02007558 struct hci_dev *hdev = req->hdev;
Andre Guedes6046dc32014-02-26 20:21:51 -03007559 struct hci_conn_params *p;
7560
7561 list_for_each_entry(p, &hdev->le_conn_params, list) {
Johan Hedbergd7347f32014-07-04 12:37:23 +03007562 /* Needed for AUTO_OFF case where might not "really"
7563 * have been powered off.
7564 */
7565 list_del_init(&p->action);
7566
7567 switch (p->auto_connect) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02007568 case HCI_AUTO_CONN_DIRECT:
Johan Hedbergd7347f32014-07-04 12:37:23 +03007569 case HCI_AUTO_CONN_ALWAYS:
7570 list_add(&p->action, &hdev->pend_le_conns);
7571 break;
7572 case HCI_AUTO_CONN_REPORT:
7573 list_add(&p->action, &hdev->pend_le_reports);
7574 break;
7575 default:
7576 break;
Marcel Holtmannc83ed192014-07-01 19:28:24 +02007577 }
Andre Guedes6046dc32014-02-26 20:21:51 -03007578 }
Marcel Holtmannc83ed192014-07-01 19:28:24 +02007579
Johan Hedberg2cf22212014-12-19 22:26:00 +02007580 __hci_update_background_scan(req);
Andre Guedes6046dc32014-02-26 20:21:51 -03007581}
7582
Marcel Holtmann1904a852015-01-11 13:50:44 -08007583static void powered_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg229ab392013-03-15 17:06:53 -05007584{
7585 struct cmd_lookup match = { NULL, hdev };
7586
7587 BT_DBG("status 0x%02x", status);
7588
Marcel Holtmann162a3ba2015-01-14 15:43:11 -08007589 if (!status) {
7590 /* Register the available SMP channels (BR/EDR and LE) only
7591 * when successfully powering on the controller. This late
7592 * registration is required so that LE SMP can clearly
7593 * decide if the public address or static address is used.
7594 */
7595 smp_register(hdev);
7596 }
7597
Johan Hedberg229ab392013-03-15 17:06:53 -05007598 hci_dev_lock(hdev);
7599
7600 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
7601
7602 new_settings(hdev, match.sk);
7603
7604 hci_dev_unlock(hdev);
7605
7606 if (match.sk)
7607 sock_put(match.sk);
7608}
7609
Johan Hedberg70da6242013-03-15 17:06:51 -05007610static int powered_update_hci(struct hci_dev *hdev)
7611{
Johan Hedberg890ea892013-03-15 17:06:52 -05007612 struct hci_request req;
Florian Grandel320b3bf2015-06-18 03:16:49 +02007613 struct adv_info *adv_instance;
Johan Hedberg70da6242013-03-15 17:06:51 -05007614 u8 link_sec;
7615
Johan Hedberg890ea892013-03-15 17:06:52 -05007616 hci_req_init(&req, hdev);
7617
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007618 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED) &&
Johan Hedberg70da6242013-03-15 17:06:51 -05007619 !lmp_host_ssp_capable(hdev)) {
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007620 u8 mode = 0x01;
Johan Hedberg70da6242013-03-15 17:06:51 -05007621
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007622 hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);
Johan Hedberg70da6242013-03-15 17:06:51 -05007623
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007624 if (bredr_sc_enabled(hdev) && !lmp_host_sc_capable(hdev)) {
7625 u8 support = 0x01;
7626
7627 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT,
7628 sizeof(support), &support);
7629 }
Johan Hedbergec6f99b2014-12-12 13:30:11 +02007630 }
7631
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007632 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
Johan Hedbergc73eee92013-04-19 18:35:21 +03007633 lmp_bredr_capable(hdev)) {
Johan Hedberg70da6242013-03-15 17:06:51 -05007634 struct hci_cp_write_le_host_supported cp;
7635
Marcel Holtmann32226e42014-07-24 20:04:16 +02007636 cp.le = 0x01;
7637 cp.simul = 0x00;
Johan Hedberg70da6242013-03-15 17:06:51 -05007638
7639 /* Check first if we already have the right
7640 * host state (host features set)
7641 */
7642 if (cp.le != lmp_host_le_capable(hdev) ||
7643 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05007644 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
7645 sizeof(cp), &cp);
Johan Hedberg70da6242013-03-15 17:06:51 -05007646 }
7647
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07007648 if (lmp_le_capable(hdev)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07007649 /* Make sure the controller has a good default for
7650 * advertising data. This also applies to the case
7651 * where BR/EDR was toggled during the AUTO_OFF phase.
7652 */
Florian Grandel320b3bf2015-06-18 03:16:49 +02007653 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
7654 (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
7655 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))) {
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07007656 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07007657 update_scan_rsp_data(&req);
7658 }
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07007659
Florian Grandel320b3bf2015-06-18 03:16:49 +02007660 if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
7661 hdev->cur_adv_instance == 0x00 &&
7662 !list_empty(&hdev->adv_instances)) {
7663 adv_instance = list_first_entry(&hdev->adv_instances,
7664 struct adv_info, list);
7665 hdev->cur_adv_instance = adv_instance->instance;
7666 }
7667
7668 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07007669 enable_advertising(&req);
Florian Grandel320b3bf2015-06-18 03:16:49 +02007670 else if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
7671 hdev->cur_adv_instance)
7672 schedule_adv_instance(&req, hdev->cur_adv_instance,
7673 true);
Johan Hedberg2cf22212014-12-19 22:26:00 +02007674
7675 restart_le_actions(&req);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03007676 }
7677
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007678 link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg70da6242013-03-15 17:06:51 -05007679 if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05007680 hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
7681 sizeof(link_sec), &link_sec);
Johan Hedberg70da6242013-03-15 17:06:51 -05007682
7683 if (lmp_bredr_capable(hdev)) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007684 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
Johan Hedberg406ef2a2015-03-10 20:14:27 +02007685 write_fast_connectable(&req, true);
7686 else
7687 write_fast_connectable(&req, false);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02007688 __hci_update_page_scan(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05007689 update_class(&req);
Johan Hedberg13928972013-03-15 17:07:00 -05007690 update_name(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05007691 update_eir(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05007692 }
7693
Johan Hedberg229ab392013-03-15 17:06:53 -05007694 return hci_req_run(&req, powered_complete);
Johan Hedberg70da6242013-03-15 17:06:51 -05007695}
7696
Johan Hedberg744cf192011-11-08 20:40:14 +02007697int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02007698{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02007699 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg98459042014-12-12 11:15:21 +02007700 u8 status, zero_cod[] = { 0, 0, 0 };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02007701 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02007702
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007703 if (!hci_dev_test_flag(hdev, HCI_MGMT))
Johan Hedberg5e5282b2012-02-21 16:01:30 +02007704 return 0;
7705
Johan Hedberg5e5282b2012-02-21 16:01:30 +02007706 if (powered) {
Johan Hedberg229ab392013-03-15 17:06:53 -05007707 if (powered_update_hci(hdev) == 0)
7708 return 0;
Johan Hedbergfe038882013-01-16 16:15:34 +02007709
Johan Hedberg229ab392013-03-15 17:06:53 -05007710 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
7711 &match);
7712 goto new_settings;
Johan Hedbergb24752f2011-11-03 14:40:33 +02007713 }
7714
Johan Hedberg229ab392013-03-15 17:06:53 -05007715 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
Johan Hedberg98459042014-12-12 11:15:21 +02007716
7717 /* If the power off is because of hdev unregistration let
7718 * use the appropriate INVALID_INDEX status. Otherwise use
7719 * NOT_POWERED. We cover both scenarios here since later in
7720 * mgmt_index_removed() any hci_conn callbacks will have already
7721 * been triggered, potentially causing misleading DISCONNECTED
7722 * status responses.
7723 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007724 if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
Johan Hedberg98459042014-12-12 11:15:21 +02007725 status = MGMT_STATUS_INVALID_INDEX;
7726 else
7727 status = MGMT_STATUS_NOT_POWERED;
7728
7729 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedberg229ab392013-03-15 17:06:53 -05007730
7731 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
Marcel Holtmannf6b77122015-03-14 19:28:05 -07007732 mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
7733 zero_cod, sizeof(zero_cod), NULL);
Johan Hedberg229ab392013-03-15 17:06:53 -05007734
7735new_settings:
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02007736 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02007737
7738 if (match.sk)
7739 sock_put(match.sk);
7740
Johan Hedberg7bb895d2012-02-17 01:20:00 +02007741 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02007742}
Johan Hedberg73f22f62010-12-29 16:00:25 +02007743
Marcel Holtmann3eec7052013-10-06 23:55:46 -07007744void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03007745{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007746 struct mgmt_pending_cmd *cmd;
Johan Hedberg96570ff2013-05-29 09:51:29 +03007747 u8 status;
7748
Johan Hedberg333ae952015-03-17 13:48:47 +02007749 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007750 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07007751 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03007752
7753 if (err == -ERFKILL)
7754 status = MGMT_STATUS_RFKILLED;
7755 else
7756 status = MGMT_STATUS_FAILED;
7757
Johan Hedberga69e8372015-03-06 21:08:53 +02007758 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007759
7760 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007761}
7762
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007763void mgmt_discoverable_timeout(struct hci_dev *hdev)
7764{
7765 struct hci_request req;
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007766
7767 hci_dev_lock(hdev);
7768
7769 /* When discoverable timeout triggers, then just make sure
7770 * the limited discoverable flag is cleared. Even in the case
7771 * of a timeout triggered from general discoverable, it is
7772 * safe to unconditionally clear the flag.
7773 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07007774 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
7775 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007776
7777 hci_req_init(&req, hdev);
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007778 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg4b580612013-10-19 23:38:21 +03007779 u8 scan = SCAN_PAGE;
7780 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
7781 sizeof(scan), &scan);
7782 }
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007783 update_class(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07007784
7785 /* Advertising instances don't use the global discoverable setting, so
7786 * only update AD if advertising was enabled using Set Advertising.
7787 */
7788 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
7789 update_adv_data(&req);
7790
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007791 hci_req_run(&req, NULL);
7792
7793 hdev->discov_timeout = 0;
7794
Johan Hedberg9a43e252013-10-20 19:00:07 +03007795 new_settings(hdev, NULL);
7796
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007797 hci_dev_unlock(hdev);
7798}
7799
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07007800void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
7801 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007802{
Johan Hedberg86742e12011-11-07 23:13:38 +02007803 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007804
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007805 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007806
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007807 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02007808 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03007809 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007810 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03007811 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007812 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007813
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07007814 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007815}
Johan Hedbergf7520542011-01-20 12:34:39 +02007816
Johan Hedbergd7b25452014-05-23 13:19:53 +03007817static u8 mgmt_ltk_type(struct smp_ltk *ltk)
7818{
Johan Hedberg23fb8de2014-05-23 13:15:37 +03007819 switch (ltk->type) {
7820 case SMP_LTK:
7821 case SMP_LTK_SLAVE:
7822 if (ltk->authenticated)
7823 return MGMT_LTK_AUTHENTICATED;
7824 return MGMT_LTK_UNAUTHENTICATED;
7825 case SMP_LTK_P256:
7826 if (ltk->authenticated)
7827 return MGMT_LTK_P256_AUTH;
7828 return MGMT_LTK_P256_UNAUTH;
7829 case SMP_LTK_P256_DEBUG:
7830 return MGMT_LTK_P256_DEBUG;
7831 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03007832
7833 return MGMT_LTK_UNAUTHENTICATED;
7834}
7835
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007836void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007837{
7838 struct mgmt_ev_new_long_term_key ev;
7839
7840 memset(&ev, 0, sizeof(ev));
7841
Marcel Holtmann5192d302014-02-19 17:11:58 -08007842 /* Devices using resolvable or non-resolvable random addresses
Florian Grandelf72186d2015-05-26 03:31:09 +02007843 * without providing an identity resolving key don't require
Marcel Holtmann5192d302014-02-19 17:11:58 -08007844 * to store long term keys. Their addresses will change the
7845 * next time around.
7846 *
7847 * Only when a remote device provides an identity address
7848 * make sure the long term key is stored. If the remote
7849 * identity is known, the long term keys are internally
7850 * mapped to the identity address. So allow static random
7851 * and public addresses here.
7852 */
Johan Hedbergba74b662014-02-19 14:57:45 +02007853 if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
7854 (key->bdaddr.b[5] & 0xc0) != 0xc0)
7855 ev.store_hint = 0x00;
7856 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007857 ev.store_hint = persistent;
Johan Hedbergba74b662014-02-19 14:57:45 +02007858
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007859 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007860 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Johan Hedbergd7b25452014-05-23 13:19:53 +03007861 ev.key.type = mgmt_ltk_type(key);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007862 ev.key.enc_size = key->enc_size;
7863 ev.key.ediv = key->ediv;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08007864 ev.key.rand = key->rand;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007865
Johan Hedberg2ceba532014-06-16 19:25:16 +03007866 if (key->type == SMP_LTK)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007867 ev.key.master = 1;
7868
Johan Hedberg1fc62c52015-06-10 11:11:20 +03007869 /* Make sure we copy only the significant bytes based on the
7870 * encryption key size, and set the rest of the value to zeroes.
7871 */
Jakub Pawlowskicb922052015-08-05 23:16:29 +02007872 memcpy(ev.key.val, key->val, key->enc_size);
Johan Hedberg1fc62c52015-06-10 11:11:20 +03007873 memset(ev.key.val + key->enc_size, 0,
7874 sizeof(ev.key.val) - key->enc_size);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007875
Marcel Holtmann083368f2013-10-15 14:26:29 -07007876 mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007877}
7878
Johan Hedbergcad20c22015-10-12 13:36:19 +02007879void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk, bool persistent)
Johan Hedberg95fbac82014-02-19 15:18:31 +02007880{
7881 struct mgmt_ev_new_irk ev;
7882
7883 memset(&ev, 0, sizeof(ev));
7884
Johan Hedbergcad20c22015-10-12 13:36:19 +02007885 ev.store_hint = persistent;
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08007886
Johan Hedberg95fbac82014-02-19 15:18:31 +02007887 bacpy(&ev.rpa, &irk->rpa);
7888 bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
7889 ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
7890 memcpy(ev.irk.val, irk->val, sizeof(irk->val));
7891
7892 mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
7893}
7894
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007895void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
7896 bool persistent)
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007897{
7898 struct mgmt_ev_new_csrk ev;
7899
7900 memset(&ev, 0, sizeof(ev));
7901
7902 /* Devices using resolvable or non-resolvable random addresses
Florian Grandelf72186d2015-05-26 03:31:09 +02007903 * without providing an identity resolving key don't require
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007904 * to store signature resolving keys. Their addresses will change
7905 * the next time around.
7906 *
7907 * Only when a remote device provides an identity address
7908 * make sure the signature resolving key is stored. So allow
7909 * static random and public addresses here.
7910 */
7911 if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
7912 (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
7913 ev.store_hint = 0x00;
7914 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007915 ev.store_hint = persistent;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007916
7917 bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
7918 ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
Johan Hedberg4cd39282015-02-27 10:11:13 +02007919 ev.key.type = csrk->type;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007920 memcpy(ev.key.val, csrk->val, sizeof(csrk->val));
7921
7922 mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
7923}
7924
Andre Guedesffb5a8272014-07-01 18:10:11 -03007925void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedbergf4869e22014-07-02 17:37:32 +03007926 u8 bdaddr_type, u8 store_hint, u16 min_interval,
7927 u16 max_interval, u16 latency, u16 timeout)
Andre Guedesffb5a8272014-07-01 18:10:11 -03007928{
7929 struct mgmt_ev_new_conn_param ev;
7930
Johan Hedbergc103aea2014-07-02 17:37:34 +03007931 if (!hci_is_identity_address(bdaddr, bdaddr_type))
7932 return;
7933
Andre Guedesffb5a8272014-07-01 18:10:11 -03007934 memset(&ev, 0, sizeof(ev));
7935 bacpy(&ev.addr.bdaddr, bdaddr);
7936 ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
Johan Hedbergf4869e22014-07-02 17:37:32 +03007937 ev.store_hint = store_hint;
Andre Guedesffb5a8272014-07-01 18:10:11 -03007938 ev.min_interval = cpu_to_le16(min_interval);
7939 ev.max_interval = cpu_to_le16(max_interval);
7940 ev.latency = cpu_to_le16(latency);
7941 ev.timeout = cpu_to_le16(timeout);
7942
7943 mgmt_event(MGMT_EV_NEW_CONN_PARAM, hdev, &ev, sizeof(ev), NULL);
7944}
7945
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00007946void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
7947 u32 flags, u8 *name, u8 name_len)
Johan Hedbergf7520542011-01-20 12:34:39 +02007948{
Johan Hedbergb644ba32012-01-17 21:48:47 +02007949 char buf[512];
7950 struct mgmt_ev_device_connected *ev = (void *) buf;
7951 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02007952
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00007953 bacpy(&ev->addr.bdaddr, &conn->dst);
7954 ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02007955
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02007956 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02007957
Alfonso Acostafd45ada2014-10-07 08:44:11 +00007958 /* We must ensure that the EIR Data fields are ordered and
7959 * unique. Keep it simple for now and avoid the problem by not
7960 * adding any BR/EDR data to the LE adv.
7961 */
7962 if (conn->le_adv_data_len > 0) {
7963 memcpy(&ev->eir[eir_len],
7964 conn->le_adv_data, conn->le_adv_data_len);
7965 eir_len = conn->le_adv_data_len;
7966 } else {
7967 if (name_len > 0)
7968 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
7969 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007970
Alfonso Acostaddbea5c2014-10-07 08:44:12 +00007971 if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
Alfonso Acostafd45ada2014-10-07 08:44:11 +00007972 eir_len = eir_append_data(ev->eir, eir_len,
7973 EIR_CLASS_OF_DEV,
7974 conn->dev_class, 3);
7975 }
Johan Hedbergb644ba32012-01-17 21:48:47 +02007976
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02007977 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007978
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07007979 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
7980 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02007981}
7982
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007983static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg8962ee72011-01-20 12:40:27 +02007984{
Johan Hedberg8962ee72011-01-20 12:40:27 +02007985 struct sock **sk = data;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007986
Johan Hedbergf5818c22014-12-05 13:36:02 +02007987 cmd->cmd_complete(cmd, 0);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007988
7989 *sk = cmd->sk;
7990 sock_hold(*sk);
7991
Johan Hedberga664b5b2011-02-19 12:06:02 -03007992 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007993}
7994
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007995static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02007996{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02007997 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02007998 struct mgmt_cp_unpair_device *cp = cmd->param;
Johan Hedberga8a1d192011-11-10 15:54:38 +02007999
Johan Hedbergb1078ad2012-02-09 17:21:16 +02008000 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
8001
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02008002 cmd->cmd_complete(cmd, 0);
Johan Hedberga8a1d192011-11-10 15:54:38 +02008003 mgmt_pending_remove(cmd);
8004}
8005
Johan Hedberg84c61d92014-08-01 11:13:30 +03008006bool mgmt_powering_down(struct hci_dev *hdev)
8007{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008008 struct mgmt_pending_cmd *cmd;
Johan Hedberg84c61d92014-08-01 11:13:30 +03008009 struct mgmt_mode *cp;
8010
Johan Hedberg333ae952015-03-17 13:48:47 +02008011 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg84c61d92014-08-01 11:13:30 +03008012 if (!cmd)
8013 return false;
8014
8015 cp = cmd->param;
8016 if (!cp->val)
8017 return true;
8018
8019 return false;
8020}
8021
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07008022void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02008023 u8 link_type, u8 addr_type, u8 reason,
8024 bool mgmt_connected)
Johan Hedbergf7520542011-01-20 12:34:39 +02008025{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02008026 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008027 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008028
Johan Hedberg84c61d92014-08-01 11:13:30 +03008029 /* The connection is still in hci_conn_hash so test for 1
8030 * instead of 0 to know if this is the last one.
8031 */
8032 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
8033 cancel_delayed_work(&hdev->power_off);
8034 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberg8b064a32014-02-24 14:52:22 +02008035 }
8036
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02008037 if (!mgmt_connected)
8038 return;
8039
Andre Guedes57eb7762013-10-30 19:01:41 -03008040 if (link_type != ACL_LINK && link_type != LE_LINK)
8041 return;
8042
Johan Hedberg744cf192011-11-08 20:40:14 +02008043 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02008044
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02008045 bacpy(&ev.addr.bdaddr, bdaddr);
8046 ev.addr.type = link_to_bdaddr(link_type, addr_type);
8047 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02008048
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07008049 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008050
8051 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01008052 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008053
Johan Hedberg124f6e32012-02-09 13:50:12 +02008054 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008055 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008056}
8057
Marcel Holtmann78929242013-10-06 23:55:47 -07008058void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
8059 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02008060{
Andre Guedes3655bba2013-10-30 19:01:40 -03008061 u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
8062 struct mgmt_cp_disconnect *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008063 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008064
Jefferson Delfes36a75f12012-09-18 13:36:54 -04008065 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
8066 hdev);
8067
Johan Hedberg333ae952015-03-17 13:48:47 +02008068 cmd = pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008069 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07008070 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008071
Andre Guedes3655bba2013-10-30 19:01:40 -03008072 cp = cmd->param;
8073
8074 if (bacmp(bdaddr, &cp->addr.bdaddr))
8075 return;
8076
8077 if (cp->addr.type != bdaddr_type)
8078 return;
8079
Johan Hedbergf5818c22014-12-05 13:36:02 +02008080 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008081 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02008082}
Johan Hedberg17d5c042011-01-22 06:09:08 +02008083
Marcel Holtmann445608d2013-10-06 23:55:48 -07008084void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
8085 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02008086{
8087 struct mgmt_ev_connect_failed ev;
Johan Hedbergc9910d02014-02-27 14:35:12 +02008088
Johan Hedberg84c61d92014-08-01 11:13:30 +03008089 /* The connection is still in hci_conn_hash so test for 1
8090 * instead of 0 to know if this is the last one.
8091 */
8092 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
8093 cancel_delayed_work(&hdev->power_off);
8094 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedbergc9910d02014-02-27 14:35:12 +02008095 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02008096
Johan Hedberg4c659c32011-11-07 23:13:39 +02008097 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008098 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02008099 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02008100
Marcel Holtmann445608d2013-10-06 23:55:48 -07008101 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02008102}
Johan Hedberg980e1a52011-01-22 06:10:07 +02008103
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07008104void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02008105{
8106 struct mgmt_ev_pin_code_request ev;
8107
Johan Hedbergd8457692012-02-17 14:24:57 +02008108 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03008109 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02008110 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008111
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07008112 mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008113}
8114
Marcel Holtmanne669cf82013-10-15 14:26:21 -07008115void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8116 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02008117{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008118 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008119
Johan Hedberg333ae952015-03-17 13:48:47 +02008120 cmd = pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008121 if (!cmd)
Marcel Holtmanne669cf82013-10-15 14:26:21 -07008122 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008123
Johan Hedberg7776d1d2014-12-05 13:36:03 +02008124 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008125 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008126}
8127
Marcel Holtmann3eb38522013-10-15 14:26:22 -07008128void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8129 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02008130{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008131 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008132
Johan Hedberg333ae952015-03-17 13:48:47 +02008133 cmd = pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008134 if (!cmd)
Marcel Holtmann3eb38522013-10-15 14:26:22 -07008135 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008136
Johan Hedberg7776d1d2014-12-05 13:36:03 +02008137 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008138 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008139}
Johan Hedberga5c29682011-02-19 12:05:57 -03008140
Johan Hedberg744cf192011-11-08 20:40:14 +02008141int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg39adbff2014-03-20 08:18:14 +02008142 u8 link_type, u8 addr_type, u32 value,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008143 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03008144{
8145 struct mgmt_ev_user_confirm_request ev;
8146
Johan Hedberg744cf192011-11-08 20:40:14 +02008147 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03008148
Johan Hedberg272d90d2012-02-09 15:26:12 +02008149 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008150 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07008151 ev.confirm_hint = confirm_hint;
Johan Hedberg39adbff2014-03-20 08:18:14 +02008152 ev.value = cpu_to_le32(value);
Johan Hedberga5c29682011-02-19 12:05:57 -03008153
Johan Hedberg744cf192011-11-08 20:40:14 +02008154 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008155 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03008156}
8157
Johan Hedberg272d90d2012-02-09 15:26:12 +02008158int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03008159 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08008160{
8161 struct mgmt_ev_user_passkey_request ev;
8162
8163 BT_DBG("%s", hdev->name);
8164
Johan Hedberg272d90d2012-02-09 15:26:12 +02008165 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008166 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08008167
8168 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008169 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08008170}
8171
Brian Gix0df4c182011-11-16 13:53:13 -08008172static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03008173 u8 link_type, u8 addr_type, u8 status,
8174 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03008175{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008176 struct mgmt_pending_cmd *cmd;
Johan Hedberga5c29682011-02-19 12:05:57 -03008177
Johan Hedberg333ae952015-03-17 13:48:47 +02008178 cmd = pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03008179 if (!cmd)
8180 return -ENOENT;
8181
Johan Hedberg7776d1d2014-12-05 13:36:03 +02008182 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008183 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03008184
Johan Hedberg7776d1d2014-12-05 13:36:03 +02008185 return 0;
Johan Hedberga5c29682011-02-19 12:05:57 -03008186}
8187
Johan Hedberg744cf192011-11-08 20:40:14 +02008188int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008189 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03008190{
Johan Hedberg272d90d2012-02-09 15:26:12 +02008191 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008192 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03008193}
8194
Johan Hedberg272d90d2012-02-09 15:26:12 +02008195int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008196 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03008197{
Johan Hedberg272d90d2012-02-09 15:26:12 +02008198 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03008199 status,
8200 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03008201}
Johan Hedberg2a611692011-02-19 12:06:00 -03008202
Brian Gix604086b2011-11-23 08:28:33 -08008203int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008204 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08008205{
Johan Hedberg272d90d2012-02-09 15:26:12 +02008206 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008207 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08008208}
8209
Johan Hedberg272d90d2012-02-09 15:26:12 +02008210int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008211 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08008212{
Johan Hedberg272d90d2012-02-09 15:26:12 +02008213 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03008214 status,
8215 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08008216}
8217
Johan Hedberg92a25252012-09-06 18:39:26 +03008218int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
8219 u8 link_type, u8 addr_type, u32 passkey,
8220 u8 entered)
8221{
8222 struct mgmt_ev_passkey_notify ev;
8223
8224 BT_DBG("%s", hdev->name);
8225
8226 bacpy(&ev.addr.bdaddr, bdaddr);
8227 ev.addr.type = link_to_bdaddr(link_type, addr_type);
8228 ev.passkey = __cpu_to_le32(passkey);
8229 ev.entered = entered;
8230
8231 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
8232}
8233
Johan Hedberge1e930f2014-09-08 17:09:49 -07008234void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
Johan Hedberg2a611692011-02-19 12:06:00 -03008235{
8236 struct mgmt_ev_auth_failed ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008237 struct mgmt_pending_cmd *cmd;
Johan Hedberge1e930f2014-09-08 17:09:49 -07008238 u8 status = mgmt_status(hci_status);
Johan Hedberg2a611692011-02-19 12:06:00 -03008239
Johan Hedberge1e930f2014-09-08 17:09:49 -07008240 bacpy(&ev.addr.bdaddr, &conn->dst);
8241 ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
8242 ev.status = status;
Johan Hedberg2a611692011-02-19 12:06:00 -03008243
Johan Hedberge1e930f2014-09-08 17:09:49 -07008244 cmd = find_pairing(conn);
8245
8246 mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
8247 cmd ? cmd->sk : NULL);
8248
Johan Hedberga511b352014-12-11 21:45:45 +02008249 if (cmd) {
8250 cmd->cmd_complete(cmd, status);
8251 mgmt_pending_remove(cmd);
8252 }
Johan Hedberg2a611692011-02-19 12:06:00 -03008253}
Johan Hedbergb312b1612011-03-16 14:29:37 +02008254
Marcel Holtmann464996a2013-10-15 14:26:24 -07008255void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008256{
8257 struct cmd_lookup match = { NULL, hdev };
Marcel Holtmann464996a2013-10-15 14:26:24 -07008258 bool changed;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008259
8260 if (status) {
8261 u8 mgmt_err = mgmt_status(status);
8262 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008263 cmd_status_rsp, &mgmt_err);
Marcel Holtmann464996a2013-10-15 14:26:24 -07008264 return;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008265 }
8266
Marcel Holtmann464996a2013-10-15 14:26:24 -07008267 if (test_bit(HCI_AUTH, &hdev->flags))
Marcel Holtmann238be782015-03-13 02:11:06 -07008268 changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
Marcel Holtmann464996a2013-10-15 14:26:24 -07008269 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008270 changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02008271
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008272 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008273 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008274
Johan Hedberg47990ea2012-02-22 11:58:37 +02008275 if (changed)
Marcel Holtmann464996a2013-10-15 14:26:24 -07008276 new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008277
8278 if (match.sk)
8279 sock_put(match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02008280}
8281
Johan Hedberg890ea892013-03-15 17:06:52 -05008282static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02008283{
Johan Hedberg890ea892013-03-15 17:06:52 -05008284 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02008285 struct hci_cp_write_eir cp;
8286
Johan Hedberg976eb202012-10-24 21:12:01 +03008287 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05008288 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02008289
Johan Hedbergc80da272012-02-22 15:38:48 +02008290 memset(hdev->eir, 0, sizeof(hdev->eir));
8291
Johan Hedbergcacaf522012-02-21 00:52:42 +02008292 memset(&cp, 0, sizeof(cp));
8293
Johan Hedberg890ea892013-03-15 17:06:52 -05008294 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02008295}
8296
Marcel Holtmann3e248562013-10-15 14:26:25 -07008297void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008298{
8299 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05008300 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008301 bool changed = false;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008302
8303 if (status) {
8304 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008305
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008306 if (enable && hci_dev_test_and_clear_flag(hdev,
8307 HCI_SSP_ENABLED)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07008308 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmann3e248562013-10-15 14:26:25 -07008309 new_settings(hdev, NULL);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07008310 }
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008311
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008312 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
8313 &mgmt_err);
Marcel Holtmann3e248562013-10-15 14:26:25 -07008314 return;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008315 }
8316
8317 if (enable) {
Marcel Holtmann238be782015-03-13 02:11:06 -07008318 changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008319 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008320 changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07008321 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07008322 changed = hci_dev_test_and_clear_flag(hdev,
8323 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07008324 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07008325 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008326 }
8327
8328 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
8329
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02008330 if (changed)
Marcel Holtmann3e248562013-10-15 14:26:25 -07008331 new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008332
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02008333 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008334 sock_put(match.sk);
8335
Johan Hedberg890ea892013-03-15 17:06:52 -05008336 hci_req_init(&req, hdev);
8337
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07008338 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
8339 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03008340 hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
8341 sizeof(enable), &enable);
Johan Hedberg890ea892013-03-15 17:06:52 -05008342 update_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03008343 } else {
Johan Hedberg890ea892013-03-15 17:06:52 -05008344 clear_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03008345 }
Johan Hedberg890ea892013-03-15 17:06:52 -05008346
8347 hci_req_run(&req, NULL);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02008348}
8349
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008350static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02008351{
8352 struct cmd_lookup *match = data;
8353
Johan Hedberg90e70452012-02-23 23:09:40 +02008354 if (match->sk == NULL) {
8355 match->sk = cmd->sk;
8356 sock_hold(match->sk);
8357 }
Johan Hedberg90e70452012-02-23 23:09:40 +02008358}
8359
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07008360void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
8361 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01008362{
Johan Hedberg90e70452012-02-23 23:09:40 +02008363 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01008364
Johan Hedberg92da6092013-03-15 17:06:55 -05008365 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
8366 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
8367 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02008368
8369 if (!status)
Marcel Holtmannf6b77122015-03-14 19:28:05 -07008370 mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
8371 dev_class, 3, NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02008372
8373 if (match.sk)
8374 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01008375}
8376
Marcel Holtmann7667da32013-10-15 14:26:27 -07008377void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02008378{
Johan Hedbergb312b1612011-03-16 14:29:37 +02008379 struct mgmt_cp_set_local_name ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008380 struct mgmt_pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02008381
Johan Hedberg13928972013-03-15 17:07:00 -05008382 if (status)
Marcel Holtmann7667da32013-10-15 14:26:27 -07008383 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02008384
8385 memset(&ev, 0, sizeof(ev));
8386 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02008387 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02008388
Johan Hedberg333ae952015-03-17 13:48:47 +02008389 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05008390 if (!cmd) {
8391 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02008392
Johan Hedberg13928972013-03-15 17:07:00 -05008393 /* If this is a HCI command related to powering on the
8394 * HCI dev don't send any mgmt signals.
8395 */
Johan Hedberg333ae952015-03-17 13:48:47 +02008396 if (pending_find(MGMT_OP_SET_POWERED, hdev))
Marcel Holtmann7667da32013-10-15 14:26:27 -07008397 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02008398 }
8399
Marcel Holtmannf6b77122015-03-14 19:28:05 -07008400 mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
8401 cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02008402}
Szymon Jancc35938b2011-03-22 13:12:21 +01008403
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008404static inline bool has_uuid(u8 *uuid, u16 uuid_count, u8 (*uuids)[16])
8405{
8406 int i;
8407
8408 for (i = 0; i < uuid_count; i++) {
8409 if (!memcmp(uuid, uuids[i], 16))
8410 return true;
8411 }
8412
8413 return false;
8414}
8415
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008416static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
8417{
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008418 u16 parsed = 0;
8419
8420 while (parsed < eir_len) {
8421 u8 field_len = eir[0];
8422 u8 uuid[16];
8423 int i;
8424
8425 if (field_len == 0)
8426 break;
8427
8428 if (eir_len - parsed < field_len + 1)
8429 break;
8430
8431 switch (eir[1]) {
8432 case EIR_UUID16_ALL:
8433 case EIR_UUID16_SOME:
8434 for (i = 0; i + 3 <= field_len; i += 2) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02008435 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008436 uuid[13] = eir[i + 3];
8437 uuid[12] = eir[i + 2];
8438 if (has_uuid(uuid, uuid_count, uuids))
8439 return true;
8440 }
8441 break;
8442 case EIR_UUID32_ALL:
8443 case EIR_UUID32_SOME:
8444 for (i = 0; i + 5 <= field_len; i += 4) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02008445 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01008446 uuid[15] = eir[i + 5];
8447 uuid[14] = eir[i + 4];
8448 uuid[13] = eir[i + 3];
8449 uuid[12] = eir[i + 2];
8450 if (has_uuid(uuid, uuid_count, uuids))
8451 return true;
8452 }
8453 break;
8454 case EIR_UUID128_ALL:
8455 case EIR_UUID128_SOME:
8456 for (i = 0; i + 17 <= field_len; i += 16) {
8457 memcpy(uuid, eir + i + 2, 16);
8458 if (has_uuid(uuid, uuid_count, uuids))
8459 return true;
8460 }
8461 break;
8462 }
8463
8464 parsed += field_len + 1;
8465 eir += field_len + 1;
8466 }
8467
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008468 return false;
8469}
8470
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008471static void restart_le_scan(struct hci_dev *hdev)
8472{
8473 /* If controller is not scanning we are done. */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07008474 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008475 return;
8476
8477 if (time_after(jiffies + DISCOV_LE_RESTART_DELAY,
8478 hdev->discovery.scan_start +
8479 hdev->discovery.scan_duration))
8480 return;
8481
8482 queue_delayed_work(hdev->workqueue, &hdev->le_scan_restart,
8483 DISCOV_LE_RESTART_DELAY);
8484}
8485
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008486static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
8487 u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
8488{
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008489 /* If a RSSI threshold has been specified, and
8490 * HCI_QUIRK_STRICT_DUPLICATE_FILTER is not set, then all results with
8491 * a RSSI smaller than the RSSI threshold will be dropped. If the quirk
8492 * is set, let it through for further processing, as we might need to
8493 * restart the scan.
8494 *
8495 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
8496 * the results are also dropped.
8497 */
8498 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
8499 (rssi == HCI_RSSI_INVALID ||
8500 (rssi < hdev->discovery.rssi &&
8501 !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
8502 return false;
8503
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008504 if (hdev->discovery.uuid_count != 0) {
8505 /* If a list of UUIDs is provided in filter, results with no
8506 * matching UUID should be dropped.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008507 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008508 if (!eir_has_uuids(eir, eir_len, hdev->discovery.uuid_count,
8509 hdev->discovery.uuids) &&
8510 !eir_has_uuids(scan_rsp, scan_rsp_len,
8511 hdev->discovery.uuid_count,
8512 hdev->discovery.uuids))
8513 return false;
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008514 }
8515
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008516 /* If duplicate filtering does not report RSSI changes, then restart
8517 * scanning to ensure updated result with updated RSSI values.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008518 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008519 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks)) {
8520 restart_le_scan(hdev);
8521
8522 /* Validate RSSI value against the RSSI threshold once more. */
8523 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
8524 rssi < hdev->discovery.rssi)
8525 return false;
8526 }
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008527
8528 return true;
8529}
8530
Marcel Holtmann901801b2013-10-06 23:55:51 -07008531void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Marcel Holtmannaf589252014-07-01 14:11:20 +02008532 u8 addr_type, u8 *dev_class, s8 rssi, u32 flags,
8533 u8 *eir, u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03008534{
Johan Hedberge319d2e2012-01-15 19:51:59 +02008535 char buf[512];
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008536 struct mgmt_ev_device_found *ev = (void *)buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02008537 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03008538
Johan Hedberg75ce2082014-07-02 22:42:01 +03008539 /* Don't send events for a non-kernel initiated discovery. With
8540 * LE one exception is if we have pend_le_reports > 0 in which
8541 * case we're doing passive scanning and want these events.
8542 */
8543 if (!hci_discovery_active(hdev)) {
8544 if (link_type == ACL_LINK)
8545 return;
Johan Hedberg66f84552014-07-04 12:37:18 +03008546 if (link_type == LE_LINK && list_empty(&hdev->pend_le_reports))
Johan Hedberg75ce2082014-07-02 22:42:01 +03008547 return;
8548 }
Andre Guedes12602d02013-04-30 15:29:40 -03008549
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08008550 if (hdev->discovery.result_filtering) {
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008551 /* We are using service discovery */
8552 if (!is_filter_match(hdev, rssi, eir, eir_len, scan_rsp,
8553 scan_rsp_len))
8554 return;
8555 }
Marcel Holtmannbda157a2014-12-05 10:55:56 +01008556
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008557 /* Make sure that the buffer is big enough. The 5 extra bytes
8558 * are for the potential CoD field.
8559 */
8560 if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07008561 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03008562
Johan Hedberg1dc06092012-01-15 21:01:23 +02008563 memset(buf, 0, sizeof(buf));
8564
Marcel Holtmannda25cf62014-12-05 13:03:35 +01008565 /* In case of device discovery with BR/EDR devices (pre 1.2), the
8566 * RSSI value was reported as 0 when not available. This behavior
8567 * is kept when using device discovery. This is required for full
8568 * backwards compatibility with the API.
8569 *
8570 * However when using service discovery, the value 127 will be
8571 * returned when the RSSI is not available.
8572 */
Szymon Janc91200e92015-01-22 16:57:05 +01008573 if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi &&
8574 link_type == ACL_LINK)
Marcel Holtmannefb25132014-12-05 13:03:34 +01008575 rssi = 0;
8576
Johan Hedberg841c5642014-07-07 12:45:54 +03008577 bacpy(&ev->addr.bdaddr, bdaddr);
8578 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02008579 ev->rssi = rssi;
Marcel Holtmannaf589252014-07-01 14:11:20 +02008580 ev->flags = cpu_to_le32(flags);
Johan Hedberge17acd42011-03-30 23:57:16 +03008581
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008582 if (eir_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008583 /* Copy EIR or advertising data into event */
Johan Hedberge319d2e2012-01-15 19:51:59 +02008584 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03008585
Johan Hedberg1dc06092012-01-15 21:01:23 +02008586 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
8587 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008588 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02008589
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008590 if (scan_rsp_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008591 /* Append scan response data to event */
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008592 memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008593
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008594 ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
8595 ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
Andre Guedesf8523592011-09-09 18:56:26 -03008596
Marcel Holtmann901801b2013-10-06 23:55:51 -07008597 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03008598}
Johan Hedberga88a9652011-03-30 13:18:12 +03008599
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07008600void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
8601 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03008602{
Johan Hedbergb644ba32012-01-17 21:48:47 +02008603 struct mgmt_ev_device_found *ev;
8604 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
8605 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03008606
Johan Hedbergb644ba32012-01-17 21:48:47 +02008607 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03008608
Johan Hedbergb644ba32012-01-17 21:48:47 +02008609 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03008610
Johan Hedbergb644ba32012-01-17 21:48:47 +02008611 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008612 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008613 ev->rssi = rssi;
8614
8615 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008616 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008617
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02008618 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008619
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07008620 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03008621}
Johan Hedberg314b2382011-04-27 10:29:57 -04008622
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07008623void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04008624{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02008625 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02008626
Andre Guedes343fb142011-11-22 17:14:19 -03008627 BT_DBG("%s discovering %u", hdev->name, discovering);
8628
Johan Hedbergf963e8e2012-02-20 23:30:44 +02008629 memset(&ev, 0, sizeof(ev));
8630 ev.type = hdev->discovery.type;
8631 ev.discovering = discovering;
8632
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07008633 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04008634}
Antti Julku5e762442011-08-25 16:48:02 +03008635
Marcel Holtmann1904a852015-01-11 13:50:44 -08008636static void adv_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Marcel Holtmann5976e602013-10-06 04:08:14 -07008637{
8638 BT_DBG("%s status %u", hdev->name, status);
Marcel Holtmann5976e602013-10-06 04:08:14 -07008639}
8640
8641void mgmt_reenable_advertising(struct hci_dev *hdev)
8642{
8643 struct hci_request req;
Florian Grandeleb6f95f2015-06-18 03:16:51 +02008644 u8 instance;
Marcel Holtmann5976e602013-10-06 04:08:14 -07008645
Arman Uguray24b4f382015-03-23 15:57:12 -07008646 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
8647 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
Marcel Holtmann5976e602013-10-06 04:08:14 -07008648 return;
8649
Florian Grandeleb6f95f2015-06-18 03:16:51 +02008650 instance = get_current_adv_instance(hdev);
8651
Marcel Holtmann5976e602013-10-06 04:08:14 -07008652 hci_req_init(&req, hdev);
Florian Grandeleb6f95f2015-06-18 03:16:51 +02008653
8654 if (instance) {
8655 schedule_adv_instance(&req, instance, true);
8656 } else {
8657 update_adv_data(&req);
8658 update_scan_rsp_data(&req);
8659 enable_advertising(&req);
8660 }
8661
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03008662 hci_req_run(&req, adv_enable_complete);
Marcel Holtmann5976e602013-10-06 04:08:14 -07008663}
Johan Hedberg6d785aa32015-03-06 21:08:51 +02008664
8665static struct hci_mgmt_chan chan = {
8666 .channel = HCI_CHANNEL_CONTROL,
8667 .handler_count = ARRAY_SIZE(mgmt_handlers),
8668 .handlers = mgmt_handlers,
Johan Hedberg88b94ce2015-03-17 13:48:49 +02008669 .hdev_init = mgmt_init_hdev,
Johan Hedberg6d785aa32015-03-06 21:08:51 +02008670};
8671
8672int mgmt_init(void)
8673{
8674 return hci_mgmt_chan_register(&chan);
8675}
8676
8677void mgmt_exit(void)
8678{
8679 hci_mgmt_chan_unregister(&chan);
8680}