blob: 672ff5b66c21076c76d801ec76bf8d3ffb49ea84 [file] [log] [blame]
Johan Hedberg03811012010-12-08 00:21:06 +02001/*
2 BlueZ - Bluetooth protocol stack for Linux
Johan Hedbergea585ab2012-02-17 14:50:39 +02003
Johan Hedberg03811012010-12-08 00:21:06 +02004 Copyright (C) 2010 Nokia Corporation
Johan Hedbergea585ab2012-02-17 14:50:39 +02005 Copyright (C) 2011-2012 Intel Corporation
Johan Hedberg03811012010-12-08 00:21:06 +02006
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License version 2 as
9 published by the Free Software Foundation;
10
11 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
12 OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
13 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
14 IN NO EVENT SHALL THE COPYRIGHT HOLDER(S) AND AUTHOR(S) BE LIABLE FOR ANY
15 CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES
16 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
17 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
18 OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
20 ALL LIABILITY, INCLUDING LIABILITY FOR INFRINGEMENT OF ANY PATENTS,
21 COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS, RELATING TO USE OF THIS
22 SOFTWARE IS DISCLAIMED.
23*/
24
25/* Bluetooth HCI Management interface */
26
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040027#include <linux/module.h>
Johan Hedberg03811012010-12-08 00:21:06 +020028#include <asm/unaligned.h>
29
30#include <net/bluetooth/bluetooth.h>
31#include <net/bluetooth/hci_core.h>
Johan Hedberg71290692015-02-20 13:26:23 +020032#include <net/bluetooth/hci_sock.h>
Johan Hedberg4bc58f52014-05-20 09:45:47 +030033#include <net/bluetooth/l2cap.h>
Johan Hedberg03811012010-12-08 00:21:06 +020034#include <net/bluetooth/mgmt.h>
Marcel Holtmannac4b7232013-10-10 14:54:16 -070035
Johan Hedberg0857dd32014-12-19 13:40:20 +020036#include "hci_request.h"
Marcel Holtmannac4b7232013-10-10 14:54:16 -070037#include "smp.h"
Johan Hedberga380b6c2015-03-17 13:48:48 +020038#include "mgmt_util.h"
Johan Hedberg03811012010-12-08 00:21:06 +020039
Johan Hedberg2da9c552012-02-17 14:39:28 +020040#define MGMT_VERSION 1
Marcel Holtmannbeb1c212015-03-10 14:04:52 -070041#define MGMT_REVISION 9
Johan Hedberg02d98122010-12-13 21:07:04 +020042
Johan Hedberge70bb2e2012-02-13 16:59:33 +020043static const u16 mgmt_commands[] = {
44 MGMT_OP_READ_INDEX_LIST,
45 MGMT_OP_READ_INFO,
46 MGMT_OP_SET_POWERED,
47 MGMT_OP_SET_DISCOVERABLE,
48 MGMT_OP_SET_CONNECTABLE,
49 MGMT_OP_SET_FAST_CONNECTABLE,
Johan Hedbergb2939472014-07-30 09:22:23 +030050 MGMT_OP_SET_BONDABLE,
Johan Hedberge70bb2e2012-02-13 16:59:33 +020051 MGMT_OP_SET_LINK_SECURITY,
52 MGMT_OP_SET_SSP,
53 MGMT_OP_SET_HS,
54 MGMT_OP_SET_LE,
55 MGMT_OP_SET_DEV_CLASS,
56 MGMT_OP_SET_LOCAL_NAME,
57 MGMT_OP_ADD_UUID,
58 MGMT_OP_REMOVE_UUID,
59 MGMT_OP_LOAD_LINK_KEYS,
60 MGMT_OP_LOAD_LONG_TERM_KEYS,
61 MGMT_OP_DISCONNECT,
62 MGMT_OP_GET_CONNECTIONS,
63 MGMT_OP_PIN_CODE_REPLY,
64 MGMT_OP_PIN_CODE_NEG_REPLY,
65 MGMT_OP_SET_IO_CAPABILITY,
66 MGMT_OP_PAIR_DEVICE,
67 MGMT_OP_CANCEL_PAIR_DEVICE,
68 MGMT_OP_UNPAIR_DEVICE,
69 MGMT_OP_USER_CONFIRM_REPLY,
70 MGMT_OP_USER_CONFIRM_NEG_REPLY,
71 MGMT_OP_USER_PASSKEY_REPLY,
72 MGMT_OP_USER_PASSKEY_NEG_REPLY,
73 MGMT_OP_READ_LOCAL_OOB_DATA,
74 MGMT_OP_ADD_REMOTE_OOB_DATA,
75 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
76 MGMT_OP_START_DISCOVERY,
77 MGMT_OP_STOP_DISCOVERY,
78 MGMT_OP_CONFIRM_NAME,
79 MGMT_OP_BLOCK_DEVICE,
80 MGMT_OP_UNBLOCK_DEVICE,
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -070081 MGMT_OP_SET_DEVICE_ID,
Johan Hedberg4375f102013-09-25 13:26:10 +030082 MGMT_OP_SET_ADVERTISING,
Johan Hedberg0663ca22013-10-02 13:43:14 +030083 MGMT_OP_SET_BREDR,
Marcel Holtmannd13eafc2013-10-02 04:41:30 -070084 MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann7f72134e2013-10-11 14:44:58 -070085 MGMT_OP_SET_SCAN_PARAMS,
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -080086 MGMT_OP_SET_SECURE_CONN,
Marcel Holtmann4e39ac82014-01-31 11:55:22 -080087 MGMT_OP_SET_DEBUG_KEYS,
Johan Hedberg62b04cd2014-02-23 19:42:27 +020088 MGMT_OP_SET_PRIVACY,
Johan Hedberg41edf162014-02-18 10:19:35 +020089 MGMT_OP_LOAD_IRKS,
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +020090 MGMT_OP_GET_CONN_INFO,
Johan Hedberg95868422014-06-28 17:54:07 +030091 MGMT_OP_GET_CLOCK_INFO,
Marcel Holtmann2faade52014-06-29 19:44:03 +020092 MGMT_OP_ADD_DEVICE,
93 MGMT_OP_REMOVE_DEVICE,
Johan Hedberga26f3dc2014-07-02 17:37:29 +030094 MGMT_OP_LOAD_CONN_PARAM,
Marcel Holtmann73d1df22014-07-02 22:10:52 +020095 MGMT_OP_READ_UNCONF_INDEX_LIST,
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +020096 MGMT_OP_READ_CONFIG_INFO,
Marcel Holtmanndbece372014-07-04 18:11:55 +020097 MGMT_OP_SET_EXTERNAL_CONFIG,
Marcel Holtmann9713c172014-07-06 12:11:15 +020098 MGMT_OP_SET_PUBLIC_ADDRESS,
Jakub Pawlowski66ea9422014-12-05 10:55:59 +010099 MGMT_OP_START_SERVICE_DISCOVERY,
Marcel Holtmann4f0f1552015-03-14 22:43:19 -0700100 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
Marcel Holtmann96f14742015-03-14 19:27:57 -0700101 MGMT_OP_READ_EXT_INDEX_LIST,
Marcel Holtmannd3d53052015-03-14 20:53:25 -0700102 MGMT_OP_READ_ADV_FEATURES,
Arman Uguray24b4f382015-03-23 15:57:12 -0700103 MGMT_OP_ADD_ADVERTISING,
Arman Ugurayda9293352015-03-23 15:57:13 -0700104 MGMT_OP_REMOVE_ADVERTISING,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200105};
106
107static const u16 mgmt_events[] = {
108 MGMT_EV_CONTROLLER_ERROR,
109 MGMT_EV_INDEX_ADDED,
110 MGMT_EV_INDEX_REMOVED,
111 MGMT_EV_NEW_SETTINGS,
112 MGMT_EV_CLASS_OF_DEV_CHANGED,
113 MGMT_EV_LOCAL_NAME_CHANGED,
114 MGMT_EV_NEW_LINK_KEY,
115 MGMT_EV_NEW_LONG_TERM_KEY,
116 MGMT_EV_DEVICE_CONNECTED,
117 MGMT_EV_DEVICE_DISCONNECTED,
118 MGMT_EV_CONNECT_FAILED,
119 MGMT_EV_PIN_CODE_REQUEST,
120 MGMT_EV_USER_CONFIRM_REQUEST,
121 MGMT_EV_USER_PASSKEY_REQUEST,
122 MGMT_EV_AUTH_FAILED,
123 MGMT_EV_DEVICE_FOUND,
124 MGMT_EV_DISCOVERING,
125 MGMT_EV_DEVICE_BLOCKED,
126 MGMT_EV_DEVICE_UNBLOCKED,
127 MGMT_EV_DEVICE_UNPAIRED,
Johan Hedberg92a25252012-09-06 18:39:26 +0300128 MGMT_EV_PASSKEY_NOTIFY,
Marcel Holtmann1b60ef22014-02-21 21:35:30 -0800129 MGMT_EV_NEW_IRK,
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -0700130 MGMT_EV_NEW_CSRK,
Marcel Holtmann8afef092014-06-29 22:28:34 +0200131 MGMT_EV_DEVICE_ADDED,
132 MGMT_EV_DEVICE_REMOVED,
Andre Guedesffb5a8272014-07-01 18:10:11 -0300133 MGMT_EV_NEW_CONN_PARAM,
Marcel Holtmann0602a8a2014-07-02 21:30:54 +0200134 MGMT_EV_UNCONF_INDEX_ADDED,
Marcel Holtmannedd38962014-07-02 21:30:55 +0200135 MGMT_EV_UNCONF_INDEX_REMOVED,
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200136 MGMT_EV_NEW_CONFIG_OPTIONS,
Marcel Holtmannced85542015-03-14 19:27:56 -0700137 MGMT_EV_EXT_INDEX_ADDED,
138 MGMT_EV_EXT_INDEX_REMOVED,
Marcel Holtmann72000df2015-03-16 16:11:21 -0700139 MGMT_EV_LOCAL_OOB_DATA_UPDATED,
Arman Uguray24b4f382015-03-23 15:57:12 -0700140 MGMT_EV_ADVERTISING_ADDED,
141 MGMT_EV_ADVERTISING_REMOVED,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200142};
143
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700144static const u16 mgmt_untrusted_commands[] = {
145 MGMT_OP_READ_INDEX_LIST,
146 MGMT_OP_READ_INFO,
147 MGMT_OP_READ_UNCONF_INDEX_LIST,
148 MGMT_OP_READ_CONFIG_INFO,
149 MGMT_OP_READ_EXT_INDEX_LIST,
150};
151
152static const u16 mgmt_untrusted_events[] = {
153 MGMT_EV_INDEX_ADDED,
154 MGMT_EV_INDEX_REMOVED,
155 MGMT_EV_NEW_SETTINGS,
156 MGMT_EV_CLASS_OF_DEV_CHANGED,
157 MGMT_EV_LOCAL_NAME_CHANGED,
158 MGMT_EV_UNCONF_INDEX_ADDED,
159 MGMT_EV_UNCONF_INDEX_REMOVED,
160 MGMT_EV_NEW_CONFIG_OPTIONS,
161 MGMT_EV_EXT_INDEX_ADDED,
162 MGMT_EV_EXT_INDEX_REMOVED,
163};
164
Marcel Holtmann17b02e62012-03-01 14:32:37 -0800165#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000)
Johan Hedberg7d785252011-12-15 00:47:39 +0200166
Johan Hedbergd25b78e2015-01-27 12:55:52 +0200167#define ZERO_KEY "\x00\x00\x00\x00\x00\x00\x00\x00" \
168 "\x00\x00\x00\x00\x00\x00\x00\x00"
169
Johan Hedbergca69b792011-11-11 18:10:00 +0200170/* HCI to MGMT error code conversion table */
171static u8 mgmt_status_table[] = {
172 MGMT_STATUS_SUCCESS,
173 MGMT_STATUS_UNKNOWN_COMMAND, /* Unknown Command */
174 MGMT_STATUS_NOT_CONNECTED, /* No Connection */
175 MGMT_STATUS_FAILED, /* Hardware Failure */
176 MGMT_STATUS_CONNECT_FAILED, /* Page Timeout */
177 MGMT_STATUS_AUTH_FAILED, /* Authentication Failed */
Johan Hedbergeadd6632014-01-13 17:15:53 +0200178 MGMT_STATUS_AUTH_FAILED, /* PIN or Key Missing */
Johan Hedbergca69b792011-11-11 18:10:00 +0200179 MGMT_STATUS_NO_RESOURCES, /* Memory Full */
180 MGMT_STATUS_TIMEOUT, /* Connection Timeout */
181 MGMT_STATUS_NO_RESOURCES, /* Max Number of Connections */
182 MGMT_STATUS_NO_RESOURCES, /* Max Number of SCO Connections */
183 MGMT_STATUS_ALREADY_CONNECTED, /* ACL Connection Exists */
184 MGMT_STATUS_BUSY, /* Command Disallowed */
185 MGMT_STATUS_NO_RESOURCES, /* Rejected Limited Resources */
186 MGMT_STATUS_REJECTED, /* Rejected Security */
187 MGMT_STATUS_REJECTED, /* Rejected Personal */
188 MGMT_STATUS_TIMEOUT, /* Host Timeout */
189 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Feature */
190 MGMT_STATUS_INVALID_PARAMS, /* Invalid Parameters */
191 MGMT_STATUS_DISCONNECTED, /* OE User Ended Connection */
192 MGMT_STATUS_NO_RESOURCES, /* OE Low Resources */
193 MGMT_STATUS_DISCONNECTED, /* OE Power Off */
194 MGMT_STATUS_DISCONNECTED, /* Connection Terminated */
195 MGMT_STATUS_BUSY, /* Repeated Attempts */
196 MGMT_STATUS_REJECTED, /* Pairing Not Allowed */
197 MGMT_STATUS_FAILED, /* Unknown LMP PDU */
198 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Remote Feature */
199 MGMT_STATUS_REJECTED, /* SCO Offset Rejected */
200 MGMT_STATUS_REJECTED, /* SCO Interval Rejected */
201 MGMT_STATUS_REJECTED, /* Air Mode Rejected */
202 MGMT_STATUS_INVALID_PARAMS, /* Invalid LMP Parameters */
203 MGMT_STATUS_FAILED, /* Unspecified Error */
204 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported LMP Parameter Value */
205 MGMT_STATUS_FAILED, /* Role Change Not Allowed */
206 MGMT_STATUS_TIMEOUT, /* LMP Response Timeout */
207 MGMT_STATUS_FAILED, /* LMP Error Transaction Collision */
208 MGMT_STATUS_FAILED, /* LMP PDU Not Allowed */
209 MGMT_STATUS_REJECTED, /* Encryption Mode Not Accepted */
210 MGMT_STATUS_FAILED, /* Unit Link Key Used */
211 MGMT_STATUS_NOT_SUPPORTED, /* QoS Not Supported */
212 MGMT_STATUS_TIMEOUT, /* Instant Passed */
213 MGMT_STATUS_NOT_SUPPORTED, /* Pairing Not Supported */
214 MGMT_STATUS_FAILED, /* Transaction Collision */
215 MGMT_STATUS_INVALID_PARAMS, /* Unacceptable Parameter */
216 MGMT_STATUS_REJECTED, /* QoS Rejected */
217 MGMT_STATUS_NOT_SUPPORTED, /* Classification Not Supported */
218 MGMT_STATUS_REJECTED, /* Insufficient Security */
219 MGMT_STATUS_INVALID_PARAMS, /* Parameter Out Of Range */
220 MGMT_STATUS_BUSY, /* Role Switch Pending */
221 MGMT_STATUS_FAILED, /* Slot Violation */
222 MGMT_STATUS_FAILED, /* Role Switch Failed */
223 MGMT_STATUS_INVALID_PARAMS, /* EIR Too Large */
224 MGMT_STATUS_NOT_SUPPORTED, /* Simple Pairing Not Supported */
225 MGMT_STATUS_BUSY, /* Host Busy Pairing */
226 MGMT_STATUS_REJECTED, /* Rejected, No Suitable Channel */
227 MGMT_STATUS_BUSY, /* Controller Busy */
228 MGMT_STATUS_INVALID_PARAMS, /* Unsuitable Connection Interval */
229 MGMT_STATUS_TIMEOUT, /* Directed Advertising Timeout */
230 MGMT_STATUS_AUTH_FAILED, /* Terminated Due to MIC Failure */
231 MGMT_STATUS_CONNECT_FAILED, /* Connection Establishment Failed */
232 MGMT_STATUS_CONNECT_FAILED, /* MAC Connection Failed */
233};
234
235static u8 mgmt_status(u8 hci_status)
236{
237 if (hci_status < ARRAY_SIZE(mgmt_status_table))
238 return mgmt_status_table[hci_status];
239
240 return MGMT_STATUS_FAILED;
241}
242
Marcel Holtmannc08b1a12015-03-14 19:27:59 -0700243static int mgmt_index_event(u16 event, struct hci_dev *hdev, void *data,
244 u16 len, int flag)
Marcel Holtmannf9207332015-03-14 19:27:55 -0700245{
Marcel Holtmannc08b1a12015-03-14 19:27:59 -0700246 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
247 flag, NULL);
Marcel Holtmannf9207332015-03-14 19:27:55 -0700248}
249
Marcel Holtmann72000df2015-03-16 16:11:21 -0700250static int mgmt_limited_event(u16 event, struct hci_dev *hdev, void *data,
251 u16 len, int flag, struct sock *skip_sk)
252{
253 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
254 flag, skip_sk);
255}
256
Marcel Holtmannf6b77122015-03-14 19:28:05 -0700257static int mgmt_generic_event(u16 event, struct hci_dev *hdev, void *data,
258 u16 len, struct sock *skip_sk)
259{
260 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
261 HCI_MGMT_GENERIC_EVENTS, skip_sk);
262}
263
Johan Hedberg7a00ff42015-03-06 21:08:56 +0200264static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 len,
265 struct sock *skip_sk)
266{
267 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
Marcel Holtmannc08b1a12015-03-14 19:27:59 -0700268 HCI_SOCK_TRUSTED, skip_sk);
Johan Hedberg7a00ff42015-03-06 21:08:56 +0200269}
270
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300271static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
272 u16 data_len)
Johan Hedberga38528f2011-01-22 06:46:43 +0200273{
274 struct mgmt_rp_read_version rp;
275
276 BT_DBG("sock %p", sk);
277
278 rp.version = MGMT_VERSION;
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700279 rp.revision = cpu_to_le16(MGMT_REVISION);
Johan Hedberga38528f2011-01-22 06:46:43 +0200280
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200281 return mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0,
282 &rp, sizeof(rp));
Johan Hedberga38528f2011-01-22 06:46:43 +0200283}
284
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300285static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
286 u16 data_len)
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200287{
288 struct mgmt_rp_read_commands *rp;
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700289 u16 num_commands, num_events;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200290 size_t rp_size;
291 int i, err;
292
293 BT_DBG("sock %p", sk);
294
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700295 if (hci_sock_test_flag(sk, HCI_SOCK_TRUSTED)) {
296 num_commands = ARRAY_SIZE(mgmt_commands);
297 num_events = ARRAY_SIZE(mgmt_events);
298 } else {
299 num_commands = ARRAY_SIZE(mgmt_untrusted_commands);
300 num_events = ARRAY_SIZE(mgmt_untrusted_events);
301 }
302
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200303 rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));
304
305 rp = kmalloc(rp_size, GFP_KERNEL);
306 if (!rp)
307 return -ENOMEM;
308
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700309 rp->num_commands = cpu_to_le16(num_commands);
310 rp->num_events = cpu_to_le16(num_events);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200311
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700312 if (hci_sock_test_flag(sk, HCI_SOCK_TRUSTED)) {
313 __le16 *opcode = rp->opcodes;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200314
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700315 for (i = 0; i < num_commands; i++, opcode++)
316 put_unaligned_le16(mgmt_commands[i], opcode);
317
318 for (i = 0; i < num_events; i++, opcode++)
319 put_unaligned_le16(mgmt_events[i], opcode);
320 } else {
321 __le16 *opcode = rp->opcodes;
322
323 for (i = 0; i < num_commands; i++, opcode++)
324 put_unaligned_le16(mgmt_untrusted_commands[i], opcode);
325
326 for (i = 0; i < num_events; i++, opcode++)
327 put_unaligned_le16(mgmt_untrusted_events[i], opcode);
328 }
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200329
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200330 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0,
331 rp, rp_size);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200332 kfree(rp);
333
334 return err;
335}
336
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300337static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
338 u16 data_len)
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200339{
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200340 struct mgmt_rp_read_index_list *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200341 struct hci_dev *d;
Johan Hedberga38528f2011-01-22 06:46:43 +0200342 size_t rp_len;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200343 u16 count;
Johan Hedberg476e44c2012-10-19 20:10:46 +0300344 int err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200345
346 BT_DBG("sock %p", sk);
347
348 read_lock(&hci_dev_list_lock);
349
350 count = 0;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300351 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200352 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700353 !hci_dev_test_flag(d, HCI_UNCONFIGURED))
Marcel Holtmann1514b892013-10-06 08:25:01 -0700354 count++;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200355 }
356
Johan Hedberga38528f2011-01-22 06:46:43 +0200357 rp_len = sizeof(*rp) + (2 * count);
358 rp = kmalloc(rp_len, GFP_ATOMIC);
359 if (!rp) {
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100360 read_unlock(&hci_dev_list_lock);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200361 return -ENOMEM;
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100362 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200363
Johan Hedberg476e44c2012-10-19 20:10:46 +0300364 count = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200365 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700366 if (hci_dev_test_flag(d, HCI_SETUP) ||
367 hci_dev_test_flag(d, HCI_CONFIG) ||
368 hci_dev_test_flag(d, HCI_USER_CHANNEL))
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200369 continue;
370
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200371 /* Devices marked as raw-only are neither configured
372 * nor unconfigured controllers.
373 */
374 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
Marcel Holtmann0736cfa2013-08-26 21:40:51 -0700375 continue;
376
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200377 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700378 !hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
Marcel Holtmann1514b892013-10-06 08:25:01 -0700379 rp->index[count++] = cpu_to_le16(d->id);
380 BT_DBG("Added hci%u", d->id);
381 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200382 }
383
Johan Hedberg476e44c2012-10-19 20:10:46 +0300384 rp->num_controllers = cpu_to_le16(count);
385 rp_len = sizeof(*rp) + (2 * count);
386
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200387 read_unlock(&hci_dev_list_lock);
388
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200389 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST,
390 0, rp, rp_len);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200391
Johan Hedberga38528f2011-01-22 06:46:43 +0200392 kfree(rp);
393
394 return err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200395}
396
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200397static int read_unconf_index_list(struct sock *sk, struct hci_dev *hdev,
398 void *data, u16 data_len)
399{
400 struct mgmt_rp_read_unconf_index_list *rp;
401 struct hci_dev *d;
402 size_t rp_len;
403 u16 count;
404 int err;
405
406 BT_DBG("sock %p", sk);
407
408 read_lock(&hci_dev_list_lock);
409
410 count = 0;
411 list_for_each_entry(d, &hci_dev_list, list) {
412 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700413 hci_dev_test_flag(d, HCI_UNCONFIGURED))
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200414 count++;
415 }
416
417 rp_len = sizeof(*rp) + (2 * count);
418 rp = kmalloc(rp_len, GFP_ATOMIC);
419 if (!rp) {
420 read_unlock(&hci_dev_list_lock);
421 return -ENOMEM;
422 }
423
424 count = 0;
425 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700426 if (hci_dev_test_flag(d, HCI_SETUP) ||
427 hci_dev_test_flag(d, HCI_CONFIG) ||
428 hci_dev_test_flag(d, HCI_USER_CHANNEL))
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200429 continue;
430
431 /* Devices marked as raw-only are neither configured
432 * nor unconfigured controllers.
433 */
434 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
435 continue;
436
437 if (d->dev_type == HCI_BREDR &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700438 hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200439 rp->index[count++] = cpu_to_le16(d->id);
440 BT_DBG("Added hci%u", d->id);
441 }
442 }
443
444 rp->num_controllers = cpu_to_le16(count);
445 rp_len = sizeof(*rp) + (2 * count);
446
447 read_unlock(&hci_dev_list_lock);
448
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200449 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
450 MGMT_OP_READ_UNCONF_INDEX_LIST, 0, rp, rp_len);
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200451
452 kfree(rp);
453
454 return err;
455}
456
Marcel Holtmann96f14742015-03-14 19:27:57 -0700457static int read_ext_index_list(struct sock *sk, struct hci_dev *hdev,
458 void *data, u16 data_len)
459{
460 struct mgmt_rp_read_ext_index_list *rp;
461 struct hci_dev *d;
462 size_t rp_len;
463 u16 count;
464 int err;
465
466 BT_DBG("sock %p", sk);
467
468 read_lock(&hci_dev_list_lock);
469
470 count = 0;
471 list_for_each_entry(d, &hci_dev_list, list) {
472 if (d->dev_type == HCI_BREDR || d->dev_type == HCI_AMP)
473 count++;
474 }
475
476 rp_len = sizeof(*rp) + (sizeof(rp->entry[0]) * count);
477 rp = kmalloc(rp_len, GFP_ATOMIC);
478 if (!rp) {
479 read_unlock(&hci_dev_list_lock);
480 return -ENOMEM;
481 }
482
483 count = 0;
484 list_for_each_entry(d, &hci_dev_list, list) {
485 if (hci_dev_test_flag(d, HCI_SETUP) ||
486 hci_dev_test_flag(d, HCI_CONFIG) ||
487 hci_dev_test_flag(d, HCI_USER_CHANNEL))
488 continue;
489
490 /* Devices marked as raw-only are neither configured
491 * nor unconfigured controllers.
492 */
493 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
494 continue;
495
496 if (d->dev_type == HCI_BREDR) {
497 if (hci_dev_test_flag(d, HCI_UNCONFIGURED))
498 rp->entry[count].type = 0x01;
499 else
500 rp->entry[count].type = 0x00;
501 } else if (d->dev_type == HCI_AMP) {
502 rp->entry[count].type = 0x02;
503 } else {
504 continue;
505 }
506
507 rp->entry[count].bus = d->bus;
508 rp->entry[count++].index = cpu_to_le16(d->id);
509 BT_DBG("Added hci%u", d->id);
510 }
511
512 rp->num_controllers = cpu_to_le16(count);
513 rp_len = sizeof(*rp) + (sizeof(rp->entry[0]) * count);
514
515 read_unlock(&hci_dev_list_lock);
516
517 /* If this command is called at least once, then all the
518 * default index and unconfigured index events are disabled
519 * and from now on only extended index events are used.
520 */
521 hci_sock_set_flag(sk, HCI_MGMT_EXT_INDEX_EVENTS);
522 hci_sock_clear_flag(sk, HCI_MGMT_INDEX_EVENTS);
523 hci_sock_clear_flag(sk, HCI_MGMT_UNCONF_INDEX_EVENTS);
524
525 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
526 MGMT_OP_READ_EXT_INDEX_LIST, 0, rp, rp_len);
527
528 kfree(rp);
529
530 return err;
531}
532
Marcel Holtmanndbece372014-07-04 18:11:55 +0200533static bool is_configured(struct hci_dev *hdev)
534{
535 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700536 !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
Marcel Holtmanndbece372014-07-04 18:11:55 +0200537 return false;
538
539 if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
540 !bacmp(&hdev->public_addr, BDADDR_ANY))
541 return false;
542
543 return true;
544}
545
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200546static __le32 get_missing_options(struct hci_dev *hdev)
547{
548 u32 options = 0;
549
Marcel Holtmanndbece372014-07-04 18:11:55 +0200550 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700551 !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200552 options |= MGMT_OPTION_EXTERNAL_CONFIG;
553
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200554 if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
555 !bacmp(&hdev->public_addr, BDADDR_ANY))
556 options |= MGMT_OPTION_PUBLIC_ADDRESS;
557
558 return cpu_to_le32(options);
559}
560
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200561static int new_options(struct hci_dev *hdev, struct sock *skip)
562{
563 __le32 options = get_missing_options(hdev);
564
Marcel Holtmannf6b77122015-03-14 19:28:05 -0700565 return mgmt_generic_event(MGMT_EV_NEW_CONFIG_OPTIONS, hdev, &options,
566 sizeof(options), skip);
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200567}
568
Marcel Holtmanndbece372014-07-04 18:11:55 +0200569static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
570{
571 __le32 options = get_missing_options(hdev);
572
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200573 return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &options,
574 sizeof(options));
Marcel Holtmanndbece372014-07-04 18:11:55 +0200575}
576
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200577static int read_config_info(struct sock *sk, struct hci_dev *hdev,
578 void *data, u16 data_len)
579{
580 struct mgmt_rp_read_config_info rp;
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200581 u32 options = 0;
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200582
583 BT_DBG("sock %p %s", sk, hdev->name);
584
585 hci_dev_lock(hdev);
586
587 memset(&rp, 0, sizeof(rp));
588 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200589
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200590 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
591 options |= MGMT_OPTION_EXTERNAL_CONFIG;
592
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200593 if (hdev->set_bdaddr)
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200594 options |= MGMT_OPTION_PUBLIC_ADDRESS;
595
596 rp.supported_options = cpu_to_le32(options);
597 rp.missing_options = get_missing_options(hdev);
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200598
599 hci_dev_unlock(hdev);
600
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200601 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0,
602 &rp, sizeof(rp));
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200603}
604
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200605static u32 get_supported_settings(struct hci_dev *hdev)
Johan Hedberg03811012010-12-08 00:21:06 +0200606{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200607 u32 settings = 0;
Johan Hedberg03811012010-12-08 00:21:06 +0200608
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200609 settings |= MGMT_SETTING_POWERED;
Johan Hedbergb2939472014-07-30 09:22:23 +0300610 settings |= MGMT_SETTING_BONDABLE;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800611 settings |= MGMT_SETTING_DEBUG_KEYS;
Johan Hedberg3742abf2014-07-08 16:07:34 +0300612 settings |= MGMT_SETTING_CONNECTABLE;
613 settings |= MGMT_SETTING_DISCOVERABLE;
Johan Hedberg03811012010-12-08 00:21:06 +0200614
Andre Guedesed3fa312012-07-24 15:03:46 -0300615 if (lmp_bredr_capable(hdev)) {
Johan Hedberg1a47aee2013-03-15 17:07:06 -0500616 if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
617 settings |= MGMT_SETTING_FAST_CONNECTABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200618 settings |= MGMT_SETTING_BREDR;
619 settings |= MGMT_SETTING_LINK_SECURITY;
Marcel Holtmanna82974c2013-10-11 09:48:47 -0700620
621 if (lmp_ssp_capable(hdev)) {
622 settings |= MGMT_SETTING_SSP;
623 settings |= MGMT_SETTING_HS;
624 }
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800625
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -0800626 if (lmp_sc_capable(hdev))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800627 settings |= MGMT_SETTING_SECURE_CONN;
Marcel Holtmann848566b2013-10-01 22:59:22 -0700628 }
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100629
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300630 if (lmp_le_capable(hdev)) {
Marcel Holtmann9d428202012-05-03 07:12:31 +0200631 settings |= MGMT_SETTING_LE;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300632 settings |= MGMT_SETTING_ADVERTISING;
Johan Hedberga3209692014-05-26 11:23:35 +0300633 settings |= MGMT_SETTING_SECURE_CONN;
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200634 settings |= MGMT_SETTING_PRIVACY;
Marcel Holtmann93690c22015-03-06 10:11:21 -0800635 settings |= MGMT_SETTING_STATIC_ADDRESS;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300636 }
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200637
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200638 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
639 hdev->set_bdaddr)
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200640 settings |= MGMT_SETTING_CONFIGURATION;
641
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200642 return settings;
643}
Johan Hedbergebc99fe2011-01-04 11:54:26 +0200644
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200645static u32 get_current_settings(struct hci_dev *hdev)
646{
647 u32 settings = 0;
Johan Hedbergdc4fe302011-03-16 14:29:36 +0200648
Johan Hedbergf1f0eb02012-02-21 17:15:41 +0200649 if (hdev_is_powered(hdev))
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100650 settings |= MGMT_SETTING_POWERED;
651
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700652 if (hci_dev_test_flag(hdev, HCI_CONNECTABLE))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200653 settings |= MGMT_SETTING_CONNECTABLE;
654
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700655 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
Johan Hedberg1a4d3c42013-03-15 17:07:08 -0500656 settings |= MGMT_SETTING_FAST_CONNECTABLE;
657
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700658 if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200659 settings |= MGMT_SETTING_DISCOVERABLE;
660
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700661 if (hci_dev_test_flag(hdev, HCI_BONDABLE))
Johan Hedbergb2939472014-07-30 09:22:23 +0300662 settings |= MGMT_SETTING_BONDABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200663
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700664 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200665 settings |= MGMT_SETTING_BREDR;
666
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700667 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200668 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200669
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700670 if (hci_dev_test_flag(hdev, HCI_LINK_SECURITY))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200671 settings |= MGMT_SETTING_LINK_SECURITY;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200672
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700673 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200674 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200675
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700676 if (hci_dev_test_flag(hdev, HCI_HS_ENABLED))
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200677 settings |= MGMT_SETTING_HS;
678
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700679 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300680 settings |= MGMT_SETTING_ADVERTISING;
681
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700682 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800683 settings |= MGMT_SETTING_SECURE_CONN;
684
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700685 if (hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS))
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800686 settings |= MGMT_SETTING_DEBUG_KEYS;
687
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700688 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200689 settings |= MGMT_SETTING_PRIVACY;
690
Marcel Holtmann93690c22015-03-06 10:11:21 -0800691 /* The current setting for static address has two purposes. The
692 * first is to indicate if the static address will be used and
693 * the second is to indicate if it is actually set.
694 *
695 * This means if the static address is not configured, this flag
Marcel Holtmann08dc0e92015-03-25 18:32:13 -0700696 * will never be set. If the address is configured, then if the
Marcel Holtmann93690c22015-03-06 10:11:21 -0800697 * address is actually used decides if the flag is set or not.
698 *
699 * For single mode LE only controllers and dual-mode controllers
700 * with BR/EDR disabled, the existence of the static address will
701 * be evaluated.
702 */
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -0700703 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700704 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
Marcel Holtmann93690c22015-03-06 10:11:21 -0800705 !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
706 if (bacmp(&hdev->static_addr, BDADDR_ANY))
707 settings |= MGMT_SETTING_STATIC_ADDRESS;
708 }
709
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200710 return settings;
Johan Hedbergc542a062011-01-26 13:11:03 +0200711}
712
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300713#define PNP_INFO_SVCLASS_ID 0x1200
714
Johan Hedberg213202e2013-01-27 00:31:33 +0200715static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
716{
717 u8 *ptr = data, *uuids_start = NULL;
718 struct bt_uuid *uuid;
719
720 if (len < 4)
721 return ptr;
722
723 list_for_each_entry(uuid, &hdev->uuids, list) {
724 u16 uuid16;
725
726 if (uuid->size != 16)
727 continue;
728
729 uuid16 = get_unaligned_le16(&uuid->uuid[12]);
730 if (uuid16 < 0x1100)
731 continue;
732
733 if (uuid16 == PNP_INFO_SVCLASS_ID)
734 continue;
735
736 if (!uuids_start) {
737 uuids_start = ptr;
738 uuids_start[0] = 1;
739 uuids_start[1] = EIR_UUID16_ALL;
740 ptr += 2;
741 }
742
743 /* Stop if not enough space to put next UUID */
744 if ((ptr - data) + sizeof(u16) > len) {
745 uuids_start[1] = EIR_UUID16_SOME;
746 break;
747 }
748
749 *ptr++ = (uuid16 & 0x00ff);
750 *ptr++ = (uuid16 & 0xff00) >> 8;
751 uuids_start[0] += sizeof(uuid16);
752 }
753
754 return ptr;
755}
756
Johan Hedbergcdf19632013-01-27 00:31:34 +0200757static u8 *create_uuid32_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
758{
759 u8 *ptr = data, *uuids_start = NULL;
760 struct bt_uuid *uuid;
761
762 if (len < 6)
763 return ptr;
764
765 list_for_each_entry(uuid, &hdev->uuids, list) {
766 if (uuid->size != 32)
767 continue;
768
769 if (!uuids_start) {
770 uuids_start = ptr;
771 uuids_start[0] = 1;
772 uuids_start[1] = EIR_UUID32_ALL;
773 ptr += 2;
774 }
775
776 /* Stop if not enough space to put next UUID */
777 if ((ptr - data) + sizeof(u32) > len) {
778 uuids_start[1] = EIR_UUID32_SOME;
779 break;
780 }
781
782 memcpy(ptr, &uuid->uuid[12], sizeof(u32));
783 ptr += sizeof(u32);
784 uuids_start[0] += sizeof(u32);
785 }
786
787 return ptr;
788}
789
Johan Hedbergc00d5752013-01-27 00:31:35 +0200790static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
791{
792 u8 *ptr = data, *uuids_start = NULL;
793 struct bt_uuid *uuid;
794
795 if (len < 18)
796 return ptr;
797
798 list_for_each_entry(uuid, &hdev->uuids, list) {
799 if (uuid->size != 128)
800 continue;
801
802 if (!uuids_start) {
803 uuids_start = ptr;
804 uuids_start[0] = 1;
805 uuids_start[1] = EIR_UUID128_ALL;
806 ptr += 2;
807 }
808
809 /* Stop if not enough space to put next UUID */
810 if ((ptr - data) + 16 > len) {
811 uuids_start[1] = EIR_UUID128_SOME;
812 break;
813 }
814
815 memcpy(ptr, uuid->uuid, 16);
816 ptr += 16;
817 uuids_start[0] += 16;
818 }
819
820 return ptr;
821}
822
Johan Hedberg333ae952015-03-17 13:48:47 +0200823static struct mgmt_pending_cmd *pending_find(u16 opcode, struct hci_dev *hdev)
824{
825 return mgmt_pending_find(HCI_CHANNEL_CONTROL, opcode, hdev);
826}
827
Johan Hedberg333ae952015-03-17 13:48:47 +0200828static struct mgmt_pending_cmd *pending_find_data(u16 opcode,
829 struct hci_dev *hdev,
830 const void *data)
831{
832 return mgmt_pending_find_data(HCI_CHANNEL_CONTROL, opcode, hdev, data);
833}
834
Arman Uguray4117ed72015-03-23 15:57:14 -0700835static u8 create_default_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700836{
Marcel Holtmann7a5f4992013-10-16 00:16:49 -0700837 u8 ad_len = 0;
838 size_t name_len;
839
840 name_len = strlen(hdev->dev_name);
841 if (name_len > 0) {
842 size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2;
843
844 if (name_len > max_len) {
845 name_len = max_len;
846 ptr[1] = EIR_NAME_SHORT;
847 } else
848 ptr[1] = EIR_NAME_COMPLETE;
849
850 ptr[0] = name_len + 1;
851
852 memcpy(ptr + 2, hdev->dev_name, name_len);
853
854 ad_len += (name_len + 2);
855 ptr += (name_len + 2);
856 }
857
858 return ad_len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700859}
860
Arman Uguray4117ed72015-03-23 15:57:14 -0700861static u8 create_instance_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
862{
863 /* TODO: Set the appropriate entries based on advertising instance flags
864 * here once flags other than 0 are supported.
865 */
866 memcpy(ptr, hdev->adv_instance.scan_rsp_data,
867 hdev->adv_instance.scan_rsp_len);
868
869 return hdev->adv_instance.scan_rsp_len;
870}
871
872static void update_scan_rsp_data_for_instance(struct hci_request *req,
873 u8 instance)
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700874{
875 struct hci_dev *hdev = req->hdev;
876 struct hci_cp_le_set_scan_rsp_data cp;
877 u8 len;
878
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700879 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700880 return;
881
882 memset(&cp, 0, sizeof(cp));
883
Arman Uguray4117ed72015-03-23 15:57:14 -0700884 if (instance)
885 len = create_instance_scan_rsp_data(hdev, cp.data);
886 else
887 len = create_default_scan_rsp_data(hdev, cp.data);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700888
Johan Hedbergeb438b52013-10-16 15:31:07 +0300889 if (hdev->scan_rsp_data_len == len &&
Arman Uguray4117ed72015-03-23 15:57:14 -0700890 !memcmp(cp.data, hdev->scan_rsp_data, len))
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700891 return;
892
Johan Hedbergeb438b52013-10-16 15:31:07 +0300893 memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
894 hdev->scan_rsp_data_len = len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700895
896 cp.length = len;
897
898 hci_req_add(req, HCI_OP_LE_SET_SCAN_RSP_DATA, sizeof(cp), &cp);
899}
900
Arman Uguray4117ed72015-03-23 15:57:14 -0700901static void update_scan_rsp_data(struct hci_request *req)
902{
903 struct hci_dev *hdev = req->hdev;
904 u8 instance;
905
906 /* The "Set Advertising" setting supersedes the "Add Advertising"
907 * setting. Here we set the scan response data based on which
908 * setting was set. When neither apply, default to the global settings,
909 * represented by instance "0".
910 */
911 if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
912 !hci_dev_test_flag(hdev, HCI_ADVERTISING))
913 instance = 0x01;
914 else
915 instance = 0x00;
916
917 update_scan_rsp_data_for_instance(req, instance);
918}
919
Johan Hedberg9a43e252013-10-20 19:00:07 +0300920static u8 get_adv_discov_flags(struct hci_dev *hdev)
921{
Johan Hedberg3b0602c2015-03-06 21:08:55 +0200922 struct mgmt_pending_cmd *cmd;
Johan Hedberg9a43e252013-10-20 19:00:07 +0300923
924 /* If there's a pending mgmt command the flags will not yet have
925 * their final values, so check for this first.
926 */
Johan Hedberg333ae952015-03-17 13:48:47 +0200927 cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg9a43e252013-10-20 19:00:07 +0300928 if (cmd) {
929 struct mgmt_mode *cp = cmd->param;
930 if (cp->val == 0x01)
931 return LE_AD_GENERAL;
932 else if (cp->val == 0x02)
933 return LE_AD_LIMITED;
934 } else {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700935 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
Johan Hedberg9a43e252013-10-20 19:00:07 +0300936 return LE_AD_LIMITED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700937 else if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
Johan Hedberg9a43e252013-10-20 19:00:07 +0300938 return LE_AD_GENERAL;
939 }
940
941 return 0;
942}
943
Arman Uguray24b4f382015-03-23 15:57:12 -0700944static u8 create_default_adv_data(struct hci_dev *hdev, u8 *ptr)
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700945{
946 u8 ad_len = 0, flags = 0;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700947
Johan Hedberg9a43e252013-10-20 19:00:07 +0300948 flags |= get_adv_discov_flags(hdev);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700949
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700950 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700951 flags |= LE_AD_NO_BREDR;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700952
953 if (flags) {
954 BT_DBG("adv flags 0x%02x", flags);
955
956 ptr[0] = 2;
957 ptr[1] = EIR_FLAGS;
958 ptr[2] = flags;
959
960 ad_len += 3;
961 ptr += 3;
962 }
963
964 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID) {
965 ptr[0] = 2;
966 ptr[1] = EIR_TX_POWER;
967 ptr[2] = (u8) hdev->adv_tx_power;
968
969 ad_len += 3;
970 ptr += 3;
971 }
972
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700973 return ad_len;
974}
975
Arman Uguray24b4f382015-03-23 15:57:12 -0700976static u8 create_instance_adv_data(struct hci_dev *hdev, u8 *ptr)
977{
978 /* TODO: Set the appropriate entries based on advertising instance flags
979 * here once flags other than 0 are supported.
980 */
981 memcpy(ptr, hdev->adv_instance.adv_data,
982 hdev->adv_instance.adv_data_len);
983
984 return hdev->adv_instance.adv_data_len;
985}
986
987static void update_adv_data_for_instance(struct hci_request *req, u8 instance)
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700988{
989 struct hci_dev *hdev = req->hdev;
990 struct hci_cp_le_set_adv_data cp;
991 u8 len;
992
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700993 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700994 return;
995
996 memset(&cp, 0, sizeof(cp));
997
Arman Uguray24b4f382015-03-23 15:57:12 -0700998 if (instance)
999 len = create_instance_adv_data(hdev, cp.data);
1000 else
1001 len = create_default_adv_data(hdev, cp.data);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001002
Arman Uguray24b4f382015-03-23 15:57:12 -07001003 /* There's nothing to do if the data hasn't changed */
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001004 if (hdev->adv_data_len == len &&
1005 memcmp(cp.data, hdev->adv_data, len) == 0)
1006 return;
1007
1008 memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
1009 hdev->adv_data_len = len;
1010
1011 cp.length = len;
1012
1013 hci_req_add(req, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);
1014}
1015
Arman Uguraye7a685d2015-03-25 18:53:40 -07001016static u8 get_current_adv_instance(struct hci_dev *hdev)
Arman Uguray24b4f382015-03-23 15:57:12 -07001017{
Arman Uguray24b4f382015-03-23 15:57:12 -07001018 /* The "Set Advertising" setting supersedes the "Add Advertising"
1019 * setting. Here we set the advertising data based on which
1020 * setting was set. When neither apply, default to the global settings,
1021 * represented by instance "0".
1022 */
1023 if (hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE) &&
1024 !hci_dev_test_flag(hdev, HCI_ADVERTISING))
Arman Uguraye7a685d2015-03-25 18:53:40 -07001025 return 0x01;
1026
1027 return 0x00;
1028}
1029
1030static bool get_connectable(struct hci_dev *hdev)
1031{
1032 struct mgmt_pending_cmd *cmd;
1033
1034 /* If there's a pending mgmt command the flag will not yet have
1035 * it's final value, so check for this first.
1036 */
1037 cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
1038 if (cmd) {
1039 struct mgmt_mode *cp = cmd->param;
1040
1041 return cp->val;
1042 }
1043
1044 return hci_dev_test_flag(hdev, HCI_CONNECTABLE);
1045}
1046
1047static u32 get_adv_instance_flags(struct hci_dev *hdev, u8 instance)
1048{
1049 u32 flags;
1050
1051 if (instance > 0x01)
1052 return 0;
1053
1054 if (instance == 1)
1055 return hdev->adv_instance.flags;
1056
1057 flags = 0;
1058
1059 /* For instance 0, assemble the flags from global settings */
1060 if (hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE) ||
1061 get_connectable(hdev))
1062 flags |= MGMT_ADV_FLAG_CONNECTABLE;
1063
1064 /* TODO: Add the rest of the flags */
1065
1066 return flags;
1067}
1068
1069static void update_adv_data(struct hci_request *req)
1070{
1071 struct hci_dev *hdev = req->hdev;
1072 u8 instance = get_current_adv_instance(hdev);
Arman Uguray24b4f382015-03-23 15:57:12 -07001073
1074 update_adv_data_for_instance(req, instance);
1075}
1076
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001077int mgmt_update_adv_data(struct hci_dev *hdev)
1078{
1079 struct hci_request req;
1080
1081 hci_req_init(&req, hdev);
1082 update_adv_data(&req);
1083
1084 return hci_req_run(&req, NULL);
1085}
1086
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001087static void create_eir(struct hci_dev *hdev, u8 *data)
1088{
1089 u8 *ptr = data;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001090 size_t name_len;
1091
1092 name_len = strlen(hdev->dev_name);
1093
1094 if (name_len > 0) {
1095 /* EIR Data type */
1096 if (name_len > 48) {
1097 name_len = 48;
1098 ptr[1] = EIR_NAME_SHORT;
1099 } else
1100 ptr[1] = EIR_NAME_COMPLETE;
1101
1102 /* EIR Data length */
1103 ptr[0] = name_len + 1;
1104
1105 memcpy(ptr + 2, hdev->dev_name, name_len);
1106
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001107 ptr += (name_len + 2);
1108 }
1109
Johan Hedbergbbaf4442012-11-08 01:22:59 +01001110 if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -07001111 ptr[0] = 2;
1112 ptr[1] = EIR_TX_POWER;
1113 ptr[2] = (u8) hdev->inq_tx_power;
1114
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -07001115 ptr += 3;
1116 }
1117
Marcel Holtmann2b9be132012-03-11 19:32:12 -07001118 if (hdev->devid_source > 0) {
1119 ptr[0] = 9;
1120 ptr[1] = EIR_DEVICE_ID;
1121
1122 put_unaligned_le16(hdev->devid_source, ptr + 2);
1123 put_unaligned_le16(hdev->devid_vendor, ptr + 4);
1124 put_unaligned_le16(hdev->devid_product, ptr + 6);
1125 put_unaligned_le16(hdev->devid_version, ptr + 8);
1126
Marcel Holtmann2b9be132012-03-11 19:32:12 -07001127 ptr += 10;
1128 }
1129
Johan Hedberg213202e2013-01-27 00:31:33 +02001130 ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergcdf19632013-01-27 00:31:34 +02001131 ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergc00d5752013-01-27 00:31:35 +02001132 ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001133}
1134
Johan Hedberg890ea892013-03-15 17:06:52 -05001135static void update_eir(struct hci_request *req)
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001136{
Johan Hedberg890ea892013-03-15 17:06:52 -05001137 struct hci_dev *hdev = req->hdev;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001138 struct hci_cp_write_eir cp;
1139
Johan Hedberg504c8dc2012-02-23 13:30:41 +02001140 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05001141 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +02001142
Johan Hedberg976eb202012-10-24 21:12:01 +03001143 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05001144 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001145
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001146 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberg890ea892013-03-15 17:06:52 -05001147 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001148
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001149 if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
Johan Hedberg890ea892013-03-15 17:06:52 -05001150 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001151
1152 memset(&cp, 0, sizeof(cp));
1153
1154 create_eir(hdev, cp.data);
1155
1156 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -05001157 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001158
1159 memcpy(hdev->eir, cp.data, sizeof(cp.data));
1160
Johan Hedberg890ea892013-03-15 17:06:52 -05001161 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03001162}
1163
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001164static u8 get_service_classes(struct hci_dev *hdev)
1165{
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -03001166 struct bt_uuid *uuid;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001167 u8 val = 0;
1168
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -03001169 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001170 val |= uuid->svc_hint;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001171
1172 return val;
1173}
1174
Johan Hedberg890ea892013-03-15 17:06:52 -05001175static void update_class(struct hci_request *req)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001176{
Johan Hedberg890ea892013-03-15 17:06:52 -05001177 struct hci_dev *hdev = req->hdev;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001178 u8 cod[3];
1179
1180 BT_DBG("%s", hdev->name);
1181
Johan Hedberg504c8dc2012-02-23 13:30:41 +02001182 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05001183 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +02001184
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001185 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedbergf87ea1d2013-10-19 23:38:17 +03001186 return;
1187
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001188 if (hci_dev_test_flag(hdev, HCI_SERVICE_CACHE))
Johan Hedberg890ea892013-03-15 17:06:52 -05001189 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001190
1191 cod[0] = hdev->minor_class;
1192 cod[1] = hdev->major_class;
1193 cod[2] = get_service_classes(hdev);
1194
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001195 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
Marcel Holtmann6acd7db2013-10-15 06:33:53 -07001196 cod[1] |= 0x20;
1197
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001198 if (memcmp(cod, hdev->dev_class, 3) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -05001199 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001200
Johan Hedberg890ea892013-03-15 17:06:52 -05001201 hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001202}
1203
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001204static void disable_advertising(struct hci_request *req)
1205{
1206 u8 enable = 0x00;
1207
1208 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
1209}
1210
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001211static void enable_advertising(struct hci_request *req)
1212{
1213 struct hci_dev *hdev = req->hdev;
1214 struct hci_cp_le_set_adv_param cp;
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001215 u8 own_addr_type, enable = 0x01;
Johan Hedberga4858cb2014-02-25 19:56:31 +02001216 bool connectable;
Arman Uguraye7a685d2015-03-25 18:53:40 -07001217 u8 instance;
1218 u32 flags;
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001219
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001220 if (hci_conn_num(hdev, LE_LINK) > 0)
1221 return;
1222
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001223 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001224 disable_advertising(req);
1225
Johan Hedberg5ce194c2014-07-08 15:07:49 +03001226 /* Clear the HCI_LE_ADV bit temporarily so that the
Johan Hedberg8d972502014-02-28 12:54:14 +02001227 * hci_update_random_address knows that it's safe to go ahead
1228 * and write a new random address. The flag will be set back on
1229 * as soon as the SET_ADV_ENABLE HCI command completes.
1230 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001231 hci_dev_clear_flag(hdev, HCI_LE_ADV);
Johan Hedberg8d972502014-02-28 12:54:14 +02001232
Arman Uguraye7a685d2015-03-25 18:53:40 -07001233 instance = get_current_adv_instance(hdev);
1234 flags = get_adv_instance_flags(hdev, instance);
1235 connectable = (flags & MGMT_ADV_FLAG_CONNECTABLE);
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001236
Johan Hedberga4858cb2014-02-25 19:56:31 +02001237 /* Set require_privacy to true only when non-connectable
1238 * advertising is used. In that case it is fine to use a
1239 * non-resolvable private address.
1240 */
1241 if (hci_update_random_address(req, !connectable, &own_addr_type) < 0)
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001242 return;
1243
Marcel Holtmann41c90c12014-02-23 20:25:55 -08001244 memset(&cp, 0, sizeof(cp));
Georg Lukas628531c2014-07-26 13:59:57 +02001245 cp.min_interval = cpu_to_le16(hdev->le_adv_min_interval);
1246 cp.max_interval = cpu_to_le16(hdev->le_adv_max_interval);
Johan Hedberga4858cb2014-02-25 19:56:31 +02001247 cp.type = connectable ? LE_ADV_IND : LE_ADV_NONCONN_IND;
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001248 cp.own_address_type = own_addr_type;
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001249 cp.channel_map = hdev->le_adv_channel_map;
1250
1251 hci_req_add(req, HCI_OP_LE_SET_ADV_PARAM, sizeof(cp), &cp);
1252
1253 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
1254}
1255
Johan Hedberg7d785252011-12-15 00:47:39 +02001256static void service_cache_off(struct work_struct *work)
1257{
1258 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001259 service_cache.work);
Johan Hedberg890ea892013-03-15 17:06:52 -05001260 struct hci_request req;
Johan Hedberg7d785252011-12-15 00:47:39 +02001261
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001262 if (!hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
Johan Hedberg7d785252011-12-15 00:47:39 +02001263 return;
1264
Johan Hedberg890ea892013-03-15 17:06:52 -05001265 hci_req_init(&req, hdev);
1266
Johan Hedberg7d785252011-12-15 00:47:39 +02001267 hci_dev_lock(hdev);
1268
Johan Hedberg890ea892013-03-15 17:06:52 -05001269 update_eir(&req);
1270 update_class(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02001271
1272 hci_dev_unlock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05001273
1274 hci_req_run(&req, NULL);
Johan Hedberg7d785252011-12-15 00:47:39 +02001275}
1276
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001277static void rpa_expired(struct work_struct *work)
1278{
1279 struct hci_dev *hdev = container_of(work, struct hci_dev,
1280 rpa_expired.work);
1281 struct hci_request req;
1282
1283 BT_DBG("");
1284
Marcel Holtmanna1536da2015-03-13 02:11:01 -07001285 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001286
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001287 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001288 return;
1289
1290 /* The generation of a new RPA and programming it into the
1291 * controller happens in the enable_advertising() function.
1292 */
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001293 hci_req_init(&req, hdev);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001294 enable_advertising(&req);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001295 hci_req_run(&req, NULL);
1296}
1297
Johan Hedberg6a919082012-02-28 06:17:26 +02001298static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +02001299{
Marcel Holtmann238be782015-03-13 02:11:06 -07001300 if (hci_dev_test_and_set_flag(hdev, HCI_MGMT))
Johan Hedberg6a919082012-02-28 06:17:26 +02001301 return;
1302
Johan Hedberg4f87da82012-03-02 19:55:56 +02001303 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001304 INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
Johan Hedberg7d785252011-12-15 00:47:39 +02001305
Johan Hedberg4f87da82012-03-02 19:55:56 +02001306 /* Non-mgmt controlled devices get this bit set
1307 * implicitly so that pairing works for them, however
1308 * for mgmt we require user-space to explicitly enable
1309 * it
1310 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001311 hci_dev_clear_flag(hdev, HCI_BONDABLE);
Johan Hedberg7d785252011-12-15 00:47:39 +02001312}
1313
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02001314static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001315 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +02001316{
1317 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +02001318
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001319 BT_DBG("sock %p %s", sk, hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001320
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001321 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001322
Johan Hedberg03811012010-12-08 00:21:06 +02001323 memset(&rp, 0, sizeof(rp));
1324
Johan Hedberg03811012010-12-08 00:21:06 +02001325 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001326
1327 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001328 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001329
1330 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
1331 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
1332
1333 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedberg03811012010-12-08 00:21:06 +02001334
1335 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +02001336 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedberg03811012010-12-08 00:21:06 +02001337
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001338 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001339
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001340 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
1341 sizeof(rp));
Johan Hedberg03811012010-12-08 00:21:06 +02001342}
1343
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001344static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +02001345{
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001346 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +02001347
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001348 return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &settings,
1349 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +02001350}
1351
Marcel Holtmann1904a852015-01-11 13:50:44 -08001352static void clean_up_hci_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg8b064a32014-02-24 14:52:22 +02001353{
1354 BT_DBG("%s status 0x%02x", hdev->name, status);
1355
Johan Hedberga3172b72014-02-28 09:33:44 +02001356 if (hci_conn_count(hdev) == 0) {
1357 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001358 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02001359 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001360}
1361
Johan Hedberg23a48092014-07-08 16:05:06 +03001362static bool hci_stop_discovery(struct hci_request *req)
Johan Hedberg21a60d32014-06-10 14:05:58 +03001363{
1364 struct hci_dev *hdev = req->hdev;
1365 struct hci_cp_remote_name_req_cancel cp;
1366 struct inquiry_entry *e;
1367
1368 switch (hdev->discovery.state) {
1369 case DISCOVERY_FINDING:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07001370 if (test_bit(HCI_INQUIRY, &hdev->flags))
Johan Hedberg21a60d32014-06-10 14:05:58 +03001371 hci_req_add(req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
Jakub Pawlowski07d23342015-03-17 09:04:14 -07001372
1373 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
Johan Hedberg21a60d32014-06-10 14:05:58 +03001374 cancel_delayed_work(&hdev->le_scan_disable);
1375 hci_req_add_le_scan_disable(req);
1376 }
1377
Johan Hedberg23a48092014-07-08 16:05:06 +03001378 return true;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001379
1380 case DISCOVERY_RESOLVING:
1381 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
1382 NAME_PENDING);
1383 if (!e)
Johan Hedberg23a48092014-07-08 16:05:06 +03001384 break;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001385
1386 bacpy(&cp.bdaddr, &e->data.bdaddr);
1387 hci_req_add(req, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp),
1388 &cp);
1389
Johan Hedberg23a48092014-07-08 16:05:06 +03001390 return true;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001391
1392 default:
1393 /* Passive scanning */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001394 if (hci_dev_test_flag(hdev, HCI_LE_SCAN)) {
Johan Hedberg21a60d32014-06-10 14:05:58 +03001395 hci_req_add_le_scan_disable(req);
Johan Hedberg23a48092014-07-08 16:05:06 +03001396 return true;
1397 }
1398
Johan Hedberg21a60d32014-06-10 14:05:58 +03001399 break;
1400 }
Johan Hedberg23a48092014-07-08 16:05:06 +03001401
1402 return false;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001403}
1404
Arman Uguray912098a2015-03-23 15:57:15 -07001405static void advertising_added(struct sock *sk, struct hci_dev *hdev,
1406 u8 instance)
1407{
1408 struct mgmt_ev_advertising_added ev;
1409
1410 ev.instance = instance;
1411
1412 mgmt_event(MGMT_EV_ADVERTISING_ADDED, hdev, &ev, sizeof(ev), sk);
1413}
1414
1415static void advertising_removed(struct sock *sk, struct hci_dev *hdev,
1416 u8 instance)
1417{
1418 struct mgmt_ev_advertising_removed ev;
1419
1420 ev.instance = instance;
1421
1422 mgmt_event(MGMT_EV_ADVERTISING_REMOVED, hdev, &ev, sizeof(ev), sk);
1423}
1424
1425static void clear_adv_instance(struct hci_dev *hdev)
1426{
1427 struct hci_request req;
1428
1429 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
1430 return;
1431
1432 if (hdev->adv_instance.timeout)
1433 cancel_delayed_work(&hdev->adv_instance.timeout_exp);
1434
1435 memset(&hdev->adv_instance, 0, sizeof(hdev->adv_instance));
1436 advertising_removed(NULL, hdev, 1);
1437 hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
1438
1439 if (!hdev_is_powered(hdev) ||
1440 hci_dev_test_flag(hdev, HCI_ADVERTISING))
1441 return;
1442
1443 hci_req_init(&req, hdev);
1444 disable_advertising(&req);
1445 hci_req_run(&req, NULL);
1446}
1447
Johan Hedberg8b064a32014-02-24 14:52:22 +02001448static int clean_up_hci_state(struct hci_dev *hdev)
1449{
1450 struct hci_request req;
1451 struct hci_conn *conn;
Johan Hedberg23a48092014-07-08 16:05:06 +03001452 bool discov_stopped;
1453 int err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001454
1455 hci_req_init(&req, hdev);
1456
1457 if (test_bit(HCI_ISCAN, &hdev->flags) ||
1458 test_bit(HCI_PSCAN, &hdev->flags)) {
1459 u8 scan = 0x00;
1460 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1461 }
1462
Arman Uguray912098a2015-03-23 15:57:15 -07001463 if (hdev->adv_instance.timeout)
1464 clear_adv_instance(hdev);
1465
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001466 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Johan Hedberg8b064a32014-02-24 14:52:22 +02001467 disable_advertising(&req);
1468
Johan Hedberg23a48092014-07-08 16:05:06 +03001469 discov_stopped = hci_stop_discovery(&req);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001470
1471 list_for_each_entry(conn, &hdev->conn_hash.list, list) {
1472 struct hci_cp_disconnect dc;
Johan Hedbergc9910d02014-02-27 14:35:12 +02001473 struct hci_cp_reject_conn_req rej;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001474
Johan Hedbergc9910d02014-02-27 14:35:12 +02001475 switch (conn->state) {
1476 case BT_CONNECTED:
1477 case BT_CONFIG:
1478 dc.handle = cpu_to_le16(conn->handle);
1479 dc.reason = 0x15; /* Terminated due to Power Off */
1480 hci_req_add(&req, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1481 break;
1482 case BT_CONNECT:
1483 if (conn->type == LE_LINK)
1484 hci_req_add(&req, HCI_OP_LE_CREATE_CONN_CANCEL,
1485 0, NULL);
1486 else if (conn->type == ACL_LINK)
1487 hci_req_add(&req, HCI_OP_CREATE_CONN_CANCEL,
1488 6, &conn->dst);
1489 break;
1490 case BT_CONNECT2:
1491 bacpy(&rej.bdaddr, &conn->dst);
1492 rej.reason = 0x15; /* Terminated due to Power Off */
1493 if (conn->type == ACL_LINK)
1494 hci_req_add(&req, HCI_OP_REJECT_CONN_REQ,
1495 sizeof(rej), &rej);
1496 else if (conn->type == SCO_LINK)
1497 hci_req_add(&req, HCI_OP_REJECT_SYNC_CONN_REQ,
1498 sizeof(rej), &rej);
1499 break;
1500 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001501 }
1502
Johan Hedberg23a48092014-07-08 16:05:06 +03001503 err = hci_req_run(&req, clean_up_hci_complete);
1504 if (!err && discov_stopped)
1505 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
1506
1507 return err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001508}
1509
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001510static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001511 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001512{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001513 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001514 struct mgmt_pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001515 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02001516
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001517 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001518
Johan Hedberga7e80f22013-01-09 16:05:19 +02001519 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001520 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1521 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001522
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001523 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001524
Johan Hedberg333ae952015-03-17 13:48:47 +02001525 if (pending_find(MGMT_OP_SET_POWERED, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001526 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1527 MGMT_STATUS_BUSY);
Johan Hedberg87b95ba2013-09-25 13:26:06 +03001528 goto failed;
1529 }
1530
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001531 if (hci_dev_test_and_clear_flag(hdev, HCI_AUTO_OFF)) {
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001532 cancel_delayed_work(&hdev->power_off);
1533
1534 if (cp->val) {
Johan Hedberga1d70452013-01-09 15:29:40 +02001535 mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
1536 data, len);
1537 err = mgmt_powered(hdev, 1);
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001538 goto failed;
1539 }
1540 }
1541
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001542 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001543 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001544 goto failed;
1545 }
1546
Johan Hedberg03811012010-12-08 00:21:06 +02001547 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1548 if (!cmd) {
1549 err = -ENOMEM;
1550 goto failed;
1551 }
1552
Johan Hedberg8b064a32014-02-24 14:52:22 +02001553 if (cp->val) {
Johan Hedberg19202572013-01-14 22:33:51 +02001554 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001555 err = 0;
1556 } else {
1557 /* Disconnect connections, stop scans, etc */
1558 err = clean_up_hci_state(hdev);
Johan Hedberga3172b72014-02-28 09:33:44 +02001559 if (!err)
1560 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1561 HCI_POWER_OFF_TIMEOUT);
Johan Hedberg03811012010-12-08 00:21:06 +02001562
Johan Hedberg8b064a32014-02-24 14:52:22 +02001563 /* ENODATA means there were no HCI commands queued */
1564 if (err == -ENODATA) {
Johan Hedberga3172b72014-02-28 09:33:44 +02001565 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001566 queue_work(hdev->req_workqueue, &hdev->power_off.work);
1567 err = 0;
1568 }
1569 }
Johan Hedberg03811012010-12-08 00:21:06 +02001570
1571failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001572 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001573 return err;
1574}
1575
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001576static int new_settings(struct hci_dev *hdev, struct sock *skip)
1577{
Marcel Holtmannf6b77122015-03-14 19:28:05 -07001578 __le32 ev = cpu_to_le32(get_current_settings(hdev));
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001579
Marcel Holtmannf6b77122015-03-14 19:28:05 -07001580 return mgmt_generic_event(MGMT_EV_NEW_SETTINGS, hdev, &ev,
1581 sizeof(ev), skip);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001582}
1583
Johan Hedberg91a668b2014-07-09 13:28:26 +03001584int mgmt_new_settings(struct hci_dev *hdev)
1585{
1586 return new_settings(hdev, NULL);
1587}
1588
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001589struct cmd_lookup {
1590 struct sock *sk;
1591 struct hci_dev *hdev;
1592 u8 mgmt_status;
1593};
1594
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001595static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001596{
1597 struct cmd_lookup *match = data;
1598
1599 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
1600
1601 list_del(&cmd->list);
1602
1603 if (match->sk == NULL) {
1604 match->sk = cmd->sk;
1605 sock_hold(match->sk);
1606 }
1607
1608 mgmt_pending_free(cmd);
1609}
1610
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001611static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001612{
1613 u8 *status = data;
1614
Johan Hedberga69e8372015-03-06 21:08:53 +02001615 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001616 mgmt_pending_remove(cmd);
1617}
1618
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001619static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg1b9b5ee2014-12-05 13:36:00 +02001620{
1621 if (cmd->cmd_complete) {
1622 u8 *status = data;
1623
1624 cmd->cmd_complete(cmd, *status);
1625 mgmt_pending_remove(cmd);
1626
1627 return;
1628 }
1629
1630 cmd_status_rsp(cmd, data);
1631}
1632
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001633static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedbergf5818c22014-12-05 13:36:02 +02001634{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001635 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1636 cmd->param, cmd->param_len);
Johan Hedbergf5818c22014-12-05 13:36:02 +02001637}
1638
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001639static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001640{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001641 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1642 cmd->param, sizeof(struct mgmt_addr_info));
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001643}
1644
Johan Hedberge6fe7982013-10-02 15:45:22 +03001645static u8 mgmt_bredr_support(struct hci_dev *hdev)
1646{
1647 if (!lmp_bredr_capable(hdev))
1648 return MGMT_STATUS_NOT_SUPPORTED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001649 else if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberge6fe7982013-10-02 15:45:22 +03001650 return MGMT_STATUS_REJECTED;
1651 else
1652 return MGMT_STATUS_SUCCESS;
1653}
1654
1655static u8 mgmt_le_support(struct hci_dev *hdev)
1656{
1657 if (!lmp_le_capable(hdev))
1658 return MGMT_STATUS_NOT_SUPPORTED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001659 else if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberge6fe7982013-10-02 15:45:22 +03001660 return MGMT_STATUS_REJECTED;
1661 else
1662 return MGMT_STATUS_SUCCESS;
1663}
1664
Marcel Holtmann1904a852015-01-11 13:50:44 -08001665static void set_discoverable_complete(struct hci_dev *hdev, u8 status,
1666 u16 opcode)
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001667{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001668 struct mgmt_pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001669 struct mgmt_mode *cp;
Marcel Holtmann970ba522013-10-15 06:33:57 -07001670 struct hci_request req;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001671 bool changed;
1672
1673 BT_DBG("status 0x%02x", status);
1674
1675 hci_dev_lock(hdev);
1676
Johan Hedberg333ae952015-03-17 13:48:47 +02001677 cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001678 if (!cmd)
1679 goto unlock;
1680
1681 if (status) {
1682 u8 mgmt_err = mgmt_status(status);
Johan Hedberga69e8372015-03-06 21:08:53 +02001683 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001684 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001685 goto remove_cmd;
1686 }
1687
1688 cp = cmd->param;
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001689 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07001690 changed = !hci_dev_test_and_set_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001691
1692 if (hdev->discov_timeout > 0) {
1693 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1694 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1695 to);
1696 }
1697 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001698 changed = hci_dev_test_and_clear_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001699 }
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001700
1701 send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1702
1703 if (changed)
1704 new_settings(hdev, cmd->sk);
1705
Marcel Holtmann970ba522013-10-15 06:33:57 -07001706 /* When the discoverable mode gets changed, make sure
1707 * that class of device has the limited discoverable
Johan Hedberg432df052014-08-01 11:13:31 +03001708 * bit correctly set. Also update page scan based on whitelist
1709 * entries.
Marcel Holtmann970ba522013-10-15 06:33:57 -07001710 */
1711 hci_req_init(&req, hdev);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02001712 __hci_update_page_scan(&req);
Marcel Holtmann970ba522013-10-15 06:33:57 -07001713 update_class(&req);
1714 hci_req_run(&req, NULL);
1715
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001716remove_cmd:
1717 mgmt_pending_remove(cmd);
1718
1719unlock:
1720 hci_dev_unlock(hdev);
1721}
1722
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001723static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001724 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001725{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001726 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001727 struct mgmt_pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001728 struct hci_request req;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001729 u16 timeout;
Johan Hedberg9a43e252013-10-20 19:00:07 +03001730 u8 scan;
Johan Hedberg03811012010-12-08 00:21:06 +02001731 int err;
Johan Hedberge41d8b42010-12-13 21:07:03 +02001732
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001733 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001734
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001735 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
1736 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02001737 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1738 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001739
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001740 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02001741 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1742 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001743
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001744 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001745
1746 /* Disabling discoverable requires that no timeout is set,
1747 * and enabling limited discoverable requires a timeout.
1748 */
1749 if ((cp->val == 0x00 && timeout > 0) ||
1750 (cp->val == 0x02 && timeout == 0))
Johan Hedberga69e8372015-03-06 21:08:53 +02001751 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1752 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001753
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001754 hci_dev_lock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001755
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001756 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001757 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1758 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001759 goto failed;
1760 }
1761
Johan Hedberg333ae952015-03-17 13:48:47 +02001762 if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
1763 pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001764 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1765 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001766 goto failed;
1767 }
1768
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001769 if (!hci_dev_test_flag(hdev, HCI_CONNECTABLE)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001770 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1771 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001772 goto failed;
1773 }
1774
1775 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001776 bool changed = false;
1777
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001778 /* Setting limited discoverable when powered off is
1779 * not a valid operation since it requires a timeout
1780 * and so no need to check HCI_LIMITED_DISCOVERABLE.
1781 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001782 if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07001783 hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001784 changed = true;
1785 }
1786
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001787 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001788 if (err < 0)
1789 goto failed;
1790
1791 if (changed)
1792 err = new_settings(hdev, sk);
1793
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001794 goto failed;
1795 }
1796
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001797 /* If the current mode is the same, then just update the timeout
1798 * value with the new value. And if only the timeout gets updated,
1799 * then no need for any HCI transactions.
1800 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001801 if (!!cp->val == hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
1802 (cp->val == 0x02) == hci_dev_test_flag(hdev,
1803 HCI_LIMITED_DISCOVERABLE)) {
Marcel Holtmann36261542013-10-15 08:28:51 -07001804 cancel_delayed_work(&hdev->discov_off);
1805 hdev->discov_timeout = timeout;
Marcel Holtmann955638e2012-02-22 18:21:00 +01001806
Marcel Holtmann36261542013-10-15 08:28:51 -07001807 if (cp->val && hdev->discov_timeout > 0) {
1808 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001809 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
Marcel Holtmann36261542013-10-15 08:28:51 -07001810 to);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001811 }
1812
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001813 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001814 goto failed;
1815 }
1816
1817 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1818 if (!cmd) {
1819 err = -ENOMEM;
1820 goto failed;
1821 }
1822
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001823 /* Cancel any potential discoverable timeout that might be
1824 * still active and store new timeout value. The arming of
1825 * the timeout happens in the complete handler.
1826 */
1827 cancel_delayed_work(&hdev->discov_off);
1828 hdev->discov_timeout = timeout;
1829
Johan Hedbergb456f872013-10-19 23:38:22 +03001830 /* Limited discoverable mode */
1831 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07001832 hci_dev_set_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergb456f872013-10-19 23:38:22 +03001833 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001834 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergb456f872013-10-19 23:38:22 +03001835
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001836 hci_req_init(&req, hdev);
1837
Johan Hedberg9a43e252013-10-20 19:00:07 +03001838 /* The procedure for LE-only controllers is much simpler - just
1839 * update the advertising data.
1840 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001841 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg9a43e252013-10-20 19:00:07 +03001842 goto update_ad;
1843
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001844 scan = SCAN_PAGE;
1845
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001846 if (cp->val) {
1847 struct hci_cp_write_current_iac_lap hci_cp;
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001848
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001849 if (cp->val == 0x02) {
1850 /* Limited discoverable mode */
Marcel Holtmann33337dc2013-10-23 08:28:01 -07001851 hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001852 hci_cp.iac_lap[0] = 0x00; /* LIAC */
1853 hci_cp.iac_lap[1] = 0x8b;
1854 hci_cp.iac_lap[2] = 0x9e;
1855 hci_cp.iac_lap[3] = 0x33; /* GIAC */
1856 hci_cp.iac_lap[4] = 0x8b;
1857 hci_cp.iac_lap[5] = 0x9e;
1858 } else {
1859 /* General discoverable mode */
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001860 hci_cp.num_iac = 1;
1861 hci_cp.iac_lap[0] = 0x33; /* GIAC */
1862 hci_cp.iac_lap[1] = 0x8b;
1863 hci_cp.iac_lap[2] = 0x9e;
1864 }
1865
1866 hci_req_add(&req, HCI_OP_WRITE_CURRENT_IAC_LAP,
1867 (hci_cp.num_iac * 3) + 1, &hci_cp);
1868
1869 scan |= SCAN_INQUIRY;
1870 } else {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001871 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001872 }
1873
1874 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001875
Johan Hedberg9a43e252013-10-20 19:00:07 +03001876update_ad:
1877 update_adv_data(&req);
1878
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001879 err = hci_req_run(&req, set_discoverable_complete);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001880 if (err < 0)
1881 mgmt_pending_remove(cmd);
1882
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001883failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001884 hci_dev_unlock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001885 return err;
1886}
1887
Johan Hedberg406d7802013-03-15 17:07:09 -05001888static void write_fast_connectable(struct hci_request *req, bool enable)
1889{
Johan Hedbergbd98b992013-03-15 17:07:13 -05001890 struct hci_dev *hdev = req->hdev;
Johan Hedberg406d7802013-03-15 17:07:09 -05001891 struct hci_cp_write_page_scan_activity acp;
1892 u8 type;
1893
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001894 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg547003b2013-10-21 16:51:53 +03001895 return;
1896
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05001897 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
1898 return;
1899
Johan Hedberg406d7802013-03-15 17:07:09 -05001900 if (enable) {
1901 type = PAGE_SCAN_TYPE_INTERLACED;
1902
1903 /* 160 msec page scan interval */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001904 acp.interval = cpu_to_le16(0x0100);
Johan Hedberg406d7802013-03-15 17:07:09 -05001905 } else {
1906 type = PAGE_SCAN_TYPE_STANDARD; /* default */
1907
1908 /* default 1.28 sec page scan */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001909 acp.interval = cpu_to_le16(0x0800);
Johan Hedberg406d7802013-03-15 17:07:09 -05001910 }
1911
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001912 acp.window = cpu_to_le16(0x0012);
Johan Hedberg406d7802013-03-15 17:07:09 -05001913
Johan Hedbergbd98b992013-03-15 17:07:13 -05001914 if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval ||
1915 __cpu_to_le16(hdev->page_scan_window) != acp.window)
1916 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
1917 sizeof(acp), &acp);
1918
1919 if (hdev->page_scan_type != type)
1920 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
Johan Hedberg406d7802013-03-15 17:07:09 -05001921}
1922
Marcel Holtmann1904a852015-01-11 13:50:44 -08001923static void set_connectable_complete(struct hci_dev *hdev, u8 status,
1924 u16 opcode)
Johan Hedberg2b76f452013-03-15 17:07:04 -05001925{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001926 struct mgmt_pending_cmd *cmd;
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001927 struct mgmt_mode *cp;
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001928 bool conn_changed, discov_changed;
Johan Hedberg2b76f452013-03-15 17:07:04 -05001929
1930 BT_DBG("status 0x%02x", status);
1931
1932 hci_dev_lock(hdev);
1933
Johan Hedberg333ae952015-03-17 13:48:47 +02001934 cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberg2b76f452013-03-15 17:07:04 -05001935 if (!cmd)
1936 goto unlock;
1937
Johan Hedberg37438c12013-10-14 16:20:05 +03001938 if (status) {
1939 u8 mgmt_err = mgmt_status(status);
Johan Hedberga69e8372015-03-06 21:08:53 +02001940 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg37438c12013-10-14 16:20:05 +03001941 goto remove_cmd;
1942 }
1943
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001944 cp = cmd->param;
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001945 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07001946 conn_changed = !hci_dev_test_and_set_flag(hdev,
1947 HCI_CONNECTABLE);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001948 discov_changed = false;
1949 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001950 conn_changed = hci_dev_test_and_clear_flag(hdev,
1951 HCI_CONNECTABLE);
1952 discov_changed = hci_dev_test_and_clear_flag(hdev,
1953 HCI_DISCOVERABLE);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001954 }
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001955
Johan Hedberg2b76f452013-03-15 17:07:04 -05001956 send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);
1957
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001958 if (conn_changed || discov_changed) {
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001959 new_settings(hdev, cmd->sk);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02001960 hci_update_page_scan(hdev);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001961 if (discov_changed)
1962 mgmt_update_adv_data(hdev);
Johan Hedberg2b7be332014-07-07 14:40:22 +03001963 hci_update_background_scan(hdev);
1964 }
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001965
Johan Hedberg37438c12013-10-14 16:20:05 +03001966remove_cmd:
Johan Hedberg2b76f452013-03-15 17:07:04 -05001967 mgmt_pending_remove(cmd);
1968
1969unlock:
1970 hci_dev_unlock(hdev);
1971}
1972
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001973static int set_connectable_update_settings(struct hci_dev *hdev,
1974 struct sock *sk, u8 val)
1975{
1976 bool changed = false;
1977 int err;
1978
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001979 if (!!val != hci_dev_test_flag(hdev, HCI_CONNECTABLE))
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001980 changed = true;
1981
1982 if (val) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07001983 hci_dev_set_flag(hdev, HCI_CONNECTABLE);
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001984 } else {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001985 hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
1986 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001987 }
1988
1989 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
1990 if (err < 0)
1991 return err;
1992
Johan Hedberg562064e2014-07-08 16:35:34 +03001993 if (changed) {
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02001994 hci_update_page_scan(hdev);
Johan Hedberg562064e2014-07-08 16:35:34 +03001995 hci_update_background_scan(hdev);
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001996 return new_settings(hdev, sk);
Johan Hedberg562064e2014-07-08 16:35:34 +03001997 }
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001998
1999 return 0;
2000}
2001
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002002static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002003 u16 len)
Johan Hedbergf7b64e62010-12-13 21:07:06 +02002004{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002005 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002006 struct mgmt_pending_cmd *cmd;
Johan Hedberg2b76f452013-03-15 17:07:04 -05002007 struct hci_request req;
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002008 u8 scan;
Johan Hedbergf7b64e62010-12-13 21:07:06 +02002009 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02002010
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002011 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +02002012
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002013 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
2014 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02002015 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2016 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03002017
Johan Hedberga7e80f22013-01-09 16:05:19 +02002018 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002019 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2020 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002021
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002022 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002023
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002024 if (!hdev_is_powered(hdev)) {
Johan Hedberge8ba3a12013-10-19 23:38:18 +03002025 err = set_connectable_update_settings(hdev, sk, cp->val);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002026 goto failed;
2027 }
2028
Johan Hedberg333ae952015-03-17 13:48:47 +02002029 if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
2030 pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002031 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
2032 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002033 goto failed;
2034 }
2035
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002036 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
2037 if (!cmd) {
2038 err = -ENOMEM;
2039 goto failed;
2040 }
2041
Johan Hedberg2b76f452013-03-15 17:07:04 -05002042 hci_req_init(&req, hdev);
2043
Johan Hedberg9a43e252013-10-20 19:00:07 +03002044 /* If BR/EDR is not enabled and we disable advertising as a
2045 * by-product of disabling connectable, we need to update the
2046 * advertising flags.
2047 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002048 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg9a43e252013-10-20 19:00:07 +03002049 if (!cp->val) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002050 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
2051 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberg9a43e252013-10-20 19:00:07 +03002052 }
2053 update_adv_data(&req);
2054 } else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg9b742462013-10-14 16:20:03 +03002055 if (cp->val) {
2056 scan = SCAN_PAGE;
2057 } else {
Johan Hedberg3bd27242014-07-28 20:53:58 +03002058 /* If we don't have any whitelist entries just
2059 * disable all scanning. If there are entries
2060 * and we had both page and inquiry scanning
2061 * enabled then fall back to only page scanning.
2062 * Otherwise no changes are needed.
2063 */
2064 if (list_empty(&hdev->whitelist))
2065 scan = SCAN_DISABLED;
2066 else if (test_bit(HCI_ISCAN, &hdev->flags))
2067 scan = SCAN_PAGE;
2068 else
2069 goto no_scan_update;
Johan Hedberg9b742462013-10-14 16:20:03 +03002070
2071 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Marcel Holtmann8d6083f2013-10-14 16:38:45 -07002072 hdev->discov_timeout > 0)
Johan Hedberg9b742462013-10-14 16:20:03 +03002073 cancel_delayed_work(&hdev->discov_off);
2074 }
2075
2076 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
2077 }
Johan Hedberg2b76f452013-03-15 17:07:04 -05002078
Johan Hedberg3bd27242014-07-28 20:53:58 +03002079no_scan_update:
Johan Hedberge8b12022014-07-10 10:51:27 +03002080 /* Update the advertising parameters if necessary */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002081 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002082 enable_advertising(&req);
Johan Hedberg1987fdc2013-10-14 21:15:24 +03002083
Johan Hedberg2b76f452013-03-15 17:07:04 -05002084 err = hci_req_run(&req, set_connectable_complete);
Johan Hedberg9b742462013-10-14 16:20:03 +03002085 if (err < 0) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002086 mgmt_pending_remove(cmd);
Johan Hedberg9b742462013-10-14 16:20:03 +03002087 if (err == -ENODATA)
Johan Hedberga81070b2013-10-19 23:38:19 +03002088 err = set_connectable_update_settings(hdev, sk,
2089 cp->val);
Johan Hedberg9b742462013-10-14 16:20:03 +03002090 goto failed;
2091 }
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002092
2093failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002094 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002095 return err;
2096}
2097
Johan Hedbergb2939472014-07-30 09:22:23 +03002098static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002099 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02002100{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002101 struct mgmt_mode *cp = data;
Marcel Holtmann55594352013-10-06 16:11:57 -07002102 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02002103 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002104
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002105 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002106
Johan Hedberga7e80f22013-01-09 16:05:19 +02002107 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002108 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE,
2109 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002110
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002111 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002112
2113 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07002114 changed = !hci_dev_test_and_set_flag(hdev, HCI_BONDABLE);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002115 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002116 changed = hci_dev_test_and_clear_flag(hdev, HCI_BONDABLE);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002117
Johan Hedbergb2939472014-07-30 09:22:23 +03002118 err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002119 if (err < 0)
Marcel Holtmann55594352013-10-06 16:11:57 -07002120 goto unlock;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002121
Marcel Holtmann55594352013-10-06 16:11:57 -07002122 if (changed)
2123 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002124
Marcel Holtmann55594352013-10-06 16:11:57 -07002125unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002126 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02002127 return err;
2128}
Johan Hedberg72a734e2010-12-30 00:38:22 +02002129
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002130static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
2131 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002132{
2133 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002134 struct mgmt_pending_cmd *cmd;
Johan Hedberge6fe7982013-10-02 15:45:22 +03002135 u8 val, status;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002136 int err;
2137
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002138 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002139
Johan Hedberge6fe7982013-10-02 15:45:22 +03002140 status = mgmt_bredr_support(hdev);
2141 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002142 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2143 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +03002144
Johan Hedberga7e80f22013-01-09 16:05:19 +02002145 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002146 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2147 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002148
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002149 hci_dev_lock(hdev);
2150
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002151 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02002152 bool changed = false;
2153
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002154 if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07002155 hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02002156 changed = true;
2157 }
2158
2159 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
2160 if (err < 0)
2161 goto failed;
2162
2163 if (changed)
2164 err = new_settings(hdev, sk);
2165
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002166 goto failed;
2167 }
2168
Johan Hedberg333ae952015-03-17 13:48:47 +02002169 if (pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002170 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2171 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002172 goto failed;
2173 }
2174
2175 val = !!cp->val;
2176
2177 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
2178 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
2179 goto failed;
2180 }
2181
2182 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
2183 if (!cmd) {
2184 err = -ENOMEM;
2185 goto failed;
2186 }
2187
2188 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
2189 if (err < 0) {
2190 mgmt_pending_remove(cmd);
2191 goto failed;
2192 }
2193
2194failed:
2195 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002196 return err;
2197}
2198
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002199static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002200{
2201 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002202 struct mgmt_pending_cmd *cmd;
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002203 u8 status;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002204 int err;
2205
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002206 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002207
Marcel Holtmanncdba5282013-10-02 21:31:52 -07002208 status = mgmt_bredr_support(hdev);
2209 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002210 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
Marcel Holtmanncdba5282013-10-02 21:31:52 -07002211
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002212 if (!lmp_ssp_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002213 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2214 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002215
Johan Hedberga7e80f22013-01-09 16:05:19 +02002216 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002217 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2218 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002219
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002220 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02002221
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002222 if (!hdev_is_powered(hdev)) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002223 bool changed;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02002224
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002225 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07002226 changed = !hci_dev_test_and_set_flag(hdev,
2227 HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002228 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002229 changed = hci_dev_test_and_clear_flag(hdev,
2230 HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002231 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002232 changed = hci_dev_test_and_clear_flag(hdev,
2233 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002234 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002235 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02002236 }
2237
2238 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
2239 if (err < 0)
2240 goto failed;
2241
2242 if (changed)
2243 err = new_settings(hdev, sk);
2244
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002245 goto failed;
2246 }
2247
Johan Hedberg333ae952015-03-17 13:48:47 +02002248 if (pending_find(MGMT_OP_SET_SSP, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002249 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2250 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002251 goto failed;
2252 }
2253
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002254 if (!!cp->val == hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002255 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
2256 goto failed;
2257 }
2258
2259 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
2260 if (!cmd) {
2261 err = -ENOMEM;
2262 goto failed;
2263 }
2264
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002265 if (!cp->val && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03002266 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
2267 sizeof(cp->val), &cp->val);
2268
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002269 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002270 if (err < 0) {
2271 mgmt_pending_remove(cmd);
2272 goto failed;
2273 }
2274
2275failed:
2276 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002277 return err;
2278}
2279
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002280static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002281{
2282 struct mgmt_mode *cp = data;
Marcel Holtmannee392692013-10-01 22:59:23 -07002283 bool changed;
Johan Hedberge6fe7982013-10-02 15:45:22 +03002284 u8 status;
Marcel Holtmannee392692013-10-01 22:59:23 -07002285 int err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002286
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002287 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002288
Johan Hedberge6fe7982013-10-02 15:45:22 +03002289 status = mgmt_bredr_support(hdev);
2290 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02002291 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002292
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002293 if (!lmp_ssp_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002294 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2295 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002296
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002297 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02002298 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2299 MGMT_STATUS_REJECTED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002300
Johan Hedberga7e80f22013-01-09 16:05:19 +02002301 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002302 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2303 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002304
Marcel Holtmannee392692013-10-01 22:59:23 -07002305 hci_dev_lock(hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002306
Johan Hedberg333ae952015-03-17 13:48:47 +02002307 if (pending_find(MGMT_OP_SET_SSP, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002308 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2309 MGMT_STATUS_BUSY);
Johan Hedberga2cb01d2015-02-19 17:38:07 +02002310 goto unlock;
2311 }
2312
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002313 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07002314 changed = !hci_dev_test_and_set_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002315 } else {
2316 if (hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002317 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2318 MGMT_STATUS_REJECTED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002319 goto unlock;
2320 }
2321
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002322 changed = hci_dev_test_and_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002323 }
Marcel Holtmannee392692013-10-01 22:59:23 -07002324
2325 err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
2326 if (err < 0)
2327 goto unlock;
2328
2329 if (changed)
2330 err = new_settings(hdev, sk);
2331
2332unlock:
2333 hci_dev_unlock(hdev);
2334 return err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002335}
2336
Marcel Holtmann1904a852015-01-11 13:50:44 -08002337static void le_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002338{
2339 struct cmd_lookup match = { NULL, hdev };
2340
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302341 hci_dev_lock(hdev);
2342
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002343 if (status) {
2344 u8 mgmt_err = mgmt_status(status);
2345
2346 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
2347 &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302348 goto unlock;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002349 }
2350
2351 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
2352
2353 new_settings(hdev, match.sk);
2354
2355 if (match.sk)
2356 sock_put(match.sk);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002357
2358 /* Make sure the controller has a good default for
2359 * advertising data. Restrict the update to when LE
2360 * has actually been enabled. During power on, the
2361 * update in powered_update_hci will take care of it.
2362 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002363 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002364 struct hci_request req;
2365
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002366 hci_req_init(&req, hdev);
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07002367 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07002368 update_scan_rsp_data(&req);
Johan Hedberg2cf22212014-12-19 22:26:00 +02002369 __hci_update_background_scan(&req);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002370 hci_req_run(&req, NULL);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002371 }
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302372
2373unlock:
2374 hci_dev_unlock(hdev);
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002375}
2376
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002377static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002378{
2379 struct mgmt_mode *cp = data;
2380 struct hci_cp_write_le_host_supported hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002381 struct mgmt_pending_cmd *cmd;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002382 struct hci_request req;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002383 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002384 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002385
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002386 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002387
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002388 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002389 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2390 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002391
Johan Hedberga7e80f22013-01-09 16:05:19 +02002392 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002393 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2394 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02002395
Marcel Holtmanne7844ee2015-03-18 16:15:07 -07002396 /* Bluetooth single mode LE only controllers or dual-mode
2397 * controllers configured as LE only devices, do not allow
2398 * switching LE off. These have either LE enabled explicitly
2399 * or BR/EDR has been previously switched off.
2400 *
2401 * When trying to enable an already enabled LE, then gracefully
2402 * send a positive response. Trying to disable it however will
2403 * result into rejection.
2404 */
2405 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
2406 if (cp->val == 0x01)
2407 return send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
2408
Johan Hedberga69e8372015-03-06 21:08:53 +02002409 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2410 MGMT_STATUS_REJECTED);
Marcel Holtmanne7844ee2015-03-18 16:15:07 -07002411 }
Johan Hedbergc73eee92013-04-19 18:35:21 +03002412
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002413 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002414
2415 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02002416 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002417
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002418 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02002419 bool changed = false;
2420
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002421 if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07002422 hci_dev_change_flag(hdev, HCI_LE_ENABLED);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002423 changed = true;
2424 }
2425
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002426 if (!val && hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07002427 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03002428 changed = true;
2429 }
2430
Johan Hedberg06199cf2012-02-22 16:37:11 +02002431 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
2432 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08002433 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002434
2435 if (changed)
2436 err = new_settings(hdev, sk);
2437
Johan Hedberg1de028c2012-02-29 19:55:35 -08002438 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002439 }
2440
Johan Hedberg333ae952015-03-17 13:48:47 +02002441 if (pending_find(MGMT_OP_SET_LE, hdev) ||
2442 pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002443 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2444 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002445 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002446 }
2447
2448 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
2449 if (!cmd) {
2450 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08002451 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002452 }
2453
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002454 hci_req_init(&req, hdev);
2455
Johan Hedberg06199cf2012-02-22 16:37:11 +02002456 memset(&hci_cp, 0, sizeof(hci_cp));
2457
2458 if (val) {
2459 hci_cp.le = val;
Marcel Holtmann32226e42014-07-24 20:04:16 +02002460 hci_cp.simul = 0x00;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002461 } else {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002462 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002463 disable_advertising(&req);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002464 }
2465
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002466 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
2467 &hci_cp);
2468
2469 err = hci_req_run(&req, le_enable_complete);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05302470 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002471 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002472
Johan Hedberg1de028c2012-02-29 19:55:35 -08002473unlock:
2474 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002475 return err;
2476}
2477
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002478/* This is a helper function to test for pending mgmt commands that can
2479 * cause CoD or EIR HCI commands. We can only allow one such pending
2480 * mgmt command at a time since otherwise we cannot easily track what
2481 * the current values are, will be, and based on that calculate if a new
2482 * HCI command needs to be sent and if yes with what value.
2483 */
2484static bool pending_eir_or_class(struct hci_dev *hdev)
2485{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002486 struct mgmt_pending_cmd *cmd;
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002487
2488 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
2489 switch (cmd->opcode) {
2490 case MGMT_OP_ADD_UUID:
2491 case MGMT_OP_REMOVE_UUID:
2492 case MGMT_OP_SET_DEV_CLASS:
2493 case MGMT_OP_SET_POWERED:
2494 return true;
2495 }
2496 }
2497
2498 return false;
2499}
2500
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002501static const u8 bluetooth_base_uuid[] = {
2502 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
2503 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2504};
2505
2506static u8 get_uuid_size(const u8 *uuid)
2507{
2508 u32 val;
2509
2510 if (memcmp(uuid, bluetooth_base_uuid, 12))
2511 return 128;
2512
2513 val = get_unaligned_le32(&uuid[12]);
2514 if (val > 0xffff)
2515 return 32;
2516
2517 return 16;
2518}
2519
Johan Hedberg92da6092013-03-15 17:06:55 -05002520static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
2521{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002522 struct mgmt_pending_cmd *cmd;
Johan Hedberg92da6092013-03-15 17:06:55 -05002523
2524 hci_dev_lock(hdev);
2525
Johan Hedberg333ae952015-03-17 13:48:47 +02002526 cmd = pending_find(mgmt_op, hdev);
Johan Hedberg92da6092013-03-15 17:06:55 -05002527 if (!cmd)
2528 goto unlock;
2529
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002530 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
2531 mgmt_status(status), hdev->dev_class, 3);
Johan Hedberg92da6092013-03-15 17:06:55 -05002532
2533 mgmt_pending_remove(cmd);
2534
2535unlock:
2536 hci_dev_unlock(hdev);
2537}
2538
Marcel Holtmann1904a852015-01-11 13:50:44 -08002539static void add_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002540{
2541 BT_DBG("status 0x%02x", status);
2542
2543 mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
2544}
2545
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002546static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002547{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002548 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002549 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002550 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002551 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002552 int err;
2553
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002554 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002555
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002556 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002557
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002558 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002559 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
2560 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002561 goto failed;
2562 }
2563
Andre Guedes92c4c202012-06-07 19:05:44 -03002564 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002565 if (!uuid) {
2566 err = -ENOMEM;
2567 goto failed;
2568 }
2569
2570 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002571 uuid->svc_hint = cp->svc_hint;
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002572 uuid->size = get_uuid_size(cp->uuid);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002573
Johan Hedbergde66aa62013-01-27 00:31:27 +02002574 list_add_tail(&uuid->list, &hdev->uuids);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002575
Johan Hedberg890ea892013-03-15 17:06:52 -05002576 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002577
Johan Hedberg890ea892013-03-15 17:06:52 -05002578 update_class(&req);
2579 update_eir(&req);
2580
Johan Hedberg92da6092013-03-15 17:06:55 -05002581 err = hci_req_run(&req, add_uuid_complete);
2582 if (err < 0) {
2583 if (err != -ENODATA)
2584 goto failed;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002585
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002586 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
2587 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002588 goto failed;
2589 }
2590
2591 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002592 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002593 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002594 goto failed;
2595 }
2596
2597 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002598
2599failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002600 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002601 return err;
2602}
2603
Johan Hedberg24b78d02012-02-23 23:24:30 +02002604static bool enable_service_cache(struct hci_dev *hdev)
2605{
2606 if (!hdev_is_powered(hdev))
2607 return false;
2608
Marcel Holtmann238be782015-03-13 02:11:06 -07002609 if (!hci_dev_test_and_set_flag(hdev, HCI_SERVICE_CACHE)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02002610 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
2611 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002612 return true;
2613 }
2614
2615 return false;
2616}
2617
Marcel Holtmann1904a852015-01-11 13:50:44 -08002618static void remove_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002619{
2620 BT_DBG("status 0x%02x", status);
2621
2622 mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
2623}
2624
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002625static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002626 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002627{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002628 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002629 struct mgmt_pending_cmd *cmd;
Johan Hedberg056341c2013-01-27 00:31:30 +02002630 struct bt_uuid *match, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002631 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 -05002632 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002633 int err, found;
2634
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002635 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002636
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002637 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002638
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002639 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002640 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
2641 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002642 goto unlock;
2643 }
2644
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002645 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
Johan Hedberg35f74982014-02-18 17:14:32 +02002646 hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002647
Johan Hedberg24b78d02012-02-23 23:24:30 +02002648 if (enable_service_cache(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002649 err = mgmt_cmd_complete(sk, hdev->id,
2650 MGMT_OP_REMOVE_UUID,
2651 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002652 goto unlock;
2653 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002654
Johan Hedberg9246a862012-02-23 21:33:16 +02002655 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002656 }
2657
2658 found = 0;
2659
Johan Hedberg056341c2013-01-27 00:31:30 +02002660 list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002661 if (memcmp(match->uuid, cp->uuid, 16) != 0)
2662 continue;
2663
2664 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01002665 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002666 found++;
2667 }
2668
2669 if (found == 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002670 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
2671 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002672 goto unlock;
2673 }
2674
Johan Hedberg9246a862012-02-23 21:33:16 +02002675update_class:
Johan Hedberg890ea892013-03-15 17:06:52 -05002676 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002677
Johan Hedberg890ea892013-03-15 17:06:52 -05002678 update_class(&req);
2679 update_eir(&req);
2680
Johan Hedberg92da6092013-03-15 17:06:55 -05002681 err = hci_req_run(&req, remove_uuid_complete);
2682 if (err < 0) {
2683 if (err != -ENODATA)
2684 goto unlock;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002685
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002686 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
2687 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002688 goto unlock;
2689 }
2690
2691 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002692 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002693 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002694 goto unlock;
2695 }
2696
2697 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002698
2699unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002700 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002701 return err;
2702}
2703
Marcel Holtmann1904a852015-01-11 13:50:44 -08002704static void set_class_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002705{
2706 BT_DBG("status 0x%02x", status);
2707
2708 mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
2709}
2710
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002711static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002712 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002713{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002714 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002715 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002716 struct hci_request req;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002717 int err;
2718
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002719 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002720
Marcel Holtmann6203fc92013-10-02 23:37:29 -07002721 if (!lmp_bredr_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002722 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2723 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002724
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002725 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002726
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002727 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002728 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2729 MGMT_STATUS_BUSY);
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002730 goto unlock;
2731 }
2732
2733 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002734 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2735 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002736 goto unlock;
2737 }
2738
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002739 hdev->major_class = cp->major;
2740 hdev->minor_class = cp->minor;
2741
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002742 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002743 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
2744 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002745 goto unlock;
2746 }
2747
Johan Hedberg890ea892013-03-15 17:06:52 -05002748 hci_req_init(&req, hdev);
2749
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002750 if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02002751 hci_dev_unlock(hdev);
2752 cancel_delayed_work_sync(&hdev->service_cache);
2753 hci_dev_lock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05002754 update_eir(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02002755 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02002756
Johan Hedberg890ea892013-03-15 17:06:52 -05002757 update_class(&req);
2758
Johan Hedberg92da6092013-03-15 17:06:55 -05002759 err = hci_req_run(&req, set_class_complete);
2760 if (err < 0) {
2761 if (err != -ENODATA)
2762 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002763
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002764 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
2765 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002766 goto unlock;
2767 }
2768
2769 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002770 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002771 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002772 goto unlock;
2773 }
2774
2775 err = 0;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002776
Johan Hedbergb5235a62012-02-21 14:32:24 +02002777unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002778 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002779 return err;
2780}
2781
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002782static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002783 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002784{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002785 struct mgmt_cp_load_link_keys *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03002786 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
2787 sizeof(struct mgmt_link_key_info));
Szymon Janc4e51eae2011-02-25 19:05:48 +01002788 u16 key_count, expected_len;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002789 bool changed;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002790 int i;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002791
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002792 BT_DBG("request for %s", hdev->name);
2793
2794 if (!lmp_bredr_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002795 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2796 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002797
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002798 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002799 if (key_count > max_key_count) {
2800 BT_ERR("load_link_keys: too big key_count value %u",
2801 key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02002802 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2803 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002804 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002805
Johan Hedberg86742e12011-11-07 23:13:38 +02002806 expected_len = sizeof(*cp) + key_count *
2807 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002808 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002809 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02002810 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02002811 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2812 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002813 }
2814
Johan Hedberg4ae14302013-01-20 14:27:13 +02002815 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002816 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2817 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ae14302013-01-20 14:27:13 +02002818
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002819 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002820 key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002821
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002822 for (i = 0; i < key_count; i++) {
2823 struct mgmt_link_key_info *key = &cp->keys[i];
2824
Marcel Holtmann8e991132014-01-10 02:07:25 -08002825 if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
Johan Hedberga69e8372015-03-06 21:08:53 +02002826 return mgmt_cmd_status(sk, hdev->id,
2827 MGMT_OP_LOAD_LINK_KEYS,
2828 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002829 }
2830
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002831 hci_dev_lock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002832
2833 hci_link_keys_clear(hdev);
2834
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002835 if (cp->debug_keys)
Marcel Holtmann238be782015-03-13 02:11:06 -07002836 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002837 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002838 changed = hci_dev_test_and_clear_flag(hdev,
2839 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002840
2841 if (changed)
2842 new_settings(hdev, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002843
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002844 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002845 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002846
Johan Hedberg58e92932014-06-24 14:00:26 +03002847 /* Always ignore debug keys and require a new pairing if
2848 * the user wants to use them.
2849 */
2850 if (key->type == HCI_LK_DEBUG_COMBINATION)
2851 continue;
2852
Johan Hedberg7652ff62014-06-24 13:15:49 +03002853 hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
2854 key->type, key->pin_len, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002855 }
2856
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002857 mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02002858
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002859 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002860
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002861 return 0;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002862}
2863
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002864static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002865 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002866{
2867 struct mgmt_ev_device_unpaired ev;
2868
2869 bacpy(&ev.addr.bdaddr, bdaddr);
2870 ev.addr.type = addr_type;
2871
2872 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002873 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002874}
2875
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002876static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002877 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002878{
Johan Hedberg124f6e32012-02-09 13:50:12 +02002879 struct mgmt_cp_unpair_device *cp = data;
2880 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002881 struct hci_cp_disconnect dc;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002882 struct mgmt_pending_cmd *cmd;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002883 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002884 int err;
2885
Johan Hedberga8a1d192011-11-10 15:54:38 +02002886 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02002887 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2888 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002889
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002890 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002891 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2892 MGMT_STATUS_INVALID_PARAMS,
2893 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002894
Johan Hedberg118da702013-01-20 14:27:20 +02002895 if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002896 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2897 MGMT_STATUS_INVALID_PARAMS,
2898 &rp, sizeof(rp));
Johan Hedberg118da702013-01-20 14:27:20 +02002899
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002900 hci_dev_lock(hdev);
2901
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002902 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002903 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2904 MGMT_STATUS_NOT_POWERED, &rp,
2905 sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002906 goto unlock;
2907 }
2908
Johan Hedberge0b2b272014-02-18 17:14:31 +02002909 if (cp->addr.type == BDADDR_BREDR) {
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002910 /* If disconnection is requested, then look up the
2911 * connection. If the remote device is connected, it
2912 * will be later used to terminate the link.
2913 *
2914 * Setting it to NULL explicitly will cause no
2915 * termination of the link.
2916 */
2917 if (cp->disconnect)
2918 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
2919 &cp->addr.bdaddr);
2920 else
2921 conn = NULL;
2922
Johan Hedberg124f6e32012-02-09 13:50:12 +02002923 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
Johan Hedberge0b2b272014-02-18 17:14:31 +02002924 } else {
2925 u8 addr_type;
2926
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002927 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
2928 &cp->addr.bdaddr);
2929 if (conn) {
2930 /* Defer clearing up the connection parameters
2931 * until closing to give a chance of keeping
2932 * them if a repairing happens.
2933 */
2934 set_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
2935
2936 /* If disconnection is not requested, then
2937 * clear the connection variable so that the
2938 * link is not terminated.
2939 */
2940 if (!cp->disconnect)
2941 conn = NULL;
2942 }
2943
Johan Hedberge0b2b272014-02-18 17:14:31 +02002944 if (cp->addr.type == BDADDR_LE_PUBLIC)
2945 addr_type = ADDR_LE_DEV_PUBLIC;
2946 else
2947 addr_type = ADDR_LE_DEV_RANDOM;
2948
Johan Hedberga7ec7332014-02-18 17:14:35 +02002949 hci_remove_irk(hdev, &cp->addr.bdaddr, addr_type);
2950
Johan Hedberge0b2b272014-02-18 17:14:31 +02002951 err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
2952 }
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03002953
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002954 if (err < 0) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002955 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2956 MGMT_STATUS_NOT_PAIRED, &rp,
2957 sizeof(rp));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002958 goto unlock;
2959 }
2960
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002961 /* If the connection variable is set, then termination of the
2962 * link is requested.
2963 */
Johan Hedberga8a1d192011-11-10 15:54:38 +02002964 if (!conn) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002965 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
2966 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002967 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02002968 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002969 }
2970
Johan Hedberg124f6e32012-02-09 13:50:12 +02002971 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002972 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02002973 if (!cmd) {
2974 err = -ENOMEM;
2975 goto unlock;
2976 }
2977
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02002978 cmd->cmd_complete = addr_cmd_complete;
2979
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002980 dc.handle = cpu_to_le16(conn->handle);
Johan Hedberga8a1d192011-11-10 15:54:38 +02002981 dc.reason = 0x13; /* Remote User Terminated Connection */
2982 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
2983 if (err < 0)
2984 mgmt_pending_remove(cmd);
2985
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002986unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002987 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002988 return err;
2989}
2990
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002991static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002992 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02002993{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002994 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg06a63b12013-01-20 14:27:21 +02002995 struct mgmt_rp_disconnect rp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002996 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002997 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002998 int err;
2999
3000 BT_DBG("");
3001
Johan Hedberg06a63b12013-01-20 14:27:21 +02003002 memset(&rp, 0, sizeof(rp));
3003 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3004 rp.addr.type = cp->addr.type;
3005
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003006 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003007 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3008 MGMT_STATUS_INVALID_PARAMS,
3009 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003010
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003011 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003012
3013 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003014 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3015 MGMT_STATUS_NOT_POWERED, &rp,
3016 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003017 goto failed;
3018 }
3019
Johan Hedberg333ae952015-03-17 13:48:47 +02003020 if (pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003021 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3022 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003023 goto failed;
3024 }
3025
Andre Guedes591f47f2012-04-24 21:02:49 -03003026 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03003027 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
3028 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02003029 else
3030 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03003031
Vishal Agarwalf9607272012-06-13 05:32:43 +05303032 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003033 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
3034 MGMT_STATUS_NOT_CONNECTED, &rp,
3035 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02003036 goto failed;
3037 }
3038
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003039 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03003040 if (!cmd) {
3041 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02003042 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03003043 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02003044
Johan Hedbergf5818c22014-12-05 13:36:02 +02003045 cmd->cmd_complete = generic_cmd_complete;
3046
Johan Hedberge3f2f922014-08-18 20:33:33 +03003047 err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003048 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03003049 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003050
3051failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003052 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02003053 return err;
3054}
3055
Andre Guedes57c14772012-04-24 21:02:50 -03003056static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02003057{
3058 switch (link_type) {
3059 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02003060 switch (addr_type) {
3061 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03003062 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03003063
Johan Hedberg48264f02011-11-09 13:58:58 +02003064 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03003065 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03003066 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02003067 }
Andre Guedes0ed09142012-04-03 08:46:54 -03003068
Johan Hedberg4c659c32011-11-07 23:13:39 +02003069 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03003070 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03003071 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003072 }
3073}
3074
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003075static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
3076 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02003077{
Johan Hedberg2784eb42011-01-21 13:56:35 +02003078 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02003079 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02003080 size_t rp_len;
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003081 int err;
3082 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02003083
3084 BT_DBG("");
3085
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003086 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003087
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003088 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003089 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
3090 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003091 goto unlock;
3092 }
3093
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003094 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02003095 list_for_each_entry(c, &hdev->conn_hash.list, list) {
3096 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003097 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02003098 }
3099
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003100 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03003101 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02003102 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02003103 err = -ENOMEM;
3104 goto unlock;
3105 }
3106
Johan Hedberg2784eb42011-01-21 13:56:35 +02003107 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003108 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02003109 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
3110 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02003111 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03003112 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03003113 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02003114 continue;
3115 i++;
3116 }
3117
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02003118 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02003119
Johan Hedberg4c659c32011-11-07 23:13:39 +02003120 /* Recalculate length in case of filtered SCO connections, etc */
3121 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02003122
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003123 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
3124 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003125
Johan Hedberga38528f2011-01-22 06:46:43 +02003126 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003127
3128unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003129 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02003130 return err;
3131}
3132
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003133static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003134 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003135{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003136 struct mgmt_pending_cmd *cmd;
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003137 int err;
3138
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003139 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003140 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003141 if (!cmd)
3142 return -ENOMEM;
3143
Johan Hedbergd8457692012-02-17 14:24:57 +02003144 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003145 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003146 if (err < 0)
3147 mgmt_pending_remove(cmd);
3148
3149 return err;
3150}
3151
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003152static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003153 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003154{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003155 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003156 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003157 struct hci_cp_pin_code_reply reply;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003158 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003159 int err;
3160
3161 BT_DBG("");
3162
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003163 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003164
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003165 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003166 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3167 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003168 goto failed;
3169 }
3170
Johan Hedbergd8457692012-02-17 14:24:57 +02003171 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003172 if (!conn) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003173 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3174 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003175 goto failed;
3176 }
3177
3178 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02003179 struct mgmt_cp_pin_code_neg_reply ncp;
3180
3181 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003182
3183 BT_ERR("PIN code is not 16 bytes long");
3184
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003185 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003186 if (err >= 0)
Johan Hedberga69e8372015-03-06 21:08:53 +02003187 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
3188 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003189
3190 goto failed;
3191 }
3192
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03003193 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03003194 if (!cmd) {
3195 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003196 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03003197 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02003198
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003199 cmd->cmd_complete = addr_cmd_complete;
3200
Johan Hedbergd8457692012-02-17 14:24:57 +02003201 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003202 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02003203 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003204
3205 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
3206 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03003207 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003208
3209failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003210 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003211 return err;
3212}
3213
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003214static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
3215 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003216{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003217 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003218
3219 BT_DBG("");
3220
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003221 if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003222 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
3223 MGMT_STATUS_INVALID_PARAMS, NULL, 0);
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003224
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003225 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003226
3227 hdev->io_capability = cp->io_capability;
3228
3229 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003230 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003231
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003232 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003233
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003234 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0,
3235 NULL, 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003236}
3237
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003238static struct mgmt_pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003239{
3240 struct hci_dev *hdev = conn->hdev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003241 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003242
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003243 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03003244 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
3245 continue;
3246
Johan Hedberge9a416b2011-02-19 12:05:56 -03003247 if (cmd->user_data != conn)
3248 continue;
3249
3250 return cmd;
3251 }
3252
3253 return NULL;
3254}
3255
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003256static int pairing_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003257{
3258 struct mgmt_rp_pair_device rp;
3259 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9df74652014-12-19 22:26:03 +02003260 int err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003261
Johan Hedberg61b1a7f2014-03-20 12:54:16 +02003262 bacpy(&rp.addr.bdaddr, &conn->dst);
3263 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003264
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003265 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE,
3266 status, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003267
3268 /* So we don't get further callbacks for this connection */
3269 conn->connect_cfm_cb = NULL;
3270 conn->security_cfm_cb = NULL;
3271 conn->disconn_cfm_cb = NULL;
3272
David Herrmann76a68ba2013-04-06 20:28:37 +02003273 hci_conn_drop(conn);
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003274
3275 /* The device is paired so there is no need to remove
3276 * its connection parameters anymore.
3277 */
3278 clear_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
Johan Hedberg15013ae2014-12-11 21:45:44 +02003279
3280 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02003281
3282 return err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003283}
3284
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003285void mgmt_smp_complete(struct hci_conn *conn, bool complete)
3286{
3287 u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003288 struct mgmt_pending_cmd *cmd;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003289
3290 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003291 if (cmd) {
Johan Hedberg04ab2742014-12-05 13:36:04 +02003292 cmd->cmd_complete(cmd, status);
Johan Hedberga511b352014-12-11 21:45:45 +02003293 mgmt_pending_remove(cmd);
3294 }
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003295}
3296
Johan Hedberge9a416b2011-02-19 12:05:56 -03003297static void pairing_complete_cb(struct hci_conn *conn, u8 status)
3298{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003299 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003300
3301 BT_DBG("status %u", status);
3302
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003303 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003304 if (!cmd) {
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003305 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02003306 return;
3307 }
3308
3309 cmd->cmd_complete(cmd, mgmt_status(status));
3310 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003311}
3312
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003313static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303314{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003315 struct mgmt_pending_cmd *cmd;
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303316
3317 BT_DBG("status %u", status);
3318
3319 if (!status)
3320 return;
3321
3322 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003323 if (!cmd) {
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303324 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02003325 return;
3326 }
3327
3328 cmd->cmd_complete(cmd, mgmt_status(status));
3329 mgmt_pending_remove(cmd);
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303330}
3331
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003332static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003333 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003334{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003335 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02003336 struct mgmt_rp_pair_device rp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003337 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003338 u8 sec_level, auth_type;
3339 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003340 int err;
3341
3342 BT_DBG("");
3343
Szymon Jancf950a30e2013-01-18 12:48:07 +01003344 memset(&rp, 0, sizeof(rp));
3345 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3346 rp.addr.type = cp->addr.type;
3347
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003348 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003349 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3350 MGMT_STATUS_INVALID_PARAMS,
3351 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003352
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003353 if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003354 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3355 MGMT_STATUS_INVALID_PARAMS,
3356 &rp, sizeof(rp));
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003357
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003358 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003359
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003360 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003361 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3362 MGMT_STATUS_NOT_POWERED, &rp,
3363 sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003364 goto unlock;
3365 }
3366
Johan Hedberg55e76b32015-03-10 22:34:40 +02003367 if (hci_bdaddr_is_paired(hdev, &cp->addr.bdaddr, cp->addr.type)) {
3368 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3369 MGMT_STATUS_ALREADY_PAIRED, &rp,
3370 sizeof(rp));
3371 goto unlock;
3372 }
3373
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03003374 sec_level = BT_SECURITY_MEDIUM;
Mikel Astiz6fd6b912014-04-08 14:21:32 +02003375 auth_type = HCI_AT_DEDICATED_BONDING;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003376
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003377 if (cp->addr.type == BDADDR_BREDR) {
Andre Guedes04a6c582014-02-26 20:21:44 -03003378 conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
3379 auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003380 } else {
3381 u8 addr_type;
3382
3383 /* Convert from L2CAP channel address type to HCI address type
3384 */
3385 if (cp->addr.type == BDADDR_LE_PUBLIC)
3386 addr_type = ADDR_LE_DEV_PUBLIC;
3387 else
3388 addr_type = ADDR_LE_DEV_RANDOM;
3389
Marcel Holtmann7c264b12014-06-30 12:34:40 +02003390 /* When pairing a new device, it is expected to remember
3391 * this device for future connections. Adding the connection
3392 * parameter information ahead of time allows tracking
3393 * of the slave preferred values and will speed up any
3394 * further connection establishment.
3395 *
3396 * If connection parameters already exist, then they
3397 * will be kept and this function does nothing.
3398 */
3399 hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);
3400
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003401 conn = hci_connect_le(hdev, &cp->addr.bdaddr, addr_type,
Johan Hedberge804d252014-07-16 11:42:28 +03003402 sec_level, HCI_LE_CONN_TIMEOUT,
3403 HCI_ROLE_MASTER);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003404 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003405
Ville Tervo30e76272011-02-22 16:10:53 -03003406 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02003407 int status;
3408
3409 if (PTR_ERR(conn) == -EBUSY)
3410 status = MGMT_STATUS_BUSY;
Lukasz Rymanowskifaa81032015-02-11 12:31:42 +01003411 else if (PTR_ERR(conn) == -EOPNOTSUPP)
3412 status = MGMT_STATUS_NOT_SUPPORTED;
3413 else if (PTR_ERR(conn) == -ECONNREFUSED)
3414 status = MGMT_STATUS_REJECTED;
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02003415 else
3416 status = MGMT_STATUS_CONNECT_FAILED;
3417
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003418 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3419 status, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003420 goto unlock;
3421 }
3422
3423 if (conn->connect_cfm_cb) {
David Herrmann76a68ba2013-04-06 20:28:37 +02003424 hci_conn_drop(conn);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003425 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3426 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003427 goto unlock;
3428 }
3429
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003430 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003431 if (!cmd) {
3432 err = -ENOMEM;
David Herrmann76a68ba2013-04-06 20:28:37 +02003433 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003434 goto unlock;
3435 }
3436
Johan Hedberg04ab2742014-12-05 13:36:04 +02003437 cmd->cmd_complete = pairing_complete;
3438
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003439 /* For LE, just connecting isn't a proof that the pairing finished */
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003440 if (cp->addr.type == BDADDR_BREDR) {
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003441 conn->connect_cfm_cb = pairing_complete_cb;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003442 conn->security_cfm_cb = pairing_complete_cb;
3443 conn->disconn_cfm_cb = pairing_complete_cb;
3444 } else {
3445 conn->connect_cfm_cb = le_pairing_complete_cb;
3446 conn->security_cfm_cb = le_pairing_complete_cb;
3447 conn->disconn_cfm_cb = le_pairing_complete_cb;
3448 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003449
Johan Hedberge9a416b2011-02-19 12:05:56 -03003450 conn->io_capability = cp->io_cap;
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03003451 cmd->user_data = hci_conn_get(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003452
Johan Hedberg6f78fd42014-07-30 08:35:48 +03003453 if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
Johan Hedberga511b352014-12-11 21:45:45 +02003454 hci_conn_security(conn, sec_level, auth_type, true)) {
3455 cmd->cmd_complete(cmd, 0);
3456 mgmt_pending_remove(cmd);
3457 }
Johan Hedberge9a416b2011-02-19 12:05:56 -03003458
3459 err = 0;
3460
3461unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003462 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003463 return err;
3464}
3465
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003466static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3467 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02003468{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003469 struct mgmt_addr_info *addr = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003470 struct mgmt_pending_cmd *cmd;
Johan Hedberg28424702012-02-02 04:02:29 +02003471 struct hci_conn *conn;
3472 int err;
3473
3474 BT_DBG("");
3475
Johan Hedberg28424702012-02-02 04:02:29 +02003476 hci_dev_lock(hdev);
3477
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003478 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003479 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3480 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003481 goto unlock;
3482 }
3483
Johan Hedberg333ae952015-03-17 13:48:47 +02003484 cmd = pending_find(MGMT_OP_PAIR_DEVICE, hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003485 if (!cmd) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003486 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3487 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003488 goto unlock;
3489 }
3490
3491 conn = cmd->user_data;
3492
3493 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003494 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3495 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003496 goto unlock;
3497 }
3498
Johan Hedberga511b352014-12-11 21:45:45 +02003499 cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
3500 mgmt_pending_remove(cmd);
Johan Hedberg28424702012-02-02 04:02:29 +02003501
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003502 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
3503 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02003504unlock:
3505 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003506 return err;
3507}
3508
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003509static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Johan Hedberg1707c602013-03-15 17:07:15 -05003510 struct mgmt_addr_info *addr, u16 mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003511 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03003512{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003513 struct mgmt_pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08003514 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003515 int err;
3516
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003517 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02003518
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003519 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003520 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3521 MGMT_STATUS_NOT_POWERED, addr,
3522 sizeof(*addr));
Brian Gix0df4c182011-11-16 13:53:13 -08003523 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003524 }
3525
Johan Hedberg1707c602013-03-15 17:07:15 -05003526 if (addr->type == BDADDR_BREDR)
3527 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
Johan Hedberg272d90d2012-02-09 15:26:12 +02003528 else
Johan Hedberg1707c602013-03-15 17:07:15 -05003529 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr);
Brian Gix47c15e22011-11-16 13:53:14 -08003530
Johan Hedberg272d90d2012-02-09 15:26:12 +02003531 if (!conn) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003532 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3533 MGMT_STATUS_NOT_CONNECTED, addr,
3534 sizeof(*addr));
Johan Hedberg272d90d2012-02-09 15:26:12 +02003535 goto done;
3536 }
3537
Johan Hedberg1707c602013-03-15 17:07:15 -05003538 if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
Brian Gix5fe57d92011-12-21 16:12:13 -08003539 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix5fe57d92011-12-21 16:12:13 -08003540 if (!err)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003541 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3542 MGMT_STATUS_SUCCESS, addr,
3543 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003544 else
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003545 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3546 MGMT_STATUS_FAILED, addr,
3547 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003548
Brian Gix47c15e22011-11-16 13:53:14 -08003549 goto done;
3550 }
3551
Johan Hedberg1707c602013-03-15 17:07:15 -05003552 cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
Johan Hedberga5c29682011-02-19 12:05:57 -03003553 if (!cmd) {
3554 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08003555 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003556 }
3557
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003558 cmd->cmd_complete = addr_cmd_complete;
3559
Brian Gix0df4c182011-11-16 13:53:13 -08003560 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08003561 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
3562 struct hci_cp_user_passkey_reply cp;
3563
Johan Hedberg1707c602013-03-15 17:07:15 -05003564 bacpy(&cp.bdaddr, &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003565 cp.passkey = passkey;
3566 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
3567 } else
Johan Hedberg1707c602013-03-15 17:07:15 -05003568 err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
3569 &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003570
Johan Hedberga664b5b2011-02-19 12:06:02 -03003571 if (err < 0)
3572 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003573
Brian Gix0df4c182011-11-16 13:53:13 -08003574done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003575 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003576 return err;
3577}
3578
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303579static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3580 void *data, u16 len)
3581{
3582 struct mgmt_cp_pin_code_neg_reply *cp = data;
3583
3584 BT_DBG("");
3585
Johan Hedberg1707c602013-03-15 17:07:15 -05003586 return user_pairing_resp(sk, hdev, &cp->addr,
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303587 MGMT_OP_PIN_CODE_NEG_REPLY,
3588 HCI_OP_PIN_CODE_NEG_REPLY, 0);
3589}
3590
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003591static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3592 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003593{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003594 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003595
3596 BT_DBG("");
3597
3598 if (len != sizeof(*cp))
Johan Hedberga69e8372015-03-06 21:08:53 +02003599 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
3600 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08003601
Johan Hedberg1707c602013-03-15 17:07:15 -05003602 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003603 MGMT_OP_USER_CONFIRM_REPLY,
3604 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003605}
3606
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003607static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003608 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003609{
Johan Hedbergc9c26592011-12-15 00:47:41 +02003610 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003611
3612 BT_DBG("");
3613
Johan Hedberg1707c602013-03-15 17:07:15 -05003614 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003615 MGMT_OP_USER_CONFIRM_NEG_REPLY,
3616 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003617}
3618
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003619static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3620 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003621{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003622 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003623
3624 BT_DBG("");
3625
Johan Hedberg1707c602013-03-15 17:07:15 -05003626 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003627 MGMT_OP_USER_PASSKEY_REPLY,
3628 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08003629}
3630
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003631static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003632 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003633{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003634 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003635
3636 BT_DBG("");
3637
Johan Hedberg1707c602013-03-15 17:07:15 -05003638 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003639 MGMT_OP_USER_PASSKEY_NEG_REPLY,
3640 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08003641}
3642
Johan Hedberg13928972013-03-15 17:07:00 -05003643static void update_name(struct hci_request *req)
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003644{
Johan Hedberg13928972013-03-15 17:07:00 -05003645 struct hci_dev *hdev = req->hdev;
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003646 struct hci_cp_write_local_name cp;
3647
Johan Hedberg13928972013-03-15 17:07:00 -05003648 memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003649
Johan Hedberg890ea892013-03-15 17:06:52 -05003650 hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003651}
3652
Marcel Holtmann1904a852015-01-11 13:50:44 -08003653static void set_name_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg13928972013-03-15 17:07:00 -05003654{
3655 struct mgmt_cp_set_local_name *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003656 struct mgmt_pending_cmd *cmd;
Johan Hedberg13928972013-03-15 17:07:00 -05003657
3658 BT_DBG("status 0x%02x", status);
3659
3660 hci_dev_lock(hdev);
3661
Johan Hedberg333ae952015-03-17 13:48:47 +02003662 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05003663 if (!cmd)
3664 goto unlock;
3665
3666 cp = cmd->param;
3667
3668 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02003669 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3670 mgmt_status(status));
Johan Hedberg13928972013-03-15 17:07:00 -05003671 else
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003672 mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3673 cp, sizeof(*cp));
Johan Hedberg13928972013-03-15 17:07:00 -05003674
3675 mgmt_pending_remove(cmd);
3676
3677unlock:
3678 hci_dev_unlock(hdev);
3679}
3680
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003681static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003682 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003683{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003684 struct mgmt_cp_set_local_name *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003685 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05003686 struct hci_request req;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003687 int err;
3688
3689 BT_DBG("");
3690
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003691 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003692
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003693 /* If the old values are the same as the new ones just return a
3694 * direct command complete event.
3695 */
3696 if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
3697 !memcmp(hdev->short_name, cp->short_name,
3698 sizeof(hdev->short_name))) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003699 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3700 data, len);
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003701 goto failed;
3702 }
3703
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003704 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003705
Johan Hedbergb5235a62012-02-21 14:32:24 +02003706 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003707 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003708
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003709 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3710 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003711 if (err < 0)
3712 goto failed;
3713
Marcel Holtmannf6b77122015-03-14 19:28:05 -07003714 err = mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev,
3715 data, len, sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003716
Johan Hedbergb5235a62012-02-21 14:32:24 +02003717 goto failed;
3718 }
3719
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003720 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003721 if (!cmd) {
3722 err = -ENOMEM;
3723 goto failed;
3724 }
3725
Johan Hedberg13928972013-03-15 17:07:00 -05003726 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3727
Johan Hedberg890ea892013-03-15 17:06:52 -05003728 hci_req_init(&req, hdev);
Johan Hedberg3f985052013-03-15 17:07:02 -05003729
3730 if (lmp_bredr_capable(hdev)) {
3731 update_name(&req);
3732 update_eir(&req);
3733 }
3734
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003735 /* The name is stored in the scan response data and so
3736 * no need to udpate the advertising data here.
3737 */
Johan Hedberg3f985052013-03-15 17:07:02 -05003738 if (lmp_le_capable(hdev))
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003739 update_scan_rsp_data(&req);
Johan Hedberg3f985052013-03-15 17:07:02 -05003740
Johan Hedberg13928972013-03-15 17:07:00 -05003741 err = hci_req_run(&req, set_name_complete);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003742 if (err < 0)
3743 mgmt_pending_remove(cmd);
3744
3745failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003746 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003747 return err;
3748}
3749
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003750static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003751 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01003752{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003753 struct mgmt_pending_cmd *cmd;
Szymon Jancc35938b2011-03-22 13:12:21 +01003754 int err;
3755
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003756 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01003757
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003758 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003759
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003760 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003761 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3762 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003763 goto unlock;
3764 }
3765
Andre Guedes9a1a1992012-07-24 15:03:48 -03003766 if (!lmp_ssp_capable(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003767 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3768 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003769 goto unlock;
3770 }
3771
Johan Hedberg333ae952015-03-17 13:48:47 +02003772 if (pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003773 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
3774 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01003775 goto unlock;
3776 }
3777
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003778 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01003779 if (!cmd) {
3780 err = -ENOMEM;
3781 goto unlock;
3782 }
3783
Johan Hedberg710f11c2014-05-26 11:21:22 +03003784 if (bredr_sc_enabled(hdev))
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08003785 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_EXT_DATA,
3786 0, NULL);
3787 else
3788 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
3789
Szymon Jancc35938b2011-03-22 13:12:21 +01003790 if (err < 0)
3791 mgmt_pending_remove(cmd);
3792
3793unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003794 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003795 return err;
3796}
3797
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003798static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003799 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003800{
Johan Hedberg5d57e792015-01-23 10:10:38 +02003801 struct mgmt_addr_info *addr = data;
Szymon Janc2763eda2011-03-22 13:12:22 +01003802 int err;
3803
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003804 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003805
Johan Hedberg5d57e792015-01-23 10:10:38 +02003806 if (!bdaddr_type_is_valid(addr->type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003807 return mgmt_cmd_complete(sk, hdev->id,
3808 MGMT_OP_ADD_REMOTE_OOB_DATA,
3809 MGMT_STATUS_INVALID_PARAMS,
3810 addr, sizeof(*addr));
Johan Hedberg5d57e792015-01-23 10:10:38 +02003811
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003812 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003813
Marcel Holtmannec109112014-01-10 02:07:30 -08003814 if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
3815 struct mgmt_cp_add_remote_oob_data *cp = data;
3816 u8 status;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003817
Johan Hedbergc19a4952014-11-17 20:52:19 +02003818 if (cp->addr.type != BDADDR_BREDR) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003819 err = mgmt_cmd_complete(sk, hdev->id,
3820 MGMT_OP_ADD_REMOTE_OOB_DATA,
3821 MGMT_STATUS_INVALID_PARAMS,
3822 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02003823 goto unlock;
3824 }
3825
Marcel Holtmannec109112014-01-10 02:07:30 -08003826 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg6928a922014-10-26 20:46:09 +01003827 cp->addr.type, cp->hash,
3828 cp->rand, NULL, NULL);
Marcel Holtmannec109112014-01-10 02:07:30 -08003829 if (err < 0)
3830 status = MGMT_STATUS_FAILED;
3831 else
3832 status = MGMT_STATUS_SUCCESS;
3833
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003834 err = mgmt_cmd_complete(sk, hdev->id,
3835 MGMT_OP_ADD_REMOTE_OOB_DATA, status,
3836 &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08003837 } else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
3838 struct mgmt_cp_add_remote_oob_ext_data *cp = data;
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08003839 u8 *rand192, *hash192, *rand256, *hash256;
Marcel Holtmannec109112014-01-10 02:07:30 -08003840 u8 status;
3841
Johan Hedberg86df9202014-10-26 20:52:27 +01003842 if (bdaddr_type_is_le(cp->addr.type)) {
Johan Hedbergd25b78e2015-01-27 12:55:52 +02003843 /* Enforce zero-valued 192-bit parameters as
3844 * long as legacy SMP OOB isn't implemented.
3845 */
3846 if (memcmp(cp->rand192, ZERO_KEY, 16) ||
3847 memcmp(cp->hash192, ZERO_KEY, 16)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003848 err = mgmt_cmd_complete(sk, hdev->id,
3849 MGMT_OP_ADD_REMOTE_OOB_DATA,
3850 MGMT_STATUS_INVALID_PARAMS,
3851 addr, sizeof(*addr));
Johan Hedbergd25b78e2015-01-27 12:55:52 +02003852 goto unlock;
3853 }
3854
Johan Hedberg86df9202014-10-26 20:52:27 +01003855 rand192 = NULL;
3856 hash192 = NULL;
3857 } else {
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08003858 /* In case one of the P-192 values is set to zero,
3859 * then just disable OOB data for P-192.
3860 */
3861 if (!memcmp(cp->rand192, ZERO_KEY, 16) ||
3862 !memcmp(cp->hash192, ZERO_KEY, 16)) {
3863 rand192 = NULL;
3864 hash192 = NULL;
3865 } else {
3866 rand192 = cp->rand192;
3867 hash192 = cp->hash192;
3868 }
3869 }
3870
3871 /* In case one of the P-256 values is set to zero, then just
3872 * disable OOB data for P-256.
3873 */
3874 if (!memcmp(cp->rand256, ZERO_KEY, 16) ||
3875 !memcmp(cp->hash256, ZERO_KEY, 16)) {
3876 rand256 = NULL;
3877 hash256 = NULL;
3878 } else {
3879 rand256 = cp->rand256;
3880 hash256 = cp->hash256;
Johan Hedberg86df9202014-10-26 20:52:27 +01003881 }
3882
Johan Hedberg81328d52014-10-26 20:33:47 +01003883 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg86df9202014-10-26 20:52:27 +01003884 cp->addr.type, hash192, rand192,
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08003885 hash256, rand256);
Marcel Holtmannec109112014-01-10 02:07:30 -08003886 if (err < 0)
3887 status = MGMT_STATUS_FAILED;
3888 else
3889 status = MGMT_STATUS_SUCCESS;
3890
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003891 err = mgmt_cmd_complete(sk, hdev->id,
3892 MGMT_OP_ADD_REMOTE_OOB_DATA,
3893 status, &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08003894 } else {
3895 BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
Johan Hedberga69e8372015-03-06 21:08:53 +02003896 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3897 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannec109112014-01-10 02:07:30 -08003898 }
Szymon Janc2763eda2011-03-22 13:12:22 +01003899
Johan Hedbergc19a4952014-11-17 20:52:19 +02003900unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003901 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003902 return err;
3903}
3904
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003905static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003906 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003907{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003908 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003909 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01003910 int err;
3911
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003912 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003913
Johan Hedbergc19a4952014-11-17 20:52:19 +02003914 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003915 return mgmt_cmd_complete(sk, hdev->id,
3916 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
3917 MGMT_STATUS_INVALID_PARAMS,
3918 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02003919
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003920 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003921
Johan Hedbergeedbd582014-11-15 09:34:23 +02003922 if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
3923 hci_remote_oob_data_clear(hdev);
3924 status = MGMT_STATUS_SUCCESS;
3925 goto done;
3926 }
3927
Johan Hedberg6928a922014-10-26 20:46:09 +01003928 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
Szymon Janc2763eda2011-03-22 13:12:22 +01003929 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003930 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01003931 else
Szymon Janca6785be2012-12-13 15:11:21 +01003932 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003933
Johan Hedbergeedbd582014-11-15 09:34:23 +02003934done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003935 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
3936 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01003937
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003938 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003939 return err;
3940}
3941
Jakub Pawlowski812abb12015-03-17 09:04:13 -07003942static bool trigger_bredr_inquiry(struct hci_request *req, u8 *status)
3943{
3944 struct hci_dev *hdev = req->hdev;
3945 struct hci_cp_inquiry cp;
3946 /* General inquiry access code (GIAC) */
3947 u8 lap[3] = { 0x33, 0x8b, 0x9e };
3948
3949 *status = mgmt_bredr_support(hdev);
3950 if (*status)
3951 return false;
3952
3953 if (hci_dev_test_flag(hdev, HCI_INQUIRY)) {
3954 *status = MGMT_STATUS_BUSY;
3955 return false;
3956 }
3957
3958 hci_inquiry_cache_flush(hdev);
3959
3960 memset(&cp, 0, sizeof(cp));
3961 memcpy(&cp.lap, lap, sizeof(cp.lap));
3962 cp.length = DISCOV_BREDR_INQUIRY_LEN;
3963
3964 hci_req_add(req, HCI_OP_INQUIRY, sizeof(cp), &cp);
3965
3966 return true;
3967}
3968
3969static bool trigger_le_scan(struct hci_request *req, u16 interval, u8 *status)
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003970{
Marcel Holtmann80190442014-12-04 11:36:36 +01003971 struct hci_dev *hdev = req->hdev;
3972 struct hci_cp_le_set_scan_param param_cp;
3973 struct hci_cp_le_set_scan_enable enable_cp;
Marcel Holtmann80190442014-12-04 11:36:36 +01003974 u8 own_addr_type;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003975 int err;
3976
Jakub Pawlowski812abb12015-03-17 09:04:13 -07003977 *status = mgmt_le_support(hdev);
3978 if (*status)
3979 return false;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003980
Jakub Pawlowski812abb12015-03-17 09:04:13 -07003981 if (hci_dev_test_flag(hdev, HCI_LE_ADV)) {
3982 /* Don't let discovery abort an outgoing connection attempt
3983 * that's using directed advertising.
3984 */
3985 if (hci_conn_hash_lookup_state(hdev, LE_LINK, BT_CONNECT)) {
3986 *status = MGMT_STATUS_REJECTED;
Marcel Holtmann80190442014-12-04 11:36:36 +01003987 return false;
3988 }
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003989
Jakub Pawlowski812abb12015-03-17 09:04:13 -07003990 disable_advertising(req);
3991 }
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003992
Jakub Pawlowski812abb12015-03-17 09:04:13 -07003993 /* If controller is scanning, it means the background scanning is
3994 * running. Thus, we should temporarily stop it in order to set the
3995 * discovery scanning parameters.
3996 */
3997 if (hci_dev_test_flag(hdev, HCI_LE_SCAN))
3998 hci_req_add_le_scan_disable(req);
3999
4000 /* All active scans will be done with either a resolvable private
4001 * address (when privacy feature has been enabled) or non-resolvable
4002 * private address.
4003 */
4004 err = hci_update_random_address(req, true, &own_addr_type);
4005 if (err < 0) {
4006 *status = MGMT_STATUS_FAILED;
4007 return false;
4008 }
4009
4010 memset(&param_cp, 0, sizeof(param_cp));
4011 param_cp.type = LE_SCAN_ACTIVE;
4012 param_cp.interval = cpu_to_le16(interval);
4013 param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
4014 param_cp.own_address_type = own_addr_type;
4015
4016 hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
4017 &param_cp);
4018
4019 memset(&enable_cp, 0, sizeof(enable_cp));
4020 enable_cp.enable = LE_SCAN_ENABLE;
4021 enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
4022
4023 hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
4024 &enable_cp);
4025
4026 return true;
4027}
4028
4029static bool trigger_discovery(struct hci_request *req, u8 *status)
4030{
4031 struct hci_dev *hdev = req->hdev;
4032
4033 switch (hdev->discovery.type) {
4034 case DISCOV_TYPE_BREDR:
4035 if (!trigger_bredr_inquiry(req, status))
4036 return false;
Marcel Holtmann80190442014-12-04 11:36:36 +01004037 break;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004038
Marcel Holtmann80190442014-12-04 11:36:36 +01004039 case DISCOV_TYPE_INTERLEAVED:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07004040 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY,
4041 &hdev->quirks)) {
4042 /* During simultaneous discovery, we double LE scan
4043 * interval. We must leave some time for the controller
4044 * to do BR/EDR inquiry.
4045 */
4046 if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT * 2,
4047 status))
4048 return false;
4049
4050 if (!trigger_bredr_inquiry(req, status))
4051 return false;
4052
4053 return true;
4054 }
4055
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004056 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Marcel Holtmann80190442014-12-04 11:36:36 +01004057 *status = MGMT_STATUS_NOT_SUPPORTED;
4058 return false;
4059 }
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004060 /* fall through */
Marcel Holtmann80190442014-12-04 11:36:36 +01004061
Jakub Pawlowski812abb12015-03-17 09:04:13 -07004062 case DISCOV_TYPE_LE:
4063 if (!trigger_le_scan(req, DISCOV_LE_SCAN_INT, status))
Marcel Holtmann80190442014-12-04 11:36:36 +01004064 return false;
Marcel Holtmann80190442014-12-04 11:36:36 +01004065 break;
4066
4067 default:
4068 *status = MGMT_STATUS_INVALID_PARAMS;
4069 return false;
4070 }
4071
4072 return true;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03004073}
4074
Marcel Holtmann1904a852015-01-11 13:50:44 -08004075static void start_discovery_complete(struct hci_dev *hdev, u8 status,
4076 u16 opcode)
Andre Guedes7c307722013-04-30 15:29:28 -03004077{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004078 struct mgmt_pending_cmd *cmd;
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004079 unsigned long timeout;
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004080
Andre Guedes7c307722013-04-30 15:29:28 -03004081 BT_DBG("status %d", status);
4082
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004083 hci_dev_lock(hdev);
4084
Johan Hedberg333ae952015-03-17 13:48:47 +02004085 cmd = pending_find(MGMT_OP_START_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004086 if (!cmd)
Johan Hedberg333ae952015-03-17 13:48:47 +02004087 cmd = pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004088
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004089 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02004090 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004091 mgmt_pending_remove(cmd);
Andre Guedes7c307722013-04-30 15:29:28 -03004092 }
4093
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004094 if (status) {
4095 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4096 goto unlock;
4097 }
4098
Andre Guedes7c307722013-04-30 15:29:28 -03004099 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Andre Guedes7c307722013-04-30 15:29:28 -03004100
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004101 /* If the scan involves LE scan, pick proper timeout to schedule
4102 * hdev->le_scan_disable that will stop it.
4103 */
Andre Guedes7c307722013-04-30 15:29:28 -03004104 switch (hdev->discovery.type) {
4105 case DISCOV_TYPE_LE:
Lukasz Rymanowski3d5a76f2014-03-27 20:55:21 +01004106 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
Andre Guedes7c307722013-04-30 15:29:28 -03004107 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004108 case DISCOV_TYPE_INTERLEAVED:
Jakub Pawlowski07d23342015-03-17 09:04:14 -07004109 /* When running simultaneous discovery, the LE scanning time
4110 * should occupy the whole discovery time sine BR/EDR inquiry
4111 * and LE scanning are scheduled by the controller.
4112 *
4113 * For interleaving discovery in comparison, BR/EDR inquiry
4114 * and LE scanning are done sequentially with separate
4115 * timeouts.
4116 */
4117 if (test_bit(HCI_QUIRK_SIMULTANEOUS_DISCOVERY, &hdev->quirks))
4118 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
4119 else
4120 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
Andre Guedes7c307722013-04-30 15:29:28 -03004121 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004122 case DISCOV_TYPE_BREDR:
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004123 timeout = 0;
Andre Guedes7c307722013-04-30 15:29:28 -03004124 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004125 default:
4126 BT_ERR("Invalid discovery type %d", hdev->discovery.type);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004127 timeout = 0;
4128 break;
Andre Guedes7c307722013-04-30 15:29:28 -03004129 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004130
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004131 if (timeout) {
4132 /* When service discovery is used and the controller has
4133 * a strict duplicate filter, it is important to remember
4134 * the start and duration of the scan. This is required
4135 * for restarting scanning during the discovery phase.
4136 */
4137 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER,
4138 &hdev->quirks) &&
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08004139 hdev->discovery.result_filtering) {
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004140 hdev->discovery.scan_start = jiffies;
4141 hdev->discovery.scan_duration = timeout;
4142 }
4143
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004144 queue_delayed_work(hdev->workqueue,
4145 &hdev->le_scan_disable, timeout);
Jakub Pawlowski2d28cfe2015-02-01 23:07:54 -08004146 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004147
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004148unlock:
4149 hci_dev_unlock(hdev);
Andre Guedes7c307722013-04-30 15:29:28 -03004150}
4151
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004152static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004153 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04004154{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004155 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004156 struct mgmt_pending_cmd *cmd;
Andre Guedes7c307722013-04-30 15:29:28 -03004157 struct hci_request req;
Marcel Holtmann80190442014-12-04 11:36:36 +01004158 u8 status;
Johan Hedberg14a53662011-04-27 10:29:56 -04004159 int err;
4160
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004161 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04004162
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004163 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004164
Johan Hedberg4b34ee782012-02-21 14:13:02 +02004165 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004166 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4167 MGMT_STATUS_NOT_POWERED,
4168 &cp->type, sizeof(cp->type));
Johan Hedbergbd2d1332011-11-07 23:13:37 +02004169 goto failed;
4170 }
4171
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004172 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004173 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004174 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4175 MGMT_STATUS_BUSY, &cp->type,
4176 sizeof(cp->type));
Andre Guedes642be6c2012-03-21 00:03:37 -03004177 goto failed;
4178 }
4179
Johan Hedberg2922a942014-12-05 13:36:06 +02004180 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04004181 if (!cmd) {
4182 err = -ENOMEM;
4183 goto failed;
4184 }
4185
Johan Hedberg2922a942014-12-05 13:36:06 +02004186 cmd->cmd_complete = generic_cmd_complete;
4187
Marcel Holtmann22078802014-12-05 11:45:22 +01004188 /* Clear the discovery filter first to free any previously
4189 * allocated memory for the UUID list.
4190 */
4191 hci_discovery_filter_clear(hdev);
4192
Andre Guedes4aab14e2012-02-17 20:39:36 -03004193 hdev->discovery.type = cp->type;
Marcel Holtmannda25cf62014-12-05 13:03:35 +01004194 hdev->discovery.report_invalid_rssi = false;
Andre Guedes4aab14e2012-02-17 20:39:36 -03004195
Andre Guedes7c307722013-04-30 15:29:28 -03004196 hci_req_init(&req, hdev);
4197
Marcel Holtmann80190442014-12-04 11:36:36 +01004198 if (!trigger_discovery(&req, &status)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004199 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
4200 status, &cp->type, sizeof(cp->type));
Johan Hedberg04106752013-01-10 14:54:09 +02004201 mgmt_pending_remove(cmd);
4202 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03004203 }
Andre Guedes3fd24152012-02-03 17:48:01 -03004204
Andre Guedes7c307722013-04-30 15:29:28 -03004205 err = hci_req_run(&req, start_discovery_complete);
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004206 if (err < 0) {
Johan Hedberg14a53662011-04-27 10:29:56 -04004207 mgmt_pending_remove(cmd);
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004208 goto failed;
4209 }
4210
4211 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04004212
4213failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004214 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004215 return err;
4216}
4217
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004218static int service_discovery_cmd_complete(struct mgmt_pending_cmd *cmd,
4219 u8 status)
Andre Guedes1183fdc2013-04-30 15:29:35 -03004220{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004221 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
4222 cmd->param, 1);
Johan Hedberg2922a942014-12-05 13:36:06 +02004223}
4224
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004225static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
4226 void *data, u16 len)
4227{
4228 struct mgmt_cp_start_service_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004229 struct mgmt_pending_cmd *cmd;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004230 struct hci_request req;
4231 const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
4232 u16 uuid_count, expected_len;
4233 u8 status;
Andre Guedes1183fdc2013-04-30 15:29:35 -03004234 int err;
4235
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004236 BT_DBG("%s", hdev->name);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004237
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004238 hci_dev_lock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004239
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004240 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004241 err = mgmt_cmd_complete(sk, hdev->id,
4242 MGMT_OP_START_SERVICE_DISCOVERY,
4243 MGMT_STATUS_NOT_POWERED,
4244 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004245 goto failed;
4246 }
4247
4248 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004249 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004250 err = mgmt_cmd_complete(sk, hdev->id,
4251 MGMT_OP_START_SERVICE_DISCOVERY,
4252 MGMT_STATUS_BUSY, &cp->type,
4253 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004254 goto failed;
4255 }
4256
4257 uuid_count = __le16_to_cpu(cp->uuid_count);
4258 if (uuid_count > max_uuid_count) {
4259 BT_ERR("service_discovery: too big uuid_count value %u",
4260 uuid_count);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004261 err = mgmt_cmd_complete(sk, hdev->id,
4262 MGMT_OP_START_SERVICE_DISCOVERY,
4263 MGMT_STATUS_INVALID_PARAMS, &cp->type,
4264 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004265 goto failed;
4266 }
4267
4268 expected_len = sizeof(*cp) + uuid_count * 16;
4269 if (expected_len != len) {
4270 BT_ERR("service_discovery: expected %u bytes, got %u bytes",
4271 expected_len, len);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004272 err = mgmt_cmd_complete(sk, hdev->id,
4273 MGMT_OP_START_SERVICE_DISCOVERY,
4274 MGMT_STATUS_INVALID_PARAMS, &cp->type,
4275 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004276 goto failed;
4277 }
4278
4279 cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
Johan Hedberg2922a942014-12-05 13:36:06 +02004280 hdev, data, len);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004281 if (!cmd) {
4282 err = -ENOMEM;
4283 goto failed;
4284 }
4285
Johan Hedberg2922a942014-12-05 13:36:06 +02004286 cmd->cmd_complete = service_discovery_cmd_complete;
4287
Marcel Holtmann22078802014-12-05 11:45:22 +01004288 /* Clear the discovery filter first to free any previously
4289 * allocated memory for the UUID list.
4290 */
4291 hci_discovery_filter_clear(hdev);
4292
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08004293 hdev->discovery.result_filtering = true;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004294 hdev->discovery.type = cp->type;
4295 hdev->discovery.rssi = cp->rssi;
4296 hdev->discovery.uuid_count = uuid_count;
4297
4298 if (uuid_count > 0) {
4299 hdev->discovery.uuids = kmemdup(cp->uuids, uuid_count * 16,
4300 GFP_KERNEL);
4301 if (!hdev->discovery.uuids) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004302 err = mgmt_cmd_complete(sk, hdev->id,
4303 MGMT_OP_START_SERVICE_DISCOVERY,
4304 MGMT_STATUS_FAILED,
4305 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004306 mgmt_pending_remove(cmd);
4307 goto failed;
4308 }
4309 }
4310
4311 hci_req_init(&req, hdev);
4312
4313 if (!trigger_discovery(&req, &status)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004314 err = mgmt_cmd_complete(sk, hdev->id,
4315 MGMT_OP_START_SERVICE_DISCOVERY,
4316 status, &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004317 mgmt_pending_remove(cmd);
4318 goto failed;
4319 }
4320
4321 err = hci_req_run(&req, start_discovery_complete);
4322 if (err < 0) {
4323 mgmt_pending_remove(cmd);
4324 goto failed;
4325 }
4326
4327 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4328
4329failed:
4330 hci_dev_unlock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004331 return err;
4332}
4333
Marcel Holtmann1904a852015-01-11 13:50:44 -08004334static void stop_discovery_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Andre Guedes0e05bba2013-04-30 15:29:33 -03004335{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004336 struct mgmt_pending_cmd *cmd;
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004337
Andre Guedes0e05bba2013-04-30 15:29:33 -03004338 BT_DBG("status %d", status);
4339
4340 hci_dev_lock(hdev);
4341
Johan Hedberg333ae952015-03-17 13:48:47 +02004342 cmd = pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004343 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02004344 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004345 mgmt_pending_remove(cmd);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004346 }
4347
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004348 if (!status)
4349 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004350
Andre Guedes0e05bba2013-04-30 15:29:33 -03004351 hci_dev_unlock(hdev);
4352}
4353
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004354static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004355 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04004356{
Johan Hedbergd9306502012-02-20 23:25:18 +02004357 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004358 struct mgmt_pending_cmd *cmd;
Andre Guedes0e05bba2013-04-30 15:29:33 -03004359 struct hci_request req;
Johan Hedberg14a53662011-04-27 10:29:56 -04004360 int err;
4361
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004362 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04004363
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004364 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004365
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004366 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004367 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
4368 MGMT_STATUS_REJECTED, &mgmt_cp->type,
4369 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02004370 goto unlock;
4371 }
4372
4373 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004374 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
4375 MGMT_STATUS_INVALID_PARAMS,
4376 &mgmt_cp->type, sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004377 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02004378 }
4379
Johan Hedberg2922a942014-12-05 13:36:06 +02004380 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04004381 if (!cmd) {
4382 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004383 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04004384 }
4385
Johan Hedberg2922a942014-12-05 13:36:06 +02004386 cmd->cmd_complete = generic_cmd_complete;
4387
Andre Guedes0e05bba2013-04-30 15:29:33 -03004388 hci_req_init(&req, hdev);
4389
Johan Hedberg21a60d32014-06-10 14:05:58 +03004390 hci_stop_discovery(&req);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004391
Johan Hedberg21a60d32014-06-10 14:05:58 +03004392 err = hci_req_run(&req, stop_discovery_complete);
4393 if (!err) {
4394 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004395 goto unlock;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004396 }
4397
Johan Hedberg21a60d32014-06-10 14:05:58 +03004398 mgmt_pending_remove(cmd);
4399
4400 /* If no HCI commands were sent we're done */
4401 if (err == -ENODATA) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004402 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
4403 &mgmt_cp->type, sizeof(mgmt_cp->type));
Johan Hedberg21a60d32014-06-10 14:05:58 +03004404 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4405 }
Johan Hedberg14a53662011-04-27 10:29:56 -04004406
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004407unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004408 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004409 return err;
4410}
4411
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004412static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004413 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02004414{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004415 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02004416 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02004417 int err;
4418
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004419 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004420
Johan Hedberg561aafb2012-01-04 13:31:59 +02004421 hci_dev_lock(hdev);
4422
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004423 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004424 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
4425 MGMT_STATUS_FAILED, &cp->addr,
4426 sizeof(cp->addr));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004427 goto failed;
4428 }
4429
Johan Hedberga198e7b2012-02-17 14:27:06 +02004430 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004431 if (!e) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004432 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
4433 MGMT_STATUS_INVALID_PARAMS, &cp->addr,
4434 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02004435 goto failed;
4436 }
4437
4438 if (cp->name_known) {
4439 e->name_state = NAME_KNOWN;
4440 list_del(&e->list);
4441 } else {
4442 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02004443 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004444 }
4445
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004446 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
4447 &cp->addr, sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02004448
4449failed:
4450 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004451 return err;
4452}
4453
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004454static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004455 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03004456{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004457 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004458 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03004459 int err;
4460
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004461 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03004462
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004463 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004464 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
4465 MGMT_STATUS_INVALID_PARAMS,
4466 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004467
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004468 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004469
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004470 err = hci_bdaddr_list_add(&hdev->blacklist, &cp->addr.bdaddr,
4471 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004472 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004473 status = MGMT_STATUS_FAILED;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004474 goto done;
4475 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004476
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004477 mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &cp->addr, sizeof(cp->addr),
4478 sk);
4479 status = MGMT_STATUS_SUCCESS;
4480
4481done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004482 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
4483 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03004484
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004485 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03004486
4487 return err;
4488}
4489
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004490static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004491 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03004492{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004493 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004494 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03004495 int err;
4496
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004497 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03004498
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004499 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004500 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
4501 MGMT_STATUS_INVALID_PARAMS,
4502 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004503
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004504 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004505
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004506 err = hci_bdaddr_list_del(&hdev->blacklist, &cp->addr.bdaddr,
4507 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004508 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004509 status = MGMT_STATUS_INVALID_PARAMS;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004510 goto done;
4511 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004512
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004513 mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &cp->addr, sizeof(cp->addr),
4514 sk);
4515 status = MGMT_STATUS_SUCCESS;
4516
4517done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004518 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
4519 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03004520
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004521 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03004522
4523 return err;
4524}
4525
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004526static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
4527 u16 len)
4528{
4529 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05004530 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004531 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01004532 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004533
4534 BT_DBG("%s", hdev->name);
4535
Szymon Jancc72d4b82012-03-16 16:02:57 +01004536 source = __le16_to_cpu(cp->source);
4537
4538 if (source > 0x0002)
Johan Hedberga69e8372015-03-06 21:08:53 +02004539 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
4540 MGMT_STATUS_INVALID_PARAMS);
Szymon Jancc72d4b82012-03-16 16:02:57 +01004541
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004542 hci_dev_lock(hdev);
4543
Szymon Jancc72d4b82012-03-16 16:02:57 +01004544 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004545 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
4546 hdev->devid_product = __le16_to_cpu(cp->product);
4547 hdev->devid_version = __le16_to_cpu(cp->version);
4548
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004549 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
4550 NULL, 0);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004551
Johan Hedberg890ea892013-03-15 17:06:52 -05004552 hci_req_init(&req, hdev);
4553 update_eir(&req);
4554 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004555
4556 hci_dev_unlock(hdev);
4557
4558 return err;
4559}
4560
Arman Uguray24b4f382015-03-23 15:57:12 -07004561static void enable_advertising_instance(struct hci_dev *hdev, u8 status,
4562 u16 opcode)
4563{
4564 BT_DBG("status %d", status);
4565}
4566
Marcel Holtmann1904a852015-01-11 13:50:44 -08004567static void set_advertising_complete(struct hci_dev *hdev, u8 status,
4568 u16 opcode)
Johan Hedberg4375f102013-09-25 13:26:10 +03004569{
4570 struct cmd_lookup match = { NULL, hdev };
Arman Uguray24b4f382015-03-23 15:57:12 -07004571 struct hci_request req;
Johan Hedberg4375f102013-09-25 13:26:10 +03004572
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304573 hci_dev_lock(hdev);
4574
Johan Hedberg4375f102013-09-25 13:26:10 +03004575 if (status) {
4576 u8 mgmt_err = mgmt_status(status);
4577
4578 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
4579 cmd_status_rsp, &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304580 goto unlock;
Johan Hedberg4375f102013-09-25 13:26:10 +03004581 }
4582
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004583 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004584 hci_dev_set_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03004585 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004586 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03004587
Johan Hedberg4375f102013-09-25 13:26:10 +03004588 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
4589 &match);
4590
4591 new_settings(hdev, match.sk);
4592
4593 if (match.sk)
4594 sock_put(match.sk);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304595
Arman Uguray24b4f382015-03-23 15:57:12 -07004596 /* If "Set Advertising" was just disabled and instance advertising was
4597 * set up earlier, then enable the advertising instance.
4598 */
4599 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
4600 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
4601 goto unlock;
4602
4603 hci_req_init(&req, hdev);
4604
4605 update_adv_data(&req);
4606 enable_advertising(&req);
4607
4608 if (hci_req_run(&req, enable_advertising_instance) < 0)
4609 BT_ERR("Failed to re-configure advertising");
4610
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304611unlock:
4612 hci_dev_unlock(hdev);
Johan Hedberg4375f102013-09-25 13:26:10 +03004613}
4614
Marcel Holtmann21b51872013-10-10 09:47:53 -07004615static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
4616 u16 len)
Johan Hedberg4375f102013-09-25 13:26:10 +03004617{
4618 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004619 struct mgmt_pending_cmd *cmd;
Johan Hedberg4375f102013-09-25 13:26:10 +03004620 struct hci_request req;
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004621 u8 val, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03004622 int err;
4623
4624 BT_DBG("request for %s", hdev->name);
4625
Johan Hedberge6fe7982013-10-02 15:45:22 +03004626 status = mgmt_le_support(hdev);
4627 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02004628 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4629 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03004630
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004631 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02004632 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4633 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4375f102013-09-25 13:26:10 +03004634
4635 hci_dev_lock(hdev);
4636
4637 val = !!cp->val;
Johan Hedberg4375f102013-09-25 13:26:10 +03004638
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02004639 /* The following conditions are ones which mean that we should
4640 * not do any HCI communication but directly send a mgmt
4641 * response to user space (after toggling the flag if
4642 * necessary).
4643 */
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004644 if (!hdev_is_powered(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004645 (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
4646 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
Johan Hedberge8bb6b92014-07-08 15:07:53 +03004647 hci_conn_num(hdev, LE_LINK) > 0 ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004648 (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Johan Hedberge8bb6b92014-07-08 15:07:53 +03004649 hdev->le_scan_type == LE_SCAN_ACTIVE)) {
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004650 bool changed;
Johan Hedberg4375f102013-09-25 13:26:10 +03004651
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004652 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07004653 changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004654 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004655 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004656 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004657 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004658 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07004659 changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004660 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Johan Hedberg4375f102013-09-25 13:26:10 +03004661 }
4662
4663 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
4664 if (err < 0)
4665 goto unlock;
4666
4667 if (changed)
4668 err = new_settings(hdev, sk);
4669
4670 goto unlock;
4671 }
4672
Johan Hedberg333ae952015-03-17 13:48:47 +02004673 if (pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
4674 pending_find(MGMT_OP_SET_LE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004675 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4676 MGMT_STATUS_BUSY);
Johan Hedberg4375f102013-09-25 13:26:10 +03004677 goto unlock;
4678 }
4679
4680 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
4681 if (!cmd) {
4682 err = -ENOMEM;
4683 goto unlock;
4684 }
4685
4686 hci_req_init(&req, hdev);
4687
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004688 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004689 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004690 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004691 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb02015-03-12 22:30:58 -07004692
Arman Uguray24b4f382015-03-23 15:57:12 -07004693 if (val) {
4694 /* Switch to instance "0" for the Set Advertising setting. */
4695 update_adv_data_for_instance(&req, 0);
Arman Uguray4117ed72015-03-23 15:57:14 -07004696 update_scan_rsp_data_for_instance(&req, 0);
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004697 enable_advertising(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07004698 } else {
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004699 disable_advertising(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07004700 }
Johan Hedberg4375f102013-09-25 13:26:10 +03004701
4702 err = hci_req_run(&req, set_advertising_complete);
4703 if (err < 0)
4704 mgmt_pending_remove(cmd);
4705
4706unlock:
4707 hci_dev_unlock(hdev);
4708 return err;
4709}
4710
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004711static int set_static_address(struct sock *sk, struct hci_dev *hdev,
4712 void *data, u16 len)
4713{
4714 struct mgmt_cp_set_static_address *cp = data;
4715 int err;
4716
4717 BT_DBG("%s", hdev->name);
4718
Marcel Holtmann62af4442013-10-02 22:10:32 -07004719 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02004720 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
4721 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004722
4723 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02004724 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
4725 MGMT_STATUS_REJECTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004726
4727 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
4728 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
Johan Hedberga69e8372015-03-06 21:08:53 +02004729 return mgmt_cmd_status(sk, hdev->id,
4730 MGMT_OP_SET_STATIC_ADDRESS,
4731 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004732
4733 /* Two most significant bits shall be set */
4734 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
Johan Hedberga69e8372015-03-06 21:08:53 +02004735 return mgmt_cmd_status(sk, hdev->id,
4736 MGMT_OP_SET_STATIC_ADDRESS,
4737 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004738 }
4739
4740 hci_dev_lock(hdev);
4741
4742 bacpy(&hdev->static_addr, &cp->bdaddr);
4743
Marcel Holtmann93690c22015-03-06 10:11:21 -08004744 err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
4745 if (err < 0)
4746 goto unlock;
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004747
Marcel Holtmann93690c22015-03-06 10:11:21 -08004748 err = new_settings(hdev, sk);
4749
4750unlock:
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004751 hci_dev_unlock(hdev);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004752 return err;
4753}
4754
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004755static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
4756 void *data, u16 len)
4757{
4758 struct mgmt_cp_set_scan_params *cp = data;
4759 __u16 interval, window;
4760 int err;
4761
4762 BT_DBG("%s", hdev->name);
4763
4764 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02004765 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4766 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004767
4768 interval = __le16_to_cpu(cp->interval);
4769
4770 if (interval < 0x0004 || interval > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02004771 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4772 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004773
4774 window = __le16_to_cpu(cp->window);
4775
4776 if (window < 0x0004 || window > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02004777 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4778 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004779
Marcel Holtmann899e1072013-10-14 09:55:32 -07004780 if (window > interval)
Johan Hedberga69e8372015-03-06 21:08:53 +02004781 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4782 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann899e1072013-10-14 09:55:32 -07004783
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004784 hci_dev_lock(hdev);
4785
4786 hdev->le_scan_interval = interval;
4787 hdev->le_scan_window = window;
4788
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004789 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
4790 NULL, 0);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004791
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03004792 /* If background scan is running, restart it so new parameters are
4793 * loaded.
4794 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004795 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03004796 hdev->discovery.state == DISCOVERY_STOPPED) {
4797 struct hci_request req;
4798
4799 hci_req_init(&req, hdev);
4800
4801 hci_req_add_le_scan_disable(&req);
4802 hci_req_add_le_passive_scan(&req);
4803
4804 hci_req_run(&req, NULL);
4805 }
4806
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004807 hci_dev_unlock(hdev);
4808
4809 return err;
4810}
4811
Marcel Holtmann1904a852015-01-11 13:50:44 -08004812static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
4813 u16 opcode)
Johan Hedberg33e38b32013-03-15 17:07:05 -05004814{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004815 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05004816
4817 BT_DBG("status 0x%02x", status);
4818
4819 hci_dev_lock(hdev);
4820
Johan Hedberg333ae952015-03-17 13:48:47 +02004821 cmd = pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004822 if (!cmd)
4823 goto unlock;
4824
4825 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004826 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4827 mgmt_status(status));
Johan Hedberg33e38b32013-03-15 17:07:05 -05004828 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004829 struct mgmt_mode *cp = cmd->param;
4830
4831 if (cp->val)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07004832 hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004833 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004834 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004835
Johan Hedberg33e38b32013-03-15 17:07:05 -05004836 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4837 new_settings(hdev, cmd->sk);
4838 }
4839
4840 mgmt_pending_remove(cmd);
4841
4842unlock:
4843 hci_dev_unlock(hdev);
4844}
4845
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004846static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004847 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03004848{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004849 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004850 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05004851 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03004852 int err;
4853
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004854 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004855
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004856 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
Johan Hedberg56f87902013-10-02 13:43:13 +03004857 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberga69e8372015-03-06 21:08:53 +02004858 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4859 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03004860
Johan Hedberga7e80f22013-01-09 16:05:19 +02004861 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02004862 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4863 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02004864
Antti Julkuf6422ec2011-06-22 13:11:56 +03004865 hci_dev_lock(hdev);
4866
Johan Hedberg333ae952015-03-17 13:48:47 +02004867 if (pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004868 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4869 MGMT_STATUS_BUSY);
Johan Hedberg05cbf292013-03-15 17:07:07 -05004870 goto unlock;
4871 }
4872
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004873 if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004874 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
4875 hdev);
4876 goto unlock;
4877 }
4878
Johan Hedberg406ef2a2015-03-10 20:14:27 +02004879 if (!hdev_is_powered(hdev)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07004880 hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg406ef2a2015-03-10 20:14:27 +02004881 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
4882 hdev);
4883 new_settings(hdev, sk);
4884 goto unlock;
4885 }
4886
Johan Hedberg33e38b32013-03-15 17:07:05 -05004887 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
4888 data, len);
4889 if (!cmd) {
4890 err = -ENOMEM;
4891 goto unlock;
4892 }
4893
4894 hci_req_init(&req, hdev);
4895
Johan Hedberg406d7802013-03-15 17:07:09 -05004896 write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004897
4898 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004899 if (err < 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004900 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4901 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004902 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004903 }
4904
Johan Hedberg33e38b32013-03-15 17:07:05 -05004905unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03004906 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004907
Antti Julkuf6422ec2011-06-22 13:11:56 +03004908 return err;
4909}
4910
Marcel Holtmann1904a852015-01-11 13:50:44 -08004911static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg0663ca22013-10-02 13:43:14 +03004912{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004913 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03004914
4915 BT_DBG("status 0x%02x", status);
4916
4917 hci_dev_lock(hdev);
4918
Johan Hedberg333ae952015-03-17 13:48:47 +02004919 cmd = pending_find(MGMT_OP_SET_BREDR, hdev);
Johan Hedberg0663ca22013-10-02 13:43:14 +03004920 if (!cmd)
4921 goto unlock;
4922
4923 if (status) {
4924 u8 mgmt_err = mgmt_status(status);
4925
4926 /* We need to restore the flag if related HCI commands
4927 * failed.
4928 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004929 hci_dev_clear_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03004930
Johan Hedberga69e8372015-03-06 21:08:53 +02004931 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg0663ca22013-10-02 13:43:14 +03004932 } else {
4933 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
4934 new_settings(hdev, cmd->sk);
4935 }
4936
4937 mgmt_pending_remove(cmd);
4938
4939unlock:
4940 hci_dev_unlock(hdev);
4941}
4942
4943static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
4944{
4945 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004946 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03004947 struct hci_request req;
4948 int err;
4949
4950 BT_DBG("request for %s", hdev->name);
4951
4952 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02004953 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4954 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03004955
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004956 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02004957 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4958 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03004959
4960 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02004961 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4962 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0663ca22013-10-02 13:43:14 +03004963
4964 hci_dev_lock(hdev);
4965
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004966 if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg0663ca22013-10-02 13:43:14 +03004967 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
4968 goto unlock;
4969 }
4970
4971 if (!hdev_is_powered(hdev)) {
4972 if (!cp->val) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07004973 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
4974 hci_dev_clear_flag(hdev, HCI_SSP_ENABLED);
4975 hci_dev_clear_flag(hdev, HCI_LINK_SECURITY);
4976 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
4977 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03004978 }
4979
Marcel Holtmannce05d602015-03-13 02:11:03 -07004980 hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03004981
4982 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
4983 if (err < 0)
4984 goto unlock;
4985
4986 err = new_settings(hdev, sk);
4987 goto unlock;
4988 }
4989
4990 /* Reject disabling when powered on */
4991 if (!cp->val) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004992 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4993 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03004994 goto unlock;
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08004995 } else {
4996 /* When configuring a dual-mode controller to operate
4997 * with LE only and using a static address, then switching
4998 * BR/EDR back on is not allowed.
4999 *
5000 * Dual-mode controllers shall operate with the public
5001 * address as its identity address for BR/EDR and LE. So
5002 * reject the attempt to create an invalid configuration.
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08005003 *
5004 * The same restrictions applies when secure connections
5005 * has been enabled. For BR/EDR this is a controller feature
5006 * while for LE it is a host stack feature. This means that
5007 * switching BR/EDR back on when secure connections has been
5008 * enabled is not a supported transaction.
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005009 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005010 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08005011 (bacmp(&hdev->static_addr, BDADDR_ANY) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005012 hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005013 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5014 MGMT_STATUS_REJECTED);
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005015 goto unlock;
5016 }
Johan Hedberg0663ca22013-10-02 13:43:14 +03005017 }
5018
Johan Hedberg333ae952015-03-17 13:48:47 +02005019 if (pending_find(MGMT_OP_SET_BREDR, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005020 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5021 MGMT_STATUS_BUSY);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005022 goto unlock;
5023 }
5024
5025 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
5026 if (!cmd) {
5027 err = -ENOMEM;
5028 goto unlock;
5029 }
5030
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07005031 /* We need to flip the bit already here so that update_adv_data
Johan Hedberg0663ca22013-10-02 13:43:14 +03005032 * generates the correct flags.
5033 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005034 hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005035
5036 hci_req_init(&req, hdev);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005037
Johan Hedberg432df052014-08-01 11:13:31 +03005038 write_fast_connectable(&req, false);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02005039 __hci_update_page_scan(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005040
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07005041 /* Since only the advertising data flags will change, there
5042 * is no need to update the scan response data.
5043 */
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07005044 update_adv_data(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005045
Johan Hedberg0663ca22013-10-02 13:43:14 +03005046 err = hci_req_run(&req, set_bredr_complete);
5047 if (err < 0)
5048 mgmt_pending_remove(cmd);
5049
5050unlock:
5051 hci_dev_unlock(hdev);
5052 return err;
5053}
5054
Johan Hedberga1443f52015-01-23 15:42:46 +02005055static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5056{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005057 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02005058 struct mgmt_mode *cp;
5059
5060 BT_DBG("%s status %u", hdev->name, status);
5061
5062 hci_dev_lock(hdev);
5063
Johan Hedberg333ae952015-03-17 13:48:47 +02005064 cmd = pending_find(MGMT_OP_SET_SECURE_CONN, hdev);
Johan Hedberga1443f52015-01-23 15:42:46 +02005065 if (!cmd)
5066 goto unlock;
5067
5068 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005069 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
5070 mgmt_status(status));
Johan Hedberga1443f52015-01-23 15:42:46 +02005071 goto remove;
5072 }
5073
5074 cp = cmd->param;
5075
5076 switch (cp->val) {
5077 case 0x00:
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005078 hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
5079 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005080 break;
5081 case 0x01:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005082 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005083 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005084 break;
5085 case 0x02:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005086 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
5087 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005088 break;
5089 }
5090
5091 send_settings_rsp(cmd->sk, MGMT_OP_SET_SECURE_CONN, hdev);
5092 new_settings(hdev, cmd->sk);
5093
5094remove:
5095 mgmt_pending_remove(cmd);
5096unlock:
5097 hci_dev_unlock(hdev);
5098}
5099
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005100static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
5101 void *data, u16 len)
5102{
5103 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005104 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02005105 struct hci_request req;
Johan Hedberga3209692014-05-26 11:23:35 +03005106 u8 val;
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005107 int err;
5108
5109 BT_DBG("request for %s", hdev->name);
5110
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08005111 if (!lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005112 !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005113 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5114 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005115
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005116 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Johan Hedberg59200282015-01-28 19:56:00 +02005117 lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005118 !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005119 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5120 MGMT_STATUS_REJECTED);
Marcel Holtmanned93ec62015-01-22 11:15:22 -08005121
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005122 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005123 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005124 MGMT_STATUS_INVALID_PARAMS);
5125
5126 hci_dev_lock(hdev);
5127
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08005128 if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005129 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005130 bool changed;
5131
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005132 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07005133 changed = !hci_dev_test_and_set_flag(hdev,
5134 HCI_SC_ENABLED);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005135 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005136 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005137 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005138 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005139 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005140 changed = hci_dev_test_and_clear_flag(hdev,
5141 HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005142 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005143 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005144
5145 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
5146 if (err < 0)
5147 goto failed;
5148
5149 if (changed)
5150 err = new_settings(hdev, sk);
5151
5152 goto failed;
5153 }
5154
Johan Hedberg333ae952015-03-17 13:48:47 +02005155 if (pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005156 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5157 MGMT_STATUS_BUSY);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005158 goto failed;
5159 }
5160
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005161 val = !!cp->val;
5162
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005163 if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
5164 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005165 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
5166 goto failed;
5167 }
5168
5169 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
5170 if (!cmd) {
5171 err = -ENOMEM;
5172 goto failed;
5173 }
5174
Johan Hedberga1443f52015-01-23 15:42:46 +02005175 hci_req_init(&req, hdev);
5176 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
5177 err = hci_req_run(&req, sc_enable_complete);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005178 if (err < 0) {
5179 mgmt_pending_remove(cmd);
5180 goto failed;
5181 }
5182
5183failed:
5184 hci_dev_unlock(hdev);
5185 return err;
5186}
5187
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005188static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
5189 void *data, u16 len)
5190{
5191 struct mgmt_mode *cp = data;
Johan Hedbergb97109792014-06-24 14:00:28 +03005192 bool changed, use_changed;
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005193 int err;
5194
5195 BT_DBG("request for %s", hdev->name);
5196
Johan Hedbergb97109792014-06-24 14:00:28 +03005197 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005198 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
5199 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005200
5201 hci_dev_lock(hdev);
5202
5203 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07005204 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005205 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005206 changed = hci_dev_test_and_clear_flag(hdev,
5207 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005208
Johan Hedbergb97109792014-06-24 14:00:28 +03005209 if (cp->val == 0x02)
Marcel Holtmann238be782015-03-13 02:11:06 -07005210 use_changed = !hci_dev_test_and_set_flag(hdev,
5211 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03005212 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005213 use_changed = hci_dev_test_and_clear_flag(hdev,
5214 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03005215
5216 if (hdev_is_powered(hdev) && use_changed &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005217 hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedbergb97109792014-06-24 14:00:28 +03005218 u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
5219 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
5220 sizeof(mode), &mode);
5221 }
5222
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005223 err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
5224 if (err < 0)
5225 goto unlock;
5226
5227 if (changed)
5228 err = new_settings(hdev, sk);
5229
5230unlock:
5231 hci_dev_unlock(hdev);
5232 return err;
5233}
5234
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005235static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
5236 u16 len)
5237{
5238 struct mgmt_cp_set_privacy *cp = cp_data;
5239 bool changed;
5240 int err;
5241
5242 BT_DBG("request for %s", hdev->name);
5243
5244 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005245 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5246 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005247
5248 if (cp->privacy != 0x00 && cp->privacy != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005249 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5250 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005251
5252 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005253 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
5254 MGMT_STATUS_REJECTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005255
5256 hci_dev_lock(hdev);
5257
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02005258 /* If user space supports this command it is also expected to
5259 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
5260 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005261 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02005262
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005263 if (cp->privacy) {
Marcel Holtmann238be782015-03-13 02:11:06 -07005264 changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005265 memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005266 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005267 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005268 changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005269 memset(hdev->irk, 0, sizeof(hdev->irk));
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005270 hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02005271 }
5272
5273 err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
5274 if (err < 0)
5275 goto unlock;
5276
5277 if (changed)
5278 err = new_settings(hdev, sk);
5279
5280unlock:
5281 hci_dev_unlock(hdev);
5282 return err;
5283}
5284
Johan Hedberg41edf162014-02-18 10:19:35 +02005285static bool irk_is_valid(struct mgmt_irk_info *irk)
5286{
5287 switch (irk->addr.type) {
5288 case BDADDR_LE_PUBLIC:
5289 return true;
5290
5291 case BDADDR_LE_RANDOM:
5292 /* Two most significant bits shall be set */
5293 if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
5294 return false;
5295 return true;
5296 }
5297
5298 return false;
5299}
5300
5301static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
5302 u16 len)
5303{
5304 struct mgmt_cp_load_irks *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005305 const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
5306 sizeof(struct mgmt_irk_info));
Johan Hedberg41edf162014-02-18 10:19:35 +02005307 u16 irk_count, expected_len;
5308 int i, err;
5309
5310 BT_DBG("request for %s", hdev->name);
5311
5312 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005313 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5314 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg41edf162014-02-18 10:19:35 +02005315
5316 irk_count = __le16_to_cpu(cp->irk_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005317 if (irk_count > max_irk_count) {
5318 BT_ERR("load_irks: too big irk_count value %u", irk_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02005319 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5320 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005321 }
Johan Hedberg41edf162014-02-18 10:19:35 +02005322
5323 expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
5324 if (expected_len != len) {
5325 BT_ERR("load_irks: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02005326 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02005327 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5328 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02005329 }
5330
5331 BT_DBG("%s irk_count %u", hdev->name, irk_count);
5332
5333 for (i = 0; i < irk_count; i++) {
5334 struct mgmt_irk_info *key = &cp->irks[i];
5335
5336 if (!irk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02005337 return mgmt_cmd_status(sk, hdev->id,
5338 MGMT_OP_LOAD_IRKS,
5339 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02005340 }
5341
5342 hci_dev_lock(hdev);
5343
5344 hci_smp_irks_clear(hdev);
5345
5346 for (i = 0; i < irk_count; i++) {
5347 struct mgmt_irk_info *irk = &cp->irks[i];
5348 u8 addr_type;
5349
5350 if (irk->addr.type == BDADDR_LE_PUBLIC)
5351 addr_type = ADDR_LE_DEV_PUBLIC;
5352 else
5353 addr_type = ADDR_LE_DEV_RANDOM;
5354
5355 hci_add_irk(hdev, &irk->addr.bdaddr, addr_type, irk->val,
5356 BDADDR_ANY);
5357 }
5358
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005359 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedberg41edf162014-02-18 10:19:35 +02005360
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005361 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
Johan Hedberg41edf162014-02-18 10:19:35 +02005362
5363 hci_dev_unlock(hdev);
5364
5365 return err;
5366}
5367
Johan Hedberg3f706b72013-01-20 14:27:16 +02005368static bool ltk_is_valid(struct mgmt_ltk_info *key)
5369{
5370 if (key->master != 0x00 && key->master != 0x01)
5371 return false;
Marcel Holtmann490cb0b2014-02-16 12:59:05 -08005372
5373 switch (key->addr.type) {
5374 case BDADDR_LE_PUBLIC:
5375 return true;
5376
5377 case BDADDR_LE_RANDOM:
5378 /* Two most significant bits shall be set */
5379 if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
5380 return false;
5381 return true;
5382 }
5383
5384 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02005385}
5386
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005387static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005388 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005389{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005390 struct mgmt_cp_load_long_term_keys *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005391 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
5392 sizeof(struct mgmt_ltk_info));
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005393 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005394 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005395
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07005396 BT_DBG("request for %s", hdev->name);
5397
5398 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005399 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5400 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07005401
Marcel Holtmann1f350c82012-03-12 20:31:08 -07005402 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005403 if (key_count > max_key_count) {
5404 BT_ERR("load_ltks: too big key_count value %u", key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02005405 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5406 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005407 }
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005408
5409 expected_len = sizeof(*cp) + key_count *
5410 sizeof(struct mgmt_ltk_info);
5411 if (expected_len != len) {
5412 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02005413 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02005414 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5415 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005416 }
5417
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005418 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005419
Johan Hedberg54ad6d82013-01-20 14:27:15 +02005420 for (i = 0; i < key_count; i++) {
5421 struct mgmt_ltk_info *key = &cp->keys[i];
5422
Johan Hedberg3f706b72013-01-20 14:27:16 +02005423 if (!ltk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02005424 return mgmt_cmd_status(sk, hdev->id,
5425 MGMT_OP_LOAD_LONG_TERM_KEYS,
5426 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg54ad6d82013-01-20 14:27:15 +02005427 }
5428
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005429 hci_dev_lock(hdev);
5430
5431 hci_smp_ltks_clear(hdev);
5432
5433 for (i = 0; i < key_count; i++) {
5434 struct mgmt_ltk_info *key = &cp->keys[i];
Johan Hedbergd7b25452014-05-23 13:19:53 +03005435 u8 type, addr_type, authenticated;
Marcel Holtmann79d95a12013-10-13 03:57:38 -07005436
5437 if (key->addr.type == BDADDR_LE_PUBLIC)
5438 addr_type = ADDR_LE_DEV_PUBLIC;
5439 else
5440 addr_type = ADDR_LE_DEV_RANDOM;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005441
Johan Hedberg61b43352014-05-29 19:36:53 +03005442 switch (key->type) {
5443 case MGMT_LTK_UNAUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03005444 authenticated = 0x00;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005445 type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
Johan Hedberg61b43352014-05-29 19:36:53 +03005446 break;
5447 case MGMT_LTK_AUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03005448 authenticated = 0x01;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005449 type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
Johan Hedberg61b43352014-05-29 19:36:53 +03005450 break;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005451 case MGMT_LTK_P256_UNAUTH:
5452 authenticated = 0x00;
5453 type = SMP_LTK_P256;
5454 break;
5455 case MGMT_LTK_P256_AUTH:
5456 authenticated = 0x01;
5457 type = SMP_LTK_P256;
5458 break;
5459 case MGMT_LTK_P256_DEBUG:
5460 authenticated = 0x00;
5461 type = SMP_LTK_P256_DEBUG;
Johan Hedberg61b43352014-05-29 19:36:53 +03005462 default:
5463 continue;
5464 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03005465
Johan Hedberg35d70272014-02-19 14:57:47 +02005466 hci_add_ltk(hdev, &key->addr.bdaddr, addr_type, type,
Johan Hedbergd7b25452014-05-23 13:19:53 +03005467 authenticated, key->val, key->enc_size, key->ediv,
Johan Hedberg35d70272014-02-19 14:57:47 +02005468 key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005469 }
5470
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005471 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005472 NULL, 0);
5473
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005474 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005475
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005476 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005477}
5478
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005479static int conn_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005480{
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005481 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005482 struct mgmt_rp_get_conn_info rp;
Johan Hedberg9df74652014-12-19 22:26:03 +02005483 int err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005484
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005485 memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005486
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005487 if (status == MGMT_STATUS_SUCCESS) {
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005488 rp.rssi = conn->rssi;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005489 rp.tx_power = conn->tx_power;
5490 rp.max_tx_power = conn->max_tx_power;
5491 } else {
5492 rp.rssi = HCI_RSSI_INVALID;
5493 rp.tx_power = HCI_TX_POWER_INVALID;
5494 rp.max_tx_power = HCI_TX_POWER_INVALID;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005495 }
5496
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005497 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
5498 status, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005499
5500 hci_conn_drop(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005501 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02005502
5503 return err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005504}
5505
Marcel Holtmann1904a852015-01-11 13:50:44 -08005506static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
5507 u16 opcode)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005508{
5509 struct hci_cp_read_rssi *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005510 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005511 struct hci_conn *conn;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005512 u16 handle;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005513 u8 status;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005514
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005515 BT_DBG("status 0x%02x", hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005516
5517 hci_dev_lock(hdev);
5518
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005519 /* Commands sent in request are either Read RSSI or Read Transmit Power
5520 * Level so we check which one was last sent to retrieve connection
5521 * handle. Both commands have handle as first parameter so it's safe to
5522 * cast data on the same command struct.
5523 *
5524 * First command sent is always Read RSSI and we fail only if it fails.
5525 * In other case we simply override error to indicate success as we
5526 * already remembered if TX power value is actually valid.
5527 */
5528 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI);
5529 if (!cp) {
5530 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005531 status = MGMT_STATUS_SUCCESS;
5532 } else {
5533 status = mgmt_status(hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005534 }
5535
5536 if (!cp) {
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005537 BT_ERR("invalid sent_cmd in conn_info response");
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005538 goto unlock;
5539 }
5540
5541 handle = __le16_to_cpu(cp->handle);
5542 conn = hci_conn_hash_lookup_handle(hdev, handle);
5543 if (!conn) {
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005544 BT_ERR("unknown handle (%d) in conn_info response", handle);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005545 goto unlock;
5546 }
5547
Johan Hedberg333ae952015-03-17 13:48:47 +02005548 cmd = pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005549 if (!cmd)
5550 goto unlock;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005551
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005552 cmd->cmd_complete(cmd, status);
5553 mgmt_pending_remove(cmd);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005554
5555unlock:
5556 hci_dev_unlock(hdev);
5557}
5558
5559static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data,
5560 u16 len)
5561{
5562 struct mgmt_cp_get_conn_info *cp = data;
5563 struct mgmt_rp_get_conn_info rp;
5564 struct hci_conn *conn;
5565 unsigned long conn_info_age;
5566 int err = 0;
5567
5568 BT_DBG("%s", hdev->name);
5569
5570 memset(&rp, 0, sizeof(rp));
5571 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5572 rp.addr.type = cp->addr.type;
5573
5574 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005575 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5576 MGMT_STATUS_INVALID_PARAMS,
5577 &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005578
5579 hci_dev_lock(hdev);
5580
5581 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005582 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5583 MGMT_STATUS_NOT_POWERED, &rp,
5584 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005585 goto unlock;
5586 }
5587
5588 if (cp->addr.type == BDADDR_BREDR)
5589 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
5590 &cp->addr.bdaddr);
5591 else
5592 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
5593
5594 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005595 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5596 MGMT_STATUS_NOT_CONNECTED, &rp,
5597 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005598 goto unlock;
5599 }
5600
Johan Hedberg333ae952015-03-17 13:48:47 +02005601 if (pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005602 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5603 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005604 goto unlock;
5605 }
5606
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005607 /* To avoid client trying to guess when to poll again for information we
5608 * calculate conn info age as random value between min/max set in hdev.
5609 */
5610 conn_info_age = hdev->conn_info_min_age +
5611 prandom_u32_max(hdev->conn_info_max_age -
5612 hdev->conn_info_min_age);
5613
5614 /* Query controller to refresh cached values if they are too old or were
5615 * never read.
5616 */
Andrzej Kaczmarekf4e2dd52014-05-16 16:48:57 +02005617 if (time_after(jiffies, conn->conn_info_timestamp +
5618 msecs_to_jiffies(conn_info_age)) ||
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005619 !conn->conn_info_timestamp) {
5620 struct hci_request req;
5621 struct hci_cp_read_tx_power req_txp_cp;
5622 struct hci_cp_read_rssi req_rssi_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005623 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005624
5625 hci_req_init(&req, hdev);
5626 req_rssi_cp.handle = cpu_to_le16(conn->handle);
5627 hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp),
5628 &req_rssi_cp);
5629
Andrzej Kaczmarekf7faab02014-05-14 13:43:04 +02005630 /* For LE links TX power does not change thus we don't need to
5631 * query for it once value is known.
5632 */
5633 if (!bdaddr_type_is_le(cp->addr.type) ||
5634 conn->tx_power == HCI_TX_POWER_INVALID) {
5635 req_txp_cp.handle = cpu_to_le16(conn->handle);
5636 req_txp_cp.type = 0x00;
5637 hci_req_add(&req, HCI_OP_READ_TX_POWER,
5638 sizeof(req_txp_cp), &req_txp_cp);
5639 }
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005640
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02005641 /* Max TX power needs to be read only once per connection */
5642 if (conn->max_tx_power == HCI_TX_POWER_INVALID) {
5643 req_txp_cp.handle = cpu_to_le16(conn->handle);
5644 req_txp_cp.type = 0x01;
5645 hci_req_add(&req, HCI_OP_READ_TX_POWER,
5646 sizeof(req_txp_cp), &req_txp_cp);
5647 }
5648
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005649 err = hci_req_run(&req, conn_info_refresh_complete);
5650 if (err < 0)
5651 goto unlock;
5652
5653 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CONN_INFO, hdev,
5654 data, len);
5655 if (!cmd) {
5656 err = -ENOMEM;
5657 goto unlock;
5658 }
5659
5660 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005661 cmd->user_data = hci_conn_get(conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005662 cmd->cmd_complete = conn_info_cmd_complete;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005663
5664 conn->conn_info_timestamp = jiffies;
5665 } else {
5666 /* Cache is valid, just reply with values cached in hci_conn */
5667 rp.rssi = conn->rssi;
5668 rp.tx_power = conn->tx_power;
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02005669 rp.max_tx_power = conn->max_tx_power;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005670
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005671 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5672 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005673 }
5674
5675unlock:
5676 hci_dev_unlock(hdev);
5677 return err;
5678}
5679
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005680static int clock_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg69487372014-12-05 13:36:07 +02005681{
5682 struct hci_conn *conn = cmd->user_data;
5683 struct mgmt_rp_get_clock_info rp;
5684 struct hci_dev *hdev;
Johan Hedberg9df74652014-12-19 22:26:03 +02005685 int err;
Johan Hedberg69487372014-12-05 13:36:07 +02005686
5687 memset(&rp, 0, sizeof(rp));
5688 memcpy(&rp.addr, &cmd->param, sizeof(rp.addr));
5689
5690 if (status)
5691 goto complete;
5692
5693 hdev = hci_dev_get(cmd->index);
5694 if (hdev) {
5695 rp.local_clock = cpu_to_le32(hdev->clock);
5696 hci_dev_put(hdev);
5697 }
5698
5699 if (conn) {
5700 rp.piconet_clock = cpu_to_le32(conn->clock);
5701 rp.accuracy = cpu_to_le16(conn->clock_accuracy);
5702 }
5703
5704complete:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005705 err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
5706 sizeof(rp));
Johan Hedberg69487372014-12-05 13:36:07 +02005707
5708 if (conn) {
5709 hci_conn_drop(conn);
5710 hci_conn_put(conn);
5711 }
Johan Hedberg9df74652014-12-19 22:26:03 +02005712
5713 return err;
Johan Hedberg69487372014-12-05 13:36:07 +02005714}
5715
Marcel Holtmann1904a852015-01-11 13:50:44 -08005716static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg95868422014-06-28 17:54:07 +03005717{
Johan Hedberg95868422014-06-28 17:54:07 +03005718 struct hci_cp_read_clock *hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005719 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03005720 struct hci_conn *conn;
5721
5722 BT_DBG("%s status %u", hdev->name, status);
5723
5724 hci_dev_lock(hdev);
5725
5726 hci_cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
5727 if (!hci_cp)
5728 goto unlock;
5729
5730 if (hci_cp->which) {
5731 u16 handle = __le16_to_cpu(hci_cp->handle);
5732 conn = hci_conn_hash_lookup_handle(hdev, handle);
5733 } else {
5734 conn = NULL;
5735 }
5736
Johan Hedberg333ae952015-03-17 13:48:47 +02005737 cmd = pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
Johan Hedberg95868422014-06-28 17:54:07 +03005738 if (!cmd)
5739 goto unlock;
5740
Johan Hedberg69487372014-12-05 13:36:07 +02005741 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberg95868422014-06-28 17:54:07 +03005742 mgmt_pending_remove(cmd);
Johan Hedberg95868422014-06-28 17:54:07 +03005743
5744unlock:
5745 hci_dev_unlock(hdev);
5746}
5747
5748static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data,
5749 u16 len)
5750{
5751 struct mgmt_cp_get_clock_info *cp = data;
5752 struct mgmt_rp_get_clock_info rp;
5753 struct hci_cp_read_clock hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005754 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03005755 struct hci_request req;
5756 struct hci_conn *conn;
5757 int err;
5758
5759 BT_DBG("%s", hdev->name);
5760
5761 memset(&rp, 0, sizeof(rp));
5762 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5763 rp.addr.type = cp->addr.type;
5764
5765 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005766 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
5767 MGMT_STATUS_INVALID_PARAMS,
5768 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03005769
5770 hci_dev_lock(hdev);
5771
5772 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005773 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
5774 MGMT_STATUS_NOT_POWERED, &rp,
5775 sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03005776 goto unlock;
5777 }
5778
5779 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
5780 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
5781 &cp->addr.bdaddr);
5782 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005783 err = mgmt_cmd_complete(sk, hdev->id,
5784 MGMT_OP_GET_CLOCK_INFO,
5785 MGMT_STATUS_NOT_CONNECTED,
5786 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03005787 goto unlock;
5788 }
5789 } else {
5790 conn = NULL;
5791 }
5792
5793 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CLOCK_INFO, hdev, data, len);
5794 if (!cmd) {
5795 err = -ENOMEM;
5796 goto unlock;
5797 }
5798
Johan Hedberg69487372014-12-05 13:36:07 +02005799 cmd->cmd_complete = clock_info_cmd_complete;
5800
Johan Hedberg95868422014-06-28 17:54:07 +03005801 hci_req_init(&req, hdev);
5802
5803 memset(&hci_cp, 0, sizeof(hci_cp));
5804 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
5805
5806 if (conn) {
5807 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005808 cmd->user_data = hci_conn_get(conn);
Johan Hedberg95868422014-06-28 17:54:07 +03005809
5810 hci_cp.handle = cpu_to_le16(conn->handle);
5811 hci_cp.which = 0x01; /* Piconet clock */
5812 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
5813 }
5814
5815 err = hci_req_run(&req, get_clock_info_complete);
5816 if (err < 0)
5817 mgmt_pending_remove(cmd);
5818
5819unlock:
5820 hci_dev_unlock(hdev);
5821 return err;
5822}
5823
Johan Hedberg5a154e62014-12-19 22:26:02 +02005824static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
5825{
5826 struct hci_conn *conn;
5827
5828 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
5829 if (!conn)
5830 return false;
5831
5832 if (conn->dst_type != type)
5833 return false;
5834
5835 if (conn->state != BT_CONNECTED)
5836 return false;
5837
5838 return true;
5839}
5840
5841/* This function requires the caller holds hdev->lock */
5842static int hci_conn_params_set(struct hci_request *req, bdaddr_t *addr,
5843 u8 addr_type, u8 auto_connect)
5844{
5845 struct hci_dev *hdev = req->hdev;
5846 struct hci_conn_params *params;
5847
5848 params = hci_conn_params_add(hdev, addr, addr_type);
5849 if (!params)
5850 return -EIO;
5851
5852 if (params->auto_connect == auto_connect)
5853 return 0;
5854
5855 list_del_init(&params->action);
5856
5857 switch (auto_connect) {
5858 case HCI_AUTO_CONN_DISABLED:
5859 case HCI_AUTO_CONN_LINK_LOSS:
5860 __hci_update_background_scan(req);
5861 break;
5862 case HCI_AUTO_CONN_REPORT:
5863 list_add(&params->action, &hdev->pend_le_reports);
5864 __hci_update_background_scan(req);
5865 break;
5866 case HCI_AUTO_CONN_DIRECT:
5867 case HCI_AUTO_CONN_ALWAYS:
5868 if (!is_connected(hdev, addr, addr_type)) {
5869 list_add(&params->action, &hdev->pend_le_conns);
5870 __hci_update_background_scan(req);
5871 }
5872 break;
5873 }
5874
5875 params->auto_connect = auto_connect;
5876
5877 BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
5878 auto_connect);
5879
5880 return 0;
5881}
5882
Marcel Holtmann8afef092014-06-29 22:28:34 +02005883static void device_added(struct sock *sk, struct hci_dev *hdev,
5884 bdaddr_t *bdaddr, u8 type, u8 action)
5885{
5886 struct mgmt_ev_device_added ev;
5887
5888 bacpy(&ev.addr.bdaddr, bdaddr);
5889 ev.addr.type = type;
5890 ev.action = action;
5891
5892 mgmt_event(MGMT_EV_DEVICE_ADDED, hdev, &ev, sizeof(ev), sk);
5893}
5894
Marcel Holtmann1904a852015-01-11 13:50:44 -08005895static void add_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg5a154e62014-12-19 22:26:02 +02005896{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005897 struct mgmt_pending_cmd *cmd;
Johan Hedberg5a154e62014-12-19 22:26:02 +02005898
5899 BT_DBG("status 0x%02x", status);
5900
5901 hci_dev_lock(hdev);
5902
Johan Hedberg333ae952015-03-17 13:48:47 +02005903 cmd = pending_find(MGMT_OP_ADD_DEVICE, hdev);
Johan Hedberg5a154e62014-12-19 22:26:02 +02005904 if (!cmd)
5905 goto unlock;
5906
5907 cmd->cmd_complete(cmd, mgmt_status(status));
5908 mgmt_pending_remove(cmd);
5909
5910unlock:
5911 hci_dev_unlock(hdev);
5912}
5913
Marcel Holtmann2faade52014-06-29 19:44:03 +02005914static int add_device(struct sock *sk, struct hci_dev *hdev,
5915 void *data, u16 len)
5916{
5917 struct mgmt_cp_add_device *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005918 struct mgmt_pending_cmd *cmd;
Johan Hedberg5a154e62014-12-19 22:26:02 +02005919 struct hci_request req;
Marcel Holtmann2faade52014-06-29 19:44:03 +02005920 u8 auto_conn, addr_type;
5921 int err;
5922
5923 BT_DBG("%s", hdev->name);
5924
Johan Hedberg66593582014-07-09 12:59:14 +03005925 if (!bdaddr_type_is_valid(cp->addr.type) ||
Marcel Holtmann2faade52014-06-29 19:44:03 +02005926 !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005927 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
5928 MGMT_STATUS_INVALID_PARAMS,
5929 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02005930
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02005931 if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005932 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
5933 MGMT_STATUS_INVALID_PARAMS,
5934 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02005935
Johan Hedberg5a154e62014-12-19 22:26:02 +02005936 hci_req_init(&req, hdev);
5937
Marcel Holtmann2faade52014-06-29 19:44:03 +02005938 hci_dev_lock(hdev);
5939
Johan Hedberg5a154e62014-12-19 22:26:02 +02005940 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_DEVICE, hdev, data, len);
5941 if (!cmd) {
5942 err = -ENOMEM;
5943 goto unlock;
5944 }
5945
5946 cmd->cmd_complete = addr_cmd_complete;
5947
Johan Hedberg66593582014-07-09 12:59:14 +03005948 if (cp->addr.type == BDADDR_BREDR) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02005949 /* Only incoming connections action is supported for now */
Johan Hedberg66593582014-07-09 12:59:14 +03005950 if (cp->action != 0x01) {
Johan Hedberg9df74652014-12-19 22:26:03 +02005951 err = cmd->cmd_complete(cmd,
5952 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg5a154e62014-12-19 22:26:02 +02005953 mgmt_pending_remove(cmd);
Johan Hedberg66593582014-07-09 12:59:14 +03005954 goto unlock;
5955 }
5956
5957 err = hci_bdaddr_list_add(&hdev->whitelist, &cp->addr.bdaddr,
5958 cp->addr.type);
5959 if (err)
5960 goto unlock;
Johan Hedberga3974072014-07-09 12:59:15 +03005961
Johan Hedberg5a154e62014-12-19 22:26:02 +02005962 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03005963
Johan Hedberg66593582014-07-09 12:59:14 +03005964 goto added;
5965 }
5966
Marcel Holtmann2faade52014-06-29 19:44:03 +02005967 if (cp->addr.type == BDADDR_LE_PUBLIC)
5968 addr_type = ADDR_LE_DEV_PUBLIC;
5969 else
5970 addr_type = ADDR_LE_DEV_RANDOM;
5971
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02005972 if (cp->action == 0x02)
Marcel Holtmann2faade52014-06-29 19:44:03 +02005973 auto_conn = HCI_AUTO_CONN_ALWAYS;
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02005974 else if (cp->action == 0x01)
5975 auto_conn = HCI_AUTO_CONN_DIRECT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02005976 else
Johan Hedberga3451d22014-07-02 17:37:27 +03005977 auto_conn = HCI_AUTO_CONN_REPORT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02005978
Marcel Holtmannbf5b3c82014-06-30 12:34:39 +02005979 /* If the connection parameters don't exist for this device,
5980 * they will be created and configured with defaults.
5981 */
Johan Hedberg5a154e62014-12-19 22:26:02 +02005982 if (hci_conn_params_set(&req, &cp->addr.bdaddr, addr_type,
Marcel Holtmannd06b50c2014-07-01 12:11:06 +02005983 auto_conn) < 0) {
Johan Hedberg9df74652014-12-19 22:26:03 +02005984 err = cmd->cmd_complete(cmd, MGMT_STATUS_FAILED);
Johan Hedberg5a154e62014-12-19 22:26:02 +02005985 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02005986 goto unlock;
5987 }
5988
Johan Hedberg66593582014-07-09 12:59:14 +03005989added:
Marcel Holtmann8afef092014-06-29 22:28:34 +02005990 device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);
5991
Johan Hedberg5a154e62014-12-19 22:26:02 +02005992 err = hci_req_run(&req, add_device_complete);
5993 if (err < 0) {
5994 /* ENODATA means no HCI commands were needed (e.g. if
5995 * the adapter is powered off).
5996 */
Johan Hedberg9df74652014-12-19 22:26:03 +02005997 if (err == -ENODATA)
5998 err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
Johan Hedberg5a154e62014-12-19 22:26:02 +02005999 mgmt_pending_remove(cmd);
6000 }
Marcel Holtmann2faade52014-06-29 19:44:03 +02006001
6002unlock:
6003 hci_dev_unlock(hdev);
6004 return err;
6005}
6006
Marcel Holtmann8afef092014-06-29 22:28:34 +02006007static void device_removed(struct sock *sk, struct hci_dev *hdev,
6008 bdaddr_t *bdaddr, u8 type)
6009{
6010 struct mgmt_ev_device_removed ev;
6011
6012 bacpy(&ev.addr.bdaddr, bdaddr);
6013 ev.addr.type = type;
6014
6015 mgmt_event(MGMT_EV_DEVICE_REMOVED, hdev, &ev, sizeof(ev), sk);
6016}
6017
Marcel Holtmann1904a852015-01-11 13:50:44 -08006018static void remove_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006019{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006020 struct mgmt_pending_cmd *cmd;
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006021
6022 BT_DBG("status 0x%02x", status);
6023
6024 hci_dev_lock(hdev);
6025
Johan Hedberg333ae952015-03-17 13:48:47 +02006026 cmd = pending_find(MGMT_OP_REMOVE_DEVICE, hdev);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006027 if (!cmd)
6028 goto unlock;
6029
6030 cmd->cmd_complete(cmd, mgmt_status(status));
6031 mgmt_pending_remove(cmd);
6032
6033unlock:
6034 hci_dev_unlock(hdev);
6035}
6036
Marcel Holtmann2faade52014-06-29 19:44:03 +02006037static int remove_device(struct sock *sk, struct hci_dev *hdev,
6038 void *data, u16 len)
6039{
6040 struct mgmt_cp_remove_device *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006041 struct mgmt_pending_cmd *cmd;
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006042 struct hci_request req;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006043 int err;
6044
6045 BT_DBG("%s", hdev->name);
6046
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006047 hci_req_init(&req, hdev);
6048
Marcel Holtmann2faade52014-06-29 19:44:03 +02006049 hci_dev_lock(hdev);
6050
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006051 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_DEVICE, hdev, data, len);
6052 if (!cmd) {
6053 err = -ENOMEM;
6054 goto unlock;
6055 }
6056
6057 cmd->cmd_complete = addr_cmd_complete;
6058
Marcel Holtmann2faade52014-06-29 19:44:03 +02006059 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
Johan Hedbergc71593d2014-07-02 17:37:28 +03006060 struct hci_conn_params *params;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006061 u8 addr_type;
6062
Johan Hedberg66593582014-07-09 12:59:14 +03006063 if (!bdaddr_type_is_valid(cp->addr.type)) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006064 err = cmd->cmd_complete(cmd,
6065 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006066 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006067 goto unlock;
6068 }
6069
Johan Hedberg66593582014-07-09 12:59:14 +03006070 if (cp->addr.type == BDADDR_BREDR) {
6071 err = hci_bdaddr_list_del(&hdev->whitelist,
6072 &cp->addr.bdaddr,
6073 cp->addr.type);
6074 if (err) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006075 err = cmd->cmd_complete(cmd,
6076 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006077 mgmt_pending_remove(cmd);
Johan Hedberg66593582014-07-09 12:59:14 +03006078 goto unlock;
6079 }
6080
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006081 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03006082
Johan Hedberg66593582014-07-09 12:59:14 +03006083 device_removed(sk, hdev, &cp->addr.bdaddr,
6084 cp->addr.type);
6085 goto complete;
6086 }
6087
Marcel Holtmann2faade52014-06-29 19:44:03 +02006088 if (cp->addr.type == BDADDR_LE_PUBLIC)
6089 addr_type = ADDR_LE_DEV_PUBLIC;
6090 else
6091 addr_type = ADDR_LE_DEV_RANDOM;
6092
Johan Hedbergc71593d2014-07-02 17:37:28 +03006093 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
6094 addr_type);
6095 if (!params) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006096 err = cmd->cmd_complete(cmd,
6097 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006098 mgmt_pending_remove(cmd);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006099 goto unlock;
6100 }
6101
6102 if (params->auto_connect == HCI_AUTO_CONN_DISABLED) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006103 err = cmd->cmd_complete(cmd,
6104 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006105 mgmt_pending_remove(cmd);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006106 goto unlock;
6107 }
6108
Johan Hedbergd1dbf122014-07-04 16:17:23 +03006109 list_del(&params->action);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006110 list_del(&params->list);
6111 kfree(params);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006112 __hci_update_background_scan(&req);
Marcel Holtmann8afef092014-06-29 22:28:34 +02006113
6114 device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006115 } else {
Johan Hedberg19de0822014-07-06 13:06:51 +03006116 struct hci_conn_params *p, *tmp;
Johan Hedberg66593582014-07-09 12:59:14 +03006117 struct bdaddr_list *b, *btmp;
Johan Hedberg19de0822014-07-06 13:06:51 +03006118
Marcel Holtmann2faade52014-06-29 19:44:03 +02006119 if (cp->addr.type) {
Johan Hedberg9df74652014-12-19 22:26:03 +02006120 err = cmd->cmd_complete(cmd,
6121 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006122 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006123 goto unlock;
6124 }
6125
Johan Hedberg66593582014-07-09 12:59:14 +03006126 list_for_each_entry_safe(b, btmp, &hdev->whitelist, list) {
6127 device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type);
6128 list_del(&b->list);
6129 kfree(b);
6130 }
6131
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006132 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03006133
Johan Hedberg19de0822014-07-06 13:06:51 +03006134 list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) {
6135 if (p->auto_connect == HCI_AUTO_CONN_DISABLED)
6136 continue;
6137 device_removed(sk, hdev, &p->addr, p->addr_type);
6138 list_del(&p->action);
6139 list_del(&p->list);
6140 kfree(p);
6141 }
6142
6143 BT_DBG("All LE connection parameters were removed");
6144
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006145 __hci_update_background_scan(&req);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006146 }
6147
Johan Hedberg66593582014-07-09 12:59:14 +03006148complete:
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006149 err = hci_req_run(&req, remove_device_complete);
6150 if (err < 0) {
6151 /* ENODATA means no HCI commands were needed (e.g. if
6152 * the adapter is powered off).
6153 */
Johan Hedberg9df74652014-12-19 22:26:03 +02006154 if (err == -ENODATA)
6155 err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02006156 mgmt_pending_remove(cmd);
6157 }
Marcel Holtmann2faade52014-06-29 19:44:03 +02006158
6159unlock:
6160 hci_dev_unlock(hdev);
6161 return err;
6162}
6163
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006164static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
6165 u16 len)
6166{
6167 struct mgmt_cp_load_conn_param *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03006168 const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
6169 sizeof(struct mgmt_conn_param));
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006170 u16 param_count, expected_len;
6171 int i;
6172
6173 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006174 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6175 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006176
6177 param_count = __le16_to_cpu(cp->param_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006178 if (param_count > max_param_count) {
6179 BT_ERR("load_conn_param: too big param_count value %u",
6180 param_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02006181 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6182 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006183 }
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006184
6185 expected_len = sizeof(*cp) + param_count *
6186 sizeof(struct mgmt_conn_param);
6187 if (expected_len != len) {
6188 BT_ERR("load_conn_param: expected %u bytes, got %u bytes",
6189 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02006190 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6191 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006192 }
6193
6194 BT_DBG("%s param_count %u", hdev->name, param_count);
6195
6196 hci_dev_lock(hdev);
6197
6198 hci_conn_params_clear_disabled(hdev);
6199
6200 for (i = 0; i < param_count; i++) {
6201 struct mgmt_conn_param *param = &cp->params[i];
6202 struct hci_conn_params *hci_param;
6203 u16 min, max, latency, timeout;
6204 u8 addr_type;
6205
6206 BT_DBG("Adding %pMR (type %u)", &param->addr.bdaddr,
6207 param->addr.type);
6208
6209 if (param->addr.type == BDADDR_LE_PUBLIC) {
6210 addr_type = ADDR_LE_DEV_PUBLIC;
6211 } else if (param->addr.type == BDADDR_LE_RANDOM) {
6212 addr_type = ADDR_LE_DEV_RANDOM;
6213 } else {
6214 BT_ERR("Ignoring invalid connection parameters");
6215 continue;
6216 }
6217
6218 min = le16_to_cpu(param->min_interval);
6219 max = le16_to_cpu(param->max_interval);
6220 latency = le16_to_cpu(param->latency);
6221 timeout = le16_to_cpu(param->timeout);
6222
6223 BT_DBG("min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x",
6224 min, max, latency, timeout);
6225
6226 if (hci_check_conn_params(min, max, latency, timeout) < 0) {
6227 BT_ERR("Ignoring invalid connection parameters");
6228 continue;
6229 }
6230
6231 hci_param = hci_conn_params_add(hdev, &param->addr.bdaddr,
6232 addr_type);
6233 if (!hci_param) {
6234 BT_ERR("Failed to add connection parameters");
6235 continue;
6236 }
6237
6238 hci_param->conn_min_interval = min;
6239 hci_param->conn_max_interval = max;
6240 hci_param->conn_latency = latency;
6241 hci_param->supervision_timeout = timeout;
6242 }
6243
6244 hci_dev_unlock(hdev);
6245
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006246 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
6247 NULL, 0);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006248}
6249
Marcel Holtmanndbece372014-07-04 18:11:55 +02006250static int set_external_config(struct sock *sk, struct hci_dev *hdev,
6251 void *data, u16 len)
6252{
6253 struct mgmt_cp_set_external_config *cp = data;
6254 bool changed;
6255 int err;
6256
6257 BT_DBG("%s", hdev->name);
6258
6259 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006260 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6261 MGMT_STATUS_REJECTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006262
6263 if (cp->config != 0x00 && cp->config != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02006264 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6265 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006266
6267 if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
Johan Hedberga69e8372015-03-06 21:08:53 +02006268 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
6269 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006270
6271 hci_dev_lock(hdev);
6272
6273 if (cp->config)
Marcel Holtmann238be782015-03-13 02:11:06 -07006274 changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006275 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07006276 changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02006277
6278 err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
6279 if (err < 0)
6280 goto unlock;
6281
6282 if (!changed)
6283 goto unlock;
6284
Marcel Holtmannf4537c02014-07-04 19:06:23 +02006285 err = new_options(hdev, sk);
6286
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006287 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
Marcel Holtmanndbece372014-07-04 18:11:55 +02006288 mgmt_index_removed(hdev);
Marcel Holtmannd603b762014-07-06 12:11:14 +02006289
Marcel Holtmann516018a2015-03-13 02:11:04 -07006290 if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006291 hci_dev_set_flag(hdev, HCI_CONFIG);
6292 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmannd603b762014-07-06 12:11:14 +02006293
6294 queue_work(hdev->req_workqueue, &hdev->power_on);
6295 } else {
Marcel Holtmann5ea234d2014-07-06 12:11:16 +02006296 set_bit(HCI_RAW, &hdev->flags);
Marcel Holtmannd603b762014-07-06 12:11:14 +02006297 mgmt_index_added(hdev);
6298 }
Marcel Holtmanndbece372014-07-04 18:11:55 +02006299 }
6300
6301unlock:
6302 hci_dev_unlock(hdev);
6303 return err;
6304}
6305
Marcel Holtmann9713c172014-07-06 12:11:15 +02006306static int set_public_address(struct sock *sk, struct hci_dev *hdev,
6307 void *data, u16 len)
6308{
6309 struct mgmt_cp_set_public_address *cp = data;
6310 bool changed;
6311 int err;
6312
6313 BT_DBG("%s", hdev->name);
6314
6315 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006316 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6317 MGMT_STATUS_REJECTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006318
6319 if (!bacmp(&cp->bdaddr, BDADDR_ANY))
Johan Hedberga69e8372015-03-06 21:08:53 +02006320 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6321 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006322
6323 if (!hdev->set_bdaddr)
Johan Hedberga69e8372015-03-06 21:08:53 +02006324 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6325 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006326
6327 hci_dev_lock(hdev);
6328
6329 changed = !!bacmp(&hdev->public_addr, &cp->bdaddr);
6330 bacpy(&hdev->public_addr, &cp->bdaddr);
6331
6332 err = send_options_rsp(sk, MGMT_OP_SET_PUBLIC_ADDRESS, hdev);
6333 if (err < 0)
6334 goto unlock;
6335
6336 if (!changed)
6337 goto unlock;
6338
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006339 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
Marcel Holtmann9713c172014-07-06 12:11:15 +02006340 err = new_options(hdev, sk);
6341
6342 if (is_configured(hdev)) {
6343 mgmt_index_removed(hdev);
6344
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006345 hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006346
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006347 hci_dev_set_flag(hdev, HCI_CONFIG);
6348 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmann9713c172014-07-06 12:11:15 +02006349
6350 queue_work(hdev->req_workqueue, &hdev->power_on);
6351 }
6352
6353unlock:
6354 hci_dev_unlock(hdev);
6355 return err;
6356}
6357
Marcel Holtmannbea41602015-03-14 22:43:17 -07006358static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
6359 u8 data_len)
6360{
6361 eir[eir_len++] = sizeof(type) + data_len;
6362 eir[eir_len++] = type;
6363 memcpy(&eir[eir_len], data, data_len);
6364 eir_len += data_len;
6365
6366 return eir_len;
6367}
6368
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006369static int read_local_oob_ext_data(struct sock *sk, struct hci_dev *hdev,
6370 void *data, u16 data_len)
6371{
6372 struct mgmt_cp_read_local_oob_ext_data *cp = data;
6373 struct mgmt_rp_read_local_oob_ext_data *rp;
6374 size_t rp_len;
6375 u16 eir_len;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006376 u8 status, flags, role, addr[7], hash[16], rand[16];
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006377 int err;
6378
6379 BT_DBG("%s", hdev->name);
6380
6381 if (!hdev_is_powered(hdev))
6382 return mgmt_cmd_complete(sk, hdev->id,
6383 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
6384 MGMT_STATUS_NOT_POWERED,
6385 &cp->type, sizeof(cp->type));
6386
6387 switch (cp->type) {
6388 case BIT(BDADDR_BREDR):
6389 status = mgmt_bredr_support(hdev);
6390 if (status)
6391 return mgmt_cmd_complete(sk, hdev->id,
6392 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
6393 status, &cp->type,
6394 sizeof(cp->type));
6395 eir_len = 5;
6396 break;
6397 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
6398 status = mgmt_le_support(hdev);
6399 if (status)
6400 return mgmt_cmd_complete(sk, hdev->id,
6401 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
6402 status, &cp->type,
6403 sizeof(cp->type));
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006404 eir_len = 9 + 3 + 18 + 18 + 3;
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006405 break;
6406 default:
6407 return mgmt_cmd_complete(sk, hdev->id,
6408 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
6409 MGMT_STATUS_INVALID_PARAMS,
6410 &cp->type, sizeof(cp->type));
6411 }
6412
6413 hci_dev_lock(hdev);
6414
6415 rp_len = sizeof(*rp) + eir_len;
6416 rp = kmalloc(rp_len, GFP_ATOMIC);
6417 if (!rp) {
6418 hci_dev_unlock(hdev);
6419 return -ENOMEM;
6420 }
6421
6422 eir_len = 0;
6423 switch (cp->type) {
6424 case BIT(BDADDR_BREDR):
6425 eir_len = eir_append_data(rp->eir, eir_len, EIR_CLASS_OF_DEV,
6426 hdev->dev_class, 3);
6427 break;
6428 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
Marcel Holtmann5082a592015-03-16 12:39:00 -07006429 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
6430 smp_generate_oob(hdev, hash, rand) < 0) {
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006431 hci_dev_unlock(hdev);
6432 err = mgmt_cmd_complete(sk, hdev->id,
Marcel Holtmann5082a592015-03-16 12:39:00 -07006433 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
6434 MGMT_STATUS_FAILED,
6435 &cp->type, sizeof(cp->type));
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006436 goto done;
6437 }
6438
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006439 if (hci_dev_test_flag(hdev, HCI_PRIVACY)) {
6440 memcpy(addr, &hdev->rpa, 6);
6441 addr[6] = 0x01;
6442 } else if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
6443 !bacmp(&hdev->bdaddr, BDADDR_ANY) ||
6444 (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
6445 bacmp(&hdev->static_addr, BDADDR_ANY))) {
6446 memcpy(addr, &hdev->static_addr, 6);
6447 addr[6] = 0x01;
6448 } else {
6449 memcpy(addr, &hdev->bdaddr, 6);
6450 addr[6] = 0x00;
6451 }
6452
6453 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_BDADDR,
6454 addr, sizeof(addr));
6455
6456 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
6457 role = 0x02;
6458 else
6459 role = 0x01;
6460
6461 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_ROLE,
6462 &role, sizeof(role));
6463
Marcel Holtmann5082a592015-03-16 12:39:00 -07006464 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED)) {
6465 eir_len = eir_append_data(rp->eir, eir_len,
6466 EIR_LE_SC_CONFIRM,
6467 hash, sizeof(hash));
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006468
Marcel Holtmann5082a592015-03-16 12:39:00 -07006469 eir_len = eir_append_data(rp->eir, eir_len,
6470 EIR_LE_SC_RANDOM,
6471 rand, sizeof(rand));
6472 }
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006473
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006474 flags = get_adv_discov_flags(hdev);
6475
6476 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
6477 flags |= LE_AD_NO_BREDR;
6478
6479 eir_len = eir_append_data(rp->eir, eir_len, EIR_FLAGS,
6480 &flags, sizeof(flags));
6481 break;
6482 }
6483
6484 rp->type = cp->type;
6485 rp->eir_len = cpu_to_le16(eir_len);
6486
6487 hci_dev_unlock(hdev);
6488
Marcel Holtmann72000df2015-03-16 16:11:21 -07006489 hci_sock_set_flag(sk, HCI_MGMT_OOB_DATA_EVENTS);
6490
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006491 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
Marcel Holtmann5425f982015-03-16 16:05:44 -07006492 MGMT_STATUS_SUCCESS, rp, sizeof(*rp) + eir_len);
Marcel Holtmann72000df2015-03-16 16:11:21 -07006493 if (err < 0)
6494 goto done;
6495
6496 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
6497 rp, sizeof(*rp) + eir_len,
6498 HCI_MGMT_OOB_DATA_EVENTS, sk);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006499
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07006500done:
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006501 kfree(rp);
6502
6503 return err;
6504}
6505
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006506static int read_adv_features(struct sock *sk, struct hci_dev *hdev,
6507 void *data, u16 data_len)
6508{
6509 struct mgmt_rp_read_adv_features *rp;
6510 size_t rp_len;
6511 int err;
Arman Uguray24b4f382015-03-23 15:57:12 -07006512 bool instance;
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006513
6514 BT_DBG("%s", hdev->name);
6515
6516 hci_dev_lock(hdev);
6517
6518 rp_len = sizeof(*rp);
Arman Uguray24b4f382015-03-23 15:57:12 -07006519
6520 /* Currently only one instance is supported, so just add 1 to the
6521 * response length.
6522 */
6523 instance = hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE);
6524 if (instance)
6525 rp_len++;
6526
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006527 rp = kmalloc(rp_len, GFP_ATOMIC);
6528 if (!rp) {
6529 hci_dev_unlock(hdev);
6530 return -ENOMEM;
6531 }
6532
6533 rp->supported_flags = cpu_to_le32(0);
Marcel Holtmanndc5d82a2015-03-19 17:22:25 -07006534 rp->max_adv_data_len = HCI_MAX_AD_LENGTH;
6535 rp->max_scan_rsp_len = HCI_MAX_AD_LENGTH;
Arman Uguray24b4f382015-03-23 15:57:12 -07006536 rp->max_instances = 1;
6537
6538 /* Currently only one instance is supported, so simply return the
6539 * current instance number.
6540 */
6541 if (instance) {
6542 rp->num_instances = 1;
6543 rp->instance[0] = 1;
6544 } else {
6545 rp->num_instances = 0;
6546 }
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006547
6548 hci_dev_unlock(hdev);
6549
6550 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
6551 MGMT_STATUS_SUCCESS, rp, rp_len);
6552
6553 kfree(rp);
6554
6555 return err;
6556}
6557
Arman Uguray4117ed72015-03-23 15:57:14 -07006558static bool tlv_data_is_valid(struct hci_dev *hdev, u32 adv_flags, u8 *data,
6559 u8 len)
Arman Uguray24b4f382015-03-23 15:57:12 -07006560{
Arman Uguray4117ed72015-03-23 15:57:14 -07006561 u8 max_len = HCI_MAX_AD_LENGTH;
Arman Uguray24b4f382015-03-23 15:57:12 -07006562 int i, cur_len;
6563
Arman Uguray4117ed72015-03-23 15:57:14 -07006564 /* TODO: Correctly reduce len based on adv_flags. */
Arman Uguray24b4f382015-03-23 15:57:12 -07006565
Arman Uguray4117ed72015-03-23 15:57:14 -07006566 if (len > max_len)
Arman Uguray24b4f382015-03-23 15:57:12 -07006567 return false;
6568
Arman Uguray4117ed72015-03-23 15:57:14 -07006569 /* Make sure that the data is correctly formatted. */
6570 for (i = 0, cur_len = 0; i < len; i += (cur_len + 1)) {
6571 cur_len = data[i];
Arman Uguray24b4f382015-03-23 15:57:12 -07006572
6573 /* If the current field length would exceed the total data
6574 * length, then it's invalid.
6575 */
Arman Uguray4117ed72015-03-23 15:57:14 -07006576 if (i + cur_len >= len)
Arman Uguray24b4f382015-03-23 15:57:12 -07006577 return false;
6578 }
6579
6580 return true;
6581}
6582
Arman Uguray24b4f382015-03-23 15:57:12 -07006583static void add_advertising_complete(struct hci_dev *hdev, u8 status,
6584 u16 opcode)
6585{
6586 struct mgmt_pending_cmd *cmd;
6587 struct mgmt_rp_add_advertising rp;
6588
6589 BT_DBG("status %d", status);
6590
6591 hci_dev_lock(hdev);
6592
6593 cmd = pending_find(MGMT_OP_ADD_ADVERTISING, hdev);
6594
6595 if (status) {
6596 hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
6597 memset(&hdev->adv_instance, 0, sizeof(hdev->adv_instance));
6598 advertising_removed(cmd ? cmd->sk : NULL, hdev, 1);
6599 }
6600
6601 if (!cmd)
6602 goto unlock;
6603
6604 rp.instance = 0x01;
6605
6606 if (status)
6607 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
6608 mgmt_status(status));
6609 else
6610 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
6611 mgmt_status(status), &rp, sizeof(rp));
6612
6613 mgmt_pending_remove(cmd);
6614
6615unlock:
6616 hci_dev_unlock(hdev);
6617}
6618
Arman Uguray912098a2015-03-23 15:57:15 -07006619static void adv_timeout_expired(struct work_struct *work)
6620{
6621 struct hci_dev *hdev = container_of(work, struct hci_dev,
6622 adv_instance.timeout_exp.work);
6623
6624 hdev->adv_instance.timeout = 0;
6625
6626 hci_dev_lock(hdev);
6627 clear_adv_instance(hdev);
6628 hci_dev_unlock(hdev);
6629}
6630
Arman Uguray24b4f382015-03-23 15:57:12 -07006631static int add_advertising(struct sock *sk, struct hci_dev *hdev,
6632 void *data, u16 data_len)
6633{
6634 struct mgmt_cp_add_advertising *cp = data;
6635 struct mgmt_rp_add_advertising rp;
6636 u32 flags;
6637 u8 status;
Arman Uguray912098a2015-03-23 15:57:15 -07006638 u16 timeout;
Arman Uguray24b4f382015-03-23 15:57:12 -07006639 int err;
6640 struct mgmt_pending_cmd *cmd;
6641 struct hci_request req;
6642
6643 BT_DBG("%s", hdev->name);
6644
6645 status = mgmt_le_support(hdev);
6646 if (status)
6647 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6648 status);
6649
6650 flags = __le32_to_cpu(cp->flags);
Arman Uguray912098a2015-03-23 15:57:15 -07006651 timeout = __le16_to_cpu(cp->timeout);
Arman Uguray24b4f382015-03-23 15:57:12 -07006652
Arman Uguraye7a685d2015-03-25 18:53:40 -07006653 /* The current implementation only supports adding one instance */
6654 if (cp->instance != 0x01)
Arman Uguray24b4f382015-03-23 15:57:12 -07006655 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6656 MGMT_STATUS_INVALID_PARAMS);
6657
6658 hci_dev_lock(hdev);
6659
Arman Uguray912098a2015-03-23 15:57:15 -07006660 if (timeout && !hdev_is_powered(hdev)) {
6661 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6662 MGMT_STATUS_REJECTED);
6663 goto unlock;
6664 }
6665
Arman Uguray24b4f382015-03-23 15:57:12 -07006666 if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
Arman Ugurayda9293352015-03-23 15:57:13 -07006667 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
Arman Uguray24b4f382015-03-23 15:57:12 -07006668 pending_find(MGMT_OP_SET_LE, hdev)) {
6669 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6670 MGMT_STATUS_BUSY);
6671 goto unlock;
6672 }
6673
Arman Uguray4117ed72015-03-23 15:57:14 -07006674 if (!tlv_data_is_valid(hdev, flags, cp->data, cp->adv_data_len) ||
6675 !tlv_data_is_valid(hdev, flags, cp->data + cp->adv_data_len,
6676 cp->scan_rsp_len)) {
Arman Uguray24b4f382015-03-23 15:57:12 -07006677 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6678 MGMT_STATUS_INVALID_PARAMS);
6679 goto unlock;
6680 }
6681
Arman Uguray912098a2015-03-23 15:57:15 -07006682 INIT_DELAYED_WORK(&hdev->adv_instance.timeout_exp, adv_timeout_expired);
6683
Arman Uguray24b4f382015-03-23 15:57:12 -07006684 hdev->adv_instance.flags = flags;
6685 hdev->adv_instance.adv_data_len = cp->adv_data_len;
6686 hdev->adv_instance.scan_rsp_len = cp->scan_rsp_len;
6687
6688 if (cp->adv_data_len)
6689 memcpy(hdev->adv_instance.adv_data, cp->data, cp->adv_data_len);
6690
6691 if (cp->scan_rsp_len)
6692 memcpy(hdev->adv_instance.scan_rsp_data,
6693 cp->data + cp->adv_data_len, cp->scan_rsp_len);
6694
Arman Uguray912098a2015-03-23 15:57:15 -07006695 if (hdev->adv_instance.timeout)
6696 cancel_delayed_work(&hdev->adv_instance.timeout_exp);
6697
6698 hdev->adv_instance.timeout = timeout;
6699
6700 if (timeout)
6701 queue_delayed_work(hdev->workqueue,
6702 &hdev->adv_instance.timeout_exp,
6703 msecs_to_jiffies(timeout * 1000));
6704
Arman Uguray24b4f382015-03-23 15:57:12 -07006705 if (!hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING_INSTANCE))
6706 advertising_added(sk, hdev, 1);
6707
6708 /* If the HCI_ADVERTISING flag is set or the device isn't powered then
6709 * we have no HCI communication to make. Simply return.
6710 */
6711 if (!hdev_is_powered(hdev) ||
6712 hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
6713 rp.instance = 0x01;
6714 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
6715 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
6716 goto unlock;
6717 }
6718
6719 /* We're good to go, update advertising data, parameters, and start
6720 * advertising.
6721 */
6722 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_ADVERTISING, hdev, data,
6723 data_len);
6724 if (!cmd) {
6725 err = -ENOMEM;
6726 goto unlock;
6727 }
6728
6729 hci_req_init(&req, hdev);
6730
6731 update_adv_data(&req);
Arman Uguray4117ed72015-03-23 15:57:14 -07006732 update_scan_rsp_data(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07006733 enable_advertising(&req);
6734
6735 err = hci_req_run(&req, add_advertising_complete);
6736 if (err < 0)
6737 mgmt_pending_remove(cmd);
6738
6739unlock:
6740 hci_dev_unlock(hdev);
6741
6742 return err;
6743}
6744
Arman Ugurayda9293352015-03-23 15:57:13 -07006745static void remove_advertising_complete(struct hci_dev *hdev, u8 status,
6746 u16 opcode)
6747{
6748 struct mgmt_pending_cmd *cmd;
6749 struct mgmt_rp_remove_advertising rp;
6750
6751 BT_DBG("status %d", status);
6752
6753 hci_dev_lock(hdev);
6754
6755 /* A failure status here only means that we failed to disable
6756 * advertising. Otherwise, the advertising instance has been removed,
6757 * so report success.
6758 */
6759 cmd = pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev);
6760 if (!cmd)
6761 goto unlock;
6762
6763 rp.instance = 1;
6764
6765 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, MGMT_STATUS_SUCCESS,
6766 &rp, sizeof(rp));
6767 mgmt_pending_remove(cmd);
6768
6769unlock:
6770 hci_dev_unlock(hdev);
6771}
6772
6773static int remove_advertising(struct sock *sk, struct hci_dev *hdev,
6774 void *data, u16 data_len)
6775{
6776 struct mgmt_cp_remove_advertising *cp = data;
6777 struct mgmt_rp_remove_advertising rp;
6778 int err;
6779 struct mgmt_pending_cmd *cmd;
6780 struct hci_request req;
6781
6782 BT_DBG("%s", hdev->name);
6783
6784 /* The current implementation only allows modifying instance no 1. A
6785 * value of 0 indicates that all instances should be cleared.
6786 */
6787 if (cp->instance > 1)
6788 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
6789 MGMT_STATUS_INVALID_PARAMS);
6790
6791 hci_dev_lock(hdev);
6792
6793 if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
6794 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
6795 pending_find(MGMT_OP_SET_LE, hdev)) {
6796 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
6797 MGMT_STATUS_BUSY);
6798 goto unlock;
6799 }
6800
6801 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE)) {
6802 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
6803 MGMT_STATUS_INVALID_PARAMS);
6804 goto unlock;
6805 }
6806
Arman Uguray912098a2015-03-23 15:57:15 -07006807 if (hdev->adv_instance.timeout)
6808 cancel_delayed_work(&hdev->adv_instance.timeout_exp);
6809
Arman Ugurayda9293352015-03-23 15:57:13 -07006810 memset(&hdev->adv_instance, 0, sizeof(hdev->adv_instance));
6811
6812 advertising_removed(sk, hdev, 1);
6813
6814 hci_dev_clear_flag(hdev, HCI_ADVERTISING_INSTANCE);
6815
6816 /* If the HCI_ADVERTISING flag is set or the device isn't powered then
6817 * we have no HCI communication to make. Simply return.
6818 */
6819 if (!hdev_is_powered(hdev) ||
6820 hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
6821 rp.instance = 1;
6822 err = mgmt_cmd_complete(sk, hdev->id,
6823 MGMT_OP_REMOVE_ADVERTISING,
6824 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
6825 goto unlock;
6826 }
6827
6828 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_ADVERTISING, hdev, data,
6829 data_len);
6830 if (!cmd) {
6831 err = -ENOMEM;
6832 goto unlock;
6833 }
6834
6835 hci_req_init(&req, hdev);
6836 disable_advertising(&req);
6837
6838 err = hci_req_run(&req, remove_advertising_complete);
6839 if (err < 0)
6840 mgmt_pending_remove(cmd);
6841
6842unlock:
6843 hci_dev_unlock(hdev);
6844
6845 return err;
6846}
6847
Johan Hedberg6d785aa32015-03-06 21:08:51 +02006848static const struct hci_mgmt_handler mgmt_handlers[] = {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02006849 { NULL }, /* 0x0000 (no command) */
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02006850 { read_version, MGMT_READ_VERSION_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07006851 HCI_MGMT_NO_HDEV |
6852 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02006853 { read_commands, MGMT_READ_COMMANDS_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07006854 HCI_MGMT_NO_HDEV |
6855 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02006856 { read_index_list, MGMT_READ_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07006857 HCI_MGMT_NO_HDEV |
6858 HCI_MGMT_UNTRUSTED },
6859 { read_controller_info, MGMT_READ_INFO_SIZE,
6860 HCI_MGMT_UNTRUSTED },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07006861 { set_powered, MGMT_SETTING_SIZE },
6862 { set_discoverable, MGMT_SET_DISCOVERABLE_SIZE },
6863 { set_connectable, MGMT_SETTING_SIZE },
6864 { set_fast_connectable, MGMT_SETTING_SIZE },
6865 { set_bondable, MGMT_SETTING_SIZE },
6866 { set_link_security, MGMT_SETTING_SIZE },
6867 { set_ssp, MGMT_SETTING_SIZE },
6868 { set_hs, MGMT_SETTING_SIZE },
6869 { set_le, MGMT_SETTING_SIZE },
6870 { set_dev_class, MGMT_SET_DEV_CLASS_SIZE },
6871 { set_local_name, MGMT_SET_LOCAL_NAME_SIZE },
6872 { add_uuid, MGMT_ADD_UUID_SIZE },
6873 { remove_uuid, MGMT_REMOVE_UUID_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02006874 { load_link_keys, MGMT_LOAD_LINK_KEYS_SIZE,
6875 HCI_MGMT_VAR_LEN },
6876 { load_long_term_keys, MGMT_LOAD_LONG_TERM_KEYS_SIZE,
6877 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07006878 { disconnect, MGMT_DISCONNECT_SIZE },
6879 { get_connections, MGMT_GET_CONNECTIONS_SIZE },
6880 { pin_code_reply, MGMT_PIN_CODE_REPLY_SIZE },
6881 { pin_code_neg_reply, MGMT_PIN_CODE_NEG_REPLY_SIZE },
6882 { set_io_capability, MGMT_SET_IO_CAPABILITY_SIZE },
6883 { pair_device, MGMT_PAIR_DEVICE_SIZE },
6884 { cancel_pair_device, MGMT_CANCEL_PAIR_DEVICE_SIZE },
6885 { unpair_device, MGMT_UNPAIR_DEVICE_SIZE },
6886 { user_confirm_reply, MGMT_USER_CONFIRM_REPLY_SIZE },
6887 { user_confirm_neg_reply, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
6888 { user_passkey_reply, MGMT_USER_PASSKEY_REPLY_SIZE },
6889 { user_passkey_neg_reply, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02006890 { read_local_oob_data, MGMT_READ_LOCAL_OOB_DATA_SIZE },
6891 { add_remote_oob_data, MGMT_ADD_REMOTE_OOB_DATA_SIZE,
6892 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07006893 { remove_remote_oob_data, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
6894 { start_discovery, MGMT_START_DISCOVERY_SIZE },
6895 { stop_discovery, MGMT_STOP_DISCOVERY_SIZE },
6896 { confirm_name, MGMT_CONFIRM_NAME_SIZE },
6897 { block_device, MGMT_BLOCK_DEVICE_SIZE },
6898 { unblock_device, MGMT_UNBLOCK_DEVICE_SIZE },
6899 { set_device_id, MGMT_SET_DEVICE_ID_SIZE },
6900 { set_advertising, MGMT_SETTING_SIZE },
6901 { set_bredr, MGMT_SETTING_SIZE },
6902 { set_static_address, MGMT_SET_STATIC_ADDRESS_SIZE },
6903 { set_scan_params, MGMT_SET_SCAN_PARAMS_SIZE },
6904 { set_secure_conn, MGMT_SETTING_SIZE },
6905 { set_debug_keys, MGMT_SETTING_SIZE },
6906 { set_privacy, MGMT_SET_PRIVACY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02006907 { load_irks, MGMT_LOAD_IRKS_SIZE,
6908 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07006909 { get_conn_info, MGMT_GET_CONN_INFO_SIZE },
6910 { get_clock_info, MGMT_GET_CLOCK_INFO_SIZE },
6911 { add_device, MGMT_ADD_DEVICE_SIZE },
6912 { remove_device, MGMT_REMOVE_DEVICE_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02006913 { load_conn_param, MGMT_LOAD_CONN_PARAM_SIZE,
6914 HCI_MGMT_VAR_LEN },
6915 { read_unconf_index_list, MGMT_READ_UNCONF_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07006916 HCI_MGMT_NO_HDEV |
6917 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02006918 { read_config_info, MGMT_READ_CONFIG_INFO_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07006919 HCI_MGMT_UNCONFIGURED |
6920 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02006921 { set_external_config, MGMT_SET_EXTERNAL_CONFIG_SIZE,
6922 HCI_MGMT_UNCONFIGURED },
6923 { set_public_address, MGMT_SET_PUBLIC_ADDRESS_SIZE,
6924 HCI_MGMT_UNCONFIGURED },
6925 { start_service_discovery, MGMT_START_SERVICE_DISCOVERY_SIZE,
6926 HCI_MGMT_VAR_LEN },
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07006927 { read_local_oob_ext_data, MGMT_READ_LOCAL_OOB_EXT_DATA_SIZE },
Marcel Holtmann96f14742015-03-14 19:27:57 -07006928 { read_ext_index_list, MGMT_READ_EXT_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07006929 HCI_MGMT_NO_HDEV |
6930 HCI_MGMT_UNTRUSTED },
Marcel Holtmannd3d53052015-03-14 20:53:25 -07006931 { read_adv_features, MGMT_READ_ADV_FEATURES_SIZE },
Arman Uguray24b4f382015-03-23 15:57:12 -07006932 { add_advertising, MGMT_ADD_ADVERTISING_SIZE,
6933 HCI_MGMT_VAR_LEN },
Arman Ugurayda9293352015-03-23 15:57:13 -07006934 { remove_advertising, MGMT_REMOVE_ADVERTISING_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02006935};
6936
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07006937void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02006938{
Marcel Holtmannced85542015-03-14 19:27:56 -07006939 struct mgmt_ev_ext_index ev;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03006940
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02006941 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
6942 return;
6943
Marcel Holtmannf9207332015-03-14 19:27:55 -07006944 switch (hdev->dev_type) {
6945 case HCI_BREDR:
6946 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
6947 mgmt_index_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev,
6948 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07006949 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07006950 } else {
6951 mgmt_index_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0,
6952 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07006953 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07006954 }
6955 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07006956 case HCI_AMP:
6957 ev.type = 0x02;
6958 break;
6959 default:
6960 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07006961 }
Marcel Holtmannced85542015-03-14 19:27:56 -07006962
6963 ev.bus = hdev->bus;
6964
6965 mgmt_index_event(MGMT_EV_EXT_INDEX_ADDED, hdev, &ev, sizeof(ev),
6966 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02006967}
6968
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07006969void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02006970{
Marcel Holtmannced85542015-03-14 19:27:56 -07006971 struct mgmt_ev_ext_index ev;
Johan Hedberg5f159032012-03-02 03:13:19 +02006972 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02006973
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02006974 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
6975 return;
6976
Marcel Holtmannf9207332015-03-14 19:27:55 -07006977 switch (hdev->dev_type) {
6978 case HCI_BREDR:
6979 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02006980
Marcel Holtmannf9207332015-03-14 19:27:55 -07006981 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
6982 mgmt_index_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev,
6983 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07006984 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07006985 } else {
6986 mgmt_index_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0,
6987 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07006988 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07006989 }
6990 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07006991 case HCI_AMP:
6992 ev.type = 0x02;
6993 break;
6994 default:
6995 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07006996 }
Marcel Holtmannced85542015-03-14 19:27:56 -07006997
6998 ev.bus = hdev->bus;
6999
7000 mgmt_index_event(MGMT_EV_EXT_INDEX_REMOVED, hdev, &ev, sizeof(ev),
7001 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02007002}
7003
Andre Guedes6046dc32014-02-26 20:21:51 -03007004/* This function requires the caller holds hdev->lock */
Johan Hedberg2cf22212014-12-19 22:26:00 +02007005static void restart_le_actions(struct hci_request *req)
Andre Guedes6046dc32014-02-26 20:21:51 -03007006{
Johan Hedberg2cf22212014-12-19 22:26:00 +02007007 struct hci_dev *hdev = req->hdev;
Andre Guedes6046dc32014-02-26 20:21:51 -03007008 struct hci_conn_params *p;
7009
7010 list_for_each_entry(p, &hdev->le_conn_params, list) {
Johan Hedbergd7347f32014-07-04 12:37:23 +03007011 /* Needed for AUTO_OFF case where might not "really"
7012 * have been powered off.
7013 */
7014 list_del_init(&p->action);
7015
7016 switch (p->auto_connect) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02007017 case HCI_AUTO_CONN_DIRECT:
Johan Hedbergd7347f32014-07-04 12:37:23 +03007018 case HCI_AUTO_CONN_ALWAYS:
7019 list_add(&p->action, &hdev->pend_le_conns);
7020 break;
7021 case HCI_AUTO_CONN_REPORT:
7022 list_add(&p->action, &hdev->pend_le_reports);
7023 break;
7024 default:
7025 break;
Marcel Holtmannc83ed192014-07-01 19:28:24 +02007026 }
Andre Guedes6046dc32014-02-26 20:21:51 -03007027 }
Marcel Holtmannc83ed192014-07-01 19:28:24 +02007028
Johan Hedberg2cf22212014-12-19 22:26:00 +02007029 __hci_update_background_scan(req);
Andre Guedes6046dc32014-02-26 20:21:51 -03007030}
7031
Marcel Holtmann1904a852015-01-11 13:50:44 -08007032static void powered_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg229ab392013-03-15 17:06:53 -05007033{
7034 struct cmd_lookup match = { NULL, hdev };
7035
7036 BT_DBG("status 0x%02x", status);
7037
Marcel Holtmann162a3ba2015-01-14 15:43:11 -08007038 if (!status) {
7039 /* Register the available SMP channels (BR/EDR and LE) only
7040 * when successfully powering on the controller. This late
7041 * registration is required so that LE SMP can clearly
7042 * decide if the public address or static address is used.
7043 */
7044 smp_register(hdev);
7045 }
7046
Johan Hedberg229ab392013-03-15 17:06:53 -05007047 hci_dev_lock(hdev);
7048
7049 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
7050
7051 new_settings(hdev, match.sk);
7052
7053 hci_dev_unlock(hdev);
7054
7055 if (match.sk)
7056 sock_put(match.sk);
7057}
7058
Johan Hedberg70da6242013-03-15 17:06:51 -05007059static int powered_update_hci(struct hci_dev *hdev)
7060{
Johan Hedberg890ea892013-03-15 17:06:52 -05007061 struct hci_request req;
Johan Hedberg70da6242013-03-15 17:06:51 -05007062 u8 link_sec;
7063
Johan Hedberg890ea892013-03-15 17:06:52 -05007064 hci_req_init(&req, hdev);
7065
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007066 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED) &&
Johan Hedberg70da6242013-03-15 17:06:51 -05007067 !lmp_host_ssp_capable(hdev)) {
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007068 u8 mode = 0x01;
Johan Hedberg70da6242013-03-15 17:06:51 -05007069
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007070 hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);
Johan Hedberg70da6242013-03-15 17:06:51 -05007071
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08007072 if (bredr_sc_enabled(hdev) && !lmp_host_sc_capable(hdev)) {
7073 u8 support = 0x01;
7074
7075 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT,
7076 sizeof(support), &support);
7077 }
Johan Hedbergec6f99b2014-12-12 13:30:11 +02007078 }
7079
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007080 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
Johan Hedbergc73eee92013-04-19 18:35:21 +03007081 lmp_bredr_capable(hdev)) {
Johan Hedberg70da6242013-03-15 17:06:51 -05007082 struct hci_cp_write_le_host_supported cp;
7083
Marcel Holtmann32226e42014-07-24 20:04:16 +02007084 cp.le = 0x01;
7085 cp.simul = 0x00;
Johan Hedberg70da6242013-03-15 17:06:51 -05007086
7087 /* Check first if we already have the right
7088 * host state (host features set)
7089 */
7090 if (cp.le != lmp_host_le_capable(hdev) ||
7091 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05007092 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
7093 sizeof(cp), &cp);
Johan Hedberg70da6242013-03-15 17:06:51 -05007094 }
7095
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07007096 if (lmp_le_capable(hdev)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07007097 /* Make sure the controller has a good default for
7098 * advertising data. This also applies to the case
7099 * where BR/EDR was toggled during the AUTO_OFF phase.
7100 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007101 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07007102 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07007103 update_scan_rsp_data(&req);
7104 }
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07007105
Arman Uguray24b4f382015-03-23 15:57:12 -07007106 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
7107 hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07007108 enable_advertising(&req);
Johan Hedberg2cf22212014-12-19 22:26:00 +02007109
7110 restart_le_actions(&req);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03007111 }
7112
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007113 link_sec = hci_dev_test_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg70da6242013-03-15 17:06:51 -05007114 if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05007115 hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
7116 sizeof(link_sec), &link_sec);
Johan Hedberg70da6242013-03-15 17:06:51 -05007117
7118 if (lmp_bredr_capable(hdev)) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007119 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
Johan Hedberg406ef2a2015-03-10 20:14:27 +02007120 write_fast_connectable(&req, true);
7121 else
7122 write_fast_connectable(&req, false);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02007123 __hci_update_page_scan(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05007124 update_class(&req);
Johan Hedberg13928972013-03-15 17:07:00 -05007125 update_name(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05007126 update_eir(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05007127 }
7128
Johan Hedberg229ab392013-03-15 17:06:53 -05007129 return hci_req_run(&req, powered_complete);
Johan Hedberg70da6242013-03-15 17:06:51 -05007130}
7131
Johan Hedberg744cf192011-11-08 20:40:14 +02007132int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02007133{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02007134 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg98459042014-12-12 11:15:21 +02007135 u8 status, zero_cod[] = { 0, 0, 0 };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02007136 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02007137
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007138 if (!hci_dev_test_flag(hdev, HCI_MGMT))
Johan Hedberg5e5282b2012-02-21 16:01:30 +02007139 return 0;
7140
Johan Hedberg5e5282b2012-02-21 16:01:30 +02007141 if (powered) {
Johan Hedberg229ab392013-03-15 17:06:53 -05007142 if (powered_update_hci(hdev) == 0)
7143 return 0;
Johan Hedbergfe038882013-01-16 16:15:34 +02007144
Johan Hedberg229ab392013-03-15 17:06:53 -05007145 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
7146 &match);
7147 goto new_settings;
Johan Hedbergb24752f2011-11-03 14:40:33 +02007148 }
7149
Johan Hedberg229ab392013-03-15 17:06:53 -05007150 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
Johan Hedberg98459042014-12-12 11:15:21 +02007151
7152 /* If the power off is because of hdev unregistration let
7153 * use the appropriate INVALID_INDEX status. Otherwise use
7154 * NOT_POWERED. We cover both scenarios here since later in
7155 * mgmt_index_removed() any hci_conn callbacks will have already
7156 * been triggered, potentially causing misleading DISCONNECTED
7157 * status responses.
7158 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007159 if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
Johan Hedberg98459042014-12-12 11:15:21 +02007160 status = MGMT_STATUS_INVALID_INDEX;
7161 else
7162 status = MGMT_STATUS_NOT_POWERED;
7163
7164 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedberg229ab392013-03-15 17:06:53 -05007165
7166 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
Marcel Holtmannf6b77122015-03-14 19:28:05 -07007167 mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
7168 zero_cod, sizeof(zero_cod), NULL);
Johan Hedberg229ab392013-03-15 17:06:53 -05007169
7170new_settings:
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02007171 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02007172
7173 if (match.sk)
7174 sock_put(match.sk);
7175
Johan Hedberg7bb895d2012-02-17 01:20:00 +02007176 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02007177}
Johan Hedberg73f22f62010-12-29 16:00:25 +02007178
Marcel Holtmann3eec7052013-10-06 23:55:46 -07007179void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03007180{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007181 struct mgmt_pending_cmd *cmd;
Johan Hedberg96570ff2013-05-29 09:51:29 +03007182 u8 status;
7183
Johan Hedberg333ae952015-03-17 13:48:47 +02007184 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007185 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07007186 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03007187
7188 if (err == -ERFKILL)
7189 status = MGMT_STATUS_RFKILLED;
7190 else
7191 status = MGMT_STATUS_FAILED;
7192
Johan Hedberga69e8372015-03-06 21:08:53 +02007193 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007194
7195 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03007196}
7197
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007198void mgmt_discoverable_timeout(struct hci_dev *hdev)
7199{
7200 struct hci_request req;
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007201
7202 hci_dev_lock(hdev);
7203
7204 /* When discoverable timeout triggers, then just make sure
7205 * the limited discoverable flag is cleared. Even in the case
7206 * of a timeout triggered from general discoverable, it is
7207 * safe to unconditionally clear the flag.
7208 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07007209 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
7210 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007211
7212 hci_req_init(&req, hdev);
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007213 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg4b580612013-10-19 23:38:21 +03007214 u8 scan = SCAN_PAGE;
7215 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
7216 sizeof(scan), &scan);
7217 }
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007218 update_class(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07007219
7220 /* Advertising instances don't use the global discoverable setting, so
7221 * only update AD if advertising was enabled using Set Advertising.
7222 */
7223 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
7224 update_adv_data(&req);
7225
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007226 hci_req_run(&req, NULL);
7227
7228 hdev->discov_timeout = 0;
7229
Johan Hedberg9a43e252013-10-20 19:00:07 +03007230 new_settings(hdev, NULL);
7231
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07007232 hci_dev_unlock(hdev);
7233}
7234
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07007235void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
7236 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007237{
Johan Hedberg86742e12011-11-07 23:13:38 +02007238 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007239
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007240 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007241
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007242 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02007243 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03007244 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007245 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03007246 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03007247 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007248
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07007249 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02007250}
Johan Hedbergf7520542011-01-20 12:34:39 +02007251
Johan Hedbergd7b25452014-05-23 13:19:53 +03007252static u8 mgmt_ltk_type(struct smp_ltk *ltk)
7253{
Johan Hedberg23fb8de2014-05-23 13:15:37 +03007254 switch (ltk->type) {
7255 case SMP_LTK:
7256 case SMP_LTK_SLAVE:
7257 if (ltk->authenticated)
7258 return MGMT_LTK_AUTHENTICATED;
7259 return MGMT_LTK_UNAUTHENTICATED;
7260 case SMP_LTK_P256:
7261 if (ltk->authenticated)
7262 return MGMT_LTK_P256_AUTH;
7263 return MGMT_LTK_P256_UNAUTH;
7264 case SMP_LTK_P256_DEBUG:
7265 return MGMT_LTK_P256_DEBUG;
7266 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03007267
7268 return MGMT_LTK_UNAUTHENTICATED;
7269}
7270
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007271void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007272{
7273 struct mgmt_ev_new_long_term_key ev;
7274
7275 memset(&ev, 0, sizeof(ev));
7276
Marcel Holtmann5192d302014-02-19 17:11:58 -08007277 /* Devices using resolvable or non-resolvable random addresses
7278 * without providing an indentity resolving key don't require
7279 * to store long term keys. Their addresses will change the
7280 * next time around.
7281 *
7282 * Only when a remote device provides an identity address
7283 * make sure the long term key is stored. If the remote
7284 * identity is known, the long term keys are internally
7285 * mapped to the identity address. So allow static random
7286 * and public addresses here.
7287 */
Johan Hedbergba74b662014-02-19 14:57:45 +02007288 if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
7289 (key->bdaddr.b[5] & 0xc0) != 0xc0)
7290 ev.store_hint = 0x00;
7291 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007292 ev.store_hint = persistent;
Johan Hedbergba74b662014-02-19 14:57:45 +02007293
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007294 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007295 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Johan Hedbergd7b25452014-05-23 13:19:53 +03007296 ev.key.type = mgmt_ltk_type(key);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007297 ev.key.enc_size = key->enc_size;
7298 ev.key.ediv = key->ediv;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08007299 ev.key.rand = key->rand;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007300
Johan Hedberg2ceba532014-06-16 19:25:16 +03007301 if (key->type == SMP_LTK)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007302 ev.key.master = 1;
7303
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007304 memcpy(ev.key.val, key->val, sizeof(key->val));
7305
Marcel Holtmann083368f2013-10-15 14:26:29 -07007306 mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03007307}
7308
Johan Hedberg95fbac82014-02-19 15:18:31 +02007309void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk)
7310{
7311 struct mgmt_ev_new_irk ev;
7312
7313 memset(&ev, 0, sizeof(ev));
7314
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08007315 /* For identity resolving keys from devices that are already
7316 * using a public address or static random address, do not
7317 * ask for storing this key. The identity resolving key really
7318 * is only mandatory for devices using resovlable random
7319 * addresses.
7320 *
7321 * Storing all identity resolving keys has the downside that
7322 * they will be also loaded on next boot of they system. More
7323 * identity resolving keys, means more time during scanning is
7324 * needed to actually resolve these addresses.
7325 */
7326 if (bacmp(&irk->rpa, BDADDR_ANY))
7327 ev.store_hint = 0x01;
7328 else
7329 ev.store_hint = 0x00;
7330
Johan Hedberg95fbac82014-02-19 15:18:31 +02007331 bacpy(&ev.rpa, &irk->rpa);
7332 bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
7333 ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
7334 memcpy(ev.irk.val, irk->val, sizeof(irk->val));
7335
7336 mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
7337}
7338
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007339void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
7340 bool persistent)
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007341{
7342 struct mgmt_ev_new_csrk ev;
7343
7344 memset(&ev, 0, sizeof(ev));
7345
7346 /* Devices using resolvable or non-resolvable random addresses
7347 * without providing an indentity resolving key don't require
7348 * to store signature resolving keys. Their addresses will change
7349 * the next time around.
7350 *
7351 * Only when a remote device provides an identity address
7352 * make sure the signature resolving key is stored. So allow
7353 * static random and public addresses here.
7354 */
7355 if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
7356 (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
7357 ev.store_hint = 0x00;
7358 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07007359 ev.store_hint = persistent;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007360
7361 bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
7362 ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
Johan Hedberg4cd39282015-02-27 10:11:13 +02007363 ev.key.type = csrk->type;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07007364 memcpy(ev.key.val, csrk->val, sizeof(csrk->val));
7365
7366 mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
7367}
7368
Andre Guedesffb5a8272014-07-01 18:10:11 -03007369void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedbergf4869e22014-07-02 17:37:32 +03007370 u8 bdaddr_type, u8 store_hint, u16 min_interval,
7371 u16 max_interval, u16 latency, u16 timeout)
Andre Guedesffb5a8272014-07-01 18:10:11 -03007372{
7373 struct mgmt_ev_new_conn_param ev;
7374
Johan Hedbergc103aea2014-07-02 17:37:34 +03007375 if (!hci_is_identity_address(bdaddr, bdaddr_type))
7376 return;
7377
Andre Guedesffb5a8272014-07-01 18:10:11 -03007378 memset(&ev, 0, sizeof(ev));
7379 bacpy(&ev.addr.bdaddr, bdaddr);
7380 ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
Johan Hedbergf4869e22014-07-02 17:37:32 +03007381 ev.store_hint = store_hint;
Andre Guedesffb5a8272014-07-01 18:10:11 -03007382 ev.min_interval = cpu_to_le16(min_interval);
7383 ev.max_interval = cpu_to_le16(max_interval);
7384 ev.latency = cpu_to_le16(latency);
7385 ev.timeout = cpu_to_le16(timeout);
7386
7387 mgmt_event(MGMT_EV_NEW_CONN_PARAM, hdev, &ev, sizeof(ev), NULL);
7388}
7389
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00007390void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
7391 u32 flags, u8 *name, u8 name_len)
Johan Hedbergf7520542011-01-20 12:34:39 +02007392{
Johan Hedbergb644ba32012-01-17 21:48:47 +02007393 char buf[512];
7394 struct mgmt_ev_device_connected *ev = (void *) buf;
7395 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02007396
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00007397 bacpy(&ev->addr.bdaddr, &conn->dst);
7398 ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02007399
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02007400 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02007401
Alfonso Acostafd45ada2014-10-07 08:44:11 +00007402 /* We must ensure that the EIR Data fields are ordered and
7403 * unique. Keep it simple for now and avoid the problem by not
7404 * adding any BR/EDR data to the LE adv.
7405 */
7406 if (conn->le_adv_data_len > 0) {
7407 memcpy(&ev->eir[eir_len],
7408 conn->le_adv_data, conn->le_adv_data_len);
7409 eir_len = conn->le_adv_data_len;
7410 } else {
7411 if (name_len > 0)
7412 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
7413 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007414
Alfonso Acostaddbea5c2014-10-07 08:44:12 +00007415 if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
Alfonso Acostafd45ada2014-10-07 08:44:11 +00007416 eir_len = eir_append_data(ev->eir, eir_len,
7417 EIR_CLASS_OF_DEV,
7418 conn->dev_class, 3);
7419 }
Johan Hedbergb644ba32012-01-17 21:48:47 +02007420
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02007421 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007422
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07007423 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
7424 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02007425}
7426
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007427static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg8962ee72011-01-20 12:40:27 +02007428{
Johan Hedberg8962ee72011-01-20 12:40:27 +02007429 struct sock **sk = data;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007430
Johan Hedbergf5818c22014-12-05 13:36:02 +02007431 cmd->cmd_complete(cmd, 0);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007432
7433 *sk = cmd->sk;
7434 sock_hold(*sk);
7435
Johan Hedberga664b5b2011-02-19 12:06:02 -03007436 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007437}
7438
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007439static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02007440{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02007441 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02007442 struct mgmt_cp_unpair_device *cp = cmd->param;
Johan Hedberga8a1d192011-11-10 15:54:38 +02007443
Johan Hedbergb1078ad2012-02-09 17:21:16 +02007444 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
7445
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02007446 cmd->cmd_complete(cmd, 0);
Johan Hedberga8a1d192011-11-10 15:54:38 +02007447 mgmt_pending_remove(cmd);
7448}
7449
Johan Hedberg84c61d92014-08-01 11:13:30 +03007450bool mgmt_powering_down(struct hci_dev *hdev)
7451{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007452 struct mgmt_pending_cmd *cmd;
Johan Hedberg84c61d92014-08-01 11:13:30 +03007453 struct mgmt_mode *cp;
7454
Johan Hedberg333ae952015-03-17 13:48:47 +02007455 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg84c61d92014-08-01 11:13:30 +03007456 if (!cmd)
7457 return false;
7458
7459 cp = cmd->param;
7460 if (!cp->val)
7461 return true;
7462
7463 return false;
7464}
7465
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07007466void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02007467 u8 link_type, u8 addr_type, u8 reason,
7468 bool mgmt_connected)
Johan Hedbergf7520542011-01-20 12:34:39 +02007469{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02007470 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007471 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007472
Johan Hedberg84c61d92014-08-01 11:13:30 +03007473 /* The connection is still in hci_conn_hash so test for 1
7474 * instead of 0 to know if this is the last one.
7475 */
7476 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
7477 cancel_delayed_work(&hdev->power_off);
7478 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberg8b064a32014-02-24 14:52:22 +02007479 }
7480
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02007481 if (!mgmt_connected)
7482 return;
7483
Andre Guedes57eb7762013-10-30 19:01:41 -03007484 if (link_type != ACL_LINK && link_type != LE_LINK)
7485 return;
7486
Johan Hedberg744cf192011-11-08 20:40:14 +02007487 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02007488
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02007489 bacpy(&ev.addr.bdaddr, bdaddr);
7490 ev.addr.type = link_to_bdaddr(link_type, addr_type);
7491 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02007492
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07007493 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007494
7495 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01007496 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007497
Johan Hedberg124f6e32012-02-09 13:50:12 +02007498 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007499 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007500}
7501
Marcel Holtmann78929242013-10-06 23:55:47 -07007502void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
7503 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02007504{
Andre Guedes3655bba2013-10-30 19:01:40 -03007505 u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
7506 struct mgmt_cp_disconnect *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007507 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007508
Jefferson Delfes36a75f12012-09-18 13:36:54 -04007509 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
7510 hdev);
7511
Johan Hedberg333ae952015-03-17 13:48:47 +02007512 cmd = pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02007513 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07007514 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02007515
Andre Guedes3655bba2013-10-30 19:01:40 -03007516 cp = cmd->param;
7517
7518 if (bacmp(bdaddr, &cp->addr.bdaddr))
7519 return;
7520
7521 if (cp->addr.type != bdaddr_type)
7522 return;
7523
Johan Hedbergf5818c22014-12-05 13:36:02 +02007524 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03007525 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02007526}
Johan Hedberg17d5c042011-01-22 06:09:08 +02007527
Marcel Holtmann445608d2013-10-06 23:55:48 -07007528void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
7529 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02007530{
7531 struct mgmt_ev_connect_failed ev;
Johan Hedbergc9910d02014-02-27 14:35:12 +02007532
Johan Hedberg84c61d92014-08-01 11:13:30 +03007533 /* The connection is still in hci_conn_hash so test for 1
7534 * instead of 0 to know if this is the last one.
7535 */
7536 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
7537 cancel_delayed_work(&hdev->power_off);
7538 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedbergc9910d02014-02-27 14:35:12 +02007539 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02007540
Johan Hedberg4c659c32011-11-07 23:13:39 +02007541 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007542 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02007543 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02007544
Marcel Holtmann445608d2013-10-06 23:55:48 -07007545 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02007546}
Johan Hedberg980e1a52011-01-22 06:10:07 +02007547
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07007548void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02007549{
7550 struct mgmt_ev_pin_code_request ev;
7551
Johan Hedbergd8457692012-02-17 14:24:57 +02007552 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03007553 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02007554 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02007555
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07007556 mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02007557}
7558
Marcel Holtmanne669cf82013-10-15 14:26:21 -07007559void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7560 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02007561{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007562 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02007563
Johan Hedberg333ae952015-03-17 13:48:47 +02007564 cmd = pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02007565 if (!cmd)
Marcel Holtmanne669cf82013-10-15 14:26:21 -07007566 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02007567
Johan Hedberg7776d1d2014-12-05 13:36:03 +02007568 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03007569 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02007570}
7571
Marcel Holtmann3eb38522013-10-15 14:26:22 -07007572void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
7573 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02007574{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007575 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02007576
Johan Hedberg333ae952015-03-17 13:48:47 +02007577 cmd = pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02007578 if (!cmd)
Marcel Holtmann3eb38522013-10-15 14:26:22 -07007579 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02007580
Johan Hedberg7776d1d2014-12-05 13:36:03 +02007581 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03007582 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02007583}
Johan Hedberga5c29682011-02-19 12:05:57 -03007584
Johan Hedberg744cf192011-11-08 20:40:14 +02007585int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg39adbff2014-03-20 08:18:14 +02007586 u8 link_type, u8 addr_type, u32 value,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007587 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03007588{
7589 struct mgmt_ev_user_confirm_request ev;
7590
Johan Hedberg744cf192011-11-08 20:40:14 +02007591 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03007592
Johan Hedberg272d90d2012-02-09 15:26:12 +02007593 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007594 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07007595 ev.confirm_hint = confirm_hint;
Johan Hedberg39adbff2014-03-20 08:18:14 +02007596 ev.value = cpu_to_le32(value);
Johan Hedberga5c29682011-02-19 12:05:57 -03007597
Johan Hedberg744cf192011-11-08 20:40:14 +02007598 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007599 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03007600}
7601
Johan Hedberg272d90d2012-02-09 15:26:12 +02007602int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03007603 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08007604{
7605 struct mgmt_ev_user_passkey_request ev;
7606
7607 BT_DBG("%s", hdev->name);
7608
Johan Hedberg272d90d2012-02-09 15:26:12 +02007609 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007610 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08007611
7612 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007613 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08007614}
7615
Brian Gix0df4c182011-11-16 13:53:13 -08007616static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03007617 u8 link_type, u8 addr_type, u8 status,
7618 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03007619{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007620 struct mgmt_pending_cmd *cmd;
Johan Hedberga5c29682011-02-19 12:05:57 -03007621
Johan Hedberg333ae952015-03-17 13:48:47 +02007622 cmd = pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03007623 if (!cmd)
7624 return -ENOENT;
7625
Johan Hedberg7776d1d2014-12-05 13:36:03 +02007626 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03007627 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03007628
Johan Hedberg7776d1d2014-12-05 13:36:03 +02007629 return 0;
Johan Hedberga5c29682011-02-19 12:05:57 -03007630}
7631
Johan Hedberg744cf192011-11-08 20:40:14 +02007632int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007633 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03007634{
Johan Hedberg272d90d2012-02-09 15:26:12 +02007635 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007636 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03007637}
7638
Johan Hedberg272d90d2012-02-09 15:26:12 +02007639int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007640 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03007641{
Johan Hedberg272d90d2012-02-09 15:26:12 +02007642 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03007643 status,
7644 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03007645}
Johan Hedberg2a611692011-02-19 12:06:00 -03007646
Brian Gix604086b2011-11-23 08:28:33 -08007647int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007648 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08007649{
Johan Hedberg272d90d2012-02-09 15:26:12 +02007650 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007651 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08007652}
7653
Johan Hedberg272d90d2012-02-09 15:26:12 +02007654int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007655 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08007656{
Johan Hedberg272d90d2012-02-09 15:26:12 +02007657 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03007658 status,
7659 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08007660}
7661
Johan Hedberg92a25252012-09-06 18:39:26 +03007662int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
7663 u8 link_type, u8 addr_type, u32 passkey,
7664 u8 entered)
7665{
7666 struct mgmt_ev_passkey_notify ev;
7667
7668 BT_DBG("%s", hdev->name);
7669
7670 bacpy(&ev.addr.bdaddr, bdaddr);
7671 ev.addr.type = link_to_bdaddr(link_type, addr_type);
7672 ev.passkey = __cpu_to_le32(passkey);
7673 ev.entered = entered;
7674
7675 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
7676}
7677
Johan Hedberge1e930f2014-09-08 17:09:49 -07007678void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
Johan Hedberg2a611692011-02-19 12:06:00 -03007679{
7680 struct mgmt_ev_auth_failed ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007681 struct mgmt_pending_cmd *cmd;
Johan Hedberge1e930f2014-09-08 17:09:49 -07007682 u8 status = mgmt_status(hci_status);
Johan Hedberg2a611692011-02-19 12:06:00 -03007683
Johan Hedberge1e930f2014-09-08 17:09:49 -07007684 bacpy(&ev.addr.bdaddr, &conn->dst);
7685 ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
7686 ev.status = status;
Johan Hedberg2a611692011-02-19 12:06:00 -03007687
Johan Hedberge1e930f2014-09-08 17:09:49 -07007688 cmd = find_pairing(conn);
7689
7690 mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
7691 cmd ? cmd->sk : NULL);
7692
Johan Hedberga511b352014-12-11 21:45:45 +02007693 if (cmd) {
7694 cmd->cmd_complete(cmd, status);
7695 mgmt_pending_remove(cmd);
7696 }
Johan Hedberg2a611692011-02-19 12:06:00 -03007697}
Johan Hedbergb312b1612011-03-16 14:29:37 +02007698
Marcel Holtmann464996a2013-10-15 14:26:24 -07007699void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007700{
7701 struct cmd_lookup match = { NULL, hdev };
Marcel Holtmann464996a2013-10-15 14:26:24 -07007702 bool changed;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007703
7704 if (status) {
7705 u8 mgmt_err = mgmt_status(status);
7706 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007707 cmd_status_rsp, &mgmt_err);
Marcel Holtmann464996a2013-10-15 14:26:24 -07007708 return;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007709 }
7710
Marcel Holtmann464996a2013-10-15 14:26:24 -07007711 if (test_bit(HCI_AUTH, &hdev->flags))
Marcel Holtmann238be782015-03-13 02:11:06 -07007712 changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
Marcel Holtmann464996a2013-10-15 14:26:24 -07007713 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07007714 changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02007715
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007716 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007717 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007718
Johan Hedberg47990ea2012-02-22 11:58:37 +02007719 if (changed)
Marcel Holtmann464996a2013-10-15 14:26:24 -07007720 new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007721
7722 if (match.sk)
7723 sock_put(match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007724}
7725
Johan Hedberg890ea892013-03-15 17:06:52 -05007726static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02007727{
Johan Hedberg890ea892013-03-15 17:06:52 -05007728 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02007729 struct hci_cp_write_eir cp;
7730
Johan Hedberg976eb202012-10-24 21:12:01 +03007731 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05007732 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02007733
Johan Hedbergc80da272012-02-22 15:38:48 +02007734 memset(hdev->eir, 0, sizeof(hdev->eir));
7735
Johan Hedbergcacaf522012-02-21 00:52:42 +02007736 memset(&cp, 0, sizeof(cp));
7737
Johan Hedberg890ea892013-03-15 17:06:52 -05007738 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02007739}
7740
Marcel Holtmann3e248562013-10-15 14:26:25 -07007741void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007742{
7743 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05007744 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007745 bool changed = false;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007746
7747 if (status) {
7748 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007749
Marcel Holtmanna69d8922015-03-13 02:11:05 -07007750 if (enable && hci_dev_test_and_clear_flag(hdev,
7751 HCI_SSP_ENABLED)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07007752 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmann3e248562013-10-15 14:26:25 -07007753 new_settings(hdev, NULL);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07007754 }
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007755
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007756 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
7757 &mgmt_err);
Marcel Holtmann3e248562013-10-15 14:26:25 -07007758 return;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007759 }
7760
7761 if (enable) {
Marcel Holtmann238be782015-03-13 02:11:06 -07007762 changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007763 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07007764 changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07007765 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07007766 changed = hci_dev_test_and_clear_flag(hdev,
7767 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07007768 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07007769 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007770 }
7771
7772 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
7773
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007774 if (changed)
Marcel Holtmann3e248562013-10-15 14:26:25 -07007775 new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007776
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02007777 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007778 sock_put(match.sk);
7779
Johan Hedberg890ea892013-03-15 17:06:52 -05007780 hci_req_init(&req, hdev);
7781
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007782 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
7783 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03007784 hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
7785 sizeof(enable), &enable);
Johan Hedberg890ea892013-03-15 17:06:52 -05007786 update_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03007787 } else {
Johan Hedberg890ea892013-03-15 17:06:52 -05007788 clear_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03007789 }
Johan Hedberg890ea892013-03-15 17:06:52 -05007790
7791 hci_req_run(&req, NULL);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007792}
7793
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007794static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02007795{
7796 struct cmd_lookup *match = data;
7797
Johan Hedberg90e70452012-02-23 23:09:40 +02007798 if (match->sk == NULL) {
7799 match->sk = cmd->sk;
7800 sock_hold(match->sk);
7801 }
Johan Hedberg90e70452012-02-23 23:09:40 +02007802}
7803
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07007804void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
7805 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01007806{
Johan Hedberg90e70452012-02-23 23:09:40 +02007807 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01007808
Johan Hedberg92da6092013-03-15 17:06:55 -05007809 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
7810 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
7811 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02007812
7813 if (!status)
Marcel Holtmannf6b77122015-03-14 19:28:05 -07007814 mgmt_generic_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
7815 dev_class, 3, NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02007816
7817 if (match.sk)
7818 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01007819}
7820
Marcel Holtmann7667da32013-10-15 14:26:27 -07007821void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02007822{
Johan Hedbergb312b1612011-03-16 14:29:37 +02007823 struct mgmt_cp_set_local_name ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007824 struct mgmt_pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02007825
Johan Hedberg13928972013-03-15 17:07:00 -05007826 if (status)
Marcel Holtmann7667da32013-10-15 14:26:27 -07007827 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02007828
7829 memset(&ev, 0, sizeof(ev));
7830 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02007831 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02007832
Johan Hedberg333ae952015-03-17 13:48:47 +02007833 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05007834 if (!cmd) {
7835 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02007836
Johan Hedberg13928972013-03-15 17:07:00 -05007837 /* If this is a HCI command related to powering on the
7838 * HCI dev don't send any mgmt signals.
7839 */
Johan Hedberg333ae952015-03-17 13:48:47 +02007840 if (pending_find(MGMT_OP_SET_POWERED, hdev))
Marcel Holtmann7667da32013-10-15 14:26:27 -07007841 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02007842 }
7843
Marcel Holtmannf6b77122015-03-14 19:28:05 -07007844 mgmt_generic_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
7845 cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02007846}
Szymon Jancc35938b2011-03-22 13:12:21 +01007847
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08007848void mgmt_read_local_oob_data_complete(struct hci_dev *hdev, u8 *hash192,
Johan Hedberg38da1702014-11-17 20:52:20 +02007849 u8 *rand192, u8 *hash256, u8 *rand256,
7850 u8 status)
Szymon Jancc35938b2011-03-22 13:12:21 +01007851{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02007852 struct mgmt_pending_cmd *cmd;
Szymon Jancc35938b2011-03-22 13:12:21 +01007853
Johan Hedberg744cf192011-11-08 20:40:14 +02007854 BT_DBG("%s status %u", hdev->name, status);
Szymon Jancc35938b2011-03-22 13:12:21 +01007855
Johan Hedberg333ae952015-03-17 13:48:47 +02007856 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01007857 if (!cmd)
Marcel Holtmann3edaf092013-10-15 14:26:28 -07007858 return;
Szymon Jancc35938b2011-03-22 13:12:21 +01007859
7860 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02007861 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
7862 mgmt_status(status));
Szymon Jancc35938b2011-03-22 13:12:21 +01007863 } else {
Johan Hedberg66f096f2015-02-02 13:23:42 +02007864 struct mgmt_rp_read_local_oob_data rp;
7865 size_t rp_size = sizeof(rp);
7866
7867 memcpy(rp.hash192, hash192, sizeof(rp.hash192));
7868 memcpy(rp.rand192, rand192, sizeof(rp.rand192));
7869
Johan Hedberg710f11c2014-05-26 11:21:22 +03007870 if (bredr_sc_enabled(hdev) && hash256 && rand256) {
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08007871 memcpy(rp.hash256, hash256, sizeof(rp.hash256));
Johan Hedberg38da1702014-11-17 20:52:20 +02007872 memcpy(rp.rand256, rand256, sizeof(rp.rand256));
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08007873 } else {
Johan Hedberg66f096f2015-02-02 13:23:42 +02007874 rp_size -= sizeof(rp.hash256) + sizeof(rp.rand256);
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08007875 }
Johan Hedberg66f096f2015-02-02 13:23:42 +02007876
Johan Hedberg2a1afb52015-03-06 21:08:54 +02007877 mgmt_cmd_complete(cmd->sk, hdev->id,
7878 MGMT_OP_READ_LOCAL_OOB_DATA, 0,
7879 &rp, rp_size);
Szymon Jancc35938b2011-03-22 13:12:21 +01007880 }
7881
7882 mgmt_pending_remove(cmd);
Szymon Jancc35938b2011-03-22 13:12:21 +01007883}
Johan Hedberge17acd42011-03-30 23:57:16 +03007884
Jakub Pawlowski799ce932014-12-05 10:55:58 +01007885static inline bool has_uuid(u8 *uuid, u16 uuid_count, u8 (*uuids)[16])
7886{
7887 int i;
7888
7889 for (i = 0; i < uuid_count; i++) {
7890 if (!memcmp(uuid, uuids[i], 16))
7891 return true;
7892 }
7893
7894 return false;
7895}
7896
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007897static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
7898{
Jakub Pawlowski799ce932014-12-05 10:55:58 +01007899 u16 parsed = 0;
7900
7901 while (parsed < eir_len) {
7902 u8 field_len = eir[0];
7903 u8 uuid[16];
7904 int i;
7905
7906 if (field_len == 0)
7907 break;
7908
7909 if (eir_len - parsed < field_len + 1)
7910 break;
7911
7912 switch (eir[1]) {
7913 case EIR_UUID16_ALL:
7914 case EIR_UUID16_SOME:
7915 for (i = 0; i + 3 <= field_len; i += 2) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02007916 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01007917 uuid[13] = eir[i + 3];
7918 uuid[12] = eir[i + 2];
7919 if (has_uuid(uuid, uuid_count, uuids))
7920 return true;
7921 }
7922 break;
7923 case EIR_UUID32_ALL:
7924 case EIR_UUID32_SOME:
7925 for (i = 0; i + 5 <= field_len; i += 4) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02007926 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01007927 uuid[15] = eir[i + 5];
7928 uuid[14] = eir[i + 4];
7929 uuid[13] = eir[i + 3];
7930 uuid[12] = eir[i + 2];
7931 if (has_uuid(uuid, uuid_count, uuids))
7932 return true;
7933 }
7934 break;
7935 case EIR_UUID128_ALL:
7936 case EIR_UUID128_SOME:
7937 for (i = 0; i + 17 <= field_len; i += 16) {
7938 memcpy(uuid, eir + i + 2, 16);
7939 if (has_uuid(uuid, uuid_count, uuids))
7940 return true;
7941 }
7942 break;
7943 }
7944
7945 parsed += field_len + 1;
7946 eir += field_len + 1;
7947 }
7948
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007949 return false;
7950}
7951
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08007952static void restart_le_scan(struct hci_dev *hdev)
7953{
7954 /* If controller is not scanning we are done. */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007955 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08007956 return;
7957
7958 if (time_after(jiffies + DISCOV_LE_RESTART_DELAY,
7959 hdev->discovery.scan_start +
7960 hdev->discovery.scan_duration))
7961 return;
7962
7963 queue_delayed_work(hdev->workqueue, &hdev->le_scan_restart,
7964 DISCOV_LE_RESTART_DELAY);
7965}
7966
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08007967static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
7968 u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
7969{
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08007970 /* If a RSSI threshold has been specified, and
7971 * HCI_QUIRK_STRICT_DUPLICATE_FILTER is not set, then all results with
7972 * a RSSI smaller than the RSSI threshold will be dropped. If the quirk
7973 * is set, let it through for further processing, as we might need to
7974 * restart the scan.
7975 *
7976 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
7977 * the results are also dropped.
7978 */
7979 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
7980 (rssi == HCI_RSSI_INVALID ||
7981 (rssi < hdev->discovery.rssi &&
7982 !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
7983 return false;
7984
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08007985 if (hdev->discovery.uuid_count != 0) {
7986 /* If a list of UUIDs is provided in filter, results with no
7987 * matching UUID should be dropped.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08007988 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08007989 if (!eir_has_uuids(eir, eir_len, hdev->discovery.uuid_count,
7990 hdev->discovery.uuids) &&
7991 !eir_has_uuids(scan_rsp, scan_rsp_len,
7992 hdev->discovery.uuid_count,
7993 hdev->discovery.uuids))
7994 return false;
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08007995 }
7996
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08007997 /* If duplicate filtering does not report RSSI changes, then restart
7998 * scanning to ensure updated result with updated RSSI values.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08007999 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08008000 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks)) {
8001 restart_le_scan(hdev);
8002
8003 /* Validate RSSI value against the RSSI threshold once more. */
8004 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
8005 rssi < hdev->discovery.rssi)
8006 return false;
8007 }
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008008
8009 return true;
8010}
8011
Marcel Holtmann901801b2013-10-06 23:55:51 -07008012void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Marcel Holtmannaf589252014-07-01 14:11:20 +02008013 u8 addr_type, u8 *dev_class, s8 rssi, u32 flags,
8014 u8 *eir, u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03008015{
Johan Hedberge319d2e2012-01-15 19:51:59 +02008016 char buf[512];
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008017 struct mgmt_ev_device_found *ev = (void *)buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02008018 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03008019
Johan Hedberg75ce2082014-07-02 22:42:01 +03008020 /* Don't send events for a non-kernel initiated discovery. With
8021 * LE one exception is if we have pend_le_reports > 0 in which
8022 * case we're doing passive scanning and want these events.
8023 */
8024 if (!hci_discovery_active(hdev)) {
8025 if (link_type == ACL_LINK)
8026 return;
Johan Hedberg66f84552014-07-04 12:37:18 +03008027 if (link_type == LE_LINK && list_empty(&hdev->pend_le_reports))
Johan Hedberg75ce2082014-07-02 22:42:01 +03008028 return;
8029 }
Andre Guedes12602d02013-04-30 15:29:40 -03008030
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08008031 if (hdev->discovery.result_filtering) {
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008032 /* We are using service discovery */
8033 if (!is_filter_match(hdev, rssi, eir, eir_len, scan_rsp,
8034 scan_rsp_len))
8035 return;
8036 }
Marcel Holtmannbda157a2014-12-05 10:55:56 +01008037
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008038 /* Make sure that the buffer is big enough. The 5 extra bytes
8039 * are for the potential CoD field.
8040 */
8041 if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07008042 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03008043
Johan Hedberg1dc06092012-01-15 21:01:23 +02008044 memset(buf, 0, sizeof(buf));
8045
Marcel Holtmannda25cf62014-12-05 13:03:35 +01008046 /* In case of device discovery with BR/EDR devices (pre 1.2), the
8047 * RSSI value was reported as 0 when not available. This behavior
8048 * is kept when using device discovery. This is required for full
8049 * backwards compatibility with the API.
8050 *
8051 * However when using service discovery, the value 127 will be
8052 * returned when the RSSI is not available.
8053 */
Szymon Janc91200e92015-01-22 16:57:05 +01008054 if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi &&
8055 link_type == ACL_LINK)
Marcel Holtmannefb25132014-12-05 13:03:34 +01008056 rssi = 0;
8057
Johan Hedberg841c5642014-07-07 12:45:54 +03008058 bacpy(&ev->addr.bdaddr, bdaddr);
8059 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02008060 ev->rssi = rssi;
Marcel Holtmannaf589252014-07-01 14:11:20 +02008061 ev->flags = cpu_to_le32(flags);
Johan Hedberge17acd42011-03-30 23:57:16 +03008062
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008063 if (eir_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008064 /* Copy EIR or advertising data into event */
Johan Hedberge319d2e2012-01-15 19:51:59 +02008065 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03008066
Johan Hedberg1dc06092012-01-15 21:01:23 +02008067 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
8068 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008069 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02008070
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08008071 if (scan_rsp_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01008072 /* Append scan response data to event */
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008073 memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08008074
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02008075 ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
8076 ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
Andre Guedesf8523592011-09-09 18:56:26 -03008077
Marcel Holtmann901801b2013-10-06 23:55:51 -07008078 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03008079}
Johan Hedberga88a9652011-03-30 13:18:12 +03008080
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07008081void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
8082 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03008083{
Johan Hedbergb644ba32012-01-17 21:48:47 +02008084 struct mgmt_ev_device_found *ev;
8085 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
8086 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03008087
Johan Hedbergb644ba32012-01-17 21:48:47 +02008088 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03008089
Johan Hedbergb644ba32012-01-17 21:48:47 +02008090 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03008091
Johan Hedbergb644ba32012-01-17 21:48:47 +02008092 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008093 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008094 ev->rssi = rssi;
8095
8096 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008097 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008098
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02008099 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008100
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07008101 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03008102}
Johan Hedberg314b2382011-04-27 10:29:57 -04008103
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07008104void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04008105{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02008106 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02008107
Andre Guedes343fb142011-11-22 17:14:19 -03008108 BT_DBG("%s discovering %u", hdev->name, discovering);
8109
Johan Hedbergf963e8e2012-02-20 23:30:44 +02008110 memset(&ev, 0, sizeof(ev));
8111 ev.type = hdev->discovery.type;
8112 ev.discovering = discovering;
8113
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07008114 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04008115}
Antti Julku5e762442011-08-25 16:48:02 +03008116
Marcel Holtmann1904a852015-01-11 13:50:44 -08008117static void adv_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Marcel Holtmann5976e602013-10-06 04:08:14 -07008118{
8119 BT_DBG("%s status %u", hdev->name, status);
Marcel Holtmann5976e602013-10-06 04:08:14 -07008120}
8121
8122void mgmt_reenable_advertising(struct hci_dev *hdev)
8123{
8124 struct hci_request req;
8125
Arman Uguray24b4f382015-03-23 15:57:12 -07008126 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
8127 !hci_dev_test_flag(hdev, HCI_ADVERTISING_INSTANCE))
Marcel Holtmann5976e602013-10-06 04:08:14 -07008128 return;
8129
8130 hci_req_init(&req, hdev);
8131 enable_advertising(&req);
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03008132 hci_req_run(&req, adv_enable_complete);
Marcel Holtmann5976e602013-10-06 04:08:14 -07008133}
Johan Hedberg6d785aa32015-03-06 21:08:51 +02008134
8135static struct hci_mgmt_chan chan = {
8136 .channel = HCI_CHANNEL_CONTROL,
8137 .handler_count = ARRAY_SIZE(mgmt_handlers),
8138 .handlers = mgmt_handlers,
Johan Hedberg88b94ce2015-03-17 13:48:49 +02008139 .hdev_init = mgmt_init_hdev,
Johan Hedberg6d785aa32015-03-06 21:08:51 +02008140};
8141
8142int mgmt_init(void)
8143{
8144 return hci_mgmt_chan_register(&chan);
8145}
8146
8147void mgmt_exit(void)
8148{
8149 hci_mgmt_chan_unregister(&chan);
8150}