blob: d1bf5a55ff85598fd04cdc247aa2be1bbd332964 [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"
Alain Michaud17896402020-06-11 02:01:57 +000039#include "mgmt_config.h"
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +020040#include "msft.h"
Johan Hedberg03811012010-12-08 00:21:06 +020041
Johan Hedberg2da9c552012-02-17 14:39:28 +020042#define MGMT_VERSION 1
Marcel Holtmannd58cf002021-03-24 15:10:59 +010043#define MGMT_REVISION 20
Johan Hedberg02d98122010-12-13 21:07:04 +020044
Johan Hedberge70bb2e2012-02-13 16:59:33 +020045static const u16 mgmt_commands[] = {
46 MGMT_OP_READ_INDEX_LIST,
47 MGMT_OP_READ_INFO,
48 MGMT_OP_SET_POWERED,
49 MGMT_OP_SET_DISCOVERABLE,
50 MGMT_OP_SET_CONNECTABLE,
51 MGMT_OP_SET_FAST_CONNECTABLE,
Johan Hedbergb2939472014-07-30 09:22:23 +030052 MGMT_OP_SET_BONDABLE,
Johan Hedberge70bb2e2012-02-13 16:59:33 +020053 MGMT_OP_SET_LINK_SECURITY,
54 MGMT_OP_SET_SSP,
55 MGMT_OP_SET_HS,
56 MGMT_OP_SET_LE,
57 MGMT_OP_SET_DEV_CLASS,
58 MGMT_OP_SET_LOCAL_NAME,
59 MGMT_OP_ADD_UUID,
60 MGMT_OP_REMOVE_UUID,
61 MGMT_OP_LOAD_LINK_KEYS,
62 MGMT_OP_LOAD_LONG_TERM_KEYS,
63 MGMT_OP_DISCONNECT,
64 MGMT_OP_GET_CONNECTIONS,
65 MGMT_OP_PIN_CODE_REPLY,
66 MGMT_OP_PIN_CODE_NEG_REPLY,
67 MGMT_OP_SET_IO_CAPABILITY,
68 MGMT_OP_PAIR_DEVICE,
69 MGMT_OP_CANCEL_PAIR_DEVICE,
70 MGMT_OP_UNPAIR_DEVICE,
71 MGMT_OP_USER_CONFIRM_REPLY,
72 MGMT_OP_USER_CONFIRM_NEG_REPLY,
73 MGMT_OP_USER_PASSKEY_REPLY,
74 MGMT_OP_USER_PASSKEY_NEG_REPLY,
75 MGMT_OP_READ_LOCAL_OOB_DATA,
76 MGMT_OP_ADD_REMOTE_OOB_DATA,
77 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
78 MGMT_OP_START_DISCOVERY,
79 MGMT_OP_STOP_DISCOVERY,
80 MGMT_OP_CONFIRM_NAME,
81 MGMT_OP_BLOCK_DEVICE,
82 MGMT_OP_UNBLOCK_DEVICE,
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -070083 MGMT_OP_SET_DEVICE_ID,
Johan Hedberg4375f102013-09-25 13:26:10 +030084 MGMT_OP_SET_ADVERTISING,
Johan Hedberg0663ca22013-10-02 13:43:14 +030085 MGMT_OP_SET_BREDR,
Marcel Holtmannd13eafc2013-10-02 04:41:30 -070086 MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann7f72134e2013-10-11 14:44:58 -070087 MGMT_OP_SET_SCAN_PARAMS,
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -080088 MGMT_OP_SET_SECURE_CONN,
Marcel Holtmann4e39ac82014-01-31 11:55:22 -080089 MGMT_OP_SET_DEBUG_KEYS,
Johan Hedberg62b04cd2014-02-23 19:42:27 +020090 MGMT_OP_SET_PRIVACY,
Johan Hedberg41edf162014-02-18 10:19:35 +020091 MGMT_OP_LOAD_IRKS,
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +020092 MGMT_OP_GET_CONN_INFO,
Johan Hedberg95868422014-06-28 17:54:07 +030093 MGMT_OP_GET_CLOCK_INFO,
Marcel Holtmann2faade52014-06-29 19:44:03 +020094 MGMT_OP_ADD_DEVICE,
95 MGMT_OP_REMOVE_DEVICE,
Johan Hedberga26f3dc2014-07-02 17:37:29 +030096 MGMT_OP_LOAD_CONN_PARAM,
Marcel Holtmann73d1df22014-07-02 22:10:52 +020097 MGMT_OP_READ_UNCONF_INDEX_LIST,
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +020098 MGMT_OP_READ_CONFIG_INFO,
Marcel Holtmanndbece372014-07-04 18:11:55 +020099 MGMT_OP_SET_EXTERNAL_CONFIG,
Marcel Holtmann9713c172014-07-06 12:11:15 +0200100 MGMT_OP_SET_PUBLIC_ADDRESS,
Jakub Pawlowski66ea9422014-12-05 10:55:59 +0100101 MGMT_OP_START_SERVICE_DISCOVERY,
Marcel Holtmann4f0f1552015-03-14 22:43:19 -0700102 MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
Marcel Holtmann96f14742015-03-14 19:27:57 -0700103 MGMT_OP_READ_EXT_INDEX_LIST,
Marcel Holtmannd3d53052015-03-14 20:53:25 -0700104 MGMT_OP_READ_ADV_FEATURES,
Arman Uguray24b4f382015-03-23 15:57:12 -0700105 MGMT_OP_ADD_ADVERTISING,
Arman Ugurayda9293352015-03-23 15:57:13 -0700106 MGMT_OP_REMOVE_ADVERTISING,
Marcel Holtmann40b25fe2015-11-19 16:16:43 +0100107 MGMT_OP_GET_ADV_SIZE_INFO,
Johan Hedberg78b781c2016-01-05 13:19:32 +0200108 MGMT_OP_START_LIMITED_DISCOVERY,
Marcel Holtmann321c6fe2016-09-01 16:46:23 +0200109 MGMT_OP_READ_EXT_INFO,
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +0200110 MGMT_OP_SET_APPEARANCE,
Marcel Holtmann02431b62021-03-24 15:10:55 +0100111 MGMT_OP_GET_PHY_CONFIGURATION,
112 MGMT_OP_SET_PHY_CONFIGURATION,
Alain Michaud600a8742020-01-07 00:43:17 +0000113 MGMT_OP_SET_BLOCKED_KEYS,
Alain Michaud00bce3f2020-03-05 16:14:59 +0000114 MGMT_OP_SET_WIDEBAND_SPEECH,
Daniel Winkler4d9b9522020-12-03 12:12:52 -0800115 MGMT_OP_READ_CONTROLLER_CAP,
Marcel Holtmanna10c9072020-05-06 09:57:51 +0200116 MGMT_OP_READ_EXP_FEATURES_INFO,
117 MGMT_OP_SET_EXP_FEATURE,
Alain Michaud17896402020-06-11 02:01:57 +0000118 MGMT_OP_READ_DEF_SYSTEM_CONFIG,
119 MGMT_OP_SET_DEF_SYSTEM_CONFIG,
Marcel Holtmannaececa62020-06-17 16:39:07 +0200120 MGMT_OP_READ_DEF_RUNTIME_CONFIG,
121 MGMT_OP_SET_DEF_RUNTIME_CONFIG,
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +0200122 MGMT_OP_GET_DEVICE_FLAGS,
123 MGMT_OP_SET_DEVICE_FLAGS,
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +0200124 MGMT_OP_READ_ADV_MONITOR_FEATURES,
Miao-chen Choub1395532020-06-17 16:39:14 +0200125 MGMT_OP_ADD_ADV_PATTERNS_MONITOR,
Miao-chen Choubd2fbc62020-06-17 16:39:15 +0200126 MGMT_OP_REMOVE_ADV_MONITOR,
Daniel Winkler12410572020-12-03 12:12:49 -0800127 MGMT_OP_ADD_EXT_ADV_PARAMS,
128 MGMT_OP_ADD_EXT_ADV_DATA,
Archie Pusakab4a221e2021-01-22 16:36:11 +0800129 MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200130};
131
132static const u16 mgmt_events[] = {
133 MGMT_EV_CONTROLLER_ERROR,
134 MGMT_EV_INDEX_ADDED,
135 MGMT_EV_INDEX_REMOVED,
136 MGMT_EV_NEW_SETTINGS,
137 MGMT_EV_CLASS_OF_DEV_CHANGED,
138 MGMT_EV_LOCAL_NAME_CHANGED,
139 MGMT_EV_NEW_LINK_KEY,
140 MGMT_EV_NEW_LONG_TERM_KEY,
141 MGMT_EV_DEVICE_CONNECTED,
142 MGMT_EV_DEVICE_DISCONNECTED,
143 MGMT_EV_CONNECT_FAILED,
144 MGMT_EV_PIN_CODE_REQUEST,
145 MGMT_EV_USER_CONFIRM_REQUEST,
146 MGMT_EV_USER_PASSKEY_REQUEST,
147 MGMT_EV_AUTH_FAILED,
148 MGMT_EV_DEVICE_FOUND,
149 MGMT_EV_DISCOVERING,
150 MGMT_EV_DEVICE_BLOCKED,
151 MGMT_EV_DEVICE_UNBLOCKED,
152 MGMT_EV_DEVICE_UNPAIRED,
Johan Hedberg92a25252012-09-06 18:39:26 +0300153 MGMT_EV_PASSKEY_NOTIFY,
Marcel Holtmann1b60ef22014-02-21 21:35:30 -0800154 MGMT_EV_NEW_IRK,
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -0700155 MGMT_EV_NEW_CSRK,
Marcel Holtmann8afef092014-06-29 22:28:34 +0200156 MGMT_EV_DEVICE_ADDED,
157 MGMT_EV_DEVICE_REMOVED,
Andre Guedesffb5a8272014-07-01 18:10:11 -0300158 MGMT_EV_NEW_CONN_PARAM,
Marcel Holtmann0602a8a2014-07-02 21:30:54 +0200159 MGMT_EV_UNCONF_INDEX_ADDED,
Marcel Holtmannedd3896b2014-07-02 21:30:55 +0200160 MGMT_EV_UNCONF_INDEX_REMOVED,
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200161 MGMT_EV_NEW_CONFIG_OPTIONS,
Marcel Holtmannced85542015-03-14 19:27:56 -0700162 MGMT_EV_EXT_INDEX_ADDED,
163 MGMT_EV_EXT_INDEX_REMOVED,
Marcel Holtmann72000df2015-03-16 16:11:21 -0700164 MGMT_EV_LOCAL_OOB_DATA_UPDATED,
Arman Uguray24b4f382015-03-23 15:57:12 -0700165 MGMT_EV_ADVERTISING_ADDED,
166 MGMT_EV_ADVERTISING_REMOVED,
Marcel Holtmann321c6fe2016-09-01 16:46:23 +0200167 MGMT_EV_EXT_INFO_CHANGED,
Marcel Holtmann5f4b9172020-05-06 09:57:46 +0200168 MGMT_EV_PHY_CONFIGURATION_CHANGED,
Marcel Holtmanna10c9072020-05-06 09:57:51 +0200169 MGMT_EV_EXP_FEATURE_CHANGED,
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +0200170 MGMT_EV_DEVICE_FLAGS_CHANGED,
Marcel Holtmann3d34a712021-03-24 15:10:56 +0100171 MGMT_EV_ADV_MONITOR_ADDED,
172 MGMT_EV_ADV_MONITOR_REMOVED,
Abhishek Pandit-Subedi346ce5b2020-09-11 14:07:11 -0700173 MGMT_EV_CONTROLLER_SUSPEND,
174 MGMT_EV_CONTROLLER_RESUME,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200175};
176
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700177static const u16 mgmt_untrusted_commands[] = {
178 MGMT_OP_READ_INDEX_LIST,
179 MGMT_OP_READ_INFO,
180 MGMT_OP_READ_UNCONF_INDEX_LIST,
181 MGMT_OP_READ_CONFIG_INFO,
182 MGMT_OP_READ_EXT_INDEX_LIST,
Marcel Holtmann321c6fe2016-09-01 16:46:23 +0200183 MGMT_OP_READ_EXT_INFO,
Daniel Winkler4d9b9522020-12-03 12:12:52 -0800184 MGMT_OP_READ_CONTROLLER_CAP,
Marcel Holtmanna10c9072020-05-06 09:57:51 +0200185 MGMT_OP_READ_EXP_FEATURES_INFO,
Alain Michaud17896402020-06-11 02:01:57 +0000186 MGMT_OP_READ_DEF_SYSTEM_CONFIG,
Marcel Holtmannaececa62020-06-17 16:39:07 +0200187 MGMT_OP_READ_DEF_RUNTIME_CONFIG,
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700188};
189
190static const u16 mgmt_untrusted_events[] = {
191 MGMT_EV_INDEX_ADDED,
192 MGMT_EV_INDEX_REMOVED,
193 MGMT_EV_NEW_SETTINGS,
194 MGMT_EV_CLASS_OF_DEV_CHANGED,
195 MGMT_EV_LOCAL_NAME_CHANGED,
196 MGMT_EV_UNCONF_INDEX_ADDED,
197 MGMT_EV_UNCONF_INDEX_REMOVED,
198 MGMT_EV_NEW_CONFIG_OPTIONS,
199 MGMT_EV_EXT_INDEX_ADDED,
200 MGMT_EV_EXT_INDEX_REMOVED,
Marcel Holtmann321c6fe2016-09-01 16:46:23 +0200201 MGMT_EV_EXT_INFO_CHANGED,
Marcel Holtmanna10c9072020-05-06 09:57:51 +0200202 MGMT_EV_EXP_FEATURE_CHANGED,
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700203};
204
Marcel Holtmann17b02e62012-03-01 14:32:37 -0800205#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000)
Johan Hedberg7d785252011-12-15 00:47:39 +0200206
Johan Hedbergd25b78e2015-01-27 12:55:52 +0200207#define ZERO_KEY "\x00\x00\x00\x00\x00\x00\x00\x00" \
208 "\x00\x00\x00\x00\x00\x00\x00\x00"
209
Johan Hedbergca69b792011-11-11 18:10:00 +0200210/* HCI to MGMT error code conversion table */
Alain Michaudbdf2aca2020-01-22 16:09:16 +0000211static const u8 mgmt_status_table[] = {
Johan Hedbergca69b792011-11-11 18:10:00 +0200212 MGMT_STATUS_SUCCESS,
213 MGMT_STATUS_UNKNOWN_COMMAND, /* Unknown Command */
214 MGMT_STATUS_NOT_CONNECTED, /* No Connection */
215 MGMT_STATUS_FAILED, /* Hardware Failure */
216 MGMT_STATUS_CONNECT_FAILED, /* Page Timeout */
217 MGMT_STATUS_AUTH_FAILED, /* Authentication Failed */
Johan Hedbergeadd6632014-01-13 17:15:53 +0200218 MGMT_STATUS_AUTH_FAILED, /* PIN or Key Missing */
Johan Hedbergca69b792011-11-11 18:10:00 +0200219 MGMT_STATUS_NO_RESOURCES, /* Memory Full */
220 MGMT_STATUS_TIMEOUT, /* Connection Timeout */
221 MGMT_STATUS_NO_RESOURCES, /* Max Number of Connections */
222 MGMT_STATUS_NO_RESOURCES, /* Max Number of SCO Connections */
223 MGMT_STATUS_ALREADY_CONNECTED, /* ACL Connection Exists */
224 MGMT_STATUS_BUSY, /* Command Disallowed */
225 MGMT_STATUS_NO_RESOURCES, /* Rejected Limited Resources */
226 MGMT_STATUS_REJECTED, /* Rejected Security */
227 MGMT_STATUS_REJECTED, /* Rejected Personal */
228 MGMT_STATUS_TIMEOUT, /* Host Timeout */
229 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Feature */
230 MGMT_STATUS_INVALID_PARAMS, /* Invalid Parameters */
231 MGMT_STATUS_DISCONNECTED, /* OE User Ended Connection */
232 MGMT_STATUS_NO_RESOURCES, /* OE Low Resources */
233 MGMT_STATUS_DISCONNECTED, /* OE Power Off */
234 MGMT_STATUS_DISCONNECTED, /* Connection Terminated */
235 MGMT_STATUS_BUSY, /* Repeated Attempts */
236 MGMT_STATUS_REJECTED, /* Pairing Not Allowed */
237 MGMT_STATUS_FAILED, /* Unknown LMP PDU */
238 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Remote Feature */
239 MGMT_STATUS_REJECTED, /* SCO Offset Rejected */
240 MGMT_STATUS_REJECTED, /* SCO Interval Rejected */
241 MGMT_STATUS_REJECTED, /* Air Mode Rejected */
242 MGMT_STATUS_INVALID_PARAMS, /* Invalid LMP Parameters */
243 MGMT_STATUS_FAILED, /* Unspecified Error */
244 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported LMP Parameter Value */
245 MGMT_STATUS_FAILED, /* Role Change Not Allowed */
246 MGMT_STATUS_TIMEOUT, /* LMP Response Timeout */
247 MGMT_STATUS_FAILED, /* LMP Error Transaction Collision */
248 MGMT_STATUS_FAILED, /* LMP PDU Not Allowed */
249 MGMT_STATUS_REJECTED, /* Encryption Mode Not Accepted */
250 MGMT_STATUS_FAILED, /* Unit Link Key Used */
251 MGMT_STATUS_NOT_SUPPORTED, /* QoS Not Supported */
252 MGMT_STATUS_TIMEOUT, /* Instant Passed */
253 MGMT_STATUS_NOT_SUPPORTED, /* Pairing Not Supported */
254 MGMT_STATUS_FAILED, /* Transaction Collision */
Yu Liu4ef36a52021-04-19 16:53:30 -0700255 MGMT_STATUS_FAILED, /* Reserved for future use */
Johan Hedbergca69b792011-11-11 18:10:00 +0200256 MGMT_STATUS_INVALID_PARAMS, /* Unacceptable Parameter */
257 MGMT_STATUS_REJECTED, /* QoS Rejected */
258 MGMT_STATUS_NOT_SUPPORTED, /* Classification Not Supported */
259 MGMT_STATUS_REJECTED, /* Insufficient Security */
260 MGMT_STATUS_INVALID_PARAMS, /* Parameter Out Of Range */
Yu Liu4ef36a52021-04-19 16:53:30 -0700261 MGMT_STATUS_FAILED, /* Reserved for future use */
Johan Hedbergca69b792011-11-11 18:10:00 +0200262 MGMT_STATUS_BUSY, /* Role Switch Pending */
Yu Liu4ef36a52021-04-19 16:53:30 -0700263 MGMT_STATUS_FAILED, /* Reserved for future use */
Johan Hedbergca69b792011-11-11 18:10:00 +0200264 MGMT_STATUS_FAILED, /* Slot Violation */
265 MGMT_STATUS_FAILED, /* Role Switch Failed */
266 MGMT_STATUS_INVALID_PARAMS, /* EIR Too Large */
267 MGMT_STATUS_NOT_SUPPORTED, /* Simple Pairing Not Supported */
268 MGMT_STATUS_BUSY, /* Host Busy Pairing */
269 MGMT_STATUS_REJECTED, /* Rejected, No Suitable Channel */
270 MGMT_STATUS_BUSY, /* Controller Busy */
271 MGMT_STATUS_INVALID_PARAMS, /* Unsuitable Connection Interval */
272 MGMT_STATUS_TIMEOUT, /* Directed Advertising Timeout */
273 MGMT_STATUS_AUTH_FAILED, /* Terminated Due to MIC Failure */
274 MGMT_STATUS_CONNECT_FAILED, /* Connection Establishment Failed */
275 MGMT_STATUS_CONNECT_FAILED, /* MAC Connection Failed */
276};
277
278static u8 mgmt_status(u8 hci_status)
279{
280 if (hci_status < ARRAY_SIZE(mgmt_status_table))
281 return mgmt_status_table[hci_status];
282
283 return MGMT_STATUS_FAILED;
284}
285
Marcel Holtmannc08b1a12015-03-14 19:27:59 -0700286static int mgmt_index_event(u16 event, struct hci_dev *hdev, void *data,
287 u16 len, int flag)
Marcel Holtmannf9207332015-03-14 19:27:55 -0700288{
Marcel Holtmannc08b1a12015-03-14 19:27:59 -0700289 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
290 flag, NULL);
Marcel Holtmannf9207332015-03-14 19:27:55 -0700291}
292
Marcel Holtmann72000df2015-03-16 16:11:21 -0700293static int mgmt_limited_event(u16 event, struct hci_dev *hdev, void *data,
294 u16 len, int flag, struct sock *skip_sk)
295{
296 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
297 flag, skip_sk);
298}
299
Johan Hedberg7a00ff42015-03-06 21:08:56 +0200300static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 len,
301 struct sock *skip_sk)
302{
303 return mgmt_send_event(event, hdev, HCI_CHANNEL_CONTROL, data, len,
Marcel Holtmannc08b1a12015-03-14 19:27:59 -0700304 HCI_SOCK_TRUSTED, skip_sk);
Johan Hedberg7a00ff42015-03-06 21:08:56 +0200305}
306
Johan Hedberg85813a72015-10-21 18:02:59 +0300307static u8 le_addr_type(u8 mgmt_addr_type)
308{
309 if (mgmt_addr_type == BDADDR_LE_PUBLIC)
310 return ADDR_LE_DEV_PUBLIC;
311 else
312 return ADDR_LE_DEV_RANDOM;
313}
314
Marcel Holtmann03c979c2016-08-27 20:23:39 +0200315void mgmt_fill_version_info(void *ver)
316{
317 struct mgmt_rp_read_version *rp = ver;
318
319 rp->version = MGMT_VERSION;
320 rp->revision = cpu_to_le16(MGMT_REVISION);
321}
322
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300323static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
324 u16 data_len)
Johan Hedberga38528f2011-01-22 06:46:43 +0200325{
326 struct mgmt_rp_read_version rp;
327
Marcel Holtmann181d6952020-05-06 09:57:47 +0200328 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberga38528f2011-01-22 06:46:43 +0200329
Marcel Holtmann03c979c2016-08-27 20:23:39 +0200330 mgmt_fill_version_info(&rp);
Johan Hedberga38528f2011-01-22 06:46:43 +0200331
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200332 return mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0,
333 &rp, sizeof(rp));
Johan Hedberga38528f2011-01-22 06:46:43 +0200334}
335
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300336static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
337 u16 data_len)
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200338{
339 struct mgmt_rp_read_commands *rp;
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700340 u16 num_commands, num_events;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200341 size_t rp_size;
342 int i, err;
343
Marcel Holtmann181d6952020-05-06 09:57:47 +0200344 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200345
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700346 if (hci_sock_test_flag(sk, HCI_SOCK_TRUSTED)) {
347 num_commands = ARRAY_SIZE(mgmt_commands);
348 num_events = ARRAY_SIZE(mgmt_events);
349 } else {
350 num_commands = ARRAY_SIZE(mgmt_untrusted_commands);
351 num_events = ARRAY_SIZE(mgmt_untrusted_events);
352 }
353
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200354 rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));
355
356 rp = kmalloc(rp_size, GFP_KERNEL);
357 if (!rp)
358 return -ENOMEM;
359
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700360 rp->num_commands = cpu_to_le16(num_commands);
361 rp->num_events = cpu_to_le16(num_events);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200362
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700363 if (hci_sock_test_flag(sk, HCI_SOCK_TRUSTED)) {
364 __le16 *opcode = rp->opcodes;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200365
Marcel Holtmann99c679a2015-03-24 17:31:03 -0700366 for (i = 0; i < num_commands; i++, opcode++)
367 put_unaligned_le16(mgmt_commands[i], opcode);
368
369 for (i = 0; i < num_events; i++, opcode++)
370 put_unaligned_le16(mgmt_events[i], opcode);
371 } else {
372 __le16 *opcode = rp->opcodes;
373
374 for (i = 0; i < num_commands; i++, opcode++)
375 put_unaligned_le16(mgmt_untrusted_commands[i], opcode);
376
377 for (i = 0; i < num_events; i++, opcode++)
378 put_unaligned_le16(mgmt_untrusted_events[i], opcode);
379 }
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200380
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200381 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0,
382 rp, rp_size);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200383 kfree(rp);
384
385 return err;
386}
387
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300388static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
389 u16 data_len)
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200390{
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200391 struct mgmt_rp_read_index_list *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200392 struct hci_dev *d;
Johan Hedberga38528f2011-01-22 06:46:43 +0200393 size_t rp_len;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200394 u16 count;
Johan Hedberg476e44c2012-10-19 20:10:46 +0300395 int err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200396
Marcel Holtmann181d6952020-05-06 09:57:47 +0200397 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200398
399 read_lock(&hci_dev_list_lock);
400
401 count = 0;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300402 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannca8bee52016-07-05 14:30:14 +0200403 if (d->dev_type == HCI_PRIMARY &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700404 !hci_dev_test_flag(d, HCI_UNCONFIGURED))
Marcel Holtmann1514b892013-10-06 08:25:01 -0700405 count++;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200406 }
407
Johan Hedberga38528f2011-01-22 06:46:43 +0200408 rp_len = sizeof(*rp) + (2 * count);
409 rp = kmalloc(rp_len, GFP_ATOMIC);
410 if (!rp) {
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100411 read_unlock(&hci_dev_list_lock);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200412 return -ENOMEM;
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100413 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200414
Johan Hedberg476e44c2012-10-19 20:10:46 +0300415 count = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200416 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700417 if (hci_dev_test_flag(d, HCI_SETUP) ||
418 hci_dev_test_flag(d, HCI_CONFIG) ||
419 hci_dev_test_flag(d, HCI_USER_CHANNEL))
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200420 continue;
421
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200422 /* Devices marked as raw-only are neither configured
423 * nor unconfigured controllers.
424 */
425 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
Marcel Holtmann0736cfa2013-08-26 21:40:51 -0700426 continue;
427
Marcel Holtmannca8bee52016-07-05 14:30:14 +0200428 if (d->dev_type == HCI_PRIMARY &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700429 !hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
Marcel Holtmann1514b892013-10-06 08:25:01 -0700430 rp->index[count++] = cpu_to_le16(d->id);
Marcel Holtmann181d6952020-05-06 09:57:47 +0200431 bt_dev_dbg(hdev, "Added hci%u", d->id);
Marcel Holtmann1514b892013-10-06 08:25:01 -0700432 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200433 }
434
Johan Hedberg476e44c2012-10-19 20:10:46 +0300435 rp->num_controllers = cpu_to_le16(count);
436 rp_len = sizeof(*rp) + (2 * count);
437
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200438 read_unlock(&hci_dev_list_lock);
439
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200440 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST,
441 0, rp, rp_len);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200442
Johan Hedberga38528f2011-01-22 06:46:43 +0200443 kfree(rp);
444
445 return err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200446}
447
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200448static int read_unconf_index_list(struct sock *sk, struct hci_dev *hdev,
449 void *data, u16 data_len)
450{
451 struct mgmt_rp_read_unconf_index_list *rp;
452 struct hci_dev *d;
453 size_t rp_len;
454 u16 count;
455 int err;
456
Marcel Holtmann181d6952020-05-06 09:57:47 +0200457 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200458
459 read_lock(&hci_dev_list_lock);
460
461 count = 0;
462 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannca8bee52016-07-05 14:30:14 +0200463 if (d->dev_type == HCI_PRIMARY &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700464 hci_dev_test_flag(d, HCI_UNCONFIGURED))
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200465 count++;
466 }
467
468 rp_len = sizeof(*rp) + (2 * count);
469 rp = kmalloc(rp_len, GFP_ATOMIC);
470 if (!rp) {
471 read_unlock(&hci_dev_list_lock);
472 return -ENOMEM;
473 }
474
475 count = 0;
476 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700477 if (hci_dev_test_flag(d, HCI_SETUP) ||
478 hci_dev_test_flag(d, HCI_CONFIG) ||
479 hci_dev_test_flag(d, HCI_USER_CHANNEL))
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200480 continue;
481
482 /* Devices marked as raw-only are neither configured
483 * nor unconfigured controllers.
484 */
485 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
486 continue;
487
Marcel Holtmannca8bee52016-07-05 14:30:14 +0200488 if (d->dev_type == HCI_PRIMARY &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700489 hci_dev_test_flag(d, HCI_UNCONFIGURED)) {
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200490 rp->index[count++] = cpu_to_le16(d->id);
Marcel Holtmann181d6952020-05-06 09:57:47 +0200491 bt_dev_dbg(hdev, "Added hci%u", d->id);
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200492 }
493 }
494
495 rp->num_controllers = cpu_to_le16(count);
496 rp_len = sizeof(*rp) + (2 * count);
497
498 read_unlock(&hci_dev_list_lock);
499
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200500 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
501 MGMT_OP_READ_UNCONF_INDEX_LIST, 0, rp, rp_len);
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200502
503 kfree(rp);
504
505 return err;
506}
507
Marcel Holtmann96f14742015-03-14 19:27:57 -0700508static int read_ext_index_list(struct sock *sk, struct hci_dev *hdev,
509 void *data, u16 data_len)
510{
511 struct mgmt_rp_read_ext_index_list *rp;
512 struct hci_dev *d;
Marcel Holtmann96f14742015-03-14 19:27:57 -0700513 u16 count;
514 int err;
515
Marcel Holtmann181d6952020-05-06 09:57:47 +0200516 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann96f14742015-03-14 19:27:57 -0700517
518 read_lock(&hci_dev_list_lock);
519
520 count = 0;
521 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmannca8bee52016-07-05 14:30:14 +0200522 if (d->dev_type == HCI_PRIMARY || d->dev_type == HCI_AMP)
Marcel Holtmann96f14742015-03-14 19:27:57 -0700523 count++;
524 }
525
Gustavo A. R. Silva4a67e5d2019-02-25 13:11:37 -0600526 rp = kmalloc(struct_size(rp, entry, count), GFP_ATOMIC);
Marcel Holtmann96f14742015-03-14 19:27:57 -0700527 if (!rp) {
528 read_unlock(&hci_dev_list_lock);
529 return -ENOMEM;
530 }
531
532 count = 0;
533 list_for_each_entry(d, &hci_dev_list, list) {
534 if (hci_dev_test_flag(d, HCI_SETUP) ||
535 hci_dev_test_flag(d, HCI_CONFIG) ||
536 hci_dev_test_flag(d, HCI_USER_CHANNEL))
537 continue;
538
539 /* Devices marked as raw-only are neither configured
540 * nor unconfigured controllers.
541 */
542 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
543 continue;
544
Marcel Holtmannca8bee52016-07-05 14:30:14 +0200545 if (d->dev_type == HCI_PRIMARY) {
Marcel Holtmann96f14742015-03-14 19:27:57 -0700546 if (hci_dev_test_flag(d, HCI_UNCONFIGURED))
547 rp->entry[count].type = 0x01;
548 else
549 rp->entry[count].type = 0x00;
550 } else if (d->dev_type == HCI_AMP) {
551 rp->entry[count].type = 0x02;
552 } else {
553 continue;
554 }
555
556 rp->entry[count].bus = d->bus;
557 rp->entry[count++].index = cpu_to_le16(d->id);
Marcel Holtmann181d6952020-05-06 09:57:47 +0200558 bt_dev_dbg(hdev, "Added hci%u", d->id);
Marcel Holtmann96f14742015-03-14 19:27:57 -0700559 }
560
561 rp->num_controllers = cpu_to_le16(count);
Marcel Holtmann96f14742015-03-14 19:27:57 -0700562
563 read_unlock(&hci_dev_list_lock);
564
565 /* If this command is called at least once, then all the
566 * default index and unconfigured index events are disabled
567 * and from now on only extended index events are used.
568 */
569 hci_sock_set_flag(sk, HCI_MGMT_EXT_INDEX_EVENTS);
570 hci_sock_clear_flag(sk, HCI_MGMT_INDEX_EVENTS);
571 hci_sock_clear_flag(sk, HCI_MGMT_UNCONF_INDEX_EVENTS);
572
573 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
Gustavo A. R. Silva4a67e5d2019-02-25 13:11:37 -0600574 MGMT_OP_READ_EXT_INDEX_LIST, 0, rp,
575 struct_size(rp, entry, count));
Marcel Holtmann96f14742015-03-14 19:27:57 -0700576
577 kfree(rp);
578
579 return err;
580}
581
Marcel Holtmanndbece372014-07-04 18:11:55 +0200582static bool is_configured(struct hci_dev *hdev)
583{
584 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700585 !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
Marcel Holtmanndbece372014-07-04 18:11:55 +0200586 return false;
587
Matthias Kaehlcke7a0e5b12019-02-19 12:05:57 -0800588 if ((test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) ||
589 test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks)) &&
Marcel Holtmanndbece372014-07-04 18:11:55 +0200590 !bacmp(&hdev->public_addr, BDADDR_ANY))
591 return false;
592
593 return true;
594}
595
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200596static __le32 get_missing_options(struct hci_dev *hdev)
597{
598 u32 options = 0;
599
Marcel Holtmanndbece372014-07-04 18:11:55 +0200600 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700601 !hci_dev_test_flag(hdev, HCI_EXT_CONFIGURED))
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200602 options |= MGMT_OPTION_EXTERNAL_CONFIG;
603
Matthias Kaehlcke7a0e5b12019-02-19 12:05:57 -0800604 if ((test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) ||
605 test_bit(HCI_QUIRK_USE_BDADDR_PROPERTY, &hdev->quirks)) &&
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200606 !bacmp(&hdev->public_addr, BDADDR_ANY))
607 options |= MGMT_OPTION_PUBLIC_ADDRESS;
608
609 return cpu_to_le32(options);
610}
611
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200612static int new_options(struct hci_dev *hdev, struct sock *skip)
613{
614 __le32 options = get_missing_options(hdev);
615
Marcel Holtmann5504c3a2016-08-29 06:19:46 +0200616 return mgmt_limited_event(MGMT_EV_NEW_CONFIG_OPTIONS, hdev, &options,
617 sizeof(options), HCI_MGMT_OPTION_EVENTS, skip);
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200618}
619
Marcel Holtmanndbece372014-07-04 18:11:55 +0200620static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
621{
622 __le32 options = get_missing_options(hdev);
623
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200624 return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &options,
625 sizeof(options));
Marcel Holtmanndbece372014-07-04 18:11:55 +0200626}
627
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200628static int read_config_info(struct sock *sk, struct hci_dev *hdev,
629 void *data, u16 data_len)
630{
631 struct mgmt_rp_read_config_info rp;
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200632 u32 options = 0;
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200633
Marcel Holtmann181d6952020-05-06 09:57:47 +0200634 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200635
636 hci_dev_lock(hdev);
637
638 memset(&rp, 0, sizeof(rp));
639 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200640
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200641 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
642 options |= MGMT_OPTION_EXTERNAL_CONFIG;
643
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200644 if (hdev->set_bdaddr)
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200645 options |= MGMT_OPTION_PUBLIC_ADDRESS;
646
647 rp.supported_options = cpu_to_le32(options);
648 rp.missing_options = get_missing_options(hdev);
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200649
650 hci_dev_unlock(hdev);
651
Johan Hedberg2a1afb52015-03-06 21:08:54 +0200652 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0,
653 &rp, sizeof(rp));
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200654}
655
Jaganath Kanakkassery62446912018-07-19 17:09:34 +0530656static u32 get_supported_phys(struct hci_dev *hdev)
657{
658 u32 supported_phys = 0;
659
660 if (lmp_bredr_capable(hdev)) {
661 supported_phys |= MGMT_PHY_BR_1M_1SLOT;
662
663 if (hdev->features[0][0] & LMP_3SLOT)
664 supported_phys |= MGMT_PHY_BR_1M_3SLOT;
665
666 if (hdev->features[0][0] & LMP_5SLOT)
667 supported_phys |= MGMT_PHY_BR_1M_5SLOT;
668
669 if (lmp_edr_2m_capable(hdev)) {
670 supported_phys |= MGMT_PHY_EDR_2M_1SLOT;
671
672 if (lmp_edr_3slot_capable(hdev))
673 supported_phys |= MGMT_PHY_EDR_2M_3SLOT;
674
675 if (lmp_edr_5slot_capable(hdev))
676 supported_phys |= MGMT_PHY_EDR_2M_5SLOT;
677
678 if (lmp_edr_3m_capable(hdev)) {
679 supported_phys |= MGMT_PHY_EDR_3M_1SLOT;
680
681 if (lmp_edr_3slot_capable(hdev))
682 supported_phys |= MGMT_PHY_EDR_3M_3SLOT;
683
684 if (lmp_edr_5slot_capable(hdev))
685 supported_phys |= MGMT_PHY_EDR_3M_5SLOT;
686 }
687 }
688 }
689
690 if (lmp_le_capable(hdev)) {
691 supported_phys |= MGMT_PHY_LE_1M_TX;
692 supported_phys |= MGMT_PHY_LE_1M_RX;
693
694 if (hdev->le_features[1] & HCI_LE_PHY_2M) {
695 supported_phys |= MGMT_PHY_LE_2M_TX;
696 supported_phys |= MGMT_PHY_LE_2M_RX;
697 }
698
699 if (hdev->le_features[1] & HCI_LE_PHY_CODED) {
700 supported_phys |= MGMT_PHY_LE_CODED_TX;
701 supported_phys |= MGMT_PHY_LE_CODED_RX;
702 }
703 }
704
705 return supported_phys;
706}
707
708static u32 get_selected_phys(struct hci_dev *hdev)
709{
710 u32 selected_phys = 0;
711
712 if (lmp_bredr_capable(hdev)) {
713 selected_phys |= MGMT_PHY_BR_1M_1SLOT;
714
715 if (hdev->pkt_type & (HCI_DM3 | HCI_DH3))
716 selected_phys |= MGMT_PHY_BR_1M_3SLOT;
717
718 if (hdev->pkt_type & (HCI_DM5 | HCI_DH5))
719 selected_phys |= MGMT_PHY_BR_1M_5SLOT;
720
721 if (lmp_edr_2m_capable(hdev)) {
722 if (!(hdev->pkt_type & HCI_2DH1))
723 selected_phys |= MGMT_PHY_EDR_2M_1SLOT;
724
725 if (lmp_edr_3slot_capable(hdev) &&
726 !(hdev->pkt_type & HCI_2DH3))
727 selected_phys |= MGMT_PHY_EDR_2M_3SLOT;
728
729 if (lmp_edr_5slot_capable(hdev) &&
730 !(hdev->pkt_type & HCI_2DH5))
731 selected_phys |= MGMT_PHY_EDR_2M_5SLOT;
732
733 if (lmp_edr_3m_capable(hdev)) {
734 if (!(hdev->pkt_type & HCI_3DH1))
735 selected_phys |= MGMT_PHY_EDR_3M_1SLOT;
736
737 if (lmp_edr_3slot_capable(hdev) &&
738 !(hdev->pkt_type & HCI_3DH3))
739 selected_phys |= MGMT_PHY_EDR_3M_3SLOT;
740
741 if (lmp_edr_5slot_capable(hdev) &&
742 !(hdev->pkt_type & HCI_3DH5))
743 selected_phys |= MGMT_PHY_EDR_3M_5SLOT;
744 }
745 }
746 }
747
748 if (lmp_le_capable(hdev)) {
749 if (hdev->le_tx_def_phys & HCI_LE_SET_PHY_1M)
750 selected_phys |= MGMT_PHY_LE_1M_TX;
751
752 if (hdev->le_rx_def_phys & HCI_LE_SET_PHY_1M)
753 selected_phys |= MGMT_PHY_LE_1M_RX;
754
755 if (hdev->le_tx_def_phys & HCI_LE_SET_PHY_2M)
756 selected_phys |= MGMT_PHY_LE_2M_TX;
757
758 if (hdev->le_rx_def_phys & HCI_LE_SET_PHY_2M)
759 selected_phys |= MGMT_PHY_LE_2M_RX;
760
761 if (hdev->le_tx_def_phys & HCI_LE_SET_PHY_CODED)
762 selected_phys |= MGMT_PHY_LE_CODED_TX;
763
764 if (hdev->le_rx_def_phys & HCI_LE_SET_PHY_CODED)
765 selected_phys |= MGMT_PHY_LE_CODED_RX;
766 }
767
768 return selected_phys;
769}
770
771static u32 get_configurable_phys(struct hci_dev *hdev)
772{
773 return (get_supported_phys(hdev) & ~MGMT_PHY_BR_1M_1SLOT &
774 ~MGMT_PHY_LE_1M_TX & ~MGMT_PHY_LE_1M_RX);
775}
776
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200777static u32 get_supported_settings(struct hci_dev *hdev)
Johan Hedberg03811012010-12-08 00:21:06 +0200778{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200779 u32 settings = 0;
Johan Hedberg03811012010-12-08 00:21:06 +0200780
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200781 settings |= MGMT_SETTING_POWERED;
Johan Hedbergb2939472014-07-30 09:22:23 +0300782 settings |= MGMT_SETTING_BONDABLE;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800783 settings |= MGMT_SETTING_DEBUG_KEYS;
Johan Hedberg3742abf2014-07-08 16:07:34 +0300784 settings |= MGMT_SETTING_CONNECTABLE;
785 settings |= MGMT_SETTING_DISCOVERABLE;
Johan Hedberg03811012010-12-08 00:21:06 +0200786
Andre Guedesed3fa312012-07-24 15:03:46 -0300787 if (lmp_bredr_capable(hdev)) {
Johan Hedberg1a47aee2013-03-15 17:07:06 -0500788 if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
789 settings |= MGMT_SETTING_FAST_CONNECTABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200790 settings |= MGMT_SETTING_BREDR;
791 settings |= MGMT_SETTING_LINK_SECURITY;
Marcel Holtmanna82974c2013-10-11 09:48:47 -0700792
793 if (lmp_ssp_capable(hdev)) {
794 settings |= MGMT_SETTING_SSP;
Luiz Augusto von Dentzb560a202020-08-06 11:17:14 -0700795 if (IS_ENABLED(CONFIG_BT_HS))
796 settings |= MGMT_SETTING_HS;
Marcel Holtmanna82974c2013-10-11 09:48:47 -0700797 }
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800798
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -0800799 if (lmp_sc_capable(hdev))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800800 settings |= MGMT_SETTING_SECURE_CONN;
Alain Michaud4b127bd2020-02-27 18:29:39 +0000801
Alain Michaud00bce3f2020-03-05 16:14:59 +0000802 if (test_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED,
Alain Michaud4b127bd2020-02-27 18:29:39 +0000803 &hdev->quirks))
Alain Michaud00bce3f2020-03-05 16:14:59 +0000804 settings |= MGMT_SETTING_WIDEBAND_SPEECH;
Marcel Holtmann848566b2013-10-01 22:59:22 -0700805 }
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100806
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300807 if (lmp_le_capable(hdev)) {
Marcel Holtmann9d428202012-05-03 07:12:31 +0200808 settings |= MGMT_SETTING_LE;
Johan Hedberga3209692014-05-26 11:23:35 +0300809 settings |= MGMT_SETTING_SECURE_CONN;
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200810 settings |= MGMT_SETTING_PRIVACY;
Marcel Holtmann93690c22015-03-06 10:11:21 -0800811 settings |= MGMT_SETTING_STATIC_ADDRESS;
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +0530812
813 /* When the experimental feature for LL Privacy support is
814 * enabled, then advertising is no longer supported.
815 */
816 if (!hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
817 settings |= MGMT_SETTING_ADVERTISING;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300818 }
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200819
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200820 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
821 hdev->set_bdaddr)
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200822 settings |= MGMT_SETTING_CONFIGURATION;
823
Jaganath Kanakkassery62446912018-07-19 17:09:34 +0530824 settings |= MGMT_SETTING_PHY_CONFIGURATION;
825
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200826 return settings;
827}
Johan Hedbergebc99fe2011-01-04 11:54:26 +0200828
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200829static u32 get_current_settings(struct hci_dev *hdev)
830{
831 u32 settings = 0;
Johan Hedbergdc4fe302011-03-16 14:29:36 +0200832
Johan Hedbergf1f0eb02012-02-21 17:15:41 +0200833 if (hdev_is_powered(hdev))
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100834 settings |= MGMT_SETTING_POWERED;
835
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700836 if (hci_dev_test_flag(hdev, HCI_CONNECTABLE))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200837 settings |= MGMT_SETTING_CONNECTABLE;
838
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700839 if (hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE))
Johan Hedberg1a4d3c42013-03-15 17:07:08 -0500840 settings |= MGMT_SETTING_FAST_CONNECTABLE;
841
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700842 if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200843 settings |= MGMT_SETTING_DISCOVERABLE;
844
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700845 if (hci_dev_test_flag(hdev, HCI_BONDABLE))
Johan Hedbergb2939472014-07-30 09:22:23 +0300846 settings |= MGMT_SETTING_BONDABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200847
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700848 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200849 settings |= MGMT_SETTING_BREDR;
850
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700851 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200852 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200853
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700854 if (hci_dev_test_flag(hdev, HCI_LINK_SECURITY))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200855 settings |= MGMT_SETTING_LINK_SECURITY;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200856
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700857 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200858 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200859
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700860 if (hci_dev_test_flag(hdev, HCI_HS_ENABLED))
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200861 settings |= MGMT_SETTING_HS;
862
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700863 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300864 settings |= MGMT_SETTING_ADVERTISING;
865
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700866 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800867 settings |= MGMT_SETTING_SECURE_CONN;
868
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700869 if (hci_dev_test_flag(hdev, HCI_KEEP_DEBUG_KEYS))
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800870 settings |= MGMT_SETTING_DEBUG_KEYS;
871
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700872 if (hci_dev_test_flag(hdev, HCI_PRIVACY))
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200873 settings |= MGMT_SETTING_PRIVACY;
874
Marcel Holtmann93690c22015-03-06 10:11:21 -0800875 /* The current setting for static address has two purposes. The
876 * first is to indicate if the static address will be used and
877 * the second is to indicate if it is actually set.
878 *
879 * This means if the static address is not configured, this flag
Marcel Holtmann08dc0e982015-03-25 18:32:13 -0700880 * will never be set. If the address is configured, then if the
Marcel Holtmann93690c22015-03-06 10:11:21 -0800881 * address is actually used decides if the flag is set or not.
882 *
883 * For single mode LE only controllers and dual-mode controllers
884 * with BR/EDR disabled, the existence of the static address will
885 * be evaluated.
886 */
Marcel Holtmannb7cb93e2015-03-13 10:20:35 -0700887 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700888 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
Marcel Holtmann93690c22015-03-06 10:11:21 -0800889 !bacmp(&hdev->bdaddr, BDADDR_ANY)) {
890 if (bacmp(&hdev->static_addr, BDADDR_ANY))
891 settings |= MGMT_SETTING_STATIC_ADDRESS;
892 }
893
Alain Michaud00bce3f2020-03-05 16:14:59 +0000894 if (hci_dev_test_flag(hdev, HCI_WIDEBAND_SPEECH_ENABLED))
895 settings |= MGMT_SETTING_WIDEBAND_SPEECH;
896
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200897 return settings;
Johan Hedbergc542a062011-01-26 13:11:03 +0200898}
899
Johan Hedberg333ae952015-03-17 13:48:47 +0200900static struct mgmt_pending_cmd *pending_find(u16 opcode, struct hci_dev *hdev)
901{
902 return mgmt_pending_find(HCI_CHANNEL_CONTROL, opcode, hdev);
903}
904
Johan Hedberg333ae952015-03-17 13:48:47 +0200905static struct mgmt_pending_cmd *pending_find_data(u16 opcode,
906 struct hci_dev *hdev,
907 const void *data)
908{
909 return mgmt_pending_find_data(HCI_CHANNEL_CONTROL, opcode, hdev, data);
910}
911
Johan Hedbergf2252572015-11-18 12:49:20 +0200912u8 mgmt_get_adv_discov_flags(struct hci_dev *hdev)
Johan Hedberg9a43e252013-10-20 19:00:07 +0300913{
Johan Hedberg3b0602c2015-03-06 21:08:55 +0200914 struct mgmt_pending_cmd *cmd;
Johan Hedberg9a43e252013-10-20 19:00:07 +0300915
916 /* If there's a pending mgmt command the flags will not yet have
917 * their final values, so check for this first.
918 */
Johan Hedberg333ae952015-03-17 13:48:47 +0200919 cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg9a43e252013-10-20 19:00:07 +0300920 if (cmd) {
921 struct mgmt_mode *cp = cmd->param;
922 if (cp->val == 0x01)
923 return LE_AD_GENERAL;
924 else if (cp->val == 0x02)
925 return LE_AD_LIMITED;
926 } else {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700927 if (hci_dev_test_flag(hdev, HCI_LIMITED_DISCOVERABLE))
Johan Hedberg9a43e252013-10-20 19:00:07 +0300928 return LE_AD_LIMITED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700929 else if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE))
Johan Hedberg9a43e252013-10-20 19:00:07 +0300930 return LE_AD_GENERAL;
931 }
932
933 return 0;
934}
935
Johan Hedbergf2252572015-11-18 12:49:20 +0200936bool mgmt_get_connectable(struct hci_dev *hdev)
Arman Uguraye7a685d2015-03-25 18:53:40 -0700937{
938 struct mgmt_pending_cmd *cmd;
939
940 /* If there's a pending mgmt command the flag will not yet have
941 * it's final value, so check for this first.
942 */
943 cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
944 if (cmd) {
945 struct mgmt_mode *cp = cmd->param;
946
947 return cp->val;
948 }
949
950 return hci_dev_test_flag(hdev, HCI_CONNECTABLE);
951}
952
Johan Hedberg7d785252011-12-15 00:47:39 +0200953static void service_cache_off(struct work_struct *work)
954{
955 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300956 service_cache.work);
Johan Hedberg890ea892013-03-15 17:06:52 -0500957 struct hci_request req;
Johan Hedberg7d785252011-12-15 00:47:39 +0200958
Marcel Holtmanna69d8922015-03-13 02:11:05 -0700959 if (!hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE))
Johan Hedberg7d785252011-12-15 00:47:39 +0200960 return;
961
Johan Hedberg890ea892013-03-15 17:06:52 -0500962 hci_req_init(&req, hdev);
963
Johan Hedberg7d785252011-12-15 00:47:39 +0200964 hci_dev_lock(hdev);
965
Johan Hedbergb1a89172015-11-25 16:15:42 +0200966 __hci_req_update_eir(&req);
Johan Hedberg14bf5ea2015-11-22 19:00:22 +0200967 __hci_req_update_class(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +0200968
969 hci_dev_unlock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -0500970
971 hci_req_run(&req, NULL);
Johan Hedberg7d785252011-12-15 00:47:39 +0200972}
973
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200974static void rpa_expired(struct work_struct *work)
975{
976 struct hci_dev *hdev = container_of(work, struct hci_dev,
977 rpa_expired.work);
978 struct hci_request req;
979
Marcel Holtmann181d6952020-05-06 09:57:47 +0200980 bt_dev_dbg(hdev, "");
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200981
Marcel Holtmanna1536da2015-03-13 02:11:01 -0700982 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200983
Marcel Holtmannd7a5a112015-03-13 02:11:00 -0700984 if (!hci_dev_test_flag(hdev, HCI_ADVERTISING))
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200985 return;
986
987 /* The generation of a new RPA and programming it into the
Johan Hedbergf2252572015-11-18 12:49:20 +0200988 * controller happens in the hci_req_enable_advertising()
989 * function.
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200990 */
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200991 hci_req_init(&req, hdev);
Jaganath Kanakkasseryde181e82018-07-19 17:09:41 +0530992 if (ext_adv_capable(hdev))
993 __hci_req_start_ext_adv(&req, hdev->cur_adv_instance);
994 else
995 __hci_req_enable_advertising(&req);
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200996 hci_req_run(&req, NULL);
997}
998
Johan Hedberg6a919082012-02-28 06:17:26 +0200999static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +02001000{
Marcel Holtmann238be782015-03-13 02:11:06 -07001001 if (hci_dev_test_and_set_flag(hdev, HCI_MGMT))
Johan Hedberg6a919082012-02-28 06:17:26 +02001002 return;
1003
Johan Hedberg4f87da82012-03-02 19:55:56 +02001004 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001005 INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
Johan Hedberg7d785252011-12-15 00:47:39 +02001006
Johan Hedberg4f87da82012-03-02 19:55:56 +02001007 /* Non-mgmt controlled devices get this bit set
1008 * implicitly so that pairing works for them, however
1009 * for mgmt we require user-space to explicitly enable
1010 * it
1011 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001012 hci_dev_clear_flag(hdev, HCI_BONDABLE);
Johan Hedberg7d785252011-12-15 00:47:39 +02001013}
1014
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02001015static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001016 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +02001017{
1018 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +02001019
Marcel Holtmann181d6952020-05-06 09:57:47 +02001020 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg03811012010-12-08 00:21:06 +02001021
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001022 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001023
Johan Hedberg03811012010-12-08 00:21:06 +02001024 memset(&rp, 0, sizeof(rp));
1025
Johan Hedberg03811012010-12-08 00:21:06 +02001026 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001027
1028 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001029 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001030
1031 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
1032 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
1033
1034 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001035
1036 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +02001037 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001038
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001039 hci_dev_unlock(hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001040
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001041 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
1042 sizeof(rp));
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001043}
1044
MichaƂ Narajowskicde7a862016-09-19 20:25:53 +02001045static u16 append_eir_data_to_buf(struct hci_dev *hdev, u8 *eir)
1046{
1047 u16 eir_len = 0;
1048 size_t name_len;
1049
1050 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
1051 eir_len = eir_append_data(eir, eir_len, EIR_CLASS_OF_DEV,
1052 hdev->dev_class, 3);
1053
Szymon Janc6a9e90b2016-09-19 20:25:54 +02001054 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED))
1055 eir_len = eir_append_le16(eir, eir_len, EIR_APPEARANCE,
1056 hdev->appearance);
1057
MichaƂ Narajowskicde7a862016-09-19 20:25:53 +02001058 name_len = strlen(hdev->dev_name);
1059 eir_len = eir_append_data(eir, eir_len, EIR_NAME_COMPLETE,
1060 hdev->dev_name, name_len);
1061
1062 name_len = strlen(hdev->short_name);
1063 eir_len = eir_append_data(eir, eir_len, EIR_NAME_SHORT,
1064 hdev->short_name, name_len);
1065
1066 return eir_len;
1067}
1068
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02001069static int read_ext_controller_info(struct sock *sk, struct hci_dev *hdev,
1070 void *data, u16 data_len)
1071{
Szymon Janc7d5c11d2016-09-19 20:25:52 +02001072 char buf[512];
1073 struct mgmt_rp_read_ext_info *rp = (void *)buf;
MichaƂ Narajowskicde7a862016-09-19 20:25:53 +02001074 u16 eir_len;
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02001075
Marcel Holtmann181d6952020-05-06 09:57:47 +02001076 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02001077
Szymon Janc7d5c11d2016-09-19 20:25:52 +02001078 memset(&buf, 0, sizeof(buf));
1079
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02001080 hci_dev_lock(hdev);
1081
MichaƂ Narajowski8a0c9f42016-09-01 16:46:24 +02001082 bacpy(&rp->bdaddr, &hdev->bdaddr);
1083
1084 rp->version = hdev->hci_ver;
1085 rp->manufacturer = cpu_to_le16(hdev->manufacturer);
1086
1087 rp->supported_settings = cpu_to_le32(get_supported_settings(hdev));
1088 rp->current_settings = cpu_to_le32(get_current_settings(hdev));
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02001089
Szymon Janc7d5c11d2016-09-19 20:25:52 +02001090
MichaƂ Narajowskicde7a862016-09-19 20:25:53 +02001091 eir_len = append_eir_data_to_buf(hdev, rp->eir);
Szymon Janc7d5c11d2016-09-19 20:25:52 +02001092 rp->eir_len = cpu_to_le16(eir_len);
1093
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02001094 hci_dev_unlock(hdev);
1095
1096 /* If this command is called at least once, then the events
1097 * for class of device and local name changes are disabled
1098 * and only the new extended controller information event
1099 * is used.
1100 */
1101 hci_sock_set_flag(sk, HCI_MGMT_EXT_INFO_EVENTS);
1102 hci_sock_clear_flag(sk, HCI_MGMT_DEV_CLASS_EVENTS);
1103 hci_sock_clear_flag(sk, HCI_MGMT_LOCAL_NAME_EVENTS);
1104
MichaƂ Narajowski8a0c9f42016-09-01 16:46:24 +02001105 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_EXT_INFO, 0, rp,
1106 sizeof(*rp) + eir_len);
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02001107}
1108
1109static int ext_info_changed(struct hci_dev *hdev, struct sock *skip)
1110{
MichaƂ Narajowski5e9fae42016-09-19 20:25:55 +02001111 char buf[512];
1112 struct mgmt_ev_ext_info_changed *ev = (void *)buf;
1113 u16 eir_len;
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02001114
MichaƂ Narajowski5e9fae42016-09-19 20:25:55 +02001115 memset(buf, 0, sizeof(buf));
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02001116
MichaƂ Narajowski5e9fae42016-09-19 20:25:55 +02001117 eir_len = append_eir_data_to_buf(hdev, ev->eir);
1118 ev->eir_len = cpu_to_le16(eir_len);
1119
1120 return mgmt_limited_event(MGMT_EV_EXT_INFO_CHANGED, hdev, ev,
1121 sizeof(*ev) + eir_len,
1122 HCI_MGMT_EXT_INFO_EVENTS, skip);
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02001123}
1124
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001125static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +02001126{
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001127 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +02001128
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001129 return mgmt_cmd_complete(sk, hdev->id, opcode, 0, &settings,
1130 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +02001131}
1132
Marcel Holtmann1904a852015-01-11 13:50:44 -08001133static void clean_up_hci_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg8b064a32014-02-24 14:52:22 +02001134{
Marcel Holtmann181d6952020-05-06 09:57:47 +02001135 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001136
Johan Hedberga3172b72014-02-28 09:33:44 +02001137 if (hci_conn_count(hdev) == 0) {
1138 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001139 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02001140 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001141}
1142
Johan Hedbergf2252572015-11-18 12:49:20 +02001143void mgmt_advertising_added(struct sock *sk, struct hci_dev *hdev, u8 instance)
Arman Uguray912098a2015-03-23 15:57:15 -07001144{
1145 struct mgmt_ev_advertising_added ev;
1146
1147 ev.instance = instance;
1148
1149 mgmt_event(MGMT_EV_ADVERTISING_ADDED, hdev, &ev, sizeof(ev), sk);
1150}
1151
Johan Hedbergf2252572015-11-18 12:49:20 +02001152void mgmt_advertising_removed(struct sock *sk, struct hci_dev *hdev,
1153 u8 instance)
Arman Uguray912098a2015-03-23 15:57:15 -07001154{
1155 struct mgmt_ev_advertising_removed ev;
1156
1157 ev.instance = instance;
1158
1159 mgmt_event(MGMT_EV_ADVERTISING_REMOVED, hdev, &ev, sizeof(ev), sk);
1160}
1161
Florian Grandel7816b822015-06-18 03:16:45 +02001162static void cancel_adv_timeout(struct hci_dev *hdev)
1163{
1164 if (hdev->adv_instance_timeout) {
1165 hdev->adv_instance_timeout = 0;
1166 cancel_delayed_work(&hdev->adv_instance_expire);
1167 }
1168}
1169
Johan Hedberg8b064a32014-02-24 14:52:22 +02001170static int clean_up_hci_state(struct hci_dev *hdev)
1171{
1172 struct hci_request req;
1173 struct hci_conn *conn;
Johan Hedberg23a48092014-07-08 16:05:06 +03001174 bool discov_stopped;
1175 int err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001176
1177 hci_req_init(&req, hdev);
1178
1179 if (test_bit(HCI_ISCAN, &hdev->flags) ||
1180 test_bit(HCI_PSCAN, &hdev->flags)) {
1181 u8 scan = 0x00;
1182 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1183 }
1184
Johan Hedberg37d3a1f2016-08-28 20:53:34 +03001185 hci_req_clear_adv_instance(hdev, NULL, NULL, 0x00, false);
Arman Uguray912098a2015-03-23 15:57:15 -07001186
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001187 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Johan Hedbergf2252572015-11-18 12:49:20 +02001188 __hci_req_disable_advertising(&req);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001189
Johan Hedberg2154d3f2015-11-11 08:30:45 +02001190 discov_stopped = hci_req_stop_discovery(&req);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001191
1192 list_for_each_entry(conn, &hdev->conn_hash.list, list) {
Johan Hedberg89e0ccc2015-10-22 10:49:38 +03001193 /* 0x15 == Terminated due to Power Off */
1194 __hci_abort_conn(&req, conn, 0x15);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001195 }
1196
Johan Hedberg23a48092014-07-08 16:05:06 +03001197 err = hci_req_run(&req, clean_up_hci_complete);
1198 if (!err && discov_stopped)
1199 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
1200
1201 return err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001202}
1203
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001204static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001205 u16 len)
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001206{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001207 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001208 struct mgmt_pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001209 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001210
Marcel Holtmann181d6952020-05-06 09:57:47 +02001211 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001212
Johan Hedberga7e80f22013-01-09 16:05:19 +02001213 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001214 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1215 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001216
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001217 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001218
Johan Hedberg333ae952015-03-17 13:48:47 +02001219 if (pending_find(MGMT_OP_SET_POWERED, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001220 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1221 MGMT_STATUS_BUSY);
Johan Hedberg87b95ba2013-09-25 13:26:06 +03001222 goto failed;
1223 }
1224
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001225 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001226 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001227 goto failed;
1228 }
1229
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001230 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1231 if (!cmd) {
1232 err = -ENOMEM;
1233 goto failed;
1234 }
1235
Johan Hedberg8b064a32014-02-24 14:52:22 +02001236 if (cp->val) {
Johan Hedberg19202572013-01-14 22:33:51 +02001237 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001238 err = 0;
1239 } else {
1240 /* Disconnect connections, stop scans, etc */
1241 err = clean_up_hci_state(hdev);
Johan Hedberga3172b72014-02-28 09:33:44 +02001242 if (!err)
1243 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1244 HCI_POWER_OFF_TIMEOUT);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001245
Johan Hedberg8b064a32014-02-24 14:52:22 +02001246 /* ENODATA means there were no HCI commands queued */
1247 if (err == -ENODATA) {
Johan Hedberga3172b72014-02-28 09:33:44 +02001248 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001249 queue_work(hdev->req_workqueue, &hdev->power_off.work);
1250 err = 0;
1251 }
1252 }
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001253
1254failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001255 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001256 return err;
1257}
1258
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001259static int new_settings(struct hci_dev *hdev, struct sock *skip)
1260{
Marcel Holtmannf6b77122015-03-14 19:28:05 -07001261 __le32 ev = cpu_to_le32(get_current_settings(hdev));
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001262
Marcel Holtmann5504c3a2016-08-29 06:19:46 +02001263 return mgmt_limited_event(MGMT_EV_NEW_SETTINGS, hdev, &ev,
1264 sizeof(ev), HCI_MGMT_SETTING_EVENTS, skip);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001265}
1266
Johan Hedberg91a668b2014-07-09 13:28:26 +03001267int mgmt_new_settings(struct hci_dev *hdev)
1268{
1269 return new_settings(hdev, NULL);
1270}
1271
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001272struct cmd_lookup {
1273 struct sock *sk;
1274 struct hci_dev *hdev;
1275 u8 mgmt_status;
1276};
1277
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001278static void settings_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001279{
1280 struct cmd_lookup *match = data;
1281
1282 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
1283
1284 list_del(&cmd->list);
1285
1286 if (match->sk == NULL) {
1287 match->sk = cmd->sk;
1288 sock_hold(match->sk);
1289 }
1290
1291 mgmt_pending_free(cmd);
1292}
1293
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001294static void cmd_status_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001295{
1296 u8 *status = data;
1297
Johan Hedberga69e8372015-03-06 21:08:53 +02001298 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001299 mgmt_pending_remove(cmd);
1300}
1301
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001302static void cmd_complete_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg1b9b5ee2014-12-05 13:36:00 +02001303{
1304 if (cmd->cmd_complete) {
1305 u8 *status = data;
1306
1307 cmd->cmd_complete(cmd, *status);
1308 mgmt_pending_remove(cmd);
1309
1310 return;
1311 }
1312
1313 cmd_status_rsp(cmd, data);
1314}
1315
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001316static int generic_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedbergf5818c22014-12-05 13:36:02 +02001317{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001318 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1319 cmd->param, cmd->param_len);
Johan Hedbergf5818c22014-12-05 13:36:02 +02001320}
1321
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001322static int addr_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001323{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02001324 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1325 cmd->param, sizeof(struct mgmt_addr_info));
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001326}
1327
Johan Hedberge6fe7982013-10-02 15:45:22 +03001328static u8 mgmt_bredr_support(struct hci_dev *hdev)
1329{
1330 if (!lmp_bredr_capable(hdev))
1331 return MGMT_STATUS_NOT_SUPPORTED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001332 else if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberge6fe7982013-10-02 15:45:22 +03001333 return MGMT_STATUS_REJECTED;
1334 else
1335 return MGMT_STATUS_SUCCESS;
1336}
1337
1338static u8 mgmt_le_support(struct hci_dev *hdev)
1339{
1340 if (!lmp_le_capable(hdev))
1341 return MGMT_STATUS_NOT_SUPPORTED;
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001342 else if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberge6fe7982013-10-02 15:45:22 +03001343 return MGMT_STATUS_REJECTED;
1344 else
1345 return MGMT_STATUS_SUCCESS;
1346}
1347
Johan Hedbergaed1a882015-11-22 17:24:44 +03001348void mgmt_set_discoverable_complete(struct hci_dev *hdev, u8 status)
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001349{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001350 struct mgmt_pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001351
Marcel Holtmann181d6952020-05-06 09:57:47 +02001352 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001353
1354 hci_dev_lock(hdev);
1355
Johan Hedberg333ae952015-03-17 13:48:47 +02001356 cmd = pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001357 if (!cmd)
1358 goto unlock;
1359
1360 if (status) {
1361 u8 mgmt_err = mgmt_status(status);
Johan Hedberga69e8372015-03-06 21:08:53 +02001362 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001363 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001364 goto remove_cmd;
1365 }
1366
Johan Hedbergaed1a882015-11-22 17:24:44 +03001367 if (hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
1368 hdev->discov_timeout > 0) {
1369 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1370 queue_delayed_work(hdev->req_workqueue, &hdev->discov_off, to);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001371 }
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001372
1373 send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergaed1a882015-11-22 17:24:44 +03001374 new_settings(hdev, cmd->sk);
Marcel Holtmann970ba522013-10-15 06:33:57 -07001375
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001376remove_cmd:
1377 mgmt_pending_remove(cmd);
1378
1379unlock:
1380 hci_dev_unlock(hdev);
1381}
1382
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001383static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001384 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02001385{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001386 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001387 struct mgmt_pending_cmd *cmd;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001388 u16 timeout;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001389 int err;
1390
Marcel Holtmann181d6952020-05-06 09:57:47 +02001391 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg73f22f62010-12-29 16:00:25 +02001392
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001393 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
1394 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02001395 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1396 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001397
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001398 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02001399 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1400 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001401
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001402 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001403
1404 /* Disabling discoverable requires that no timeout is set,
1405 * and enabling limited discoverable requires a timeout.
1406 */
1407 if ((cp->val == 0x00 && timeout > 0) ||
1408 (cp->val == 0x02 && timeout == 0))
Johan Hedberga69e8372015-03-06 21:08:53 +02001409 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1410 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001411
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001412 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001413
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001414 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001415 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1416 MGMT_STATUS_NOT_POWERED);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001417 goto failed;
1418 }
1419
Johan Hedberg333ae952015-03-17 13:48:47 +02001420 if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
1421 pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001422 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1423 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001424 goto failed;
1425 }
1426
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001427 if (!hci_dev_test_flag(hdev, HCI_CONNECTABLE)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001428 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1429 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001430 goto failed;
1431 }
1432
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07001433 if (hdev->advertising_paused) {
1434 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1435 MGMT_STATUS_BUSY);
1436 goto failed;
1437 }
1438
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001439 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001440 bool changed = false;
1441
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001442 /* Setting limited discoverable when powered off is
1443 * not a valid operation since it requires a timeout
1444 * and so no need to check HCI_LIMITED_DISCOVERABLE.
1445 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001446 if (!!cp->val != hci_dev_test_flag(hdev, HCI_DISCOVERABLE)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07001447 hci_dev_change_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001448 changed = true;
1449 }
1450
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001451 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001452 if (err < 0)
1453 goto failed;
1454
1455 if (changed)
1456 err = new_settings(hdev, sk);
1457
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001458 goto failed;
1459 }
1460
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001461 /* If the current mode is the same, then just update the timeout
1462 * value with the new value. And if only the timeout gets updated,
1463 * then no need for any HCI transactions.
1464 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001465 if (!!cp->val == hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
1466 (cp->val == 0x02) == hci_dev_test_flag(hdev,
1467 HCI_LIMITED_DISCOVERABLE)) {
Marcel Holtmann36261542013-10-15 08:28:51 -07001468 cancel_delayed_work(&hdev->discov_off);
1469 hdev->discov_timeout = timeout;
Marcel Holtmann955638e2012-02-22 18:21:00 +01001470
Marcel Holtmann36261542013-10-15 08:28:51 -07001471 if (cp->val && hdev->discov_timeout > 0) {
1472 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
Johan Hedbergc366f552015-11-23 15:43:06 +02001473 queue_delayed_work(hdev->req_workqueue,
1474 &hdev->discov_off, to);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001475 }
1476
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001477 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001478 goto failed;
1479 }
1480
1481 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1482 if (!cmd) {
1483 err = -ENOMEM;
1484 goto failed;
1485 }
1486
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001487 /* Cancel any potential discoverable timeout that might be
1488 * still active and store new timeout value. The arming of
1489 * the timeout happens in the complete handler.
1490 */
1491 cancel_delayed_work(&hdev->discov_off);
1492 hdev->discov_timeout = timeout;
1493
Johan Hedbergaed1a882015-11-22 17:24:44 +03001494 if (cp->val)
1495 hci_dev_set_flag(hdev, HCI_DISCOVERABLE);
1496 else
1497 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
1498
Johan Hedbergb456f872013-10-19 23:38:22 +03001499 /* Limited discoverable mode */
1500 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07001501 hci_dev_set_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergb456f872013-10-19 23:38:22 +03001502 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001503 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
Johan Hedbergb456f872013-10-19 23:38:22 +03001504
Johan Hedbergaed1a882015-11-22 17:24:44 +03001505 queue_work(hdev->req_workqueue, &hdev->discoverable_update);
1506 err = 0;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001507
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001508failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001509 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001510 return err;
1511}
Johan Hedberg73f22f62010-12-29 16:00:25 +02001512
Johan Hedberg53c0ba72015-11-22 16:43:43 +03001513void mgmt_set_connectable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg2b76f452013-03-15 17:07:04 -05001514{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001515 struct mgmt_pending_cmd *cmd;
Johan Hedberg2b76f452013-03-15 17:07:04 -05001516
Marcel Holtmann181d6952020-05-06 09:57:47 +02001517 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedberg2b76f452013-03-15 17:07:04 -05001518
1519 hci_dev_lock(hdev);
1520
Johan Hedberg333ae952015-03-17 13:48:47 +02001521 cmd = pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberg2b76f452013-03-15 17:07:04 -05001522 if (!cmd)
1523 goto unlock;
1524
Johan Hedberg37438c12013-10-14 16:20:05 +03001525 if (status) {
1526 u8 mgmt_err = mgmt_status(status);
Johan Hedberga69e8372015-03-06 21:08:53 +02001527 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg37438c12013-10-14 16:20:05 +03001528 goto remove_cmd;
1529 }
1530
Johan Hedberg2b76f452013-03-15 17:07:04 -05001531 send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);
Johan Hedberg53c0ba72015-11-22 16:43:43 +03001532 new_settings(hdev, cmd->sk);
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001533
Johan Hedberg37438c12013-10-14 16:20:05 +03001534remove_cmd:
Johan Hedberg2b76f452013-03-15 17:07:04 -05001535 mgmt_pending_remove(cmd);
1536
1537unlock:
1538 hci_dev_unlock(hdev);
1539}
1540
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03001541static int set_connectable_update_settings(struct hci_dev *hdev,
1542 struct sock *sk, u8 val)
1543{
1544 bool changed = false;
1545 int err;
1546
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001547 if (!!val != hci_dev_test_flag(hdev, HCI_CONNECTABLE))
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03001548 changed = true;
1549
1550 if (val) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07001551 hci_dev_set_flag(hdev, HCI_CONNECTABLE);
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03001552 } else {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001553 hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
1554 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03001555 }
1556
1557 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
1558 if (err < 0)
1559 return err;
1560
Johan Hedberg562064e2014-07-08 16:35:34 +03001561 if (changed) {
Johan Hedberg01b1cb82015-11-16 12:52:21 +02001562 hci_req_update_scan(hdev);
Johan Hedberg562064e2014-07-08 16:35:34 +03001563 hci_update_background_scan(hdev);
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03001564 return new_settings(hdev, sk);
Johan Hedberg562064e2014-07-08 16:35:34 +03001565 }
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03001566
1567 return 0;
1568}
1569
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001570static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001571 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02001572{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001573 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001574 struct mgmt_pending_cmd *cmd;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001575 int err;
1576
Marcel Holtmann181d6952020-05-06 09:57:47 +02001577 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg73f22f62010-12-29 16:00:25 +02001578
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001579 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED) &&
1580 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02001581 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
1582 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001583
Johan Hedberga7e80f22013-01-09 16:05:19 +02001584 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001585 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
1586 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001587
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001588 hci_dev_lock(hdev);
Johan Hedberg73f22f62010-12-29 16:00:25 +02001589
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001590 if (!hdev_is_powered(hdev)) {
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03001591 err = set_connectable_update_settings(hdev, sk, cp->val);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02001592 goto failed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001593 }
1594
Johan Hedberg333ae952015-03-17 13:48:47 +02001595 if (pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
1596 pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001597 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
1598 MGMT_STATUS_BUSY);
Johan Hedberg73f22f62010-12-29 16:00:25 +02001599 goto failed;
1600 }
1601
Johan Hedberg73f22f62010-12-29 16:00:25 +02001602 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
1603 if (!cmd) {
1604 err = -ENOMEM;
Johan Hedberg72a734e2010-12-30 00:38:22 +02001605 goto failed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001606 }
1607
Johan Hedberg53c0ba72015-11-22 16:43:43 +03001608 if (cp->val) {
1609 hci_dev_set_flag(hdev, HCI_CONNECTABLE);
1610 } else {
1611 if (hdev->discov_timeout > 0)
1612 cancel_delayed_work(&hdev->discov_off);
Johan Hedberg2b76f452013-03-15 17:07:04 -05001613
Johan Hedberg53c0ba72015-11-22 16:43:43 +03001614 hci_dev_clear_flag(hdev, HCI_LIMITED_DISCOVERABLE);
1615 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
1616 hci_dev_clear_flag(hdev, HCI_CONNECTABLE);
Johan Hedberg9b742462013-10-14 16:20:03 +03001617 }
Johan Hedberg2b76f452013-03-15 17:07:04 -05001618
Johan Hedberg53c0ba72015-11-22 16:43:43 +03001619 queue_work(hdev->req_workqueue, &hdev->connectable_update);
1620 err = 0;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001621
1622failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001623 hci_dev_unlock(hdev);
Johan Hedberg72a734e2010-12-30 00:38:22 +02001624 return err;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02001625}
1626
Johan Hedbergb2939472014-07-30 09:22:23 +03001627static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001628 u16 len)
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02001629{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001630 struct mgmt_mode *cp = data;
Marcel Holtmann55594352013-10-06 16:11:57 -07001631 bool changed;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02001632 int err;
1633
Marcel Holtmann181d6952020-05-06 09:57:47 +02001634 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02001635
Johan Hedberga7e80f22013-01-09 16:05:19 +02001636 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001637 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE,
1638 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001639
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001640 hci_dev_lock(hdev);
Johan Hedberg053f0212011-01-26 13:07:10 +02001641
1642 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07001643 changed = !hci_dev_test_and_set_flag(hdev, HCI_BONDABLE);
Johan Hedberg053f0212011-01-26 13:07:10 +02001644 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001645 changed = hci_dev_test_and_clear_flag(hdev, HCI_BONDABLE);
Johan Hedberg053f0212011-01-26 13:07:10 +02001646
Johan Hedbergb2939472014-07-30 09:22:23 +03001647 err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
Johan Hedberg053f0212011-01-26 13:07:10 +02001648 if (err < 0)
Marcel Holtmann55594352013-10-06 16:11:57 -07001649 goto unlock;
Johan Hedberg053f0212011-01-26 13:07:10 +02001650
Johan Hedberg82a37ad2016-03-09 17:30:34 +02001651 if (changed) {
1652 /* In limited privacy mode the change of bondable mode
1653 * may affect the local advertising address.
1654 */
1655 if (hdev_is_powered(hdev) &&
1656 hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
1657 hci_dev_test_flag(hdev, HCI_DISCOVERABLE) &&
1658 hci_dev_test_flag(hdev, HCI_LIMITED_PRIVACY))
1659 queue_work(hdev->req_workqueue,
1660 &hdev->discoverable_update);
1661
Marcel Holtmann55594352013-10-06 16:11:57 -07001662 err = new_settings(hdev, sk);
Johan Hedberg82a37ad2016-03-09 17:30:34 +02001663 }
Johan Hedberg053f0212011-01-26 13:07:10 +02001664
Marcel Holtmann55594352013-10-06 16:11:57 -07001665unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001666 hci_dev_unlock(hdev);
Johan Hedberg053f0212011-01-26 13:07:10 +02001667 return err;
1668}
1669
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001670static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
1671 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001672{
1673 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001674 struct mgmt_pending_cmd *cmd;
Johan Hedberge6fe7982013-10-02 15:45:22 +03001675 u8 val, status;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001676 int err;
1677
Marcel Holtmann181d6952020-05-06 09:57:47 +02001678 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001679
Johan Hedberge6fe7982013-10-02 15:45:22 +03001680 status = mgmt_bredr_support(hdev);
1681 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02001682 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1683 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001684
Johan Hedberga7e80f22013-01-09 16:05:19 +02001685 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001686 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1687 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001688
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001689 hci_dev_lock(hdev);
1690
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001691 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001692 bool changed = false;
1693
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001694 if (!!cp->val != hci_dev_test_flag(hdev, HCI_LINK_SECURITY)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07001695 hci_dev_change_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02001696 changed = true;
1697 }
1698
1699 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1700 if (err < 0)
1701 goto failed;
1702
1703 if (changed)
1704 err = new_settings(hdev, sk);
1705
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001706 goto failed;
1707 }
1708
Johan Hedberg333ae952015-03-17 13:48:47 +02001709 if (pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001710 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1711 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001712 goto failed;
1713 }
1714
1715 val = !!cp->val;
1716
1717 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
1718 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1719 goto failed;
1720 }
1721
1722 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
1723 if (!cmd) {
1724 err = -ENOMEM;
1725 goto failed;
1726 }
1727
1728 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
1729 if (err < 0) {
1730 mgmt_pending_remove(cmd);
1731 goto failed;
1732 }
1733
1734failed:
1735 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001736 return err;
1737}
1738
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001739static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001740{
1741 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001742 struct mgmt_pending_cmd *cmd;
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07001743 u8 status;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001744 int err;
1745
Marcel Holtmann181d6952020-05-06 09:57:47 +02001746 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001747
Marcel Holtmanncdba5282013-10-02 21:31:52 -07001748 status = mgmt_bredr_support(hdev);
1749 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02001750 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
Marcel Holtmanncdba5282013-10-02 21:31:52 -07001751
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001752 if (!lmp_ssp_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02001753 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1754 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001755
Johan Hedberga7e80f22013-01-09 16:05:19 +02001756 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001757 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1758 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001759
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001760 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02001761
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001762 if (!hdev_is_powered(hdev)) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001763 bool changed;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001764
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001765 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07001766 changed = !hci_dev_test_and_set_flag(hdev,
1767 HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001768 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001769 changed = hci_dev_test_and_clear_flag(hdev,
1770 HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001771 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001772 changed = hci_dev_test_and_clear_flag(hdev,
1773 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001774 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001775 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001776 }
1777
1778 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1779 if (err < 0)
1780 goto failed;
1781
1782 if (changed)
1783 err = new_settings(hdev, sk);
1784
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001785 goto failed;
1786 }
1787
Johan Hedberg333ae952015-03-17 13:48:47 +02001788 if (pending_find(MGMT_OP_SET_SSP, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001789 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1790 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001791 goto failed;
1792 }
1793
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001794 if (!!cp->val == hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001795 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1796 goto failed;
1797 }
1798
1799 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
1800 if (!cmd) {
1801 err = -ENOMEM;
1802 goto failed;
1803 }
1804
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001805 if (!cp->val && hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03001806 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
1807 sizeof(cp->val), &cp->val);
1808
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07001809 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001810 if (err < 0) {
1811 mgmt_pending_remove(cmd);
1812 goto failed;
1813 }
1814
1815failed:
1816 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001817 return err;
1818}
1819
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001820static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001821{
1822 struct mgmt_mode *cp = data;
Marcel Holtmannee392692013-10-01 22:59:23 -07001823 bool changed;
Johan Hedberge6fe7982013-10-02 15:45:22 +03001824 u8 status;
Marcel Holtmannee392692013-10-01 22:59:23 -07001825 int err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001826
Marcel Holtmann181d6952020-05-06 09:57:47 +02001827 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001828
Luiz Augusto von Dentzb560a202020-08-06 11:17:14 -07001829 if (!IS_ENABLED(CONFIG_BT_HS))
1830 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1831 MGMT_STATUS_NOT_SUPPORTED);
1832
Johan Hedberge6fe7982013-10-02 15:45:22 +03001833 status = mgmt_bredr_support(hdev);
1834 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02001835 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001836
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001837 if (!lmp_ssp_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02001838 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1839 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001840
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001841 if (!hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02001842 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1843 MGMT_STATUS_REJECTED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001844
Johan Hedberga7e80f22013-01-09 16:05:19 +02001845 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001846 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1847 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001848
Marcel Holtmannee392692013-10-01 22:59:23 -07001849 hci_dev_lock(hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001850
Johan Hedberg333ae952015-03-17 13:48:47 +02001851 if (pending_find(MGMT_OP_SET_SSP, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001852 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1853 MGMT_STATUS_BUSY);
Johan Hedberga2cb01d2015-02-19 17:38:07 +02001854 goto unlock;
1855 }
1856
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001857 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07001858 changed = !hci_dev_test_and_set_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001859 } else {
1860 if (hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001861 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1862 MGMT_STATUS_REJECTED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001863 goto unlock;
1864 }
1865
Marcel Holtmanna69d8922015-03-13 02:11:05 -07001866 changed = hci_dev_test_and_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001867 }
Marcel Holtmannee392692013-10-01 22:59:23 -07001868
1869 err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
1870 if (err < 0)
1871 goto unlock;
1872
1873 if (changed)
1874 err = new_settings(hdev, sk);
1875
1876unlock:
1877 hci_dev_unlock(hdev);
1878 return err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001879}
1880
Marcel Holtmann1904a852015-01-11 13:50:44 -08001881static void le_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001882{
1883 struct cmd_lookup match = { NULL, hdev };
1884
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05301885 hci_dev_lock(hdev);
1886
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001887 if (status) {
1888 u8 mgmt_err = mgmt_status(status);
1889
1890 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
1891 &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05301892 goto unlock;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001893 }
1894
1895 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
1896
1897 new_settings(hdev, match.sk);
1898
1899 if (match.sk)
1900 sock_put(match.sk);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001901
1902 /* Make sure the controller has a good default for
1903 * advertising data. Restrict the update to when LE
1904 * has actually been enabled. During power on, the
1905 * update in powered_update_hci will take care of it.
1906 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001907 if (hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001908 struct hci_request req;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001909 hci_req_init(&req, hdev);
Jaganath Kanakkasserya0fb3722018-07-19 17:09:42 +05301910 if (ext_adv_capable(hdev)) {
1911 int err;
1912
1913 err = __hci_req_setup_ext_adv_instance(&req, 0x00);
1914 if (!err)
1915 __hci_req_update_scan_rsp_data(&req, 0x00);
1916 } else {
1917 __hci_req_update_adv_data(&req, 0x00);
1918 __hci_req_update_scan_rsp_data(&req, 0x00);
1919 }
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001920 hci_req_run(&req, NULL);
Johan Hedberg2e93e532015-11-11 08:11:17 +02001921 hci_update_background_scan(hdev);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001922 }
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05301923
1924unlock:
1925 hci_dev_unlock(hdev);
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001926}
1927
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001928static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001929{
1930 struct mgmt_mode *cp = data;
1931 struct hci_cp_write_le_host_supported hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02001932 struct mgmt_pending_cmd *cmd;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001933 struct hci_request req;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001934 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001935 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001936
Marcel Holtmann181d6952020-05-06 09:57:47 +02001937 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001938
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001939 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02001940 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1941 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001942
Johan Hedberga7e80f22013-01-09 16:05:19 +02001943 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02001944 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1945 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02001946
Marcel Holtmanne7844ee2015-03-18 16:15:07 -07001947 /* Bluetooth single mode LE only controllers or dual-mode
1948 * controllers configured as LE only devices, do not allow
1949 * switching LE off. These have either LE enabled explicitly
1950 * or BR/EDR has been previously switched off.
1951 *
1952 * When trying to enable an already enabled LE, then gracefully
1953 * send a positive response. Trying to disable it however will
1954 * result into rejection.
1955 */
1956 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
1957 if (cp->val == 0x01)
1958 return send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
1959
Johan Hedberga69e8372015-03-06 21:08:53 +02001960 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1961 MGMT_STATUS_REJECTED);
Marcel Holtmanne7844ee2015-03-18 16:15:07 -07001962 }
Johan Hedbergc73eee92013-04-19 18:35:21 +03001963
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001964 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001965
1966 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02001967 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001968
Florian Grandel847818d2015-06-18 03:16:46 +02001969 if (!val)
Johan Hedberg37d3a1f2016-08-28 20:53:34 +03001970 hci_req_clear_adv_instance(hdev, NULL, NULL, 0x00, true);
Florian Grandel847818d2015-06-18 03:16:46 +02001971
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001972 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02001973 bool changed = false;
1974
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001975 if (val != hci_dev_test_flag(hdev, HCI_LE_ENABLED)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07001976 hci_dev_change_flag(hdev, HCI_LE_ENABLED);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001977 changed = true;
1978 }
1979
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07001980 if (!val && hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07001981 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03001982 changed = true;
1983 }
1984
Johan Hedberg06199cf2012-02-22 16:37:11 +02001985 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
1986 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08001987 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001988
1989 if (changed)
1990 err = new_settings(hdev, sk);
1991
Johan Hedberg1de028c2012-02-29 19:55:35 -08001992 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001993 }
1994
Johan Hedberg333ae952015-03-17 13:48:47 +02001995 if (pending_find(MGMT_OP_SET_LE, hdev) ||
1996 pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02001997 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1998 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001999 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002000 }
2001
2002 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
2003 if (!cmd) {
2004 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08002005 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002006 }
2007
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002008 hci_req_init(&req, hdev);
2009
Johan Hedberg06199cf2012-02-22 16:37:11 +02002010 memset(&hci_cp, 0, sizeof(hci_cp));
2011
2012 if (val) {
2013 hci_cp.le = val;
Marcel Holtmann32226e42014-07-24 20:04:16 +02002014 hci_cp.simul = 0x00;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002015 } else {
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07002016 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Johan Hedbergf2252572015-11-18 12:49:20 +02002017 __hci_req_disable_advertising(&req);
Jaganath Kanakkassery45b77492018-07-19 17:09:43 +05302018
2019 if (ext_adv_capable(hdev))
2020 __hci_req_clear_ext_adv_sets(&req);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002021 }
2022
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002023 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
2024 &hci_cp);
2025
2026 err = hci_req_run(&req, le_enable_complete);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05302027 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002028 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002029
Johan Hedberg1de028c2012-02-29 19:55:35 -08002030unlock:
2031 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002032 return err;
2033}
2034
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002035/* This is a helper function to test for pending mgmt commands that can
2036 * cause CoD or EIR HCI commands. We can only allow one such pending
2037 * mgmt command at a time since otherwise we cannot easily track what
2038 * the current values are, will be, and based on that calculate if a new
2039 * HCI command needs to be sent and if yes with what value.
2040 */
2041static bool pending_eir_or_class(struct hci_dev *hdev)
2042{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002043 struct mgmt_pending_cmd *cmd;
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002044
2045 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
2046 switch (cmd->opcode) {
2047 case MGMT_OP_ADD_UUID:
2048 case MGMT_OP_REMOVE_UUID:
2049 case MGMT_OP_SET_DEV_CLASS:
2050 case MGMT_OP_SET_POWERED:
2051 return true;
2052 }
2053 }
2054
2055 return false;
2056}
2057
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002058static const u8 bluetooth_base_uuid[] = {
2059 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
2060 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2061};
2062
2063static u8 get_uuid_size(const u8 *uuid)
2064{
2065 u32 val;
2066
2067 if (memcmp(uuid, bluetooth_base_uuid, 12))
2068 return 128;
2069
2070 val = get_unaligned_le32(&uuid[12]);
2071 if (val > 0xffff)
2072 return 32;
2073
2074 return 16;
2075}
2076
Johan Hedberg92da6092013-03-15 17:06:55 -05002077static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
2078{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002079 struct mgmt_pending_cmd *cmd;
Johan Hedberg92da6092013-03-15 17:06:55 -05002080
2081 hci_dev_lock(hdev);
2082
Johan Hedberg333ae952015-03-17 13:48:47 +02002083 cmd = pending_find(mgmt_op, hdev);
Johan Hedberg92da6092013-03-15 17:06:55 -05002084 if (!cmd)
2085 goto unlock;
2086
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002087 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
2088 mgmt_status(status), hdev->dev_class, 3);
Johan Hedberg92da6092013-03-15 17:06:55 -05002089
2090 mgmt_pending_remove(cmd);
2091
2092unlock:
2093 hci_dev_unlock(hdev);
2094}
2095
Marcel Holtmann1904a852015-01-11 13:50:44 -08002096static void add_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002097{
Marcel Holtmann181d6952020-05-06 09:57:47 +02002098 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedberg92da6092013-03-15 17:06:55 -05002099
2100 mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
2101}
2102
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002103static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002104{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002105 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002106 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002107 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002108 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002109 int err;
2110
Marcel Holtmann181d6952020-05-06 09:57:47 +02002111 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002112
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002113 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002114
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002115 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002116 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
2117 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002118 goto failed;
2119 }
2120
Andre Guedes92c4c202012-06-07 19:05:44 -03002121 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002122 if (!uuid) {
2123 err = -ENOMEM;
2124 goto failed;
2125 }
2126
2127 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002128 uuid->svc_hint = cp->svc_hint;
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002129 uuid->size = get_uuid_size(cp->uuid);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002130
Johan Hedbergde66aa62013-01-27 00:31:27 +02002131 list_add_tail(&uuid->list, &hdev->uuids);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002132
Johan Hedberg890ea892013-03-15 17:06:52 -05002133 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002134
Johan Hedberg14bf5ea2015-11-22 19:00:22 +02002135 __hci_req_update_class(&req);
Johan Hedbergb1a89172015-11-25 16:15:42 +02002136 __hci_req_update_eir(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05002137
Johan Hedberg92da6092013-03-15 17:06:55 -05002138 err = hci_req_run(&req, add_uuid_complete);
2139 if (err < 0) {
2140 if (err != -ENODATA)
2141 goto failed;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002142
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002143 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
2144 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002145 goto failed;
2146 }
2147
2148 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002149 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002150 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002151 goto failed;
2152 }
2153
2154 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002155
2156failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002157 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002158 return err;
2159}
2160
Johan Hedberg24b78d02012-02-23 23:24:30 +02002161static bool enable_service_cache(struct hci_dev *hdev)
2162{
2163 if (!hdev_is_powered(hdev))
2164 return false;
2165
Marcel Holtmann238be782015-03-13 02:11:06 -07002166 if (!hci_dev_test_and_set_flag(hdev, HCI_SERVICE_CACHE)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02002167 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
2168 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002169 return true;
2170 }
2171
2172 return false;
2173}
2174
Marcel Holtmann1904a852015-01-11 13:50:44 -08002175static void remove_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002176{
Marcel Holtmann181d6952020-05-06 09:57:47 +02002177 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedberg92da6092013-03-15 17:06:55 -05002178
2179 mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
2180}
2181
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002182static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002183 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002184{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002185 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002186 struct mgmt_pending_cmd *cmd;
Johan Hedberg056341c2013-01-27 00:31:30 +02002187 struct bt_uuid *match, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002188 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 -05002189 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002190 int err, found;
2191
Marcel Holtmann181d6952020-05-06 09:57:47 +02002192 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002193
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002194 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002195
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002196 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002197 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
2198 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002199 goto unlock;
2200 }
2201
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002202 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
Johan Hedberg35f74982014-02-18 17:14:32 +02002203 hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002204
Johan Hedberg24b78d02012-02-23 23:24:30 +02002205 if (enable_service_cache(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002206 err = mgmt_cmd_complete(sk, hdev->id,
2207 MGMT_OP_REMOVE_UUID,
2208 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002209 goto unlock;
2210 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002211
Johan Hedberg9246a862012-02-23 21:33:16 +02002212 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002213 }
2214
2215 found = 0;
2216
Johan Hedberg056341c2013-01-27 00:31:30 +02002217 list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002218 if (memcmp(match->uuid, cp->uuid, 16) != 0)
2219 continue;
2220
2221 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01002222 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002223 found++;
2224 }
2225
2226 if (found == 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002227 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
2228 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002229 goto unlock;
2230 }
2231
Johan Hedberg9246a862012-02-23 21:33:16 +02002232update_class:
Johan Hedberg890ea892013-03-15 17:06:52 -05002233 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002234
Johan Hedberg14bf5ea2015-11-22 19:00:22 +02002235 __hci_req_update_class(&req);
Johan Hedbergb1a89172015-11-25 16:15:42 +02002236 __hci_req_update_eir(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05002237
Johan Hedberg92da6092013-03-15 17:06:55 -05002238 err = hci_req_run(&req, remove_uuid_complete);
2239 if (err < 0) {
2240 if (err != -ENODATA)
2241 goto unlock;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002242
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002243 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
2244 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002245 goto unlock;
2246 }
2247
2248 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002249 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002250 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002251 goto unlock;
2252 }
2253
2254 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002255
2256unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002257 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002258 return err;
2259}
2260
Marcel Holtmann1904a852015-01-11 13:50:44 -08002261static void set_class_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002262{
Marcel Holtmann181d6952020-05-06 09:57:47 +02002263 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedberg92da6092013-03-15 17:06:55 -05002264
2265 mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
2266}
2267
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002268static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002269 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002270{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002271 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002272 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002273 struct hci_request req;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002274 int err;
2275
Marcel Holtmann181d6952020-05-06 09:57:47 +02002276 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002277
Marcel Holtmann6203fc92013-10-02 23:37:29 -07002278 if (!lmp_bredr_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002279 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2280 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002281
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002282 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002283
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002284 if (pending_eir_or_class(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002285 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2286 MGMT_STATUS_BUSY);
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002287 goto unlock;
2288 }
2289
2290 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002291 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2292 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002293 goto unlock;
2294 }
2295
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002296 hdev->major_class = cp->major;
2297 hdev->minor_class = cp->minor;
2298
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002299 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002300 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
2301 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002302 goto unlock;
2303 }
2304
Johan Hedberg890ea892013-03-15 17:06:52 -05002305 hci_req_init(&req, hdev);
2306
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002307 if (hci_dev_test_and_clear_flag(hdev, HCI_SERVICE_CACHE)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02002308 hci_dev_unlock(hdev);
2309 cancel_delayed_work_sync(&hdev->service_cache);
2310 hci_dev_lock(hdev);
Johan Hedbergb1a89172015-11-25 16:15:42 +02002311 __hci_req_update_eir(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02002312 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02002313
Johan Hedberg14bf5ea2015-11-22 19:00:22 +02002314 __hci_req_update_class(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05002315
Johan Hedberg92da6092013-03-15 17:06:55 -05002316 err = hci_req_run(&req, set_class_complete);
2317 if (err < 0) {
2318 if (err != -ENODATA)
2319 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002320
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002321 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
2322 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002323 goto unlock;
2324 }
2325
2326 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002327 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002328 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002329 goto unlock;
2330 }
2331
2332 err = 0;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002333
Johan Hedbergb5235a62012-02-21 14:32:24 +02002334unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002335 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002336 return err;
2337}
2338
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002339static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002340 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002341{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002342 struct mgmt_cp_load_link_keys *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03002343 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
2344 sizeof(struct mgmt_link_key_info));
Szymon Janc4e51eae2011-02-25 19:05:48 +01002345 u16 key_count, expected_len;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002346 bool changed;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002347 int i;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002348
Marcel Holtmann181d6952020-05-06 09:57:47 +02002349 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002350
2351 if (!lmp_bredr_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02002352 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2353 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002354
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002355 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002356 if (key_count > max_key_count) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002357 bt_dev_err(hdev, "load_link_keys: too big key_count value %u",
2358 key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02002359 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2360 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002361 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002362
Gustavo A. R. Silva5bec1fb2019-03-28 12:30:29 -05002363 expected_len = struct_size(cp, keys, key_count);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002364 if (expected_len != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002365 bt_dev_err(hdev, "load_link_keys: expected %u bytes, got %u bytes",
2366 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02002367 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2368 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002369 }
2370
Johan Hedberg4ae143012013-01-20 14:27:13 +02002371 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02002372 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2373 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ae143012013-01-20 14:27:13 +02002374
Marcel Holtmann181d6952020-05-06 09:57:47 +02002375 bt_dev_dbg(hdev, "debug_keys %u key_count %u", cp->debug_keys,
2376 key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002377
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002378 for (i = 0; i < key_count; i++) {
2379 struct mgmt_link_key_info *key = &cp->keys[i];
2380
Marcel Holtmann8e991132014-01-10 02:07:25 -08002381 if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
Johan Hedberga69e8372015-03-06 21:08:53 +02002382 return mgmt_cmd_status(sk, hdev->id,
2383 MGMT_OP_LOAD_LINK_KEYS,
2384 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002385 }
2386
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002387 hci_dev_lock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002388
2389 hci_link_keys_clear(hdev);
2390
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002391 if (cp->debug_keys)
Marcel Holtmann238be782015-03-13 02:11:06 -07002392 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002393 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07002394 changed = hci_dev_test_and_clear_flag(hdev,
2395 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002396
2397 if (changed)
2398 new_settings(hdev, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002399
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002400 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002401 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002402
Alain Michaud600a8742020-01-07 00:43:17 +00002403 if (hci_is_blocked_key(hdev,
2404 HCI_BLOCKED_KEY_TYPE_LINKKEY,
2405 key->val)) {
2406 bt_dev_warn(hdev, "Skipping blocked link key for %pMR",
2407 &key->addr.bdaddr);
2408 continue;
2409 }
2410
Johan Hedberg58e92932014-06-24 14:00:26 +03002411 /* Always ignore debug keys and require a new pairing if
2412 * the user wants to use them.
2413 */
2414 if (key->type == HCI_LK_DEBUG_COMBINATION)
2415 continue;
2416
Johan Hedberg7652ff62014-06-24 13:15:49 +03002417 hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
2418 key->type, key->pin_len, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002419 }
2420
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002421 mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02002422
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002423 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002424
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002425 return 0;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002426}
2427
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002428static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002429 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002430{
2431 struct mgmt_ev_device_unpaired ev;
2432
2433 bacpy(&ev.addr.bdaddr, bdaddr);
2434 ev.addr.type = addr_type;
2435
2436 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002437 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002438}
2439
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002440static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002441 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002442{
Johan Hedberg124f6e32012-02-09 13:50:12 +02002443 struct mgmt_cp_unpair_device *cp = data;
2444 struct mgmt_rp_unpair_device rp;
Johan Hedbergfc643612015-10-22 09:38:31 +03002445 struct hci_conn_params *params;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002446 struct mgmt_pending_cmd *cmd;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002447 struct hci_conn *conn;
Johan Hedbergec182f02015-10-21 18:03:03 +03002448 u8 addr_type;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002449 int err;
2450
Johan Hedberga8a1d192011-11-10 15:54:38 +02002451 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02002452 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2453 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002454
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002455 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002456 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2457 MGMT_STATUS_INVALID_PARAMS,
2458 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002459
Johan Hedberg118da702013-01-20 14:27:20 +02002460 if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002461 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2462 MGMT_STATUS_INVALID_PARAMS,
2463 &rp, sizeof(rp));
Johan Hedberg118da702013-01-20 14:27:20 +02002464
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002465 hci_dev_lock(hdev);
2466
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002467 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002468 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2469 MGMT_STATUS_NOT_POWERED, &rp,
2470 sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002471 goto unlock;
2472 }
2473
Johan Hedberge0b2b272014-02-18 17:14:31 +02002474 if (cp->addr.type == BDADDR_BREDR) {
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002475 /* If disconnection is requested, then look up the
2476 * connection. If the remote device is connected, it
2477 * will be later used to terminate the link.
2478 *
2479 * Setting it to NULL explicitly will cause no
2480 * termination of the link.
2481 */
2482 if (cp->disconnect)
2483 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
2484 &cp->addr.bdaddr);
2485 else
2486 conn = NULL;
2487
Johan Hedberg124f6e32012-02-09 13:50:12 +02002488 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
Johan Hedbergec182f02015-10-21 18:03:03 +03002489 if (err < 0) {
2490 err = mgmt_cmd_complete(sk, hdev->id,
2491 MGMT_OP_UNPAIR_DEVICE,
2492 MGMT_STATUS_NOT_PAIRED, &rp,
2493 sizeof(rp));
2494 goto unlock;
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002495 }
2496
Johan Hedbergec182f02015-10-21 18:03:03 +03002497 goto done;
Johan Hedberge0b2b272014-02-18 17:14:31 +02002498 }
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03002499
Johan Hedbergec182f02015-10-21 18:03:03 +03002500 /* LE address type */
2501 addr_type = le_addr_type(cp->addr.type);
2502
Matias Karhumaacb28c302018-09-26 09:13:46 +03002503 /* Abort any ongoing SMP pairing. Removes ltk and irk if they exist. */
2504 err = smp_cancel_and_remove_pairing(hdev, &cp->addr.bdaddr, addr_type);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002505 if (err < 0) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002506 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2507 MGMT_STATUS_NOT_PAIRED, &rp,
2508 sizeof(rp));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002509 goto unlock;
2510 }
2511
Johan Hedbergec182f02015-10-21 18:03:03 +03002512 conn = hci_conn_hash_lookup_le(hdev, &cp->addr.bdaddr, addr_type);
2513 if (!conn) {
2514 hci_conn_params_del(hdev, &cp->addr.bdaddr, addr_type);
2515 goto done;
2516 }
2517
Johan Hedbergc81d5552015-10-22 09:38:35 +03002518
Johan Hedbergec182f02015-10-21 18:03:03 +03002519 /* Defer clearing up the connection parameters until closing to
2520 * give a chance of keeping them if a repairing happens.
2521 */
2522 set_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
2523
Johan Hedbergfc643612015-10-22 09:38:31 +03002524 /* Disable auto-connection parameters if present */
2525 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr, addr_type);
2526 if (params) {
2527 if (params->explicit_connect)
2528 params->auto_connect = HCI_AUTO_CONN_EXPLICIT;
2529 else
2530 params->auto_connect = HCI_AUTO_CONN_DISABLED;
2531 }
2532
Johan Hedbergec182f02015-10-21 18:03:03 +03002533 /* If disconnection is not requested, then clear the connection
2534 * variable so that the link is not terminated.
2535 */
2536 if (!cp->disconnect)
2537 conn = NULL;
2538
2539done:
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002540 /* If the connection variable is set, then termination of the
2541 * link is requested.
2542 */
Johan Hedberga8a1d192011-11-10 15:54:38 +02002543 if (!conn) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002544 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
2545 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002546 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02002547 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002548 }
2549
Johan Hedberg124f6e32012-02-09 13:50:12 +02002550 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002551 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02002552 if (!cmd) {
2553 err = -ENOMEM;
2554 goto unlock;
2555 }
2556
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02002557 cmd->cmd_complete = addr_cmd_complete;
2558
Johan Hedberg89e0ccc2015-10-22 10:49:38 +03002559 err = hci_abort_conn(conn, HCI_ERROR_REMOTE_USER_TERM);
Johan Hedberga8a1d192011-11-10 15:54:38 +02002560 if (err < 0)
2561 mgmt_pending_remove(cmd);
2562
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002563unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002564 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002565 return err;
2566}
2567
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002568static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002569 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02002570{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002571 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg06a63b12013-01-20 14:27:21 +02002572 struct mgmt_rp_disconnect rp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002573 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002574 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002575 int err;
2576
Marcel Holtmann181d6952020-05-06 09:57:47 +02002577 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002578
Johan Hedberg06a63b12013-01-20 14:27:21 +02002579 memset(&rp, 0, sizeof(rp));
2580 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2581 rp.addr.type = cp->addr.type;
2582
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002583 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002584 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2585 MGMT_STATUS_INVALID_PARAMS,
2586 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002587
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002588 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002589
2590 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002591 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2592 MGMT_STATUS_NOT_POWERED, &rp,
2593 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002594 goto failed;
2595 }
2596
Johan Hedberg333ae952015-03-17 13:48:47 +02002597 if (pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002598 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2599 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002600 goto failed;
2601 }
2602
Andre Guedes591f47f2012-04-24 21:02:49 -03002603 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002604 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
2605 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02002606 else
Johan Hedberg9d4c1cc2015-10-21 18:03:01 +03002607 conn = hci_conn_hash_lookup_le(hdev, &cp->addr.bdaddr,
2608 le_addr_type(cp->addr.type));
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03002609
Vishal Agarwalf9607272012-06-13 05:32:43 +05302610 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002611 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2612 MGMT_STATUS_NOT_CONNECTED, &rp,
2613 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002614 goto failed;
2615 }
2616
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002617 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03002618 if (!cmd) {
2619 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002620 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03002621 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02002622
Johan Hedbergf5818c22014-12-05 13:36:02 +02002623 cmd->cmd_complete = generic_cmd_complete;
2624
Johan Hedberge3f2f922014-08-18 20:33:33 +03002625 err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002626 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03002627 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002628
2629failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002630 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002631 return err;
2632}
2633
Andre Guedes57c14772012-04-24 21:02:50 -03002634static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02002635{
2636 switch (link_type) {
2637 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02002638 switch (addr_type) {
2639 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03002640 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03002641
Johan Hedberg48264f02011-11-09 13:58:58 +02002642 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03002643 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03002644 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02002645 }
Andre Guedes0ed09142012-04-03 08:46:54 -03002646
Johan Hedberg4c659c32011-11-07 23:13:39 +02002647 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03002648 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03002649 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002650 }
2651}
2652
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002653static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
2654 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02002655{
Johan Hedberg2784eb42011-01-21 13:56:35 +02002656 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002657 struct hci_conn *c;
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002658 int err;
2659 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02002660
Marcel Holtmann181d6952020-05-06 09:57:47 +02002661 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002662
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002663 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002664
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002665 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002666 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
2667 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002668 goto unlock;
2669 }
2670
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002671 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02002672 list_for_each_entry(c, &hdev->conn_hash.list, list) {
2673 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002674 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02002675 }
2676
Gustavo A. R. Silva72bb1692019-08-29 20:12:11 -05002677 rp = kmalloc(struct_size(rp, addr, i), GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02002678 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02002679 err = -ENOMEM;
2680 goto unlock;
2681 }
2682
Johan Hedberg2784eb42011-01-21 13:56:35 +02002683 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002684 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02002685 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
2686 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002687 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03002688 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03002689 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02002690 continue;
2691 i++;
2692 }
2693
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002694 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002695
Johan Hedberg4c659c32011-11-07 23:13:39 +02002696 /* Recalculate length in case of filtered SCO connections, etc */
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002697 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
Gustavo A. R. Silva72bb1692019-08-29 20:12:11 -05002698 struct_size(rp, addr, i));
Johan Hedberg2784eb42011-01-21 13:56:35 +02002699
Johan Hedberga38528f2011-01-22 06:46:43 +02002700 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002701
2702unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002703 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002704 return err;
2705}
2706
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002707static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002708 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002709{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002710 struct mgmt_pending_cmd *cmd;
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002711 int err;
2712
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002713 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002714 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002715 if (!cmd)
2716 return -ENOMEM;
2717
Arek Lichwadd7e39b2016-09-22 14:08:05 +02002718 cmd->cmd_complete = addr_cmd_complete;
2719
Johan Hedbergd8457692012-02-17 14:24:57 +02002720 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002721 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002722 if (err < 0)
2723 mgmt_pending_remove(cmd);
2724
2725 return err;
2726}
2727
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002728static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002729 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02002730{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002731 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002732 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002733 struct hci_cp_pin_code_reply reply;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002734 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002735 int err;
2736
Marcel Holtmann181d6952020-05-06 09:57:47 +02002737 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002738
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002739 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002740
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002741 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002742 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
2743 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002744 goto failed;
2745 }
2746
Johan Hedbergd8457692012-02-17 14:24:57 +02002747 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002748 if (!conn) {
Johan Hedberga69e8372015-03-06 21:08:53 +02002749 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
2750 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002751 goto failed;
2752 }
2753
2754 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02002755 struct mgmt_cp_pin_code_neg_reply ncp;
2756
2757 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002758
Marcel Holtmann2064ee32017-10-30 10:42:59 +01002759 bt_dev_err(hdev, "PIN code is not 16 bytes long");
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002760
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002761 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002762 if (err >= 0)
Johan Hedberga69e8372015-03-06 21:08:53 +02002763 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
2764 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002765
2766 goto failed;
2767 }
2768
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03002769 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03002770 if (!cmd) {
2771 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002772 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03002773 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002774
Johan Hedberg7776d1d2014-12-05 13:36:03 +02002775 cmd->cmd_complete = addr_cmd_complete;
2776
Johan Hedbergd8457692012-02-17 14:24:57 +02002777 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002778 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02002779 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02002780
2781 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
2782 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03002783 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002784
2785failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002786 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002787 return err;
2788}
2789
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002790static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
2791 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002792{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002793 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002794
Marcel Holtmann181d6952020-05-06 09:57:47 +02002795 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002796
Johan Hedberg4ec86d42014-06-17 15:14:48 +03002797 if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
Marcel Holtmann9db5c622016-08-29 06:31:57 +02002798 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
2799 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4ec86d42014-06-17 15:14:48 +03002800
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002801 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002802
2803 hdev->io_capability = cp->io_capability;
2804
Marcel Holtmann181d6952020-05-06 09:57:47 +02002805 bt_dev_dbg(hdev, "IO capability set to 0x%02x", hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002806
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002807 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002808
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002809 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0,
2810 NULL, 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002811}
2812
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002813static struct mgmt_pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002814{
2815 struct hci_dev *hdev = conn->hdev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002816 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002817
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002818 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03002819 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
2820 continue;
2821
Johan Hedberge9a416b2011-02-19 12:05:56 -03002822 if (cmd->user_data != conn)
2823 continue;
2824
2825 return cmd;
2826 }
2827
2828 return NULL;
2829}
2830
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002831static int pairing_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002832{
2833 struct mgmt_rp_pair_device rp;
2834 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9df74652014-12-19 22:26:03 +02002835 int err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002836
Johan Hedberg61b1a7f2014-03-20 12:54:16 +02002837 bacpy(&rp.addr.bdaddr, &conn->dst);
2838 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002839
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002840 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE,
2841 status, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002842
2843 /* So we don't get further callbacks for this connection */
2844 conn->connect_cfm_cb = NULL;
2845 conn->security_cfm_cb = NULL;
2846 conn->disconn_cfm_cb = NULL;
2847
David Herrmann76a68ba2013-04-06 20:28:37 +02002848 hci_conn_drop(conn);
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002849
2850 /* The device is paired so there is no need to remove
2851 * its connection parameters anymore.
2852 */
2853 clear_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
Johan Hedberg15013ae2014-12-11 21:45:44 +02002854
2855 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02002856
2857 return err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002858}
2859
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002860void mgmt_smp_complete(struct hci_conn *conn, bool complete)
2861{
2862 u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002863 struct mgmt_pending_cmd *cmd;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002864
2865 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02002866 if (cmd) {
Johan Hedberg04ab2742014-12-05 13:36:04 +02002867 cmd->cmd_complete(cmd, status);
Johan Hedberga511b352014-12-11 21:45:45 +02002868 mgmt_pending_remove(cmd);
2869 }
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002870}
2871
Johan Hedberge9a416b2011-02-19 12:05:56 -03002872static void pairing_complete_cb(struct hci_conn *conn, u8 status)
2873{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002874 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002875
2876 BT_DBG("status %u", status);
2877
Johan Hedberg56e5cb82011-11-08 20:40:16 +02002878 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02002879 if (!cmd) {
Johan Hedberg56e5cb82011-11-08 20:40:16 +02002880 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02002881 return;
2882 }
2883
2884 cmd->cmd_complete(cmd, mgmt_status(status));
2885 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002886}
2887
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002888static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302889{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002890 struct mgmt_pending_cmd *cmd;
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302891
2892 BT_DBG("status %u", status);
2893
2894 if (!status)
2895 return;
2896
2897 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02002898 if (!cmd) {
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302899 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02002900 return;
2901 }
2902
2903 cmd->cmd_complete(cmd, mgmt_status(status));
2904 mgmt_pending_remove(cmd);
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302905}
2906
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002907static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002908 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002909{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002910 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02002911 struct mgmt_rp_pair_device rp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02002912 struct mgmt_pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002913 u8 sec_level, auth_type;
2914 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002915 int err;
2916
Marcel Holtmann181d6952020-05-06 09:57:47 +02002917 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002918
Szymon Jancf950a30e2013-01-18 12:48:07 +01002919 memset(&rp, 0, sizeof(rp));
2920 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2921 rp.addr.type = cp->addr.type;
2922
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002923 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002924 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2925 MGMT_STATUS_INVALID_PARAMS,
2926 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002927
Johan Hedberg4ec86d42014-06-17 15:14:48 +03002928 if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002929 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2930 MGMT_STATUS_INVALID_PARAMS,
2931 &rp, sizeof(rp));
Johan Hedberg4ec86d42014-06-17 15:14:48 +03002932
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002933 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002934
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002935 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002936 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2937 MGMT_STATUS_NOT_POWERED, &rp,
2938 sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002939 goto unlock;
2940 }
2941
Johan Hedberg55e76b32015-03-10 22:34:40 +02002942 if (hci_bdaddr_is_paired(hdev, &cp->addr.bdaddr, cp->addr.type)) {
2943 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2944 MGMT_STATUS_ALREADY_PAIRED, &rp,
2945 sizeof(rp));
2946 goto unlock;
2947 }
2948
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03002949 sec_level = BT_SECURITY_MEDIUM;
Mikel Astiz6fd6b912014-04-08 14:21:32 +02002950 auth_type = HCI_AT_DEDICATED_BONDING;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002951
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002952 if (cp->addr.type == BDADDR_BREDR) {
Andre Guedes04a6c582014-02-26 20:21:44 -03002953 conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
Manish Mandlik76b13992020-06-17 16:39:19 +02002954 auth_type, CONN_REASON_PAIR_DEVICE);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002955 } else {
Johan Hedberg85813a72015-10-21 18:02:59 +03002956 u8 addr_type = le_addr_type(cp->addr.type);
Jakub Pawlowski5157b8a2015-10-16 10:07:54 +03002957 struct hci_conn_params *p;
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002958
Marcel Holtmann7c264b12014-06-30 12:34:40 +02002959 /* When pairing a new device, it is expected to remember
2960 * this device for future connections. Adding the connection
2961 * parameter information ahead of time allows tracking
Archie Pusaka67ffb182021-05-31 16:37:28 +08002962 * of the peripheral preferred values and will speed up any
Marcel Holtmann7c264b12014-06-30 12:34:40 +02002963 * further connection establishment.
2964 *
2965 * If connection parameters already exist, then they
2966 * will be kept and this function does nothing.
2967 */
Jakub Pawlowski5157b8a2015-10-16 10:07:54 +03002968 p = hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);
2969
2970 if (p->auto_connect == HCI_AUTO_CONN_EXPLICIT)
2971 p->auto_connect = HCI_AUTO_CONN_DISABLED;
Marcel Holtmann7c264b12014-06-30 12:34:40 +02002972
Manish Mandlik76b13992020-06-17 16:39:19 +02002973 conn = hci_connect_le_scan(hdev, &cp->addr.bdaddr, addr_type,
2974 sec_level, HCI_LE_CONN_TIMEOUT,
2975 CONN_REASON_PAIR_DEVICE);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002976 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002977
Ville Tervo30e76272011-02-22 16:10:53 -03002978 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002979 int status;
2980
2981 if (PTR_ERR(conn) == -EBUSY)
2982 status = MGMT_STATUS_BUSY;
Lukasz Rymanowskifaa81032015-02-11 12:31:42 +01002983 else if (PTR_ERR(conn) == -EOPNOTSUPP)
2984 status = MGMT_STATUS_NOT_SUPPORTED;
2985 else if (PTR_ERR(conn) == -ECONNREFUSED)
2986 status = MGMT_STATUS_REJECTED;
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002987 else
2988 status = MGMT_STATUS_CONNECT_FAILED;
2989
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002990 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2991 status, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002992 goto unlock;
2993 }
2994
2995 if (conn->connect_cfm_cb) {
David Herrmann76a68ba2013-04-06 20:28:37 +02002996 hci_conn_drop(conn);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02002997 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2998 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002999 goto unlock;
3000 }
3001
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003002 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003003 if (!cmd) {
3004 err = -ENOMEM;
David Herrmann76a68ba2013-04-06 20:28:37 +02003005 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003006 goto unlock;
3007 }
3008
Johan Hedberg04ab2742014-12-05 13:36:04 +02003009 cmd->cmd_complete = pairing_complete;
3010
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003011 /* For LE, just connecting isn't a proof that the pairing finished */
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003012 if (cp->addr.type == BDADDR_BREDR) {
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003013 conn->connect_cfm_cb = pairing_complete_cb;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003014 conn->security_cfm_cb = pairing_complete_cb;
3015 conn->disconn_cfm_cb = pairing_complete_cb;
3016 } else {
3017 conn->connect_cfm_cb = le_pairing_complete_cb;
3018 conn->security_cfm_cb = le_pairing_complete_cb;
3019 conn->disconn_cfm_cb = le_pairing_complete_cb;
3020 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003021
Johan Hedberge9a416b2011-02-19 12:05:56 -03003022 conn->io_capability = cp->io_cap;
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03003023 cmd->user_data = hci_conn_get(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003024
Johan Hedberg6f78fd42014-07-30 08:35:48 +03003025 if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
Johan Hedberga511b352014-12-11 21:45:45 +02003026 hci_conn_security(conn, sec_level, auth_type, true)) {
3027 cmd->cmd_complete(cmd, 0);
3028 mgmt_pending_remove(cmd);
3029 }
Johan Hedberge9a416b2011-02-19 12:05:56 -03003030
3031 err = 0;
3032
3033unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003034 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003035 return err;
3036}
3037
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003038static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3039 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02003040{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003041 struct mgmt_addr_info *addr = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003042 struct mgmt_pending_cmd *cmd;
Johan Hedberg28424702012-02-02 04:02:29 +02003043 struct hci_conn *conn;
3044 int err;
3045
Marcel Holtmann181d6952020-05-06 09:57:47 +02003046 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg28424702012-02-02 04:02:29 +02003047
Johan Hedberg28424702012-02-02 04:02:29 +02003048 hci_dev_lock(hdev);
3049
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003050 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003051 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3052 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003053 goto unlock;
3054 }
3055
Johan Hedberg333ae952015-03-17 13:48:47 +02003056 cmd = pending_find(MGMT_OP_PAIR_DEVICE, hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003057 if (!cmd) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003058 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3059 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003060 goto unlock;
3061 }
3062
3063 conn = cmd->user_data;
3064
3065 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003066 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
3067 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003068 goto unlock;
3069 }
3070
Johan Hedberga511b352014-12-11 21:45:45 +02003071 cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
3072 mgmt_pending_remove(cmd);
Johan Hedberg28424702012-02-02 04:02:29 +02003073
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003074 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
3075 addr, sizeof(*addr));
Manish Mandlik76b13992020-06-17 16:39:19 +02003076
3077 /* Since user doesn't want to proceed with the connection, abort any
3078 * ongoing pairing and then terminate the link if it was created
3079 * because of the pair device action.
3080 */
3081 if (addr->type == BDADDR_BREDR)
3082 hci_remove_link_key(hdev, &addr->bdaddr);
3083 else
3084 smp_cancel_and_remove_pairing(hdev, &addr->bdaddr,
3085 le_addr_type(addr->type));
3086
3087 if (conn->conn_reason == CONN_REASON_PAIR_DEVICE)
3088 hci_abort_conn(conn, HCI_ERROR_REMOTE_USER_TERM);
3089
Johan Hedberg28424702012-02-02 04:02:29 +02003090unlock:
3091 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003092 return err;
3093}
3094
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003095static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Johan Hedberg1707c602013-03-15 17:07:15 -05003096 struct mgmt_addr_info *addr, u16 mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003097 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03003098{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003099 struct mgmt_pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08003100 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003101 int err;
3102
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003103 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02003104
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003105 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003106 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3107 MGMT_STATUS_NOT_POWERED, addr,
3108 sizeof(*addr));
Brian Gix0df4c182011-11-16 13:53:13 -08003109 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003110 }
3111
Johan Hedberg1707c602013-03-15 17:07:15 -05003112 if (addr->type == BDADDR_BREDR)
3113 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
Johan Hedberg272d90d2012-02-09 15:26:12 +02003114 else
Johan Hedberg9d4c1cc2015-10-21 18:03:01 +03003115 conn = hci_conn_hash_lookup_le(hdev, &addr->bdaddr,
3116 le_addr_type(addr->type));
Brian Gix47c15e22011-11-16 13:53:14 -08003117
Johan Hedberg272d90d2012-02-09 15:26:12 +02003118 if (!conn) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003119 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3120 MGMT_STATUS_NOT_CONNECTED, addr,
3121 sizeof(*addr));
Johan Hedberg272d90d2012-02-09 15:26:12 +02003122 goto done;
3123 }
3124
Johan Hedberg1707c602013-03-15 17:07:15 -05003125 if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
Brian Gix5fe57d92011-12-21 16:12:13 -08003126 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix5fe57d92011-12-21 16:12:13 -08003127 if (!err)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003128 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3129 MGMT_STATUS_SUCCESS, addr,
3130 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003131 else
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003132 err = mgmt_cmd_complete(sk, hdev->id, mgmt_op,
3133 MGMT_STATUS_FAILED, addr,
3134 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003135
Brian Gix47c15e22011-11-16 13:53:14 -08003136 goto done;
3137 }
3138
Johan Hedberg1707c602013-03-15 17:07:15 -05003139 cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
Johan Hedberga5c29682011-02-19 12:05:57 -03003140 if (!cmd) {
3141 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08003142 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003143 }
3144
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003145 cmd->cmd_complete = addr_cmd_complete;
3146
Brian Gix0df4c182011-11-16 13:53:13 -08003147 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08003148 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
3149 struct hci_cp_user_passkey_reply cp;
3150
Johan Hedberg1707c602013-03-15 17:07:15 -05003151 bacpy(&cp.bdaddr, &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003152 cp.passkey = passkey;
3153 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
3154 } else
Johan Hedberg1707c602013-03-15 17:07:15 -05003155 err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
3156 &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003157
Johan Hedberga664b5b2011-02-19 12:06:02 -03003158 if (err < 0)
3159 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003160
Brian Gix0df4c182011-11-16 13:53:13 -08003161done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003162 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003163 return err;
3164}
3165
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303166static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3167 void *data, u16 len)
3168{
3169 struct mgmt_cp_pin_code_neg_reply *cp = data;
3170
Marcel Holtmann181d6952020-05-06 09:57:47 +02003171 bt_dev_dbg(hdev, "sock %p", sk);
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303172
Johan Hedberg1707c602013-03-15 17:07:15 -05003173 return user_pairing_resp(sk, hdev, &cp->addr,
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303174 MGMT_OP_PIN_CODE_NEG_REPLY,
3175 HCI_OP_PIN_CODE_NEG_REPLY, 0);
3176}
3177
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003178static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3179 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003180{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003181 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003182
Marcel Holtmann181d6952020-05-06 09:57:47 +02003183 bt_dev_dbg(hdev, "sock %p", sk);
Brian Gix0df4c182011-11-16 13:53:13 -08003184
3185 if (len != sizeof(*cp))
Johan Hedberga69e8372015-03-06 21:08:53 +02003186 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
3187 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08003188
Johan Hedberg1707c602013-03-15 17:07:15 -05003189 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003190 MGMT_OP_USER_CONFIRM_REPLY,
3191 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003192}
3193
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003194static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003195 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003196{
Johan Hedbergc9c26592011-12-15 00:47:41 +02003197 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003198
Marcel Holtmann181d6952020-05-06 09:57:47 +02003199 bt_dev_dbg(hdev, "sock %p", sk);
Brian Gix0df4c182011-11-16 13:53:13 -08003200
Johan Hedberg1707c602013-03-15 17:07:15 -05003201 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003202 MGMT_OP_USER_CONFIRM_NEG_REPLY,
3203 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003204}
3205
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003206static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3207 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003208{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003209 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003210
Marcel Holtmann181d6952020-05-06 09:57:47 +02003211 bt_dev_dbg(hdev, "sock %p", sk);
Brian Gix604086b2011-11-23 08:28:33 -08003212
Johan Hedberg1707c602013-03-15 17:07:15 -05003213 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003214 MGMT_OP_USER_PASSKEY_REPLY,
3215 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08003216}
3217
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003218static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003219 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003220{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003221 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003222
Marcel Holtmann181d6952020-05-06 09:57:47 +02003223 bt_dev_dbg(hdev, "sock %p", sk);
Brian Gix604086b2011-11-23 08:28:33 -08003224
Johan Hedberg1707c602013-03-15 17:07:15 -05003225 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003226 MGMT_OP_USER_PASSKEY_NEG_REPLY,
3227 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08003228}
3229
MichaƂ Narajowski7c295c42016-09-18 12:50:02 +02003230static void adv_expire(struct hci_dev *hdev, u32 flags)
3231{
3232 struct adv_info *adv_instance;
3233 struct hci_request req;
3234 int err;
3235
3236 adv_instance = hci_find_adv_instance(hdev, hdev->cur_adv_instance);
3237 if (!adv_instance)
3238 return;
3239
3240 /* stop if current instance doesn't need to be changed */
3241 if (!(adv_instance->flags & flags))
3242 return;
3243
3244 cancel_adv_timeout(hdev);
3245
3246 adv_instance = hci_get_next_instance(hdev, adv_instance->instance);
3247 if (!adv_instance)
3248 return;
3249
3250 hci_req_init(&req, hdev);
3251 err = __hci_req_schedule_adv_instance(&req, adv_instance->instance,
3252 true);
3253 if (err)
3254 return;
3255
3256 hci_req_run(&req, NULL);
3257}
3258
Marcel Holtmann1904a852015-01-11 13:50:44 -08003259static void set_name_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg13928972013-03-15 17:07:00 -05003260{
3261 struct mgmt_cp_set_local_name *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003262 struct mgmt_pending_cmd *cmd;
Johan Hedberg13928972013-03-15 17:07:00 -05003263
Marcel Holtmann181d6952020-05-06 09:57:47 +02003264 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedberg13928972013-03-15 17:07:00 -05003265
3266 hci_dev_lock(hdev);
3267
Johan Hedberg333ae952015-03-17 13:48:47 +02003268 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05003269 if (!cmd)
3270 goto unlock;
3271
3272 cp = cmd->param;
3273
MichaƂ Narajowski7c295c42016-09-18 12:50:02 +02003274 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02003275 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3276 mgmt_status(status));
MichaƂ Narajowski7c295c42016-09-18 12:50:02 +02003277 } else {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003278 mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3279 cp, sizeof(*cp));
Johan Hedberg13928972013-03-15 17:07:00 -05003280
MichaƂ Narajowski7c295c42016-09-18 12:50:02 +02003281 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
3282 adv_expire(hdev, MGMT_ADV_FLAG_LOCAL_NAME);
3283 }
3284
Johan Hedberg13928972013-03-15 17:07:00 -05003285 mgmt_pending_remove(cmd);
3286
3287unlock:
3288 hci_dev_unlock(hdev);
3289}
3290
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003291static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003292 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003293{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003294 struct mgmt_cp_set_local_name *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02003295 struct mgmt_pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05003296 struct hci_request req;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003297 int err;
3298
Marcel Holtmann181d6952020-05-06 09:57:47 +02003299 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003300
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003301 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003302
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003303 /* If the old values are the same as the new ones just return a
3304 * direct command complete event.
3305 */
3306 if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
3307 !memcmp(hdev->short_name, cp->short_name,
3308 sizeof(hdev->short_name))) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003309 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3310 data, len);
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003311 goto failed;
3312 }
3313
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003314 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003315
Johan Hedbergb5235a62012-02-21 14:32:24 +02003316 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003317 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003318
Johan Hedberg2a1afb52015-03-06 21:08:54 +02003319 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3320 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003321 if (err < 0)
3322 goto failed;
3323
Marcel Holtmann5504c3a2016-08-29 06:19:46 +02003324 err = mgmt_limited_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data,
3325 len, HCI_MGMT_LOCAL_NAME_EVENTS, sk);
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02003326 ext_info_changed(hdev, sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003327
Johan Hedbergb5235a62012-02-21 14:32:24 +02003328 goto failed;
3329 }
3330
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003331 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003332 if (!cmd) {
3333 err = -ENOMEM;
3334 goto failed;
3335 }
3336
Johan Hedberg13928972013-03-15 17:07:00 -05003337 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3338
Johan Hedberg890ea892013-03-15 17:06:52 -05003339 hci_req_init(&req, hdev);
Johan Hedberg3f985052013-03-15 17:07:02 -05003340
3341 if (lmp_bredr_capable(hdev)) {
Johan Hedberg00cf5042015-11-25 16:15:41 +02003342 __hci_req_update_name(&req);
Johan Hedbergb1a89172015-11-25 16:15:42 +02003343 __hci_req_update_eir(&req);
Johan Hedberg3f985052013-03-15 17:07:02 -05003344 }
3345
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003346 /* The name is stored in the scan response data and so
Zheng Yongjun91641b72021-06-02 14:54:58 +08003347 * no need to update the advertising data here.
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003348 */
MichaƂ Narajowski7dc6f162016-09-22 16:01:39 +02003349 if (lmp_le_capable(hdev) && hci_dev_test_flag(hdev, HCI_ADVERTISING))
Johan Hedbergcab054a2015-11-30 11:21:45 +02003350 __hci_req_update_scan_rsp_data(&req, hdev->cur_adv_instance);
Johan Hedberg3f985052013-03-15 17:07:02 -05003351
Johan Hedberg13928972013-03-15 17:07:00 -05003352 err = hci_req_run(&req, set_name_complete);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003353 if (err < 0)
3354 mgmt_pending_remove(cmd);
3355
3356failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003357 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003358 return err;
3359}
3360
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02003361static int set_appearance(struct sock *sk, struct hci_dev *hdev, void *data,
3362 u16 len)
3363{
3364 struct mgmt_cp_set_appearance *cp = data;
Alain Michaud6613bab2020-01-22 19:47:44 +00003365 u16 appearance;
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02003366 int err;
3367
Marcel Holtmann181d6952020-05-06 09:57:47 +02003368 bt_dev_dbg(hdev, "sock %p", sk);
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02003369
MichaƂ Narajowskiaf4168c2016-09-19 14:33:33 +02003370 if (!lmp_le_capable(hdev))
3371 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_APPEARANCE,
3372 MGMT_STATUS_NOT_SUPPORTED);
3373
Alain Michaud6613bab2020-01-22 19:47:44 +00003374 appearance = le16_to_cpu(cp->appearance);
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02003375
3376 hci_dev_lock(hdev);
3377
Alain Michaud6613bab2020-01-22 19:47:44 +00003378 if (hdev->appearance != appearance) {
3379 hdev->appearance = appearance;
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02003380
3381 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
3382 adv_expire(hdev, MGMT_ADV_FLAG_APPEARANCE);
MichaƂ Narajowskie74317f2016-09-19 20:25:56 +02003383
3384 ext_info_changed(hdev, sk);
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02003385 }
3386
3387 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_APPEARANCE, 0, NULL,
3388 0);
3389
3390 hci_dev_unlock(hdev);
3391
3392 return err;
3393}
3394
Jaganath Kanakkassery62446912018-07-19 17:09:34 +05303395static int get_phy_configuration(struct sock *sk, struct hci_dev *hdev,
3396 void *data, u16 len)
3397{
Reo Shiseki353021582020-11-19 16:37:11 +09003398 struct mgmt_rp_get_phy_configuration rp;
Jaganath Kanakkassery62446912018-07-19 17:09:34 +05303399
Marcel Holtmann181d6952020-05-06 09:57:47 +02003400 bt_dev_dbg(hdev, "sock %p", sk);
Jaganath Kanakkassery62446912018-07-19 17:09:34 +05303401
3402 hci_dev_lock(hdev);
3403
3404 memset(&rp, 0, sizeof(rp));
3405
3406 rp.supported_phys = cpu_to_le32(get_supported_phys(hdev));
3407 rp.selected_phys = cpu_to_le32(get_selected_phys(hdev));
3408 rp.configurable_phys = cpu_to_le32(get_configurable_phys(hdev));
3409
3410 hci_dev_unlock(hdev);
3411
3412 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_PHY_CONFIGURATION, 0,
3413 &rp, sizeof(rp));
3414}
3415
Jaganath Kanakkasseryb7c23df2018-07-19 17:09:36 +05303416int mgmt_phy_configuration_changed(struct hci_dev *hdev, struct sock *skip)
3417{
3418 struct mgmt_ev_phy_configuration_changed ev;
3419
3420 memset(&ev, 0, sizeof(ev));
3421
3422 ev.selected_phys = cpu_to_le32(get_selected_phys(hdev));
3423
3424 return mgmt_event(MGMT_EV_PHY_CONFIGURATION_CHANGED, hdev, &ev,
3425 sizeof(ev), skip);
3426}
3427
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303428static void set_default_phy_complete(struct hci_dev *hdev, u8 status,
3429 u16 opcode, struct sk_buff *skb)
3430{
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303431 struct mgmt_pending_cmd *cmd;
3432
Marcel Holtmann181d6952020-05-06 09:57:47 +02003433 bt_dev_dbg(hdev, "status 0x%02x", status);
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303434
3435 hci_dev_lock(hdev);
3436
3437 cmd = pending_find(MGMT_OP_SET_PHY_CONFIGURATION, hdev);
3438 if (!cmd)
3439 goto unlock;
3440
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303441 if (status) {
3442 mgmt_cmd_status(cmd->sk, hdev->id,
3443 MGMT_OP_SET_PHY_CONFIGURATION,
3444 mgmt_status(status));
3445 } else {
3446 mgmt_cmd_complete(cmd->sk, hdev->id,
3447 MGMT_OP_SET_PHY_CONFIGURATION, 0,
3448 NULL, 0);
Jaganath Kanakkasseryb7c23df2018-07-19 17:09:36 +05303449
3450 mgmt_phy_configuration_changed(hdev, cmd->sk);
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303451 }
3452
3453 mgmt_pending_remove(cmd);
3454
3455unlock:
3456 hci_dev_unlock(hdev);
3457}
3458
3459static int set_phy_configuration(struct sock *sk, struct hci_dev *hdev,
3460 void *data, u16 len)
3461{
Reo Shiseki353021582020-11-19 16:37:11 +09003462 struct mgmt_cp_set_phy_configuration *cp = data;
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303463 struct hci_cp_le_set_default_phy cp_phy;
3464 struct mgmt_pending_cmd *cmd;
3465 struct hci_request req;
3466 u32 selected_phys, configurable_phys, supported_phys, unconfigure_phys;
3467 u16 pkt_type = (HCI_DH1 | HCI_DM1);
Jaganath Kanakkasseryb7c23df2018-07-19 17:09:36 +05303468 bool changed = false;
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303469 int err;
3470
Marcel Holtmann181d6952020-05-06 09:57:47 +02003471 bt_dev_dbg(hdev, "sock %p", sk);
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303472
3473 configurable_phys = get_configurable_phys(hdev);
3474 supported_phys = get_supported_phys(hdev);
3475 selected_phys = __le32_to_cpu(cp->selected_phys);
3476
3477 if (selected_phys & ~supported_phys)
3478 return mgmt_cmd_status(sk, hdev->id,
3479 MGMT_OP_SET_PHY_CONFIGURATION,
3480 MGMT_STATUS_INVALID_PARAMS);
3481
3482 unconfigure_phys = supported_phys & ~configurable_phys;
3483
3484 if ((selected_phys & unconfigure_phys) != unconfigure_phys)
3485 return mgmt_cmd_status(sk, hdev->id,
3486 MGMT_OP_SET_PHY_CONFIGURATION,
3487 MGMT_STATUS_INVALID_PARAMS);
3488
3489 if (selected_phys == get_selected_phys(hdev))
3490 return mgmt_cmd_complete(sk, hdev->id,
3491 MGMT_OP_SET_PHY_CONFIGURATION,
3492 0, NULL, 0);
3493
3494 hci_dev_lock(hdev);
3495
3496 if (!hdev_is_powered(hdev)) {
3497 err = mgmt_cmd_status(sk, hdev->id,
3498 MGMT_OP_SET_PHY_CONFIGURATION,
3499 MGMT_STATUS_REJECTED);
3500 goto unlock;
3501 }
3502
3503 if (pending_find(MGMT_OP_SET_PHY_CONFIGURATION, hdev)) {
3504 err = mgmt_cmd_status(sk, hdev->id,
3505 MGMT_OP_SET_PHY_CONFIGURATION,
3506 MGMT_STATUS_BUSY);
3507 goto unlock;
3508 }
3509
3510 if (selected_phys & MGMT_PHY_BR_1M_3SLOT)
3511 pkt_type |= (HCI_DH3 | HCI_DM3);
3512 else
3513 pkt_type &= ~(HCI_DH3 | HCI_DM3);
3514
3515 if (selected_phys & MGMT_PHY_BR_1M_5SLOT)
3516 pkt_type |= (HCI_DH5 | HCI_DM5);
3517 else
3518 pkt_type &= ~(HCI_DH5 | HCI_DM5);
3519
3520 if (selected_phys & MGMT_PHY_EDR_2M_1SLOT)
3521 pkt_type &= ~HCI_2DH1;
3522 else
3523 pkt_type |= HCI_2DH1;
3524
3525 if (selected_phys & MGMT_PHY_EDR_2M_3SLOT)
3526 pkt_type &= ~HCI_2DH3;
3527 else
3528 pkt_type |= HCI_2DH3;
3529
3530 if (selected_phys & MGMT_PHY_EDR_2M_5SLOT)
3531 pkt_type &= ~HCI_2DH5;
3532 else
3533 pkt_type |= HCI_2DH5;
3534
3535 if (selected_phys & MGMT_PHY_EDR_3M_1SLOT)
3536 pkt_type &= ~HCI_3DH1;
3537 else
3538 pkt_type |= HCI_3DH1;
3539
3540 if (selected_phys & MGMT_PHY_EDR_3M_3SLOT)
3541 pkt_type &= ~HCI_3DH3;
3542 else
3543 pkt_type |= HCI_3DH3;
3544
3545 if (selected_phys & MGMT_PHY_EDR_3M_5SLOT)
3546 pkt_type &= ~HCI_3DH5;
3547 else
3548 pkt_type |= HCI_3DH5;
3549
Jaganath Kanakkasseryb7c23df2018-07-19 17:09:36 +05303550 if (pkt_type != hdev->pkt_type) {
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303551 hdev->pkt_type = pkt_type;
Jaganath Kanakkasseryb7c23df2018-07-19 17:09:36 +05303552 changed = true;
3553 }
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303554
3555 if ((selected_phys & MGMT_PHY_LE_MASK) ==
3556 (get_selected_phys(hdev) & MGMT_PHY_LE_MASK)) {
Jaganath Kanakkasseryb7c23df2018-07-19 17:09:36 +05303557 if (changed)
3558 mgmt_phy_configuration_changed(hdev, sk);
3559
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05303560 err = mgmt_cmd_complete(sk, hdev->id,
3561 MGMT_OP_SET_PHY_CONFIGURATION,
3562 0, NULL, 0);
3563
3564 goto unlock;
3565 }
3566
3567 cmd = mgmt_pending_add(sk, MGMT_OP_SET_PHY_CONFIGURATION, hdev, data,
3568 len);
3569 if (!cmd) {
3570 err = -ENOMEM;
3571 goto unlock;
3572 }
3573
3574 hci_req_init(&req, hdev);
3575
3576 memset(&cp_phy, 0, sizeof(cp_phy));
3577
3578 if (!(selected_phys & MGMT_PHY_LE_TX_MASK))
3579 cp_phy.all_phys |= 0x01;
3580
3581 if (!(selected_phys & MGMT_PHY_LE_RX_MASK))
3582 cp_phy.all_phys |= 0x02;
3583
3584 if (selected_phys & MGMT_PHY_LE_1M_TX)
3585 cp_phy.tx_phys |= HCI_LE_SET_PHY_1M;
3586
3587 if (selected_phys & MGMT_PHY_LE_2M_TX)
3588 cp_phy.tx_phys |= HCI_LE_SET_PHY_2M;
3589
3590 if (selected_phys & MGMT_PHY_LE_CODED_TX)
3591 cp_phy.tx_phys |= HCI_LE_SET_PHY_CODED;
3592
3593 if (selected_phys & MGMT_PHY_LE_1M_RX)
3594 cp_phy.rx_phys |= HCI_LE_SET_PHY_1M;
3595
3596 if (selected_phys & MGMT_PHY_LE_2M_RX)
3597 cp_phy.rx_phys |= HCI_LE_SET_PHY_2M;
3598
3599 if (selected_phys & MGMT_PHY_LE_CODED_RX)
3600 cp_phy.rx_phys |= HCI_LE_SET_PHY_CODED;
3601
3602 hci_req_add(&req, HCI_OP_LE_SET_DEFAULT_PHY, sizeof(cp_phy), &cp_phy);
3603
3604 err = hci_req_run_skb(&req, set_default_phy_complete);
3605 if (err < 0)
3606 mgmt_pending_remove(cmd);
3607
3608unlock:
3609 hci_dev_unlock(hdev);
3610
3611 return err;
3612}
3613
Alain Michaud600a8742020-01-07 00:43:17 +00003614static int set_blocked_keys(struct sock *sk, struct hci_dev *hdev, void *data,
3615 u16 len)
3616{
3617 int err = MGMT_STATUS_SUCCESS;
3618 struct mgmt_cp_set_blocked_keys *keys = data;
3619 const u16 max_key_count = ((U16_MAX - sizeof(*keys)) /
3620 sizeof(struct mgmt_blocked_key_info));
3621 u16 key_count, expected_len;
3622 int i;
3623
Marcel Holtmann181d6952020-05-06 09:57:47 +02003624 bt_dev_dbg(hdev, "sock %p", sk);
Alain Michaud600a8742020-01-07 00:43:17 +00003625
3626 key_count = __le16_to_cpu(keys->key_count);
3627 if (key_count > max_key_count) {
3628 bt_dev_err(hdev, "too big key_count value %u", key_count);
3629 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BLOCKED_KEYS,
3630 MGMT_STATUS_INVALID_PARAMS);
3631 }
3632
3633 expected_len = struct_size(keys, keys, key_count);
3634 if (expected_len != len) {
3635 bt_dev_err(hdev, "expected %u bytes, got %u bytes",
3636 expected_len, len);
3637 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BLOCKED_KEYS,
3638 MGMT_STATUS_INVALID_PARAMS);
3639 }
3640
3641 hci_dev_lock(hdev);
3642
3643 hci_blocked_keys_clear(hdev);
3644
3645 for (i = 0; i < keys->key_count; ++i) {
3646 struct blocked_key *b = kzalloc(sizeof(*b), GFP_KERNEL);
3647
3648 if (!b) {
3649 err = MGMT_STATUS_NO_RESOURCES;
3650 break;
3651 }
3652
3653 b->type = keys->keys[i].type;
3654 memcpy(b->val, keys->keys[i].val, sizeof(b->val));
3655 list_add_rcu(&b->list, &hdev->blocked_keys);
3656 }
3657 hci_dev_unlock(hdev);
3658
3659 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_BLOCKED_KEYS,
3660 err, NULL, 0);
3661}
3662
Alain Michaud00bce3f2020-03-05 16:14:59 +00003663static int set_wideband_speech(struct sock *sk, struct hci_dev *hdev,
3664 void *data, u16 len)
3665{
3666 struct mgmt_mode *cp = data;
3667 int err;
3668 bool changed = false;
3669
Marcel Holtmann181d6952020-05-06 09:57:47 +02003670 bt_dev_dbg(hdev, "sock %p", sk);
Alain Michaud00bce3f2020-03-05 16:14:59 +00003671
3672 if (!test_bit(HCI_QUIRK_WIDEBAND_SPEECH_SUPPORTED, &hdev->quirks))
3673 return mgmt_cmd_status(sk, hdev->id,
3674 MGMT_OP_SET_WIDEBAND_SPEECH,
3675 MGMT_STATUS_NOT_SUPPORTED);
3676
3677 if (cp->val != 0x00 && cp->val != 0x01)
3678 return mgmt_cmd_status(sk, hdev->id,
3679 MGMT_OP_SET_WIDEBAND_SPEECH,
3680 MGMT_STATUS_INVALID_PARAMS);
3681
3682 hci_dev_lock(hdev);
3683
3684 if (pending_find(MGMT_OP_SET_WIDEBAND_SPEECH, hdev)) {
3685 err = mgmt_cmd_status(sk, hdev->id,
3686 MGMT_OP_SET_WIDEBAND_SPEECH,
3687 MGMT_STATUS_BUSY);
3688 goto unlock;
3689 }
3690
3691 if (hdev_is_powered(hdev) &&
3692 !!cp->val != hci_dev_test_flag(hdev,
3693 HCI_WIDEBAND_SPEECH_ENABLED)) {
3694 err = mgmt_cmd_status(sk, hdev->id,
3695 MGMT_OP_SET_WIDEBAND_SPEECH,
3696 MGMT_STATUS_REJECTED);
3697 goto unlock;
3698 }
3699
3700 if (cp->val)
3701 changed = !hci_dev_test_and_set_flag(hdev,
3702 HCI_WIDEBAND_SPEECH_ENABLED);
3703 else
3704 changed = hci_dev_test_and_clear_flag(hdev,
3705 HCI_WIDEBAND_SPEECH_ENABLED);
3706
3707 err = send_settings_rsp(sk, MGMT_OP_SET_WIDEBAND_SPEECH, hdev);
3708 if (err < 0)
3709 goto unlock;
3710
3711 if (changed)
3712 err = new_settings(hdev, sk);
3713
3714unlock:
3715 hci_dev_unlock(hdev);
3716 return err;
3717}
3718
Daniel Winkler4d9b9522020-12-03 12:12:52 -08003719static int read_controller_cap(struct sock *sk, struct hci_dev *hdev,
3720 void *data, u16 data_len)
Marcel Holtmannbc292252020-04-03 21:44:05 +02003721{
Daniel Winkler4d9b9522020-12-03 12:12:52 -08003722 char buf[20];
3723 struct mgmt_rp_read_controller_cap *rp = (void *)buf;
3724 u16 cap_len = 0;
Marcel Holtmannbc292252020-04-03 21:44:05 +02003725 u8 flags = 0;
Daniel Winkler4d9b9522020-12-03 12:12:52 -08003726 u8 tx_power_range[2];
Marcel Holtmannbc292252020-04-03 21:44:05 +02003727
3728 bt_dev_dbg(hdev, "sock %p", sk);
3729
3730 memset(&buf, 0, sizeof(buf));
3731
3732 hci_dev_lock(hdev);
3733
3734 /* When the Read Simple Pairing Options command is supported, then
3735 * the remote public key validation is supported.
Marcel Holtmanna61d6712021-04-06 21:55:56 +02003736 *
3737 * Alternatively, when Microsoft extensions are available, they can
3738 * indicate support for public key validation as well.
Marcel Holtmannbc292252020-04-03 21:44:05 +02003739 */
Marcel Holtmanna61d6712021-04-06 21:55:56 +02003740 if ((hdev->commands[41] & 0x08) || msft_curve_validity(hdev))
Marcel Holtmannbc292252020-04-03 21:44:05 +02003741 flags |= 0x01; /* Remote public key validation (BR/EDR) */
3742
3743 flags |= 0x02; /* Remote public key validation (LE) */
3744
3745 /* When the Read Encryption Key Size command is supported, then the
3746 * encryption key size is enforced.
3747 */
3748 if (hdev->commands[20] & 0x10)
3749 flags |= 0x04; /* Encryption key size enforcement (BR/EDR) */
3750
3751 flags |= 0x08; /* Encryption key size enforcement (LE) */
3752
Daniel Winkler4d9b9522020-12-03 12:12:52 -08003753 cap_len = eir_append_data(rp->cap, cap_len, MGMT_CAP_SEC_FLAGS,
3754 &flags, 1);
Marcel Holtmannbc292252020-04-03 21:44:05 +02003755
3756 /* When the Read Simple Pairing Options command is supported, then
3757 * also max encryption key size information is provided.
3758 */
3759 if (hdev->commands[41] & 0x08)
Daniel Winkler4d9b9522020-12-03 12:12:52 -08003760 cap_len = eir_append_le16(rp->cap, cap_len,
3761 MGMT_CAP_MAX_ENC_KEY_SIZE,
Marcel Holtmannbc292252020-04-03 21:44:05 +02003762 hdev->max_enc_key_size);
3763
Daniel Winkler4d9b9522020-12-03 12:12:52 -08003764 cap_len = eir_append_le16(rp->cap, cap_len,
3765 MGMT_CAP_SMP_MAX_ENC_KEY_SIZE,
3766 SMP_MAX_ENC_KEY_SIZE);
Marcel Holtmannbc292252020-04-03 21:44:05 +02003767
Daniel Winkler4d9b9522020-12-03 12:12:52 -08003768 /* Append the min/max LE tx power parameters if we were able to fetch
3769 * it from the controller
3770 */
3771 if (hdev->commands[38] & 0x80) {
3772 memcpy(&tx_power_range[0], &hdev->min_le_tx_power, 1);
3773 memcpy(&tx_power_range[1], &hdev->max_le_tx_power, 1);
3774 cap_len = eir_append_data(rp->cap, cap_len, MGMT_CAP_LE_TX_PWR,
3775 tx_power_range, 2);
3776 }
3777
3778 rp->cap_len = cpu_to_le16(cap_len);
Marcel Holtmannbc292252020-04-03 21:44:05 +02003779
3780 hci_dev_unlock(hdev);
3781
Daniel Winkler4d9b9522020-12-03 12:12:52 -08003782 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_CONTROLLER_CAP, 0,
3783 rp, sizeof(*rp) + cap_len);
Marcel Holtmannbc292252020-04-03 21:44:05 +02003784}
3785
Marcel Holtmanne625e502020-05-06 09:57:52 +02003786#ifdef CONFIG_BT_FEATURE_DEBUG
3787/* d4992530-b9ec-469f-ab01-6c481c47da1c */
3788static const u8 debug_uuid[16] = {
3789 0x1c, 0xda, 0x47, 0x1c, 0x48, 0x6c, 0x01, 0xab,
3790 0x9f, 0x46, 0xec, 0xb9, 0x30, 0x25, 0x99, 0xd4,
3791};
3792#endif
3793
Alain Michaud15d8ce02020-07-07 17:46:06 +02003794/* 671b10b5-42c0-4696-9227-eb28d1b049d6 */
3795static const u8 simult_central_periph_uuid[16] = {
3796 0xd6, 0x49, 0xb0, 0xd1, 0x28, 0xeb, 0x27, 0x92,
3797 0x96, 0x46, 0xc0, 0x42, 0xb5, 0x10, 0x1b, 0x67,
3798};
3799
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05303800/* 15c0a148-c273-11ea-b3de-0242ac130004 */
3801static const u8 rpa_resolution_uuid[16] = {
3802 0x04, 0x00, 0x13, 0xac, 0x42, 0x02, 0xde, 0xb3,
3803 0xea, 0x11, 0x73, 0xc2, 0x48, 0xa1, 0xc0, 0x15,
3804};
3805
Marcel Holtmanna10c9072020-05-06 09:57:51 +02003806static int read_exp_features_info(struct sock *sk, struct hci_dev *hdev,
3807 void *data, u16 data_len)
3808{
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05303809 char buf[62]; /* Enough space for 3 features */
Marcel Holtmanna10c9072020-05-06 09:57:51 +02003810 struct mgmt_rp_read_exp_features_info *rp = (void *)buf;
3811 u16 idx = 0;
Alain Michaud15d8ce02020-07-07 17:46:06 +02003812 u32 flags;
Marcel Holtmanna10c9072020-05-06 09:57:51 +02003813
3814 bt_dev_dbg(hdev, "sock %p", sk);
3815
3816 memset(&buf, 0, sizeof(buf));
3817
Marcel Holtmanne625e502020-05-06 09:57:52 +02003818#ifdef CONFIG_BT_FEATURE_DEBUG
3819 if (!hdev) {
Alain Michaud15d8ce02020-07-07 17:46:06 +02003820 flags = bt_dbg_get() ? BIT(0) : 0;
Marcel Holtmanne625e502020-05-06 09:57:52 +02003821
3822 memcpy(rp->features[idx].uuid, debug_uuid, 16);
3823 rp->features[idx].flags = cpu_to_le32(flags);
3824 idx++;
3825 }
3826#endif
3827
Alain Michaud15d8ce02020-07-07 17:46:06 +02003828 if (hdev) {
3829 if (test_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks) &&
3830 (hdev->le_states[4] & 0x08) && /* Central */
3831 (hdev->le_states[4] & 0x40) && /* Peripheral */
3832 (hdev->le_states[3] & 0x10)) /* Simultaneous */
3833 flags = BIT(0);
3834 else
3835 flags = 0;
3836
3837 memcpy(rp->features[idx].uuid, simult_central_periph_uuid, 16);
3838 rp->features[idx].flags = cpu_to_le32(flags);
3839 idx++;
3840 }
3841
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05303842 if (hdev && use_ll_privacy(hdev)) {
3843 if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
3844 flags = BIT(0) | BIT(1);
3845 else
3846 flags = BIT(1);
3847
3848 memcpy(rp->features[idx].uuid, rpa_resolution_uuid, 16);
3849 rp->features[idx].flags = cpu_to_le32(flags);
3850 idx++;
3851 }
3852
Marcel Holtmanna10c9072020-05-06 09:57:51 +02003853 rp->feature_count = cpu_to_le16(idx);
3854
3855 /* After reading the experimental features information, enable
3856 * the events to update client on any future change.
3857 */
3858 hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
3859
3860 return mgmt_cmd_complete(sk, hdev ? hdev->id : MGMT_INDEX_NONE,
3861 MGMT_OP_READ_EXP_FEATURES_INFO,
3862 0, rp, sizeof(*rp) + (20 * idx));
3863}
3864
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05303865static int exp_ll_privacy_feature_changed(bool enabled, struct hci_dev *hdev,
3866 struct sock *skip)
3867{
3868 struct mgmt_ev_exp_feature_changed ev;
3869
3870 memset(&ev, 0, sizeof(ev));
3871 memcpy(ev.uuid, rpa_resolution_uuid, 16);
3872 ev.flags = cpu_to_le32((enabled ? BIT(0) : 0) | BIT(1));
3873
3874 return mgmt_limited_event(MGMT_EV_EXP_FEATURE_CHANGED, hdev,
3875 &ev, sizeof(ev),
3876 HCI_MGMT_EXP_FEATURE_EVENTS, skip);
3877
3878}
3879
Marcel Holtmanne625e502020-05-06 09:57:52 +02003880#ifdef CONFIG_BT_FEATURE_DEBUG
3881static int exp_debug_feature_changed(bool enabled, struct sock *skip)
3882{
3883 struct mgmt_ev_exp_feature_changed ev;
3884
3885 memset(&ev, 0, sizeof(ev));
3886 memcpy(ev.uuid, debug_uuid, 16);
3887 ev.flags = cpu_to_le32(enabled ? BIT(0) : 0);
3888
3889 return mgmt_limited_event(MGMT_EV_EXP_FEATURE_CHANGED, NULL,
3890 &ev, sizeof(ev),
3891 HCI_MGMT_EXP_FEATURE_EVENTS, skip);
3892}
3893#endif
3894
Marcel Holtmanna10c9072020-05-06 09:57:51 +02003895static int set_exp_feature(struct sock *sk, struct hci_dev *hdev,
3896 void *data, u16 data_len)
3897{
3898 struct mgmt_cp_set_exp_feature *cp = data;
3899 struct mgmt_rp_set_exp_feature rp;
3900
3901 bt_dev_dbg(hdev, "sock %p", sk);
3902
3903 if (!memcmp(cp->uuid, ZERO_KEY, 16)) {
3904 memset(rp.uuid, 0, 16);
3905 rp.flags = cpu_to_le32(0);
3906
Marcel Holtmanne625e502020-05-06 09:57:52 +02003907#ifdef CONFIG_BT_FEATURE_DEBUG
3908 if (!hdev) {
3909 bool changed = bt_dbg_get();
3910
3911 bt_dbg_set(false);
3912
3913 if (changed)
3914 exp_debug_feature_changed(false, sk);
3915 }
3916#endif
3917
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05303918 if (hdev && use_ll_privacy(hdev) && !hdev_is_powered(hdev)) {
3919 bool changed = hci_dev_test_flag(hdev,
3920 HCI_ENABLE_LL_PRIVACY);
3921
3922 hci_dev_clear_flag(hdev, HCI_ENABLE_LL_PRIVACY);
3923
3924 if (changed)
3925 exp_ll_privacy_feature_changed(false, hdev, sk);
3926 }
3927
Marcel Holtmanna10c9072020-05-06 09:57:51 +02003928 hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
3929
3930 return mgmt_cmd_complete(sk, hdev ? hdev->id : MGMT_INDEX_NONE,
3931 MGMT_OP_SET_EXP_FEATURE, 0,
3932 &rp, sizeof(rp));
3933 }
3934
Marcel Holtmanne625e502020-05-06 09:57:52 +02003935#ifdef CONFIG_BT_FEATURE_DEBUG
3936 if (!memcmp(cp->uuid, debug_uuid, 16)) {
3937 bool val, changed;
3938 int err;
3939
3940 /* Command requires to use the non-controller index */
3941 if (hdev)
3942 return mgmt_cmd_status(sk, hdev->id,
3943 MGMT_OP_SET_EXP_FEATURE,
3944 MGMT_STATUS_INVALID_INDEX);
3945
3946 /* Parameters are limited to a single octet */
3947 if (data_len != MGMT_SET_EXP_FEATURE_SIZE + 1)
3948 return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
3949 MGMT_OP_SET_EXP_FEATURE,
3950 MGMT_STATUS_INVALID_PARAMS);
3951
3952 /* Only boolean on/off is supported */
3953 if (cp->param[0] != 0x00 && cp->param[0] != 0x01)
3954 return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
3955 MGMT_OP_SET_EXP_FEATURE,
3956 MGMT_STATUS_INVALID_PARAMS);
3957
3958 val = !!cp->param[0];
3959 changed = val ? !bt_dbg_get() : bt_dbg_get();
3960 bt_dbg_set(val);
3961
3962 memcpy(rp.uuid, debug_uuid, 16);
3963 rp.flags = cpu_to_le32(val ? BIT(0) : 0);
3964
3965 hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
3966
3967 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
3968 MGMT_OP_SET_EXP_FEATURE, 0,
3969 &rp, sizeof(rp));
3970
3971 if (changed)
3972 exp_debug_feature_changed(val, sk);
3973
3974 return err;
3975 }
3976#endif
3977
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05303978 if (!memcmp(cp->uuid, rpa_resolution_uuid, 16)) {
3979 bool val, changed;
3980 int err;
3981 u32 flags;
3982
3983 /* Command requires to use the controller index */
3984 if (!hdev)
3985 return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
3986 MGMT_OP_SET_EXP_FEATURE,
3987 MGMT_STATUS_INVALID_INDEX);
3988
3989 /* Changes can only be made when controller is powered down */
3990 if (hdev_is_powered(hdev))
3991 return mgmt_cmd_status(sk, hdev->id,
3992 MGMT_OP_SET_EXP_FEATURE,
Marcel Holtmann353cac02021-03-14 14:49:38 +01003993 MGMT_STATUS_REJECTED);
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05303994
3995 /* Parameters are limited to a single octet */
3996 if (data_len != MGMT_SET_EXP_FEATURE_SIZE + 1)
3997 return mgmt_cmd_status(sk, hdev->id,
3998 MGMT_OP_SET_EXP_FEATURE,
3999 MGMT_STATUS_INVALID_PARAMS);
4000
4001 /* Only boolean on/off is supported */
4002 if (cp->param[0] != 0x00 && cp->param[0] != 0x01)
4003 return mgmt_cmd_status(sk, hdev->id,
4004 MGMT_OP_SET_EXP_FEATURE,
4005 MGMT_STATUS_INVALID_PARAMS);
4006
4007 val = !!cp->param[0];
4008
4009 if (val) {
4010 changed = !hci_dev_test_flag(hdev,
4011 HCI_ENABLE_LL_PRIVACY);
4012 hci_dev_set_flag(hdev, HCI_ENABLE_LL_PRIVACY);
4013 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
4014
4015 /* Enable LL privacy + supported settings changed */
4016 flags = BIT(0) | BIT(1);
4017 } else {
4018 changed = hci_dev_test_flag(hdev,
4019 HCI_ENABLE_LL_PRIVACY);
4020 hci_dev_clear_flag(hdev, HCI_ENABLE_LL_PRIVACY);
4021
4022 /* Disable LL privacy + supported settings changed */
4023 flags = BIT(1);
4024 }
4025
4026 memcpy(rp.uuid, rpa_resolution_uuid, 16);
4027 rp.flags = cpu_to_le32(flags);
4028
4029 hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
4030
4031 err = mgmt_cmd_complete(sk, hdev->id,
4032 MGMT_OP_SET_EXP_FEATURE, 0,
4033 &rp, sizeof(rp));
4034
4035 if (changed)
4036 exp_ll_privacy_feature_changed(val, hdev, sk);
4037
4038 return err;
4039 }
4040
Marcel Holtmanna10c9072020-05-06 09:57:51 +02004041 return mgmt_cmd_status(sk, hdev ? hdev->id : MGMT_INDEX_NONE,
4042 MGMT_OP_SET_EXP_FEATURE,
4043 MGMT_STATUS_NOT_SUPPORTED);
4044}
4045
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004046#define SUPPORTED_DEVICE_FLAGS() ((1U << HCI_CONN_FLAG_MAX) - 1)
4047
4048static int get_device_flags(struct sock *sk, struct hci_dev *hdev, void *data,
4049 u16 data_len)
4050{
4051 struct mgmt_cp_get_device_flags *cp = data;
4052 struct mgmt_rp_get_device_flags rp;
4053 struct bdaddr_list_with_flags *br_params;
4054 struct hci_conn_params *params;
4055 u32 supported_flags = SUPPORTED_DEVICE_FLAGS();
4056 u32 current_flags = 0;
4057 u8 status = MGMT_STATUS_INVALID_PARAMS;
4058
4059 bt_dev_dbg(hdev, "Get device flags %pMR (type 0x%x)\n",
4060 &cp->addr.bdaddr, cp->addr.type);
4061
Abhishek Pandit-Subedi3ca33e32020-06-19 17:10:24 -07004062 hci_dev_lock(hdev);
4063
Tedd Ho-Jeong An02ce2c22021-05-26 10:36:22 -07004064 memset(&rp, 0, sizeof(rp));
4065
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004066 if (cp->addr.type == BDADDR_BREDR) {
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08004067 br_params = hci_bdaddr_list_lookup_with_flags(&hdev->accept_list,
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004068 &cp->addr.bdaddr,
4069 cp->addr.type);
4070 if (!br_params)
4071 goto done;
4072
4073 current_flags = br_params->current_flags;
4074 } else {
4075 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
4076 le_addr_type(cp->addr.type));
4077
4078 if (!params)
4079 goto done;
4080
4081 current_flags = params->current_flags;
4082 }
4083
4084 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
4085 rp.addr.type = cp->addr.type;
4086 rp.supported_flags = cpu_to_le32(supported_flags);
4087 rp.current_flags = cpu_to_le32(current_flags);
4088
4089 status = MGMT_STATUS_SUCCESS;
4090
4091done:
Abhishek Pandit-Subedi3ca33e32020-06-19 17:10:24 -07004092 hci_dev_unlock(hdev);
4093
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004094 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_DEVICE_FLAGS, status,
4095 &rp, sizeof(rp));
4096}
4097
4098static void device_flags_changed(struct sock *sk, struct hci_dev *hdev,
4099 bdaddr_t *bdaddr, u8 bdaddr_type,
4100 u32 supported_flags, u32 current_flags)
4101{
4102 struct mgmt_ev_device_flags_changed ev;
4103
4104 bacpy(&ev.addr.bdaddr, bdaddr);
4105 ev.addr.type = bdaddr_type;
4106 ev.supported_flags = cpu_to_le32(supported_flags);
4107 ev.current_flags = cpu_to_le32(current_flags);
4108
4109 mgmt_event(MGMT_EV_DEVICE_FLAGS_CHANGED, hdev, &ev, sizeof(ev), sk);
4110}
4111
4112static int set_device_flags(struct sock *sk, struct hci_dev *hdev, void *data,
4113 u16 len)
4114{
4115 struct mgmt_cp_set_device_flags *cp = data;
4116 struct bdaddr_list_with_flags *br_params;
4117 struct hci_conn_params *params;
4118 u8 status = MGMT_STATUS_INVALID_PARAMS;
4119 u32 supported_flags = SUPPORTED_DEVICE_FLAGS();
4120 u32 current_flags = __le32_to_cpu(cp->current_flags);
4121
4122 bt_dev_dbg(hdev, "Set device flags %pMR (type 0x%x) = 0x%x",
4123 &cp->addr.bdaddr, cp->addr.type,
4124 __le32_to_cpu(current_flags));
4125
4126 if ((supported_flags | current_flags) != supported_flags) {
4127 bt_dev_warn(hdev, "Bad flag given (0x%x) vs supported (0x%0x)",
4128 current_flags, supported_flags);
4129 goto done;
4130 }
4131
Abhishek Pandit-Subedi3ca33e32020-06-19 17:10:24 -07004132 hci_dev_lock(hdev);
4133
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004134 if (cp->addr.type == BDADDR_BREDR) {
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08004135 br_params = hci_bdaddr_list_lookup_with_flags(&hdev->accept_list,
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004136 &cp->addr.bdaddr,
4137 cp->addr.type);
4138
4139 if (br_params) {
4140 br_params->current_flags = current_flags;
4141 status = MGMT_STATUS_SUCCESS;
4142 } else {
4143 bt_dev_warn(hdev, "No such BR/EDR device %pMR (0x%x)",
4144 &cp->addr.bdaddr, cp->addr.type);
4145 }
4146 } else {
4147 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
4148 le_addr_type(cp->addr.type));
4149 if (params) {
4150 params->current_flags = current_flags;
4151 status = MGMT_STATUS_SUCCESS;
4152 } else {
4153 bt_dev_warn(hdev, "No such LE device %pMR (0x%x)",
4154 &cp->addr.bdaddr,
4155 le_addr_type(cp->addr.type));
4156 }
4157 }
4158
4159done:
Abhishek Pandit-Subedi3ca33e32020-06-19 17:10:24 -07004160 hci_dev_unlock(hdev);
4161
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004162 if (status == MGMT_STATUS_SUCCESS)
4163 device_flags_changed(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
4164 supported_flags, current_flags);
4165
4166 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_FLAGS, status,
4167 &cp->addr, sizeof(cp->addr));
4168}
4169
Miao-chen Choub52729f2020-06-17 16:39:16 +02004170static void mgmt_adv_monitor_added(struct sock *sk, struct hci_dev *hdev,
4171 u16 handle)
4172{
4173 struct mgmt_ev_adv_monitor_added ev;
4174
4175 ev.monitor_handle = cpu_to_le16(handle);
4176
4177 mgmt_event(MGMT_EV_ADV_MONITOR_ADDED, hdev, &ev, sizeof(ev), sk);
4178}
4179
Archie Pusaka66bd0952021-01-22 16:36:13 +08004180void mgmt_adv_monitor_removed(struct hci_dev *hdev, u16 handle)
Miao-chen Choucdde92e2020-06-17 16:39:17 +02004181{
Archie Pusaka66bd0952021-01-22 16:36:13 +08004182 struct mgmt_ev_adv_monitor_removed ev;
4183 struct mgmt_pending_cmd *cmd;
4184 struct sock *sk_skip = NULL;
4185 struct mgmt_cp_remove_adv_monitor *cp;
4186
4187 cmd = pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev);
4188 if (cmd) {
4189 cp = cmd->param;
4190
4191 if (cp->monitor_handle)
4192 sk_skip = cmd->sk;
4193 }
Miao-chen Choucdde92e2020-06-17 16:39:17 +02004194
4195 ev.monitor_handle = cpu_to_le16(handle);
4196
Archie Pusaka66bd0952021-01-22 16:36:13 +08004197 mgmt_event(MGMT_EV_ADV_MONITOR_REMOVED, hdev, &ev, sizeof(ev), sk_skip);
Miao-chen Choucdde92e2020-06-17 16:39:17 +02004198}
4199
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004200static int read_adv_mon_features(struct sock *sk, struct hci_dev *hdev,
4201 void *data, u16 len)
4202{
4203 struct adv_monitor *monitor = NULL;
4204 struct mgmt_rp_read_adv_monitor_features *rp = NULL;
Peilin Yecafd4722020-09-09 03:25:51 -04004205 int handle, err;
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004206 size_t rp_size = 0;
4207 __u32 supported = 0;
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004208 __u32 enabled = 0;
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004209 __u16 num_handles = 0;
4210 __u16 handles[HCI_MAX_ADV_MONITOR_NUM_HANDLES];
4211
4212 BT_DBG("request for %s", hdev->name);
4213
4214 hci_dev_lock(hdev);
4215
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004216 if (msft_monitor_supported(hdev))
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004217 supported |= MGMT_ADV_MONITOR_FEATURE_MASK_OR_PATTERNS;
4218
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004219 idr_for_each_entry(&hdev->adv_monitors_idr, monitor, handle)
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004220 handles[num_handles++] = monitor->handle;
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004221
4222 hci_dev_unlock(hdev);
4223
4224 rp_size = sizeof(*rp) + (num_handles * sizeof(u16));
4225 rp = kmalloc(rp_size, GFP_KERNEL);
4226 if (!rp)
4227 return -ENOMEM;
4228
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004229 /* All supported features are currently enabled */
4230 enabled = supported;
4231
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004232 rp->supported_features = cpu_to_le32(supported);
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004233 rp->enabled_features = cpu_to_le32(enabled);
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004234 rp->max_num_handles = cpu_to_le16(HCI_MAX_ADV_MONITOR_NUM_HANDLES);
4235 rp->max_num_patterns = HCI_MAX_ADV_MONITOR_NUM_PATTERNS;
4236 rp->num_handles = cpu_to_le16(num_handles);
4237 if (num_handles)
4238 memcpy(&rp->handles, &handles, (num_handles * sizeof(u16)));
4239
Peilin Yecafd4722020-09-09 03:25:51 -04004240 err = mgmt_cmd_complete(sk, hdev->id,
4241 MGMT_OP_READ_ADV_MONITOR_FEATURES,
4242 MGMT_STATUS_SUCCESS, rp, rp_size);
4243
4244 kfree(rp);
4245
4246 return err;
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004247}
4248
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004249int mgmt_add_adv_patterns_monitor_complete(struct hci_dev *hdev, u8 status)
Miao-chen Choub1395532020-06-17 16:39:14 +02004250{
Miao-chen Choub1395532020-06-17 16:39:14 +02004251 struct mgmt_rp_add_adv_patterns_monitor rp;
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004252 struct mgmt_pending_cmd *cmd;
4253 struct adv_monitor *monitor;
4254 int err = 0;
Miao-chen Choub1395532020-06-17 16:39:14 +02004255
4256 hci_dev_lock(hdev);
4257
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004258 cmd = pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI, hdev);
4259 if (!cmd) {
4260 cmd = pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR, hdev);
4261 if (!cmd)
4262 goto done;
4263 }
Miao-chen Choub52729f2020-06-17 16:39:16 +02004264
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004265 monitor = cmd->user_data;
4266 rp.monitor_handle = cpu_to_le16(monitor->handle);
Archie Pusakab4a221e2021-01-22 16:36:11 +08004267
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004268 if (!status) {
4269 mgmt_adv_monitor_added(cmd->sk, hdev, monitor->handle);
4270 hdev->adv_monitors_cnt++;
4271 if (monitor->state == ADV_MONITOR_STATE_NOT_REGISTERED)
4272 monitor->state = ADV_MONITOR_STATE_REGISTERED;
4273 hci_update_background_scan(hdev);
4274 }
4275
4276 err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
4277 mgmt_status(status), &rp, sizeof(rp));
4278 mgmt_pending_remove(cmd);
4279
4280done:
4281 hci_dev_unlock(hdev);
Kai Ye85d672842021-06-03 15:41:02 +08004282 bt_dev_dbg(hdev, "add monitor %d complete, status %u",
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004283 rp.monitor_handle, status);
4284
4285 return err;
4286}
4287
4288static int __add_adv_patterns_monitor(struct sock *sk, struct hci_dev *hdev,
4289 struct adv_monitor *m, u8 status,
4290 void *data, u16 len, u16 op)
4291{
4292 struct mgmt_rp_add_adv_patterns_monitor rp;
4293 struct mgmt_pending_cmd *cmd;
4294 int err;
4295 bool pending;
4296
4297 hci_dev_lock(hdev);
4298
4299 if (status)
4300 goto unlock;
4301
4302 if (pending_find(MGMT_OP_SET_LE, hdev) ||
4303 pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR, hdev) ||
4304 pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI, hdev) ||
4305 pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev)) {
4306 status = MGMT_STATUS_BUSY;
Miao-chen Choub1395532020-06-17 16:39:14 +02004307 goto unlock;
4308 }
4309
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004310 cmd = mgmt_pending_add(sk, op, hdev, data, len);
4311 if (!cmd) {
4312 status = MGMT_STATUS_NO_RESOURCES;
4313 goto unlock;
4314 }
4315
Howard Chungb1810fe2021-02-03 15:09:29 +08004316 cmd->user_data = m;
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004317 pending = hci_add_adv_monitor(hdev, m, &err);
4318 if (err) {
4319 if (err == -ENOSPC || err == -ENOMEM)
4320 status = MGMT_STATUS_NO_RESOURCES;
4321 else if (err == -EINVAL)
4322 status = MGMT_STATUS_INVALID_PARAMS;
4323 else
4324 status = MGMT_STATUS_FAILED;
4325
4326 mgmt_pending_remove(cmd);
4327 goto unlock;
4328 }
4329
4330 if (!pending) {
4331 mgmt_pending_remove(cmd);
4332 rp.monitor_handle = cpu_to_le16(m->handle);
Miao-chen Choub52729f2020-06-17 16:39:16 +02004333 mgmt_adv_monitor_added(sk, hdev, m->handle);
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004334 m->state = ADV_MONITOR_STATE_REGISTERED;
4335 hdev->adv_monitors_cnt++;
4336
4337 hci_dev_unlock(hdev);
4338 return mgmt_cmd_complete(sk, hdev->id, op, MGMT_STATUS_SUCCESS,
4339 &rp, sizeof(rp));
4340 }
Miao-chen Choub52729f2020-06-17 16:39:16 +02004341
Miao-chen Choub1395532020-06-17 16:39:14 +02004342 hci_dev_unlock(hdev);
4343
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004344 return 0;
Miao-chen Choub1395532020-06-17 16:39:14 +02004345
4346unlock:
Archie Pusaka66bd0952021-01-22 16:36:13 +08004347 hci_free_adv_monitor(hdev, m);
Miao-chen Choub1395532020-06-17 16:39:14 +02004348 hci_dev_unlock(hdev);
Archie Pusakab4a221e2021-01-22 16:36:11 +08004349 return mgmt_cmd_status(sk, hdev->id, op, status);
4350}
4351
4352static void parse_adv_monitor_rssi(struct adv_monitor *m,
4353 struct mgmt_adv_rssi_thresholds *rssi)
4354{
4355 if (rssi) {
4356 m->rssi.low_threshold = rssi->low_threshold;
4357 m->rssi.low_threshold_timeout =
4358 __le16_to_cpu(rssi->low_threshold_timeout);
4359 m->rssi.high_threshold = rssi->high_threshold;
4360 m->rssi.high_threshold_timeout =
4361 __le16_to_cpu(rssi->high_threshold_timeout);
4362 m->rssi.sampling_period = rssi->sampling_period;
4363 } else {
4364 /* Default values. These numbers are the least constricting
4365 * parameters for MSFT API to work, so it behaves as if there
4366 * are no rssi parameter to consider. May need to be changed
4367 * if other API are to be supported.
4368 */
4369 m->rssi.low_threshold = -127;
4370 m->rssi.low_threshold_timeout = 60;
4371 m->rssi.high_threshold = -127;
4372 m->rssi.high_threshold_timeout = 0;
4373 m->rssi.sampling_period = 0;
4374 }
4375}
4376
4377static u8 parse_adv_monitor_pattern(struct adv_monitor *m, u8 pattern_count,
4378 struct mgmt_adv_pattern *patterns)
4379{
4380 u8 offset = 0, length = 0;
4381 struct adv_pattern *p = NULL;
Archie Pusakab4a221e2021-01-22 16:36:11 +08004382 int i;
4383
4384 for (i = 0; i < pattern_count; i++) {
Archie Pusakab4a221e2021-01-22 16:36:11 +08004385 offset = patterns[i].offset;
4386 length = patterns[i].length;
4387 if (offset >= HCI_MAX_AD_LENGTH ||
4388 length > HCI_MAX_AD_LENGTH ||
4389 (offset + length) > HCI_MAX_AD_LENGTH)
4390 return MGMT_STATUS_INVALID_PARAMS;
4391
4392 p = kmalloc(sizeof(*p), GFP_KERNEL);
4393 if (!p)
4394 return MGMT_STATUS_NO_RESOURCES;
4395
4396 p->ad_type = patterns[i].ad_type;
4397 p->offset = patterns[i].offset;
4398 p->length = patterns[i].length;
4399 memcpy(p->value, patterns[i].value, p->length);
4400
4401 INIT_LIST_HEAD(&p->list);
4402 list_add(&p->list, &m->patterns);
4403 }
4404
Archie Pusakab4a221e2021-01-22 16:36:11 +08004405 return MGMT_STATUS_SUCCESS;
4406}
4407
4408static int add_adv_patterns_monitor(struct sock *sk, struct hci_dev *hdev,
4409 void *data, u16 len)
4410{
4411 struct mgmt_cp_add_adv_patterns_monitor *cp = data;
4412 struct adv_monitor *m = NULL;
4413 u8 status = MGMT_STATUS_SUCCESS;
4414 size_t expected_size = sizeof(*cp);
4415
4416 BT_DBG("request for %s", hdev->name);
4417
4418 if (len <= sizeof(*cp)) {
4419 status = MGMT_STATUS_INVALID_PARAMS;
4420 goto done;
4421 }
4422
4423 expected_size += cp->pattern_count * sizeof(struct mgmt_adv_pattern);
4424 if (len != expected_size) {
4425 status = MGMT_STATUS_INVALID_PARAMS;
4426 goto done;
4427 }
4428
4429 m = kzalloc(sizeof(*m), GFP_KERNEL);
4430 if (!m) {
4431 status = MGMT_STATUS_NO_RESOURCES;
4432 goto done;
4433 }
4434
4435 INIT_LIST_HEAD(&m->patterns);
4436
4437 parse_adv_monitor_rssi(m, NULL);
4438 status = parse_adv_monitor_pattern(m, cp->pattern_count, cp->patterns);
4439
4440done:
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004441 return __add_adv_patterns_monitor(sk, hdev, m, status, data, len,
Archie Pusakab4a221e2021-01-22 16:36:11 +08004442 MGMT_OP_ADD_ADV_PATTERNS_MONITOR);
4443}
4444
4445static int add_adv_patterns_monitor_rssi(struct sock *sk, struct hci_dev *hdev,
4446 void *data, u16 len)
4447{
4448 struct mgmt_cp_add_adv_patterns_monitor_rssi *cp = data;
4449 struct adv_monitor *m = NULL;
4450 u8 status = MGMT_STATUS_SUCCESS;
4451 size_t expected_size = sizeof(*cp);
4452
4453 BT_DBG("request for %s", hdev->name);
4454
4455 if (len <= sizeof(*cp)) {
4456 status = MGMT_STATUS_INVALID_PARAMS;
4457 goto done;
4458 }
4459
4460 expected_size += cp->pattern_count * sizeof(struct mgmt_adv_pattern);
4461 if (len != expected_size) {
4462 status = MGMT_STATUS_INVALID_PARAMS;
4463 goto done;
4464 }
4465
4466 m = kzalloc(sizeof(*m), GFP_KERNEL);
4467 if (!m) {
4468 status = MGMT_STATUS_NO_RESOURCES;
4469 goto done;
4470 }
4471
4472 INIT_LIST_HEAD(&m->patterns);
4473
4474 parse_adv_monitor_rssi(m, &cp->rssi);
4475 status = parse_adv_monitor_pattern(m, cp->pattern_count, cp->patterns);
4476
4477done:
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004478 return __add_adv_patterns_monitor(sk, hdev, m, status, data, len,
Archie Pusakab4a221e2021-01-22 16:36:11 +08004479 MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI);
Miao-chen Choub1395532020-06-17 16:39:14 +02004480}
4481
Archie Pusaka66bd0952021-01-22 16:36:13 +08004482int mgmt_remove_adv_monitor_complete(struct hci_dev *hdev, u8 status)
4483{
4484 struct mgmt_rp_remove_adv_monitor rp;
4485 struct mgmt_cp_remove_adv_monitor *cp;
4486 struct mgmt_pending_cmd *cmd;
4487 int err = 0;
4488
4489 hci_dev_lock(hdev);
4490
4491 cmd = pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev);
4492 if (!cmd)
4493 goto done;
4494
4495 cp = cmd->param;
4496 rp.monitor_handle = cp->monitor_handle;
4497
4498 if (!status)
4499 hci_update_background_scan(hdev);
4500
4501 err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
4502 mgmt_status(status), &rp, sizeof(rp));
4503 mgmt_pending_remove(cmd);
4504
4505done:
4506 hci_dev_unlock(hdev);
Kai Ye85d672842021-06-03 15:41:02 +08004507 bt_dev_dbg(hdev, "remove monitor %d complete, status %u",
Archie Pusaka66bd0952021-01-22 16:36:13 +08004508 rp.monitor_handle, status);
4509
4510 return err;
4511}
4512
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004513static int remove_adv_monitor(struct sock *sk, struct hci_dev *hdev,
4514 void *data, u16 len)
4515{
4516 struct mgmt_cp_remove_adv_monitor *cp = data;
4517 struct mgmt_rp_remove_adv_monitor rp;
Archie Pusaka66bd0952021-01-22 16:36:13 +08004518 struct mgmt_pending_cmd *cmd;
4519 u16 handle = __le16_to_cpu(cp->monitor_handle);
4520 int err, status;
4521 bool pending;
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004522
4523 BT_DBG("request for %s", hdev->name);
Archie Pusaka66bd0952021-01-22 16:36:13 +08004524 rp.monitor_handle = cp->monitor_handle;
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004525
4526 hci_dev_lock(hdev);
4527
Archie Pusaka66bd0952021-01-22 16:36:13 +08004528 if (pending_find(MGMT_OP_SET_LE, hdev) ||
4529 pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev) ||
4530 pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR, hdev) ||
4531 pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI, hdev)) {
4532 status = MGMT_STATUS_BUSY;
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004533 goto unlock;
4534 }
4535
Archie Pusaka66bd0952021-01-22 16:36:13 +08004536 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_ADV_MONITOR, hdev, data, len);
4537 if (!cmd) {
4538 status = MGMT_STATUS_NO_RESOURCES;
4539 goto unlock;
4540 }
4541
4542 if (handle)
4543 pending = hci_remove_single_adv_monitor(hdev, handle, &err);
4544 else
4545 pending = hci_remove_all_adv_monitor(hdev, &err);
4546
4547 if (err) {
4548 mgmt_pending_remove(cmd);
4549
4550 if (err == -ENOENT)
4551 status = MGMT_STATUS_INVALID_INDEX;
4552 else
4553 status = MGMT_STATUS_FAILED;
4554
4555 goto unlock;
4556 }
4557
4558 /* monitor can be removed without forwarding request to controller */
4559 if (!pending) {
4560 mgmt_pending_remove(cmd);
4561 hci_dev_unlock(hdev);
4562
4563 return mgmt_cmd_complete(sk, hdev->id,
4564 MGMT_OP_REMOVE_ADV_MONITOR,
4565 MGMT_STATUS_SUCCESS,
4566 &rp, sizeof(rp));
4567 }
Miao-chen Choucdde92e2020-06-17 16:39:17 +02004568
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004569 hci_dev_unlock(hdev);
Archie Pusaka66bd0952021-01-22 16:36:13 +08004570 return 0;
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004571
4572unlock:
4573 hci_dev_unlock(hdev);
Archie Pusaka66bd0952021-01-22 16:36:13 +08004574 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADV_MONITOR,
4575 status);
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004576}
4577
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004578static void read_local_oob_data_complete(struct hci_dev *hdev, u8 status,
4579 u16 opcode, struct sk_buff *skb)
4580{
4581 struct mgmt_rp_read_local_oob_data mgmt_rp;
4582 size_t rp_size = sizeof(mgmt_rp);
4583 struct mgmt_pending_cmd *cmd;
4584
Marcel Holtmann181d6952020-05-06 09:57:47 +02004585 bt_dev_dbg(hdev, "status %u", status);
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004586
4587 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
4588 if (!cmd)
4589 return;
4590
4591 if (status || !skb) {
4592 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4593 status ? mgmt_status(status) : MGMT_STATUS_FAILED);
4594 goto remove;
4595 }
4596
4597 memset(&mgmt_rp, 0, sizeof(mgmt_rp));
4598
4599 if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
4600 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
4601
4602 if (skb->len < sizeof(*rp)) {
4603 mgmt_cmd_status(cmd->sk, hdev->id,
4604 MGMT_OP_READ_LOCAL_OOB_DATA,
4605 MGMT_STATUS_FAILED);
4606 goto remove;
4607 }
4608
4609 memcpy(mgmt_rp.hash192, rp->hash, sizeof(rp->hash));
4610 memcpy(mgmt_rp.rand192, rp->rand, sizeof(rp->rand));
4611
4612 rp_size -= sizeof(mgmt_rp.hash256) + sizeof(mgmt_rp.rand256);
4613 } else {
4614 struct hci_rp_read_local_oob_ext_data *rp = (void *) skb->data;
4615
4616 if (skb->len < sizeof(*rp)) {
4617 mgmt_cmd_status(cmd->sk, hdev->id,
4618 MGMT_OP_READ_LOCAL_OOB_DATA,
4619 MGMT_STATUS_FAILED);
4620 goto remove;
4621 }
4622
4623 memcpy(mgmt_rp.hash192, rp->hash192, sizeof(rp->hash192));
4624 memcpy(mgmt_rp.rand192, rp->rand192, sizeof(rp->rand192));
4625
4626 memcpy(mgmt_rp.hash256, rp->hash256, sizeof(rp->hash256));
4627 memcpy(mgmt_rp.rand256, rp->rand256, sizeof(rp->rand256));
4628 }
4629
4630 mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4631 MGMT_STATUS_SUCCESS, &mgmt_rp, rp_size);
4632
4633remove:
4634 mgmt_pending_remove(cmd);
4635}
4636
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004637static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004638 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01004639{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004640 struct mgmt_pending_cmd *cmd;
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004641 struct hci_request req;
Szymon Jancc35938b2011-03-22 13:12:21 +01004642 int err;
4643
Marcel Holtmann181d6952020-05-06 09:57:47 +02004644 bt_dev_dbg(hdev, "sock %p", sk);
Szymon Jancc35938b2011-03-22 13:12:21 +01004645
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004646 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01004647
Johan Hedberg4b34ee782012-02-21 14:13:02 +02004648 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004649 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4650 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01004651 goto unlock;
4652 }
4653
Andre Guedes9a1a1992012-07-24 15:03:48 -03004654 if (!lmp_ssp_capable(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004655 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4656 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01004657 goto unlock;
4658 }
4659
Johan Hedberg333ae952015-03-17 13:48:47 +02004660 if (pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004661 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4662 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01004663 goto unlock;
4664 }
4665
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004666 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01004667 if (!cmd) {
4668 err = -ENOMEM;
4669 goto unlock;
4670 }
4671
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004672 hci_req_init(&req, hdev);
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08004673
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004674 if (bredr_sc_enabled(hdev))
4675 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
4676 else
4677 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
4678
4679 err = hci_req_run_skb(&req, read_local_oob_data_complete);
Szymon Jancc35938b2011-03-22 13:12:21 +01004680 if (err < 0)
4681 mgmt_pending_remove(cmd);
4682
4683unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004684 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01004685 return err;
4686}
4687
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004688static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004689 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01004690{
Johan Hedberg5d57e792015-01-23 10:10:38 +02004691 struct mgmt_addr_info *addr = data;
Szymon Janc2763eda2011-03-22 13:12:22 +01004692 int err;
4693
Marcel Holtmann181d6952020-05-06 09:57:47 +02004694 bt_dev_dbg(hdev, "sock %p", sk);
Szymon Janc2763eda2011-03-22 13:12:22 +01004695
Johan Hedberg5d57e792015-01-23 10:10:38 +02004696 if (!bdaddr_type_is_valid(addr->type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004697 return mgmt_cmd_complete(sk, hdev->id,
4698 MGMT_OP_ADD_REMOTE_OOB_DATA,
4699 MGMT_STATUS_INVALID_PARAMS,
4700 addr, sizeof(*addr));
Johan Hedberg5d57e792015-01-23 10:10:38 +02004701
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004702 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004703
Marcel Holtmannec109112014-01-10 02:07:30 -08004704 if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
4705 struct mgmt_cp_add_remote_oob_data *cp = data;
4706 u8 status;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004707
Johan Hedbergc19a4952014-11-17 20:52:19 +02004708 if (cp->addr.type != BDADDR_BREDR) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004709 err = mgmt_cmd_complete(sk, hdev->id,
4710 MGMT_OP_ADD_REMOTE_OOB_DATA,
4711 MGMT_STATUS_INVALID_PARAMS,
4712 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02004713 goto unlock;
4714 }
4715
Marcel Holtmannec109112014-01-10 02:07:30 -08004716 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg6928a922014-10-26 20:46:09 +01004717 cp->addr.type, cp->hash,
4718 cp->rand, NULL, NULL);
Marcel Holtmannec109112014-01-10 02:07:30 -08004719 if (err < 0)
4720 status = MGMT_STATUS_FAILED;
4721 else
4722 status = MGMT_STATUS_SUCCESS;
4723
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004724 err = mgmt_cmd_complete(sk, hdev->id,
4725 MGMT_OP_ADD_REMOTE_OOB_DATA, status,
4726 &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08004727 } else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
4728 struct mgmt_cp_add_remote_oob_ext_data *cp = data;
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004729 u8 *rand192, *hash192, *rand256, *hash256;
Marcel Holtmannec109112014-01-10 02:07:30 -08004730 u8 status;
4731
Johan Hedberg86df9202014-10-26 20:52:27 +01004732 if (bdaddr_type_is_le(cp->addr.type)) {
Johan Hedbergd25b78e2015-01-27 12:55:52 +02004733 /* Enforce zero-valued 192-bit parameters as
4734 * long as legacy SMP OOB isn't implemented.
4735 */
4736 if (memcmp(cp->rand192, ZERO_KEY, 16) ||
4737 memcmp(cp->hash192, ZERO_KEY, 16)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004738 err = mgmt_cmd_complete(sk, hdev->id,
4739 MGMT_OP_ADD_REMOTE_OOB_DATA,
4740 MGMT_STATUS_INVALID_PARAMS,
4741 addr, sizeof(*addr));
Johan Hedbergd25b78e2015-01-27 12:55:52 +02004742 goto unlock;
4743 }
4744
Johan Hedberg86df9202014-10-26 20:52:27 +01004745 rand192 = NULL;
4746 hash192 = NULL;
4747 } else {
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004748 /* In case one of the P-192 values is set to zero,
4749 * then just disable OOB data for P-192.
4750 */
4751 if (!memcmp(cp->rand192, ZERO_KEY, 16) ||
4752 !memcmp(cp->hash192, ZERO_KEY, 16)) {
4753 rand192 = NULL;
4754 hash192 = NULL;
4755 } else {
4756 rand192 = cp->rand192;
4757 hash192 = cp->hash192;
4758 }
4759 }
4760
4761 /* In case one of the P-256 values is set to zero, then just
4762 * disable OOB data for P-256.
4763 */
4764 if (!memcmp(cp->rand256, ZERO_KEY, 16) ||
4765 !memcmp(cp->hash256, ZERO_KEY, 16)) {
4766 rand256 = NULL;
4767 hash256 = NULL;
4768 } else {
4769 rand256 = cp->rand256;
4770 hash256 = cp->hash256;
Johan Hedberg86df9202014-10-26 20:52:27 +01004771 }
4772
Johan Hedberg81328d5c2014-10-26 20:33:47 +01004773 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg86df9202014-10-26 20:52:27 +01004774 cp->addr.type, hash192, rand192,
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004775 hash256, rand256);
Marcel Holtmannec109112014-01-10 02:07:30 -08004776 if (err < 0)
4777 status = MGMT_STATUS_FAILED;
4778 else
4779 status = MGMT_STATUS_SUCCESS;
4780
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004781 err = mgmt_cmd_complete(sk, hdev->id,
4782 MGMT_OP_ADD_REMOTE_OOB_DATA,
4783 status, &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08004784 } else {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01004785 bt_dev_err(hdev, "add_remote_oob_data: invalid len of %u bytes",
4786 len);
Johan Hedberga69e8372015-03-06 21:08:53 +02004787 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
4788 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannec109112014-01-10 02:07:30 -08004789 }
Szymon Janc2763eda2011-03-22 13:12:22 +01004790
Johan Hedbergc19a4952014-11-17 20:52:19 +02004791unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004792 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004793 return err;
4794}
4795
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004796static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004797 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01004798{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004799 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004800 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01004801 int err;
4802
Marcel Holtmann181d6952020-05-06 09:57:47 +02004803 bt_dev_dbg(hdev, "sock %p", sk);
Szymon Janc2763eda2011-03-22 13:12:22 +01004804
Johan Hedbergc19a4952014-11-17 20:52:19 +02004805 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004806 return mgmt_cmd_complete(sk, hdev->id,
4807 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
4808 MGMT_STATUS_INVALID_PARAMS,
4809 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02004810
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004811 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004812
Johan Hedbergeedbd582014-11-15 09:34:23 +02004813 if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
4814 hci_remote_oob_data_clear(hdev);
4815 status = MGMT_STATUS_SUCCESS;
4816 goto done;
4817 }
4818
Johan Hedberg6928a922014-10-26 20:46:09 +01004819 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
Szymon Janc2763eda2011-03-22 13:12:22 +01004820 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004821 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01004822 else
Szymon Janca6785be2012-12-13 15:11:21 +01004823 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004824
Johan Hedbergeedbd582014-11-15 09:34:23 +02004825done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004826 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
4827 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01004828
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004829 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004830 return err;
4831}
4832
Johan Hedberge68f0722015-11-11 08:30:30 +02004833void mgmt_start_discovery_complete(struct hci_dev *hdev, u8 status)
Andre Guedes7c307722013-04-30 15:29:28 -03004834{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004835 struct mgmt_pending_cmd *cmd;
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01004836
Kai Ye85d672842021-06-03 15:41:02 +08004837 bt_dev_dbg(hdev, "status %u", status);
Andre Guedes7c307722013-04-30 15:29:28 -03004838
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004839 hci_dev_lock(hdev);
4840
Johan Hedberg333ae952015-03-17 13:48:47 +02004841 cmd = pending_find(MGMT_OP_START_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004842 if (!cmd)
Johan Hedberg333ae952015-03-17 13:48:47 +02004843 cmd = pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004844
Johan Hedberg78b781c2016-01-05 13:19:32 +02004845 if (!cmd)
4846 cmd = pending_find(MGMT_OP_START_LIMITED_DISCOVERY, hdev);
4847
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004848 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02004849 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004850 mgmt_pending_remove(cmd);
Andre Guedes7c307722013-04-30 15:29:28 -03004851 }
4852
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004853 hci_dev_unlock(hdev);
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07004854
4855 /* Handle suspend notifier */
4856 if (test_and_clear_bit(SUSPEND_UNPAUSE_DISCOVERY,
4857 hdev->suspend_tasks)) {
4858 bt_dev_dbg(hdev, "Unpaused discovery");
4859 wake_up(&hdev->suspend_wait_q);
4860 }
Andre Guedes7c307722013-04-30 15:29:28 -03004861}
4862
Johan Hedberg591752a2015-11-11 08:11:24 +02004863static bool discovery_type_is_valid(struct hci_dev *hdev, uint8_t type,
4864 uint8_t *mgmt_status)
4865{
4866 switch (type) {
4867 case DISCOV_TYPE_LE:
4868 *mgmt_status = mgmt_le_support(hdev);
4869 if (*mgmt_status)
4870 return false;
4871 break;
4872 case DISCOV_TYPE_INTERLEAVED:
4873 *mgmt_status = mgmt_le_support(hdev);
4874 if (*mgmt_status)
4875 return false;
Gustavo A. R. Silva19186c72020-07-08 15:18:23 -05004876 fallthrough;
Johan Hedberg591752a2015-11-11 08:11:24 +02004877 case DISCOV_TYPE_BREDR:
4878 *mgmt_status = mgmt_bredr_support(hdev);
4879 if (*mgmt_status)
4880 return false;
4881 break;
4882 default:
4883 *mgmt_status = MGMT_STATUS_INVALID_PARAMS;
4884 return false;
4885 }
4886
4887 return true;
4888}
4889
Johan Hedberg78b781c2016-01-05 13:19:32 +02004890static int start_discovery_internal(struct sock *sk, struct hci_dev *hdev,
4891 u16 op, void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04004892{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004893 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004894 struct mgmt_pending_cmd *cmd;
Marcel Holtmann80190442014-12-04 11:36:36 +01004895 u8 status;
Johan Hedberg14a53662011-04-27 10:29:56 -04004896 int err;
4897
Marcel Holtmann181d6952020-05-06 09:57:47 +02004898 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg14a53662011-04-27 10:29:56 -04004899
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004900 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004901
Johan Hedberg4b34ee782012-02-21 14:13:02 +02004902 if (!hdev_is_powered(hdev)) {
Johan Hedberg78b781c2016-01-05 13:19:32 +02004903 err = mgmt_cmd_complete(sk, hdev->id, op,
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004904 MGMT_STATUS_NOT_POWERED,
4905 &cp->type, sizeof(cp->type));
Johan Hedbergbd2d1332011-11-07 23:13:37 +02004906 goto failed;
4907 }
4908
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004909 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07004910 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg78b781c2016-01-05 13:19:32 +02004911 err = mgmt_cmd_complete(sk, hdev->id, op, MGMT_STATUS_BUSY,
4912 &cp->type, sizeof(cp->type));
Andre Guedes642be6c2012-03-21 00:03:37 -03004913 goto failed;
4914 }
4915
Johan Hedberg591752a2015-11-11 08:11:24 +02004916 if (!discovery_type_is_valid(hdev, cp->type, &status)) {
Johan Hedberg78b781c2016-01-05 13:19:32 +02004917 err = mgmt_cmd_complete(sk, hdev->id, op, status,
4918 &cp->type, sizeof(cp->type));
Johan Hedberg591752a2015-11-11 08:11:24 +02004919 goto failed;
4920 }
4921
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07004922 /* Can't start discovery when it is paused */
4923 if (hdev->discovery_paused) {
4924 err = mgmt_cmd_complete(sk, hdev->id, op, MGMT_STATUS_BUSY,
4925 &cp->type, sizeof(cp->type));
4926 goto failed;
4927 }
4928
Marcel Holtmann22078802014-12-05 11:45:22 +01004929 /* Clear the discovery filter first to free any previously
4930 * allocated memory for the UUID list.
4931 */
4932 hci_discovery_filter_clear(hdev);
4933
Andre Guedes4aab14e2012-02-17 20:39:36 -03004934 hdev->discovery.type = cp->type;
Marcel Holtmannda25cf62014-12-05 13:03:35 +01004935 hdev->discovery.report_invalid_rssi = false;
Johan Hedberg78b781c2016-01-05 13:19:32 +02004936 if (op == MGMT_OP_START_LIMITED_DISCOVERY)
4937 hdev->discovery.limited = true;
4938 else
4939 hdev->discovery.limited = false;
Andre Guedes4aab14e2012-02-17 20:39:36 -03004940
Johan Hedberg78b781c2016-01-05 13:19:32 +02004941 cmd = mgmt_pending_add(sk, op, hdev, data, len);
Johan Hedberge68f0722015-11-11 08:30:30 +02004942 if (!cmd) {
4943 err = -ENOMEM;
Johan Hedberg04106752013-01-10 14:54:09 +02004944 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03004945 }
Andre Guedes3fd24152012-02-03 17:48:01 -03004946
Johan Hedberge68f0722015-11-11 08:30:30 +02004947 cmd->cmd_complete = generic_cmd_complete;
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01004948
4949 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberge68f0722015-11-11 08:30:30 +02004950 queue_work(hdev->req_workqueue, &hdev->discov_update);
4951 err = 0;
Johan Hedberg14a53662011-04-27 10:29:56 -04004952
4953failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004954 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004955 return err;
4956}
4957
Johan Hedberg78b781c2016-01-05 13:19:32 +02004958static int start_discovery(struct sock *sk, struct hci_dev *hdev,
4959 void *data, u16 len)
4960{
4961 return start_discovery_internal(sk, hdev, MGMT_OP_START_DISCOVERY,
4962 data, len);
4963}
4964
4965static int start_limited_discovery(struct sock *sk, struct hci_dev *hdev,
4966 void *data, u16 len)
4967{
4968 return start_discovery_internal(sk, hdev,
4969 MGMT_OP_START_LIMITED_DISCOVERY,
4970 data, len);
4971}
4972
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004973static int service_discovery_cmd_complete(struct mgmt_pending_cmd *cmd,
4974 u8 status)
Andre Guedes1183fdc2013-04-30 15:29:35 -03004975{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004976 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
4977 cmd->param, 1);
Johan Hedberg2922a942014-12-05 13:36:06 +02004978}
4979
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004980static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
4981 void *data, u16 len)
4982{
4983 struct mgmt_cp_start_service_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004984 struct mgmt_pending_cmd *cmd;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004985 const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
4986 u16 uuid_count, expected_len;
4987 u8 status;
Andre Guedes1183fdc2013-04-30 15:29:35 -03004988 int err;
4989
Marcel Holtmann181d6952020-05-06 09:57:47 +02004990 bt_dev_dbg(hdev, "sock %p", sk);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004991
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004992 hci_dev_lock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004993
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004994 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004995 err = mgmt_cmd_complete(sk, hdev->id,
4996 MGMT_OP_START_SERVICE_DISCOVERY,
4997 MGMT_STATUS_NOT_POWERED,
4998 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004999 goto failed;
5000 }
5001
5002 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005003 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005004 err = mgmt_cmd_complete(sk, hdev->id,
5005 MGMT_OP_START_SERVICE_DISCOVERY,
5006 MGMT_STATUS_BUSY, &cp->type,
5007 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005008 goto failed;
5009 }
5010
Abhishek Pandit-Subedi36211f72020-12-17 15:04:08 -08005011 if (hdev->discovery_paused) {
5012 err = mgmt_cmd_complete(sk, hdev->id,
5013 MGMT_OP_START_SERVICE_DISCOVERY,
5014 MGMT_STATUS_BUSY, &cp->type,
5015 sizeof(cp->type));
5016 goto failed;
5017 }
5018
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005019 uuid_count = __le16_to_cpu(cp->uuid_count);
5020 if (uuid_count > max_uuid_count) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01005021 bt_dev_err(hdev, "service_discovery: too big uuid_count value %u",
5022 uuid_count);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005023 err = mgmt_cmd_complete(sk, hdev->id,
5024 MGMT_OP_START_SERVICE_DISCOVERY,
5025 MGMT_STATUS_INVALID_PARAMS, &cp->type,
5026 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005027 goto failed;
5028 }
5029
5030 expected_len = sizeof(*cp) + uuid_count * 16;
5031 if (expected_len != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01005032 bt_dev_err(hdev, "service_discovery: expected %u bytes, got %u bytes",
5033 expected_len, len);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005034 err = mgmt_cmd_complete(sk, hdev->id,
5035 MGMT_OP_START_SERVICE_DISCOVERY,
5036 MGMT_STATUS_INVALID_PARAMS, &cp->type,
5037 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005038 goto failed;
5039 }
5040
Johan Hedberg591752a2015-11-11 08:11:24 +02005041 if (!discovery_type_is_valid(hdev, cp->type, &status)) {
5042 err = mgmt_cmd_complete(sk, hdev->id,
5043 MGMT_OP_START_SERVICE_DISCOVERY,
5044 status, &cp->type, sizeof(cp->type));
5045 goto failed;
5046 }
5047
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005048 cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
Johan Hedberg2922a942014-12-05 13:36:06 +02005049 hdev, data, len);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005050 if (!cmd) {
5051 err = -ENOMEM;
5052 goto failed;
5053 }
5054
Johan Hedberg2922a942014-12-05 13:36:06 +02005055 cmd->cmd_complete = service_discovery_cmd_complete;
5056
Marcel Holtmann22078802014-12-05 11:45:22 +01005057 /* Clear the discovery filter first to free any previously
5058 * allocated memory for the UUID list.
5059 */
5060 hci_discovery_filter_clear(hdev);
5061
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08005062 hdev->discovery.result_filtering = true;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005063 hdev->discovery.type = cp->type;
5064 hdev->discovery.rssi = cp->rssi;
5065 hdev->discovery.uuid_count = uuid_count;
5066
5067 if (uuid_count > 0) {
5068 hdev->discovery.uuids = kmemdup(cp->uuids, uuid_count * 16,
5069 GFP_KERNEL);
5070 if (!hdev->discovery.uuids) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005071 err = mgmt_cmd_complete(sk, hdev->id,
5072 MGMT_OP_START_SERVICE_DISCOVERY,
5073 MGMT_STATUS_FAILED,
5074 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005075 mgmt_pending_remove(cmd);
5076 goto failed;
5077 }
5078 }
5079
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005080 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberge68f0722015-11-11 08:30:30 +02005081 queue_work(hdev->req_workqueue, &hdev->discov_update);
5082 err = 0;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005083
5084failed:
5085 hci_dev_unlock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03005086 return err;
5087}
5088
Johan Hedberg2154d3f2015-11-11 08:30:45 +02005089void mgmt_stop_discovery_complete(struct hci_dev *hdev, u8 status)
Andre Guedes0e05bba2013-04-30 15:29:33 -03005090{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005091 struct mgmt_pending_cmd *cmd;
Marcel Holtmann11e6e252014-12-04 11:36:35 +01005092
Kai Ye85d672842021-06-03 15:41:02 +08005093 bt_dev_dbg(hdev, "status %u", status);
Andre Guedes0e05bba2013-04-30 15:29:33 -03005094
5095 hci_dev_lock(hdev);
5096
Johan Hedberg333ae952015-03-17 13:48:47 +02005097 cmd = pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01005098 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02005099 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01005100 mgmt_pending_remove(cmd);
Andre Guedes0e05bba2013-04-30 15:29:33 -03005101 }
5102
Andre Guedes0e05bba2013-04-30 15:29:33 -03005103 hci_dev_unlock(hdev);
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07005104
5105 /* Handle suspend notifier */
5106 if (test_and_clear_bit(SUSPEND_PAUSE_DISCOVERY, hdev->suspend_tasks)) {
5107 bt_dev_dbg(hdev, "Paused discovery");
5108 wake_up(&hdev->suspend_wait_q);
5109 }
Andre Guedes0e05bba2013-04-30 15:29:33 -03005110}
5111
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005112static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005113 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04005114{
Johan Hedbergd9306502012-02-20 23:25:18 +02005115 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005116 struct mgmt_pending_cmd *cmd;
Johan Hedberg14a53662011-04-27 10:29:56 -04005117 int err;
5118
Marcel Holtmann181d6952020-05-06 09:57:47 +02005119 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg14a53662011-04-27 10:29:56 -04005120
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005121 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04005122
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005123 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005124 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
5125 MGMT_STATUS_REJECTED, &mgmt_cp->type,
5126 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02005127 goto unlock;
5128 }
5129
5130 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005131 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
5132 MGMT_STATUS_INVALID_PARAMS,
5133 &mgmt_cp->type, sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005134 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02005135 }
5136
Johan Hedberg2922a942014-12-05 13:36:06 +02005137 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04005138 if (!cmd) {
5139 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005140 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04005141 }
5142
Johan Hedberg2922a942014-12-05 13:36:06 +02005143 cmd->cmd_complete = generic_cmd_complete;
5144
Johan Hedberg2154d3f2015-11-11 08:30:45 +02005145 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
5146 queue_work(hdev->req_workqueue, &hdev->discov_update);
5147 err = 0;
Johan Hedberg14a53662011-04-27 10:29:56 -04005148
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005149unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005150 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04005151 return err;
5152}
5153
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005154static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005155 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02005156{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005157 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02005158 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02005159 int err;
5160
Marcel Holtmann181d6952020-05-06 09:57:47 +02005161 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg561aafb2012-01-04 13:31:59 +02005162
Johan Hedberg561aafb2012-01-04 13:31:59 +02005163 hci_dev_lock(hdev);
5164
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005165 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005166 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
5167 MGMT_STATUS_FAILED, &cp->addr,
5168 sizeof(cp->addr));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005169 goto failed;
5170 }
5171
Johan Hedberga198e7b2012-02-17 14:27:06 +02005172 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02005173 if (!e) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005174 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
5175 MGMT_STATUS_INVALID_PARAMS, &cp->addr,
5176 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02005177 goto failed;
5178 }
5179
5180 if (cp->name_known) {
5181 e->name_state = NAME_KNOWN;
5182 list_del(&e->list);
5183 } else {
5184 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e20a2012-01-09 00:53:02 +02005185 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02005186 }
5187
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005188 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
5189 &cp->addr, sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02005190
5191failed:
5192 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02005193 return err;
5194}
5195
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005196static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005197 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03005198{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005199 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005200 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03005201 int err;
5202
Marcel Holtmann181d6952020-05-06 09:57:47 +02005203 bt_dev_dbg(hdev, "sock %p", sk);
Antti Julku7fbec222011-06-15 12:01:15 +03005204
Johan Hedberg4ee71b22013-01-20 14:27:19 +02005205 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005206 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
5207 MGMT_STATUS_INVALID_PARAMS,
5208 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02005209
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005210 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03005211
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08005212 err = hci_bdaddr_list_add(&hdev->reject_list, &cp->addr.bdaddr,
Johan Hedbergdcc36c12014-07-09 12:59:13 +03005213 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005214 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005215 status = MGMT_STATUS_FAILED;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005216 goto done;
5217 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005218
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005219 mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &cp->addr, sizeof(cp->addr),
5220 sk);
5221 status = MGMT_STATUS_SUCCESS;
5222
5223done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005224 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
5225 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03005226
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005227 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03005228
5229 return err;
5230}
5231
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005232static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005233 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03005234{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005235 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005236 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03005237 int err;
5238
Marcel Holtmann181d6952020-05-06 09:57:47 +02005239 bt_dev_dbg(hdev, "sock %p", sk);
Antti Julku7fbec222011-06-15 12:01:15 +03005240
Johan Hedberg4ee71b22013-01-20 14:27:19 +02005241 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005242 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
5243 MGMT_STATUS_INVALID_PARAMS,
5244 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02005245
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005246 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03005247
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08005248 err = hci_bdaddr_list_del(&hdev->reject_list, &cp->addr.bdaddr,
Johan Hedbergdcc36c12014-07-09 12:59:13 +03005249 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005250 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005251 status = MGMT_STATUS_INVALID_PARAMS;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005252 goto done;
5253 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005254
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005255 mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &cp->addr, sizeof(cp->addr),
5256 sk);
5257 status = MGMT_STATUS_SUCCESS;
5258
5259done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005260 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
5261 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03005262
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005263 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03005264
5265 return err;
5266}
5267
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005268static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
5269 u16 len)
5270{
5271 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05005272 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005273 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01005274 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005275
Marcel Holtmann181d6952020-05-06 09:57:47 +02005276 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005277
Szymon Jancc72d4b82012-03-16 16:02:57 +01005278 source = __le16_to_cpu(cp->source);
5279
5280 if (source > 0x0002)
Johan Hedberga69e8372015-03-06 21:08:53 +02005281 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
5282 MGMT_STATUS_INVALID_PARAMS);
Szymon Jancc72d4b82012-03-16 16:02:57 +01005283
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005284 hci_dev_lock(hdev);
5285
Szymon Jancc72d4b82012-03-16 16:02:57 +01005286 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005287 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
5288 hdev->devid_product = __le16_to_cpu(cp->product);
5289 hdev->devid_version = __le16_to_cpu(cp->version);
5290
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005291 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
5292 NULL, 0);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005293
Johan Hedberg890ea892013-03-15 17:06:52 -05005294 hci_req_init(&req, hdev);
Johan Hedbergb1a89172015-11-25 16:15:42 +02005295 __hci_req_update_eir(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05005296 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005297
5298 hci_dev_unlock(hdev);
5299
5300 return err;
5301}
5302
Arman Uguray24b4f382015-03-23 15:57:12 -07005303static void enable_advertising_instance(struct hci_dev *hdev, u8 status,
5304 u16 opcode)
5305{
Kai Ye85d672842021-06-03 15:41:02 +08005306 bt_dev_dbg(hdev, "status %u", status);
Arman Uguray24b4f382015-03-23 15:57:12 -07005307}
5308
Marcel Holtmann1904a852015-01-11 13:50:44 -08005309static void set_advertising_complete(struct hci_dev *hdev, u8 status,
5310 u16 opcode)
Johan Hedberg4375f102013-09-25 13:26:10 +03005311{
5312 struct cmd_lookup match = { NULL, hdev };
Arman Uguray24b4f382015-03-23 15:57:12 -07005313 struct hci_request req;
Florian Grandel7816b822015-06-18 03:16:45 +02005314 u8 instance;
5315 struct adv_info *adv_instance;
5316 int err;
Johan Hedberg4375f102013-09-25 13:26:10 +03005317
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05305318 hci_dev_lock(hdev);
5319
Johan Hedberg4375f102013-09-25 13:26:10 +03005320 if (status) {
5321 u8 mgmt_err = mgmt_status(status);
5322
5323 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
5324 cmd_status_rsp, &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05305325 goto unlock;
Johan Hedberg4375f102013-09-25 13:26:10 +03005326 }
5327
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005328 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005329 hci_dev_set_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03005330 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005331 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03005332
Johan Hedberg4375f102013-09-25 13:26:10 +03005333 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
5334 &match);
5335
5336 new_settings(hdev, match.sk);
5337
5338 if (match.sk)
5339 sock_put(match.sk);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05305340
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07005341 /* Handle suspend notifier */
5342 if (test_and_clear_bit(SUSPEND_PAUSE_ADVERTISING,
5343 hdev->suspend_tasks)) {
5344 bt_dev_dbg(hdev, "Paused advertising");
5345 wake_up(&hdev->suspend_wait_q);
5346 } else if (test_and_clear_bit(SUSPEND_UNPAUSE_ADVERTISING,
5347 hdev->suspend_tasks)) {
5348 bt_dev_dbg(hdev, "Unpaused advertising");
5349 wake_up(&hdev->suspend_wait_q);
5350 }
5351
Arman Uguray24b4f382015-03-23 15:57:12 -07005352 /* If "Set Advertising" was just disabled and instance advertising was
Florian Grandel7816b822015-06-18 03:16:45 +02005353 * set up earlier, then re-enable multi-instance advertising.
Arman Uguray24b4f382015-03-23 15:57:12 -07005354 */
5355 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
Florian Grandel7816b822015-06-18 03:16:45 +02005356 list_empty(&hdev->adv_instances))
Arman Uguray24b4f382015-03-23 15:57:12 -07005357 goto unlock;
5358
Florian Grandel7816b822015-06-18 03:16:45 +02005359 instance = hdev->cur_adv_instance;
5360 if (!instance) {
5361 adv_instance = list_first_entry_or_null(&hdev->adv_instances,
5362 struct adv_info, list);
5363 if (!adv_instance)
5364 goto unlock;
5365
5366 instance = adv_instance->instance;
5367 }
5368
Arman Uguray24b4f382015-03-23 15:57:12 -07005369 hci_req_init(&req, hdev);
5370
Johan Hedbergf2252572015-11-18 12:49:20 +02005371 err = __hci_req_schedule_adv_instance(&req, instance, true);
Arman Uguray24b4f382015-03-23 15:57:12 -07005372
Florian Grandel7816b822015-06-18 03:16:45 +02005373 if (!err)
5374 err = hci_req_run(&req, enable_advertising_instance);
5375
5376 if (err)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01005377 bt_dev_err(hdev, "failed to re-configure advertising");
Arman Uguray24b4f382015-03-23 15:57:12 -07005378
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05305379unlock:
5380 hci_dev_unlock(hdev);
Johan Hedberg4375f102013-09-25 13:26:10 +03005381}
5382
Marcel Holtmann21b51872013-10-10 09:47:53 -07005383static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
5384 u16 len)
Johan Hedberg4375f102013-09-25 13:26:10 +03005385{
5386 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005387 struct mgmt_pending_cmd *cmd;
Johan Hedberg4375f102013-09-25 13:26:10 +03005388 struct hci_request req;
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005389 u8 val, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03005390 int err;
5391
Marcel Holtmann181d6952020-05-06 09:57:47 +02005392 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg4375f102013-09-25 13:26:10 +03005393
Johan Hedberge6fe7982013-10-02 15:45:22 +03005394 status = mgmt_le_support(hdev);
5395 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02005396 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
5397 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03005398
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05305399 /* Enabling the experimental LL Privay support disables support for
5400 * advertising.
5401 */
5402 if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
5403 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
5404 MGMT_STATUS_NOT_SUPPORTED);
5405
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005406 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005407 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
5408 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4375f102013-09-25 13:26:10 +03005409
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07005410 if (hdev->advertising_paused)
5411 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
5412 MGMT_STATUS_BUSY);
5413
Johan Hedberg4375f102013-09-25 13:26:10 +03005414 hci_dev_lock(hdev);
5415
5416 val = !!cp->val;
Johan Hedberg4375f102013-09-25 13:26:10 +03005417
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02005418 /* The following conditions are ones which mean that we should
5419 * not do any HCI communication but directly send a mgmt
5420 * response to user space (after toggling the flag if
5421 * necessary).
5422 */
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005423 if (!hdev_is_powered(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005424 (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
5425 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
Johan Hedberge8bb6b92014-07-08 15:07:53 +03005426 hci_conn_num(hdev, LE_LINK) > 0 ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005427 (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Johan Hedberge8bb6b92014-07-08 15:07:53 +03005428 hdev->le_scan_type == LE_SCAN_ACTIVE)) {
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005429 bool changed;
Johan Hedberg4375f102013-09-25 13:26:10 +03005430
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005431 if (cp->val) {
Johan Hedbergcab054a2015-11-30 11:21:45 +02005432 hdev->cur_adv_instance = 0x00;
Marcel Holtmann238be782015-03-13 02:11:06 -07005433 changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005434 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005435 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005436 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005437 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005438 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005439 changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005440 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Johan Hedberg4375f102013-09-25 13:26:10 +03005441 }
5442
5443 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
5444 if (err < 0)
5445 goto unlock;
5446
5447 if (changed)
5448 err = new_settings(hdev, sk);
5449
5450 goto unlock;
5451 }
5452
Johan Hedberg333ae952015-03-17 13:48:47 +02005453 if (pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
5454 pending_find(MGMT_OP_SET_LE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005455 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
5456 MGMT_STATUS_BUSY);
Johan Hedberg4375f102013-09-25 13:26:10 +03005457 goto unlock;
5458 }
5459
5460 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
5461 if (!cmd) {
5462 err = -ENOMEM;
5463 goto unlock;
5464 }
5465
5466 hci_req_init(&req, hdev);
5467
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005468 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005469 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005470 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005471 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005472
Florian Grandel7816b822015-06-18 03:16:45 +02005473 cancel_adv_timeout(hdev);
5474
Arman Uguray24b4f382015-03-23 15:57:12 -07005475 if (val) {
Florian Grandel7816b822015-06-18 03:16:45 +02005476 /* Switch to instance "0" for the Set Advertising setting.
5477 * We cannot use update_[adv|scan_rsp]_data() here as the
5478 * HCI_ADVERTISING flag is not yet set.
5479 */
Johan Hedbergcab054a2015-11-30 11:21:45 +02005480 hdev->cur_adv_instance = 0x00;
Jaganath Kanakkasseryde181e82018-07-19 17:09:41 +05305481
5482 if (ext_adv_capable(hdev)) {
5483 __hci_req_start_ext_adv(&req, 0x00);
5484 } else {
5485 __hci_req_update_adv_data(&req, 0x00);
5486 __hci_req_update_scan_rsp_data(&req, 0x00);
5487 __hci_req_enable_advertising(&req);
5488 }
Arman Uguray24b4f382015-03-23 15:57:12 -07005489 } else {
Johan Hedbergf2252572015-11-18 12:49:20 +02005490 __hci_req_disable_advertising(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07005491 }
Johan Hedberg4375f102013-09-25 13:26:10 +03005492
5493 err = hci_req_run(&req, set_advertising_complete);
5494 if (err < 0)
5495 mgmt_pending_remove(cmd);
5496
5497unlock:
5498 hci_dev_unlock(hdev);
5499 return err;
5500}
5501
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005502static int set_static_address(struct sock *sk, struct hci_dev *hdev,
5503 void *data, u16 len)
5504{
5505 struct mgmt_cp_set_static_address *cp = data;
5506 int err;
5507
Marcel Holtmann181d6952020-05-06 09:57:47 +02005508 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005509
Marcel Holtmann62af4442013-10-02 22:10:32 -07005510 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005511 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
5512 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005513
5514 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005515 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
5516 MGMT_STATUS_REJECTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005517
5518 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
5519 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
Johan Hedberga69e8372015-03-06 21:08:53 +02005520 return mgmt_cmd_status(sk, hdev->id,
5521 MGMT_OP_SET_STATIC_ADDRESS,
5522 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005523
5524 /* Two most significant bits shall be set */
5525 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
Johan Hedberga69e8372015-03-06 21:08:53 +02005526 return mgmt_cmd_status(sk, hdev->id,
5527 MGMT_OP_SET_STATIC_ADDRESS,
5528 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005529 }
5530
5531 hci_dev_lock(hdev);
5532
5533 bacpy(&hdev->static_addr, &cp->bdaddr);
5534
Marcel Holtmann93690c22015-03-06 10:11:21 -08005535 err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
5536 if (err < 0)
5537 goto unlock;
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005538
Marcel Holtmann93690c22015-03-06 10:11:21 -08005539 err = new_settings(hdev, sk);
5540
5541unlock:
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005542 hci_dev_unlock(hdev);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005543 return err;
5544}
5545
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005546static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
5547 void *data, u16 len)
5548{
5549 struct mgmt_cp_set_scan_params *cp = data;
5550 __u16 interval, window;
5551 int err;
5552
Marcel Holtmann181d6952020-05-06 09:57:47 +02005553 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005554
5555 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005556 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5557 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005558
5559 interval = __le16_to_cpu(cp->interval);
5560
5561 if (interval < 0x0004 || interval > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02005562 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5563 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005564
5565 window = __le16_to_cpu(cp->window);
5566
5567 if (window < 0x0004 || window > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02005568 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5569 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005570
Marcel Holtmann899e1072013-10-14 09:55:32 -07005571 if (window > interval)
Johan Hedberga69e8372015-03-06 21:08:53 +02005572 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5573 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann899e1072013-10-14 09:55:32 -07005574
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005575 hci_dev_lock(hdev);
5576
5577 hdev->le_scan_interval = interval;
5578 hdev->le_scan_window = window;
5579
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005580 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
5581 NULL, 0);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005582
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03005583 /* If background scan is running, restart it so new parameters are
5584 * loaded.
5585 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005586 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03005587 hdev->discovery.state == DISCOVERY_STOPPED) {
5588 struct hci_request req;
5589
5590 hci_req_init(&req, hdev);
5591
Sathish Narasimman5c49bcc2020-07-23 18:09:01 +05305592 hci_req_add_le_scan_disable(&req, false);
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03005593 hci_req_add_le_passive_scan(&req);
5594
5595 hci_req_run(&req, NULL);
5596 }
5597
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005598 hci_dev_unlock(hdev);
5599
5600 return err;
5601}
5602
Marcel Holtmann1904a852015-01-11 13:50:44 -08005603static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
5604 u16 opcode)
Johan Hedberg33e38b32013-03-15 17:07:05 -05005605{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005606 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05005607
Marcel Holtmann181d6952020-05-06 09:57:47 +02005608 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005609
5610 hci_dev_lock(hdev);
5611
Johan Hedberg333ae952015-03-17 13:48:47 +02005612 cmd = pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005613 if (!cmd)
5614 goto unlock;
5615
5616 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005617 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5618 mgmt_status(status));
Johan Hedberg33e38b32013-03-15 17:07:05 -05005619 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005620 struct mgmt_mode *cp = cmd->param;
5621
5622 if (cp->val)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005623 hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005624 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005625 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005626
Johan Hedberg33e38b32013-03-15 17:07:05 -05005627 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
5628 new_settings(hdev, cmd->sk);
5629 }
5630
5631 mgmt_pending_remove(cmd);
5632
5633unlock:
5634 hci_dev_unlock(hdev);
5635}
5636
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005637static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005638 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03005639{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005640 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005641 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05005642 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03005643 int err;
5644
Marcel Holtmann181d6952020-05-06 09:57:47 +02005645 bt_dev_dbg(hdev, "sock %p", sk);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005646
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005647 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
Johan Hedberg56f87902013-10-02 13:43:13 +03005648 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberga69e8372015-03-06 21:08:53 +02005649 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5650 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03005651
Johan Hedberga7e80f22013-01-09 16:05:19 +02005652 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005653 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5654 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02005655
Antti Julkuf6422ec2011-06-22 13:11:56 +03005656 hci_dev_lock(hdev);
5657
Johan Hedberg333ae952015-03-17 13:48:47 +02005658 if (pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005659 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5660 MGMT_STATUS_BUSY);
Johan Hedberg05cbf292013-03-15 17:07:07 -05005661 goto unlock;
5662 }
5663
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005664 if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005665 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
5666 hdev);
5667 goto unlock;
5668 }
5669
Johan Hedberg406ef2a2015-03-10 20:14:27 +02005670 if (!hdev_is_powered(hdev)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07005671 hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg406ef2a2015-03-10 20:14:27 +02005672 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
5673 hdev);
5674 new_settings(hdev, sk);
5675 goto unlock;
5676 }
5677
Johan Hedberg33e38b32013-03-15 17:07:05 -05005678 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
5679 data, len);
5680 if (!cmd) {
5681 err = -ENOMEM;
5682 goto unlock;
5683 }
5684
5685 hci_req_init(&req, hdev);
5686
Johan Hedbergbf943cb2015-11-25 16:15:43 +02005687 __hci_req_write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005688
5689 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005690 if (err < 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005691 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5692 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005693 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005694 }
5695
Johan Hedberg33e38b32013-03-15 17:07:05 -05005696unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03005697 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005698
Antti Julkuf6422ec2011-06-22 13:11:56 +03005699 return err;
5700}
5701
Marcel Holtmann1904a852015-01-11 13:50:44 -08005702static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg0663ca22013-10-02 13:43:14 +03005703{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005704 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03005705
Marcel Holtmann181d6952020-05-06 09:57:47 +02005706 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005707
5708 hci_dev_lock(hdev);
5709
Johan Hedberg333ae952015-03-17 13:48:47 +02005710 cmd = pending_find(MGMT_OP_SET_BREDR, hdev);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005711 if (!cmd)
5712 goto unlock;
5713
5714 if (status) {
5715 u8 mgmt_err = mgmt_status(status);
5716
5717 /* We need to restore the flag if related HCI commands
5718 * failed.
5719 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005720 hci_dev_clear_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005721
Johan Hedberga69e8372015-03-06 21:08:53 +02005722 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005723 } else {
5724 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
5725 new_settings(hdev, cmd->sk);
5726 }
5727
5728 mgmt_pending_remove(cmd);
5729
5730unlock:
5731 hci_dev_unlock(hdev);
5732}
5733
5734static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
5735{
5736 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005737 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03005738 struct hci_request req;
5739 int err;
5740
Marcel Holtmann181d6952020-05-06 09:57:47 +02005741 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005742
5743 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005744 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5745 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005746
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005747 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005748 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5749 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005750
5751 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005752 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5753 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005754
5755 hci_dev_lock(hdev);
5756
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005757 if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg0663ca22013-10-02 13:43:14 +03005758 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
5759 goto unlock;
5760 }
5761
5762 if (!hdev_is_powered(hdev)) {
5763 if (!cp->val) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005764 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
5765 hci_dev_clear_flag(hdev, HCI_SSP_ENABLED);
5766 hci_dev_clear_flag(hdev, HCI_LINK_SECURITY);
5767 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
5768 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005769 }
5770
Marcel Holtmannce05d602015-03-13 02:11:03 -07005771 hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005772
5773 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
5774 if (err < 0)
5775 goto unlock;
5776
5777 err = new_settings(hdev, sk);
5778 goto unlock;
5779 }
5780
5781 /* Reject disabling when powered on */
5782 if (!cp->val) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005783 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5784 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005785 goto unlock;
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005786 } else {
5787 /* When configuring a dual-mode controller to operate
5788 * with LE only and using a static address, then switching
5789 * BR/EDR back on is not allowed.
5790 *
5791 * Dual-mode controllers shall operate with the public
5792 * address as its identity address for BR/EDR and LE. So
5793 * reject the attempt to create an invalid configuration.
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08005794 *
5795 * The same restrictions applies when secure connections
5796 * has been enabled. For BR/EDR this is a controller feature
5797 * while for LE it is a host stack feature. This means that
5798 * switching BR/EDR back on when secure connections has been
5799 * enabled is not a supported transaction.
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005800 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005801 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08005802 (bacmp(&hdev->static_addr, BDADDR_ANY) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005803 hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005804 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5805 MGMT_STATUS_REJECTED);
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08005806 goto unlock;
5807 }
Johan Hedberg0663ca22013-10-02 13:43:14 +03005808 }
5809
Johan Hedberg333ae952015-03-17 13:48:47 +02005810 if (pending_find(MGMT_OP_SET_BREDR, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005811 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5812 MGMT_STATUS_BUSY);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005813 goto unlock;
5814 }
5815
5816 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
5817 if (!cmd) {
5818 err = -ENOMEM;
5819 goto unlock;
5820 }
5821
Johan Hedbergf2252572015-11-18 12:49:20 +02005822 /* We need to flip the bit already here so that
5823 * hci_req_update_adv_data generates the correct flags.
Johan Hedberg0663ca22013-10-02 13:43:14 +03005824 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005825 hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005826
5827 hci_req_init(&req, hdev);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005828
Johan Hedbergbf943cb2015-11-25 16:15:43 +02005829 __hci_req_write_fast_connectable(&req, false);
Johan Hedberg01b1cb82015-11-16 12:52:21 +02005830 __hci_req_update_scan(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005831
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07005832 /* Since only the advertising data flags will change, there
5833 * is no need to update the scan response data.
5834 */
Johan Hedbergcab054a2015-11-30 11:21:45 +02005835 __hci_req_update_adv_data(&req, hdev->cur_adv_instance);
Johan Hedbergaa8af462013-10-14 21:15:26 +03005836
Johan Hedberg0663ca22013-10-02 13:43:14 +03005837 err = hci_req_run(&req, set_bredr_complete);
5838 if (err < 0)
5839 mgmt_pending_remove(cmd);
5840
5841unlock:
5842 hci_dev_unlock(hdev);
5843 return err;
5844}
5845
Johan Hedberga1443f52015-01-23 15:42:46 +02005846static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
5847{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005848 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02005849 struct mgmt_mode *cp;
5850
Marcel Holtmann181d6952020-05-06 09:57:47 +02005851 bt_dev_dbg(hdev, "status %u", status);
Johan Hedberga1443f52015-01-23 15:42:46 +02005852
5853 hci_dev_lock(hdev);
5854
Johan Hedberg333ae952015-03-17 13:48:47 +02005855 cmd = pending_find(MGMT_OP_SET_SECURE_CONN, hdev);
Johan Hedberga1443f52015-01-23 15:42:46 +02005856 if (!cmd)
5857 goto unlock;
5858
5859 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005860 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
5861 mgmt_status(status));
Johan Hedberga1443f52015-01-23 15:42:46 +02005862 goto remove;
5863 }
5864
5865 cp = cmd->param;
5866
5867 switch (cp->val) {
5868 case 0x00:
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005869 hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
5870 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005871 break;
5872 case 0x01:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005873 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005874 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005875 break;
5876 case 0x02:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005877 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
5878 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02005879 break;
5880 }
5881
5882 send_settings_rsp(cmd->sk, MGMT_OP_SET_SECURE_CONN, hdev);
5883 new_settings(hdev, cmd->sk);
5884
5885remove:
5886 mgmt_pending_remove(cmd);
5887unlock:
5888 hci_dev_unlock(hdev);
5889}
5890
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005891static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
5892 void *data, u16 len)
5893{
5894 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005895 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02005896 struct hci_request req;
Johan Hedberga3209692014-05-26 11:23:35 +03005897 u8 val;
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005898 int err;
5899
Marcel Holtmann181d6952020-05-06 09:57:47 +02005900 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005901
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08005902 if (!lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005903 !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005904 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5905 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005906
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005907 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Johan Hedberg59200282015-01-28 19:56:00 +02005908 lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005909 !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005910 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5911 MGMT_STATUS_REJECTED);
Marcel Holtmanned93ec62015-01-22 11:15:22 -08005912
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005913 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005914 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005915 MGMT_STATUS_INVALID_PARAMS);
5916
5917 hci_dev_lock(hdev);
5918
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08005919 if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005920 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005921 bool changed;
5922
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005923 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07005924 changed = !hci_dev_test_and_set_flag(hdev,
5925 HCI_SC_ENABLED);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005926 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005927 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005928 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005929 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005930 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005931 changed = hci_dev_test_and_clear_flag(hdev,
5932 HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005933 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005934 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005935
5936 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
5937 if (err < 0)
5938 goto failed;
5939
5940 if (changed)
5941 err = new_settings(hdev, sk);
5942
5943 goto failed;
5944 }
5945
Johan Hedberg333ae952015-03-17 13:48:47 +02005946 if (pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005947 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
5948 MGMT_STATUS_BUSY);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005949 goto failed;
5950 }
5951
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005952 val = !!cp->val;
5953
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005954 if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
5955 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005956 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
5957 goto failed;
5958 }
5959
5960 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
5961 if (!cmd) {
5962 err = -ENOMEM;
5963 goto failed;
5964 }
5965
Johan Hedberga1443f52015-01-23 15:42:46 +02005966 hci_req_init(&req, hdev);
5967 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
5968 err = hci_req_run(&req, sc_enable_complete);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005969 if (err < 0) {
5970 mgmt_pending_remove(cmd);
5971 goto failed;
5972 }
5973
5974failed:
5975 hci_dev_unlock(hdev);
5976 return err;
5977}
5978
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005979static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
5980 void *data, u16 len)
5981{
5982 struct mgmt_mode *cp = data;
Johan Hedbergb97109792014-06-24 14:00:28 +03005983 bool changed, use_changed;
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005984 int err;
5985
Marcel Holtmann181d6952020-05-06 09:57:47 +02005986 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005987
Johan Hedbergb97109792014-06-24 14:00:28 +03005988 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005989 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
5990 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005991
5992 hci_dev_lock(hdev);
5993
5994 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07005995 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005996 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005997 changed = hci_dev_test_and_clear_flag(hdev,
5998 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08005999
Johan Hedbergb97109792014-06-24 14:00:28 +03006000 if (cp->val == 0x02)
Marcel Holtmann238be782015-03-13 02:11:06 -07006001 use_changed = !hci_dev_test_and_set_flag(hdev,
6002 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03006003 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07006004 use_changed = hci_dev_test_and_clear_flag(hdev,
6005 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03006006
6007 if (hdev_is_powered(hdev) && use_changed &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006008 hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedbergb97109792014-06-24 14:00:28 +03006009 u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
6010 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
6011 sizeof(mode), &mode);
6012 }
6013
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08006014 err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
6015 if (err < 0)
6016 goto unlock;
6017
6018 if (changed)
6019 err = new_settings(hdev, sk);
6020
6021unlock:
6022 hci_dev_unlock(hdev);
6023 return err;
6024}
6025
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006026static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
6027 u16 len)
6028{
6029 struct mgmt_cp_set_privacy *cp = cp_data;
6030 bool changed;
6031 int err;
6032
Marcel Holtmann181d6952020-05-06 09:57:47 +02006033 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006034
6035 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006036 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
6037 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006038
Johan Hedberg82a37ad2016-03-09 17:30:34 +02006039 if (cp->privacy != 0x00 && cp->privacy != 0x01 && cp->privacy != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02006040 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
6041 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006042
6043 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006044 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
6045 MGMT_STATUS_REJECTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006046
6047 hci_dev_lock(hdev);
6048
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02006049 /* If user space supports this command it is also expected to
6050 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
6051 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006052 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02006053
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006054 if (cp->privacy) {
Marcel Holtmann238be782015-03-13 02:11:06 -07006055 changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006056 memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006057 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
Jaganath Kanakkasserya73c0462018-07-19 17:09:45 +05306058 hci_adv_instances_set_rpa_expired(hdev, true);
Johan Hedberg82a37ad2016-03-09 17:30:34 +02006059 if (cp->privacy == 0x02)
6060 hci_dev_set_flag(hdev, HCI_LIMITED_PRIVACY);
6061 else
6062 hci_dev_clear_flag(hdev, HCI_LIMITED_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006063 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07006064 changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006065 memset(hdev->irk, 0, sizeof(hdev->irk));
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006066 hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
Jaganath Kanakkasserya73c0462018-07-19 17:09:45 +05306067 hci_adv_instances_set_rpa_expired(hdev, false);
Johan Hedberg82a37ad2016-03-09 17:30:34 +02006068 hci_dev_clear_flag(hdev, HCI_LIMITED_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006069 }
6070
6071 err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
6072 if (err < 0)
6073 goto unlock;
6074
6075 if (changed)
6076 err = new_settings(hdev, sk);
6077
6078unlock:
6079 hci_dev_unlock(hdev);
6080 return err;
6081}
6082
Johan Hedberg41edf162014-02-18 10:19:35 +02006083static bool irk_is_valid(struct mgmt_irk_info *irk)
6084{
6085 switch (irk->addr.type) {
6086 case BDADDR_LE_PUBLIC:
6087 return true;
6088
6089 case BDADDR_LE_RANDOM:
6090 /* Two most significant bits shall be set */
6091 if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
6092 return false;
6093 return true;
6094 }
6095
6096 return false;
6097}
6098
6099static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
6100 u16 len)
6101{
6102 struct mgmt_cp_load_irks *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03006103 const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
6104 sizeof(struct mgmt_irk_info));
Johan Hedberg41edf162014-02-18 10:19:35 +02006105 u16 irk_count, expected_len;
6106 int i, err;
6107
Marcel Holtmann181d6952020-05-06 09:57:47 +02006108 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg41edf162014-02-18 10:19:35 +02006109
6110 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006111 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
6112 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg41edf162014-02-18 10:19:35 +02006113
6114 irk_count = __le16_to_cpu(cp->irk_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006115 if (irk_count > max_irk_count) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006116 bt_dev_err(hdev, "load_irks: too big irk_count value %u",
6117 irk_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02006118 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
6119 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006120 }
Johan Hedberg41edf162014-02-18 10:19:35 +02006121
Gustavo A. R. Silva5bec1fb2019-03-28 12:30:29 -05006122 expected_len = struct_size(cp, irks, irk_count);
Johan Hedberg41edf162014-02-18 10:19:35 +02006123 if (expected_len != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006124 bt_dev_err(hdev, "load_irks: expected %u bytes, got %u bytes",
6125 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02006126 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
6127 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02006128 }
6129
Marcel Holtmann181d6952020-05-06 09:57:47 +02006130 bt_dev_dbg(hdev, "irk_count %u", irk_count);
Johan Hedberg41edf162014-02-18 10:19:35 +02006131
6132 for (i = 0; i < irk_count; i++) {
6133 struct mgmt_irk_info *key = &cp->irks[i];
6134
6135 if (!irk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02006136 return mgmt_cmd_status(sk, hdev->id,
6137 MGMT_OP_LOAD_IRKS,
6138 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02006139 }
6140
6141 hci_dev_lock(hdev);
6142
6143 hci_smp_irks_clear(hdev);
6144
6145 for (i = 0; i < irk_count; i++) {
6146 struct mgmt_irk_info *irk = &cp->irks[i];
Johan Hedberg41edf162014-02-18 10:19:35 +02006147
Alain Michaud600a8742020-01-07 00:43:17 +00006148 if (hci_is_blocked_key(hdev,
6149 HCI_BLOCKED_KEY_TYPE_IRK,
6150 irk->val)) {
6151 bt_dev_warn(hdev, "Skipping blocked IRK for %pMR",
6152 &irk->addr.bdaddr);
6153 continue;
6154 }
6155
Johan Hedberg85813a72015-10-21 18:02:59 +03006156 hci_add_irk(hdev, &irk->addr.bdaddr,
6157 le_addr_type(irk->addr.type), irk->val,
Johan Hedberg41edf162014-02-18 10:19:35 +02006158 BDADDR_ANY);
6159 }
6160
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006161 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedberg41edf162014-02-18 10:19:35 +02006162
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006163 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
Johan Hedberg41edf162014-02-18 10:19:35 +02006164
6165 hci_dev_unlock(hdev);
6166
6167 return err;
6168}
6169
Johan Hedberg3f706b72013-01-20 14:27:16 +02006170static bool ltk_is_valid(struct mgmt_ltk_info *key)
6171{
Archie Pusakafad646e2021-05-31 16:37:25 +08006172 if (key->initiator != 0x00 && key->initiator != 0x01)
Johan Hedberg3f706b72013-01-20 14:27:16 +02006173 return false;
Marcel Holtmann490cb0b2014-02-16 12:59:05 -08006174
6175 switch (key->addr.type) {
6176 case BDADDR_LE_PUBLIC:
6177 return true;
6178
6179 case BDADDR_LE_RANDOM:
6180 /* Two most significant bits shall be set */
6181 if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
6182 return false;
6183 return true;
6184 }
6185
6186 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02006187}
6188
Johan Hedbergbdb6d972012-02-28 06:13:32 +02006189static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006190 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006191{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006192 struct mgmt_cp_load_long_term_keys *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03006193 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
6194 sizeof(struct mgmt_ltk_info));
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006195 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02006196 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006197
Marcel Holtmann181d6952020-05-06 09:57:47 +02006198 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07006199
6200 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006201 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
6202 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07006203
Marcel Holtmann1f350c82012-03-12 20:31:08 -07006204 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006205 if (key_count > max_key_count) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006206 bt_dev_err(hdev, "load_ltks: too big key_count value %u",
6207 key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02006208 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
6209 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006210 }
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006211
Gustavo A. R. Silva5bec1fb2019-03-28 12:30:29 -05006212 expected_len = struct_size(cp, keys, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006213 if (expected_len != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006214 bt_dev_err(hdev, "load_keys: expected %u bytes, got %u bytes",
6215 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02006216 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
6217 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006218 }
6219
Marcel Holtmann181d6952020-05-06 09:57:47 +02006220 bt_dev_dbg(hdev, "key_count %u", key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006221
Johan Hedberg54ad6d82013-01-20 14:27:15 +02006222 for (i = 0; i < key_count; i++) {
6223 struct mgmt_ltk_info *key = &cp->keys[i];
6224
Johan Hedberg3f706b72013-01-20 14:27:16 +02006225 if (!ltk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02006226 return mgmt_cmd_status(sk, hdev->id,
6227 MGMT_OP_LOAD_LONG_TERM_KEYS,
6228 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg54ad6d82013-01-20 14:27:15 +02006229 }
6230
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006231 hci_dev_lock(hdev);
6232
6233 hci_smp_ltks_clear(hdev);
6234
6235 for (i = 0; i < key_count; i++) {
6236 struct mgmt_ltk_info *key = &cp->keys[i];
Johan Hedberg85813a72015-10-21 18:02:59 +03006237 u8 type, authenticated;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006238
Alain Michaud600a8742020-01-07 00:43:17 +00006239 if (hci_is_blocked_key(hdev,
6240 HCI_BLOCKED_KEY_TYPE_LTK,
6241 key->val)) {
6242 bt_dev_warn(hdev, "Skipping blocked LTK for %pMR",
6243 &key->addr.bdaddr);
6244 continue;
6245 }
6246
Johan Hedberg61b43352014-05-29 19:36:53 +03006247 switch (key->type) {
6248 case MGMT_LTK_UNAUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03006249 authenticated = 0x00;
Archie Pusakafad646e2021-05-31 16:37:25 +08006250 type = key->initiator ? SMP_LTK : SMP_LTK_RESPONDER;
Johan Hedberg61b43352014-05-29 19:36:53 +03006251 break;
6252 case MGMT_LTK_AUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03006253 authenticated = 0x01;
Archie Pusakafad646e2021-05-31 16:37:25 +08006254 type = key->initiator ? SMP_LTK : SMP_LTK_RESPONDER;
Johan Hedberg61b43352014-05-29 19:36:53 +03006255 break;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03006256 case MGMT_LTK_P256_UNAUTH:
6257 authenticated = 0x00;
6258 type = SMP_LTK_P256;
6259 break;
6260 case MGMT_LTK_P256_AUTH:
6261 authenticated = 0x01;
6262 type = SMP_LTK_P256;
6263 break;
6264 case MGMT_LTK_P256_DEBUG:
6265 authenticated = 0x00;
6266 type = SMP_LTK_P256_DEBUG;
Gustavo A. R. Silva19186c72020-07-08 15:18:23 -05006267 fallthrough;
Johan Hedberg61b43352014-05-29 19:36:53 +03006268 default:
6269 continue;
6270 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03006271
Johan Hedberg85813a72015-10-21 18:02:59 +03006272 hci_add_ltk(hdev, &key->addr.bdaddr,
6273 le_addr_type(key->addr.type), type, authenticated,
6274 key->val, key->enc_size, key->ediv, key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006275 }
6276
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006277 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
Johan Hedberg715a5bf2013-01-09 15:29:34 +02006278 NULL, 0);
6279
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006280 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006281
Johan Hedberg715a5bf2013-01-09 15:29:34 +02006282 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006283}
6284
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006285static int conn_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006286{
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006287 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006288 struct mgmt_rp_get_conn_info rp;
Johan Hedberg9df74652014-12-19 22:26:03 +02006289 int err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006290
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006291 memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006292
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006293 if (status == MGMT_STATUS_SUCCESS) {
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006294 rp.rssi = conn->rssi;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006295 rp.tx_power = conn->tx_power;
6296 rp.max_tx_power = conn->max_tx_power;
6297 } else {
6298 rp.rssi = HCI_RSSI_INVALID;
6299 rp.tx_power = HCI_TX_POWER_INVALID;
6300 rp.max_tx_power = HCI_TX_POWER_INVALID;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006301 }
6302
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006303 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
6304 status, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006305
6306 hci_conn_drop(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03006307 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02006308
6309 return err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006310}
6311
Marcel Holtmann1904a852015-01-11 13:50:44 -08006312static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
6313 u16 opcode)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006314{
6315 struct hci_cp_read_rssi *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006316 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006317 struct hci_conn *conn;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006318 u16 handle;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006319 u8 status;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006320
Marcel Holtmann181d6952020-05-06 09:57:47 +02006321 bt_dev_dbg(hdev, "status 0x%02x", hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006322
6323 hci_dev_lock(hdev);
6324
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006325 /* Commands sent in request are either Read RSSI or Read Transmit Power
6326 * Level so we check which one was last sent to retrieve connection
6327 * handle. Both commands have handle as first parameter so it's safe to
6328 * cast data on the same command struct.
6329 *
6330 * First command sent is always Read RSSI and we fail only if it fails.
6331 * In other case we simply override error to indicate success as we
6332 * already remembered if TX power value is actually valid.
6333 */
6334 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI);
6335 if (!cp) {
6336 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006337 status = MGMT_STATUS_SUCCESS;
6338 } else {
6339 status = mgmt_status(hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006340 }
6341
6342 if (!cp) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006343 bt_dev_err(hdev, "invalid sent_cmd in conn_info response");
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006344 goto unlock;
6345 }
6346
6347 handle = __le16_to_cpu(cp->handle);
6348 conn = hci_conn_hash_lookup_handle(hdev, handle);
6349 if (!conn) {
Kai Ye85d672842021-06-03 15:41:02 +08006350 bt_dev_err(hdev, "unknown handle (%u) in conn_info response",
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006351 handle);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006352 goto unlock;
6353 }
6354
Johan Hedberg333ae952015-03-17 13:48:47 +02006355 cmd = pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006356 if (!cmd)
6357 goto unlock;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006358
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006359 cmd->cmd_complete(cmd, status);
6360 mgmt_pending_remove(cmd);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006361
6362unlock:
6363 hci_dev_unlock(hdev);
6364}
6365
6366static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data,
6367 u16 len)
6368{
6369 struct mgmt_cp_get_conn_info *cp = data;
6370 struct mgmt_rp_get_conn_info rp;
6371 struct hci_conn *conn;
6372 unsigned long conn_info_age;
6373 int err = 0;
6374
Marcel Holtmann181d6952020-05-06 09:57:47 +02006375 bt_dev_dbg(hdev, "sock %p", sk);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006376
6377 memset(&rp, 0, sizeof(rp));
6378 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
6379 rp.addr.type = cp->addr.type;
6380
6381 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006382 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
6383 MGMT_STATUS_INVALID_PARAMS,
6384 &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006385
6386 hci_dev_lock(hdev);
6387
6388 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006389 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
6390 MGMT_STATUS_NOT_POWERED, &rp,
6391 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006392 goto unlock;
6393 }
6394
6395 if (cp->addr.type == BDADDR_BREDR)
6396 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
6397 &cp->addr.bdaddr);
6398 else
6399 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
6400
6401 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006402 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
6403 MGMT_STATUS_NOT_CONNECTED, &rp,
6404 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006405 goto unlock;
6406 }
6407
Johan Hedberg333ae952015-03-17 13:48:47 +02006408 if (pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006409 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
6410 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006411 goto unlock;
6412 }
6413
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006414 /* To avoid client trying to guess when to poll again for information we
6415 * calculate conn info age as random value between min/max set in hdev.
6416 */
6417 conn_info_age = hdev->conn_info_min_age +
6418 prandom_u32_max(hdev->conn_info_max_age -
6419 hdev->conn_info_min_age);
6420
6421 /* Query controller to refresh cached values if they are too old or were
6422 * never read.
6423 */
Andrzej Kaczmarekf4e2dd52014-05-16 16:48:57 +02006424 if (time_after(jiffies, conn->conn_info_timestamp +
6425 msecs_to_jiffies(conn_info_age)) ||
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006426 !conn->conn_info_timestamp) {
6427 struct hci_request req;
6428 struct hci_cp_read_tx_power req_txp_cp;
6429 struct hci_cp_read_rssi req_rssi_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006430 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006431
6432 hci_req_init(&req, hdev);
6433 req_rssi_cp.handle = cpu_to_le16(conn->handle);
6434 hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp),
6435 &req_rssi_cp);
6436
Andrzej Kaczmarekf7faab02014-05-14 13:43:04 +02006437 /* For LE links TX power does not change thus we don't need to
6438 * query for it once value is known.
6439 */
6440 if (!bdaddr_type_is_le(cp->addr.type) ||
6441 conn->tx_power == HCI_TX_POWER_INVALID) {
6442 req_txp_cp.handle = cpu_to_le16(conn->handle);
6443 req_txp_cp.type = 0x00;
6444 hci_req_add(&req, HCI_OP_READ_TX_POWER,
6445 sizeof(req_txp_cp), &req_txp_cp);
6446 }
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006447
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02006448 /* Max TX power needs to be read only once per connection */
6449 if (conn->max_tx_power == HCI_TX_POWER_INVALID) {
6450 req_txp_cp.handle = cpu_to_le16(conn->handle);
6451 req_txp_cp.type = 0x01;
6452 hci_req_add(&req, HCI_OP_READ_TX_POWER,
6453 sizeof(req_txp_cp), &req_txp_cp);
6454 }
6455
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006456 err = hci_req_run(&req, conn_info_refresh_complete);
6457 if (err < 0)
6458 goto unlock;
6459
6460 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CONN_INFO, hdev,
6461 data, len);
6462 if (!cmd) {
6463 err = -ENOMEM;
6464 goto unlock;
6465 }
6466
6467 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03006468 cmd->user_data = hci_conn_get(conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006469 cmd->cmd_complete = conn_info_cmd_complete;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006470
6471 conn->conn_info_timestamp = jiffies;
6472 } else {
6473 /* Cache is valid, just reply with values cached in hci_conn */
6474 rp.rssi = conn->rssi;
6475 rp.tx_power = conn->tx_power;
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02006476 rp.max_tx_power = conn->max_tx_power;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006477
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006478 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
6479 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006480 }
6481
6482unlock:
6483 hci_dev_unlock(hdev);
6484 return err;
6485}
6486
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006487static int clock_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg69487372014-12-05 13:36:07 +02006488{
6489 struct hci_conn *conn = cmd->user_data;
6490 struct mgmt_rp_get_clock_info rp;
6491 struct hci_dev *hdev;
Johan Hedberg9df74652014-12-19 22:26:03 +02006492 int err;
Johan Hedberg69487372014-12-05 13:36:07 +02006493
6494 memset(&rp, 0, sizeof(rp));
Marcel Holtmann56f787c2016-08-29 06:19:47 +02006495 memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
Johan Hedberg69487372014-12-05 13:36:07 +02006496
6497 if (status)
6498 goto complete;
6499
6500 hdev = hci_dev_get(cmd->index);
6501 if (hdev) {
6502 rp.local_clock = cpu_to_le32(hdev->clock);
6503 hci_dev_put(hdev);
6504 }
6505
6506 if (conn) {
6507 rp.piconet_clock = cpu_to_le32(conn->clock);
6508 rp.accuracy = cpu_to_le16(conn->clock_accuracy);
6509 }
6510
6511complete:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006512 err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
6513 sizeof(rp));
Johan Hedberg69487372014-12-05 13:36:07 +02006514
6515 if (conn) {
6516 hci_conn_drop(conn);
6517 hci_conn_put(conn);
6518 }
Johan Hedberg9df74652014-12-19 22:26:03 +02006519
6520 return err;
Johan Hedberg69487372014-12-05 13:36:07 +02006521}
6522
Marcel Holtmann1904a852015-01-11 13:50:44 -08006523static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg95868422014-06-28 17:54:07 +03006524{
Johan Hedberg95868422014-06-28 17:54:07 +03006525 struct hci_cp_read_clock *hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006526 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03006527 struct hci_conn *conn;
6528
Marcel Holtmann181d6952020-05-06 09:57:47 +02006529 bt_dev_dbg(hdev, "status %u", status);
Johan Hedberg95868422014-06-28 17:54:07 +03006530
6531 hci_dev_lock(hdev);
6532
6533 hci_cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
6534 if (!hci_cp)
6535 goto unlock;
6536
6537 if (hci_cp->which) {
6538 u16 handle = __le16_to_cpu(hci_cp->handle);
6539 conn = hci_conn_hash_lookup_handle(hdev, handle);
6540 } else {
6541 conn = NULL;
6542 }
6543
Johan Hedberg333ae952015-03-17 13:48:47 +02006544 cmd = pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
Johan Hedberg95868422014-06-28 17:54:07 +03006545 if (!cmd)
6546 goto unlock;
6547
Johan Hedberg69487372014-12-05 13:36:07 +02006548 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberg95868422014-06-28 17:54:07 +03006549 mgmt_pending_remove(cmd);
Johan Hedberg95868422014-06-28 17:54:07 +03006550
6551unlock:
6552 hci_dev_unlock(hdev);
6553}
6554
6555static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data,
6556 u16 len)
6557{
6558 struct mgmt_cp_get_clock_info *cp = data;
6559 struct mgmt_rp_get_clock_info rp;
6560 struct hci_cp_read_clock hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006561 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03006562 struct hci_request req;
6563 struct hci_conn *conn;
6564 int err;
6565
Marcel Holtmann181d6952020-05-06 09:57:47 +02006566 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg95868422014-06-28 17:54:07 +03006567
6568 memset(&rp, 0, sizeof(rp));
6569 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
6570 rp.addr.type = cp->addr.type;
6571
6572 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006573 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
6574 MGMT_STATUS_INVALID_PARAMS,
6575 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006576
6577 hci_dev_lock(hdev);
6578
6579 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006580 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
6581 MGMT_STATUS_NOT_POWERED, &rp,
6582 sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006583 goto unlock;
6584 }
6585
6586 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
6587 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
6588 &cp->addr.bdaddr);
6589 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006590 err = mgmt_cmd_complete(sk, hdev->id,
6591 MGMT_OP_GET_CLOCK_INFO,
6592 MGMT_STATUS_NOT_CONNECTED,
6593 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006594 goto unlock;
6595 }
6596 } else {
6597 conn = NULL;
6598 }
6599
6600 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CLOCK_INFO, hdev, data, len);
6601 if (!cmd) {
6602 err = -ENOMEM;
6603 goto unlock;
6604 }
6605
Johan Hedberg69487372014-12-05 13:36:07 +02006606 cmd->cmd_complete = clock_info_cmd_complete;
6607
Johan Hedberg95868422014-06-28 17:54:07 +03006608 hci_req_init(&req, hdev);
6609
6610 memset(&hci_cp, 0, sizeof(hci_cp));
6611 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
6612
6613 if (conn) {
6614 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03006615 cmd->user_data = hci_conn_get(conn);
Johan Hedberg95868422014-06-28 17:54:07 +03006616
6617 hci_cp.handle = cpu_to_le16(conn->handle);
6618 hci_cp.which = 0x01; /* Piconet clock */
6619 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
6620 }
6621
6622 err = hci_req_run(&req, get_clock_info_complete);
6623 if (err < 0)
6624 mgmt_pending_remove(cmd);
6625
6626unlock:
6627 hci_dev_unlock(hdev);
6628 return err;
6629}
6630
Johan Hedberg5a154e62014-12-19 22:26:02 +02006631static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
6632{
6633 struct hci_conn *conn;
6634
6635 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
6636 if (!conn)
6637 return false;
6638
6639 if (conn->dst_type != type)
6640 return false;
6641
6642 if (conn->state != BT_CONNECTED)
6643 return false;
6644
6645 return true;
6646}
6647
6648/* This function requires the caller holds hdev->lock */
Johan Hedberg51d7a942015-11-11 08:11:18 +02006649static int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr,
Johan Hedberg5a154e62014-12-19 22:26:02 +02006650 u8 addr_type, u8 auto_connect)
6651{
Johan Hedberg5a154e62014-12-19 22:26:02 +02006652 struct hci_conn_params *params;
6653
6654 params = hci_conn_params_add(hdev, addr, addr_type);
6655 if (!params)
6656 return -EIO;
6657
6658 if (params->auto_connect == auto_connect)
6659 return 0;
6660
6661 list_del_init(&params->action);
6662
6663 switch (auto_connect) {
6664 case HCI_AUTO_CONN_DISABLED:
6665 case HCI_AUTO_CONN_LINK_LOSS:
Jakub Pawlowski28a667c2015-08-07 20:22:54 +02006666 /* If auto connect is being disabled when we're trying to
6667 * connect to device, keep connecting.
6668 */
6669 if (params->explicit_connect)
6670 list_add(&params->action, &hdev->pend_le_conns);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006671 break;
6672 case HCI_AUTO_CONN_REPORT:
Johan Hedberg49c50922015-10-16 10:07:51 +03006673 if (params->explicit_connect)
6674 list_add(&params->action, &hdev->pend_le_conns);
6675 else
6676 list_add(&params->action, &hdev->pend_le_reports);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006677 break;
6678 case HCI_AUTO_CONN_DIRECT:
6679 case HCI_AUTO_CONN_ALWAYS:
Johan Hedberg51d7a942015-11-11 08:11:18 +02006680 if (!is_connected(hdev, addr, addr_type))
Johan Hedberg5a154e62014-12-19 22:26:02 +02006681 list_add(&params->action, &hdev->pend_le_conns);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006682 break;
6683 }
6684
6685 params->auto_connect = auto_connect;
6686
Marcel Holtmann181d6952020-05-06 09:57:47 +02006687 bt_dev_dbg(hdev, "addr %pMR (type %u) auto_connect %u",
6688 addr, addr_type, auto_connect);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006689
6690 return 0;
6691}
6692
Marcel Holtmann8afef092014-06-29 22:28:34 +02006693static void device_added(struct sock *sk, struct hci_dev *hdev,
6694 bdaddr_t *bdaddr, u8 type, u8 action)
6695{
6696 struct mgmt_ev_device_added ev;
6697
6698 bacpy(&ev.addr.bdaddr, bdaddr);
6699 ev.addr.type = type;
6700 ev.action = action;
6701
6702 mgmt_event(MGMT_EV_DEVICE_ADDED, hdev, &ev, sizeof(ev), sk);
6703}
6704
Marcel Holtmann2faade52014-06-29 19:44:03 +02006705static int add_device(struct sock *sk, struct hci_dev *hdev,
6706 void *data, u16 len)
6707{
6708 struct mgmt_cp_add_device *cp = data;
6709 u8 auto_conn, addr_type;
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02006710 struct hci_conn_params *params;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006711 int err;
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02006712 u32 current_flags = 0;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006713
Marcel Holtmann181d6952020-05-06 09:57:47 +02006714 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006715
Johan Hedberg66593582014-07-09 12:59:14 +03006716 if (!bdaddr_type_is_valid(cp->addr.type) ||
Marcel Holtmann2faade52014-06-29 19:44:03 +02006717 !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006718 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6719 MGMT_STATUS_INVALID_PARAMS,
6720 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006721
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006722 if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006723 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6724 MGMT_STATUS_INVALID_PARAMS,
6725 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006726
6727 hci_dev_lock(hdev);
6728
Johan Hedberg66593582014-07-09 12:59:14 +03006729 if (cp->addr.type == BDADDR_BREDR) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006730 /* Only incoming connections action is supported for now */
Johan Hedberg66593582014-07-09 12:59:14 +03006731 if (cp->action != 0x01) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006732 err = mgmt_cmd_complete(sk, hdev->id,
6733 MGMT_OP_ADD_DEVICE,
6734 MGMT_STATUS_INVALID_PARAMS,
6735 &cp->addr, sizeof(cp->addr));
Johan Hedberg66593582014-07-09 12:59:14 +03006736 goto unlock;
6737 }
6738
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08006739 err = hci_bdaddr_list_add_with_flags(&hdev->accept_list,
Abhishek Pandit-Subedi8baaa402020-06-17 16:39:08 +02006740 &cp->addr.bdaddr,
6741 cp->addr.type, 0);
Johan Hedberg66593582014-07-09 12:59:14 +03006742 if (err)
6743 goto unlock;
Johan Hedberga3974072014-07-09 12:59:15 +03006744
Johan Hedberg01b1cb82015-11-16 12:52:21 +02006745 hci_req_update_scan(hdev);
Johan Hedberga3974072014-07-09 12:59:15 +03006746
Johan Hedberg66593582014-07-09 12:59:14 +03006747 goto added;
6748 }
6749
Johan Hedberg85813a72015-10-21 18:02:59 +03006750 addr_type = le_addr_type(cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006751
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006752 if (cp->action == 0x02)
Marcel Holtmann2faade52014-06-29 19:44:03 +02006753 auto_conn = HCI_AUTO_CONN_ALWAYS;
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006754 else if (cp->action == 0x01)
6755 auto_conn = HCI_AUTO_CONN_DIRECT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006756 else
Johan Hedberga3451d22014-07-02 17:37:27 +03006757 auto_conn = HCI_AUTO_CONN_REPORT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006758
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02006759 /* Kernel internally uses conn_params with resolvable private
6760 * address, but Add Device allows only identity addresses.
6761 * Make sure it is enforced before calling
6762 * hci_conn_params_lookup.
6763 */
6764 if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006765 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6766 MGMT_STATUS_INVALID_PARAMS,
6767 &cp->addr, sizeof(cp->addr));
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02006768 goto unlock;
6769 }
6770
Marcel Holtmannbf5b3c82014-06-30 12:34:39 +02006771 /* If the connection parameters don't exist for this device,
6772 * they will be created and configured with defaults.
6773 */
Johan Hedberg51d7a942015-11-11 08:11:18 +02006774 if (hci_conn_params_set(hdev, &cp->addr.bdaddr, addr_type,
Marcel Holtmannd06b50c2014-07-01 12:11:06 +02006775 auto_conn) < 0) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006776 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6777 MGMT_STATUS_FAILED, &cp->addr,
6778 sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006779 goto unlock;
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02006780 } else {
6781 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
6782 addr_type);
6783 if (params)
6784 current_flags = params->current_flags;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006785 }
6786
Johan Hedberg51d7a942015-11-11 08:11:18 +02006787 hci_update_background_scan(hdev);
6788
Johan Hedberg66593582014-07-09 12:59:14 +03006789added:
Marcel Holtmann8afef092014-06-29 22:28:34 +02006790 device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02006791 device_flags_changed(NULL, hdev, &cp->addr.bdaddr, cp->addr.type,
6792 SUPPORTED_DEVICE_FLAGS(), current_flags);
Marcel Holtmann8afef092014-06-29 22:28:34 +02006793
Johan Hedberg51d7a942015-11-11 08:11:18 +02006794 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6795 MGMT_STATUS_SUCCESS, &cp->addr,
6796 sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006797
6798unlock:
6799 hci_dev_unlock(hdev);
6800 return err;
6801}
6802
Marcel Holtmann8afef092014-06-29 22:28:34 +02006803static void device_removed(struct sock *sk, struct hci_dev *hdev,
6804 bdaddr_t *bdaddr, u8 type)
6805{
6806 struct mgmt_ev_device_removed ev;
6807
6808 bacpy(&ev.addr.bdaddr, bdaddr);
6809 ev.addr.type = type;
6810
6811 mgmt_event(MGMT_EV_DEVICE_REMOVED, hdev, &ev, sizeof(ev), sk);
6812}
6813
Marcel Holtmann2faade52014-06-29 19:44:03 +02006814static int remove_device(struct sock *sk, struct hci_dev *hdev,
6815 void *data, u16 len)
6816{
6817 struct mgmt_cp_remove_device *cp = data;
6818 int err;
6819
Marcel Holtmann181d6952020-05-06 09:57:47 +02006820 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006821
6822 hci_dev_lock(hdev);
6823
6824 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
Johan Hedbergc71593d2014-07-02 17:37:28 +03006825 struct hci_conn_params *params;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006826 u8 addr_type;
6827
Johan Hedberg66593582014-07-09 12:59:14 +03006828 if (!bdaddr_type_is_valid(cp->addr.type)) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006829 err = mgmt_cmd_complete(sk, hdev->id,
6830 MGMT_OP_REMOVE_DEVICE,
6831 MGMT_STATUS_INVALID_PARAMS,
6832 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006833 goto unlock;
6834 }
6835
Johan Hedberg66593582014-07-09 12:59:14 +03006836 if (cp->addr.type == BDADDR_BREDR) {
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08006837 err = hci_bdaddr_list_del(&hdev->accept_list,
Johan Hedberg66593582014-07-09 12:59:14 +03006838 &cp->addr.bdaddr,
6839 cp->addr.type);
6840 if (err) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006841 err = mgmt_cmd_complete(sk, hdev->id,
6842 MGMT_OP_REMOVE_DEVICE,
6843 MGMT_STATUS_INVALID_PARAMS,
6844 &cp->addr,
6845 sizeof(cp->addr));
Johan Hedberg66593582014-07-09 12:59:14 +03006846 goto unlock;
6847 }
6848
Johan Hedberg01b1cb82015-11-16 12:52:21 +02006849 hci_req_update_scan(hdev);
Johan Hedberga3974072014-07-09 12:59:15 +03006850
Johan Hedberg66593582014-07-09 12:59:14 +03006851 device_removed(sk, hdev, &cp->addr.bdaddr,
6852 cp->addr.type);
6853 goto complete;
6854 }
6855
Johan Hedberg85813a72015-10-21 18:02:59 +03006856 addr_type = le_addr_type(cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006857
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02006858 /* Kernel internally uses conn_params with resolvable private
6859 * address, but Remove Device allows only identity addresses.
6860 * Make sure it is enforced before calling
6861 * hci_conn_params_lookup.
6862 */
6863 if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006864 err = mgmt_cmd_complete(sk, hdev->id,
6865 MGMT_OP_REMOVE_DEVICE,
6866 MGMT_STATUS_INVALID_PARAMS,
6867 &cp->addr, sizeof(cp->addr));
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02006868 goto unlock;
6869 }
6870
Johan Hedbergc71593d2014-07-02 17:37:28 +03006871 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
6872 addr_type);
6873 if (!params) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006874 err = mgmt_cmd_complete(sk, hdev->id,
6875 MGMT_OP_REMOVE_DEVICE,
6876 MGMT_STATUS_INVALID_PARAMS,
6877 &cp->addr, sizeof(cp->addr));
Johan Hedbergc71593d2014-07-02 17:37:28 +03006878 goto unlock;
6879 }
6880
Johan Hedberg679d2b62015-10-16 10:07:52 +03006881 if (params->auto_connect == HCI_AUTO_CONN_DISABLED ||
6882 params->auto_connect == HCI_AUTO_CONN_EXPLICIT) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006883 err = mgmt_cmd_complete(sk, hdev->id,
6884 MGMT_OP_REMOVE_DEVICE,
6885 MGMT_STATUS_INVALID_PARAMS,
6886 &cp->addr, sizeof(cp->addr));
Johan Hedbergc71593d2014-07-02 17:37:28 +03006887 goto unlock;
6888 }
6889
Johan Hedbergd1dbf122014-07-04 16:17:23 +03006890 list_del(&params->action);
Johan Hedbergc71593d2014-07-02 17:37:28 +03006891 list_del(&params->list);
6892 kfree(params);
Johan Hedberg51d7a942015-11-11 08:11:18 +02006893 hci_update_background_scan(hdev);
Marcel Holtmann8afef092014-06-29 22:28:34 +02006894
6895 device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006896 } else {
Johan Hedberg19de0822014-07-06 13:06:51 +03006897 struct hci_conn_params *p, *tmp;
Johan Hedberg66593582014-07-09 12:59:14 +03006898 struct bdaddr_list *b, *btmp;
Johan Hedberg19de0822014-07-06 13:06:51 +03006899
Marcel Holtmann2faade52014-06-29 19:44:03 +02006900 if (cp->addr.type) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006901 err = mgmt_cmd_complete(sk, hdev->id,
6902 MGMT_OP_REMOVE_DEVICE,
6903 MGMT_STATUS_INVALID_PARAMS,
6904 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006905 goto unlock;
6906 }
6907
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08006908 list_for_each_entry_safe(b, btmp, &hdev->accept_list, list) {
Johan Hedberg66593582014-07-09 12:59:14 +03006909 device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type);
6910 list_del(&b->list);
6911 kfree(b);
6912 }
6913
Johan Hedberg01b1cb82015-11-16 12:52:21 +02006914 hci_req_update_scan(hdev);
Johan Hedberga3974072014-07-09 12:59:15 +03006915
Johan Hedberg19de0822014-07-06 13:06:51 +03006916 list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) {
6917 if (p->auto_connect == HCI_AUTO_CONN_DISABLED)
6918 continue;
6919 device_removed(sk, hdev, &p->addr, p->addr_type);
Johan Hedberg679d2b62015-10-16 10:07:52 +03006920 if (p->explicit_connect) {
6921 p->auto_connect = HCI_AUTO_CONN_EXPLICIT;
6922 continue;
6923 }
Johan Hedberg19de0822014-07-06 13:06:51 +03006924 list_del(&p->action);
6925 list_del(&p->list);
6926 kfree(p);
6927 }
6928
Marcel Holtmann181d6952020-05-06 09:57:47 +02006929 bt_dev_dbg(hdev, "All LE connection parameters were removed");
Johan Hedberg19de0822014-07-06 13:06:51 +03006930
Johan Hedberg51d7a942015-11-11 08:11:18 +02006931 hci_update_background_scan(hdev);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006932 }
6933
Johan Hedberg66593582014-07-09 12:59:14 +03006934complete:
Johan Hedberg51d7a942015-11-11 08:11:18 +02006935 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE,
6936 MGMT_STATUS_SUCCESS, &cp->addr,
6937 sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006938unlock:
6939 hci_dev_unlock(hdev);
6940 return err;
6941}
6942
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006943static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
6944 u16 len)
6945{
6946 struct mgmt_cp_load_conn_param *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03006947 const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
6948 sizeof(struct mgmt_conn_param));
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006949 u16 param_count, expected_len;
6950 int i;
6951
6952 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006953 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6954 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006955
6956 param_count = __le16_to_cpu(cp->param_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006957 if (param_count > max_param_count) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006958 bt_dev_err(hdev, "load_conn_param: too big param_count value %u",
6959 param_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02006960 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6961 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006962 }
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006963
Gustavo A. R. Silva5bec1fb2019-03-28 12:30:29 -05006964 expected_len = struct_size(cp, params, param_count);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006965 if (expected_len != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006966 bt_dev_err(hdev, "load_conn_param: expected %u bytes, got %u bytes",
6967 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02006968 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
6969 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006970 }
6971
Marcel Holtmann181d6952020-05-06 09:57:47 +02006972 bt_dev_dbg(hdev, "param_count %u", param_count);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006973
6974 hci_dev_lock(hdev);
6975
6976 hci_conn_params_clear_disabled(hdev);
6977
6978 for (i = 0; i < param_count; i++) {
6979 struct mgmt_conn_param *param = &cp->params[i];
6980 struct hci_conn_params *hci_param;
6981 u16 min, max, latency, timeout;
6982 u8 addr_type;
6983
Marcel Holtmann181d6952020-05-06 09:57:47 +02006984 bt_dev_dbg(hdev, "Adding %pMR (type %u)", &param->addr.bdaddr,
6985 param->addr.type);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006986
6987 if (param->addr.type == BDADDR_LE_PUBLIC) {
6988 addr_type = ADDR_LE_DEV_PUBLIC;
6989 } else if (param->addr.type == BDADDR_LE_RANDOM) {
6990 addr_type = ADDR_LE_DEV_RANDOM;
6991 } else {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006992 bt_dev_err(hdev, "ignoring invalid connection parameters");
Johan Hedberga26f3dc2014-07-02 17:37:29 +03006993 continue;
6994 }
6995
6996 min = le16_to_cpu(param->min_interval);
6997 max = le16_to_cpu(param->max_interval);
6998 latency = le16_to_cpu(param->latency);
6999 timeout = le16_to_cpu(param->timeout);
7000
Marcel Holtmann181d6952020-05-06 09:57:47 +02007001 bt_dev_dbg(hdev, "min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x",
7002 min, max, latency, timeout);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007003
7004 if (hci_check_conn_params(min, max, latency, timeout) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01007005 bt_dev_err(hdev, "ignoring invalid connection parameters");
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007006 continue;
7007 }
7008
7009 hci_param = hci_conn_params_add(hdev, &param->addr.bdaddr,
7010 addr_type);
7011 if (!hci_param) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01007012 bt_dev_err(hdev, "failed to add connection parameters");
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007013 continue;
7014 }
7015
7016 hci_param->conn_min_interval = min;
7017 hci_param->conn_max_interval = max;
7018 hci_param->conn_latency = latency;
7019 hci_param->supervision_timeout = timeout;
7020 }
7021
7022 hci_dev_unlock(hdev);
7023
Johan Hedberg2a1afb52015-03-06 21:08:54 +02007024 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
7025 NULL, 0);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007026}
7027
Marcel Holtmanndbece372014-07-04 18:11:55 +02007028static int set_external_config(struct sock *sk, struct hci_dev *hdev,
7029 void *data, u16 len)
7030{
7031 struct mgmt_cp_set_external_config *cp = data;
7032 bool changed;
7033 int err;
7034
Marcel Holtmann181d6952020-05-06 09:57:47 +02007035 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007036
7037 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02007038 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
7039 MGMT_STATUS_REJECTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007040
7041 if (cp->config != 0x00 && cp->config != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02007042 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
7043 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007044
7045 if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
Johan Hedberga69e8372015-03-06 21:08:53 +02007046 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
7047 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007048
7049 hci_dev_lock(hdev);
7050
7051 if (cp->config)
Marcel Holtmann238be782015-03-13 02:11:06 -07007052 changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007053 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07007054 changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007055
7056 err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
7057 if (err < 0)
7058 goto unlock;
7059
7060 if (!changed)
7061 goto unlock;
7062
Marcel Holtmannf4537c02014-07-04 19:06:23 +02007063 err = new_options(hdev, sk);
7064
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007065 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
Marcel Holtmanndbece372014-07-04 18:11:55 +02007066 mgmt_index_removed(hdev);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02007067
Marcel Holtmann516018a2015-03-13 02:11:04 -07007068 if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07007069 hci_dev_set_flag(hdev, HCI_CONFIG);
7070 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02007071
7072 queue_work(hdev->req_workqueue, &hdev->power_on);
7073 } else {
Marcel Holtmann5ea234d2014-07-06 12:11:16 +02007074 set_bit(HCI_RAW, &hdev->flags);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02007075 mgmt_index_added(hdev);
7076 }
Marcel Holtmanndbece372014-07-04 18:11:55 +02007077 }
7078
7079unlock:
7080 hci_dev_unlock(hdev);
7081 return err;
7082}
7083
Marcel Holtmann9713c172014-07-06 12:11:15 +02007084static int set_public_address(struct sock *sk, struct hci_dev *hdev,
7085 void *data, u16 len)
7086{
7087 struct mgmt_cp_set_public_address *cp = data;
7088 bool changed;
7089 int err;
7090
Marcel Holtmann181d6952020-05-06 09:57:47 +02007091 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007092
7093 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02007094 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
7095 MGMT_STATUS_REJECTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007096
7097 if (!bacmp(&cp->bdaddr, BDADDR_ANY))
Johan Hedberga69e8372015-03-06 21:08:53 +02007098 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
7099 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007100
7101 if (!hdev->set_bdaddr)
Johan Hedberga69e8372015-03-06 21:08:53 +02007102 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
7103 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007104
7105 hci_dev_lock(hdev);
7106
7107 changed = !!bacmp(&hdev->public_addr, &cp->bdaddr);
7108 bacpy(&hdev->public_addr, &cp->bdaddr);
7109
7110 err = send_options_rsp(sk, MGMT_OP_SET_PUBLIC_ADDRESS, hdev);
7111 if (err < 0)
7112 goto unlock;
7113
7114 if (!changed)
7115 goto unlock;
7116
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007117 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
Marcel Holtmann9713c172014-07-06 12:11:15 +02007118 err = new_options(hdev, sk);
7119
7120 if (is_configured(hdev)) {
7121 mgmt_index_removed(hdev);
7122
Marcel Holtmanna358dc12015-03-13 02:11:02 -07007123 hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007124
Marcel Holtmanna1536da2015-03-13 02:11:01 -07007125 hci_dev_set_flag(hdev, HCI_CONFIG);
7126 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007127
7128 queue_work(hdev->req_workqueue, &hdev->power_on);
7129 }
7130
7131unlock:
7132 hci_dev_unlock(hdev);
7133 return err;
7134}
7135
Johan Hedberg40f66c02015-04-07 21:52:22 +03007136static void read_local_oob_ext_data_complete(struct hci_dev *hdev, u8 status,
7137 u16 opcode, struct sk_buff *skb)
7138{
7139 const struct mgmt_cp_read_local_oob_ext_data *mgmt_cp;
7140 struct mgmt_rp_read_local_oob_ext_data *mgmt_rp;
7141 u8 *h192, *r192, *h256, *r256;
7142 struct mgmt_pending_cmd *cmd;
7143 u16 eir_len;
7144 int err;
7145
Marcel Holtmann181d6952020-05-06 09:57:47 +02007146 bt_dev_dbg(hdev, "status %u", status);
Johan Hedberg40f66c02015-04-07 21:52:22 +03007147
7148 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev);
7149 if (!cmd)
7150 return;
7151
7152 mgmt_cp = cmd->param;
7153
7154 if (status) {
7155 status = mgmt_status(status);
7156 eir_len = 0;
7157
7158 h192 = NULL;
7159 r192 = NULL;
7160 h256 = NULL;
7161 r256 = NULL;
7162 } else if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
7163 struct hci_rp_read_local_oob_data *rp;
7164
7165 if (skb->len != sizeof(*rp)) {
7166 status = MGMT_STATUS_FAILED;
7167 eir_len = 0;
7168 } else {
7169 status = MGMT_STATUS_SUCCESS;
7170 rp = (void *)skb->data;
7171
7172 eir_len = 5 + 18 + 18;
7173 h192 = rp->hash;
7174 r192 = rp->rand;
7175 h256 = NULL;
7176 r256 = NULL;
7177 }
7178 } else {
7179 struct hci_rp_read_local_oob_ext_data *rp;
7180
7181 if (skb->len != sizeof(*rp)) {
7182 status = MGMT_STATUS_FAILED;
7183 eir_len = 0;
7184 } else {
7185 status = MGMT_STATUS_SUCCESS;
7186 rp = (void *)skb->data;
7187
7188 if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
7189 eir_len = 5 + 18 + 18;
7190 h192 = NULL;
7191 r192 = NULL;
7192 } else {
7193 eir_len = 5 + 18 + 18 + 18 + 18;
7194 h192 = rp->hash192;
7195 r192 = rp->rand192;
7196 }
7197
7198 h256 = rp->hash256;
7199 r256 = rp->rand256;
7200 }
7201 }
7202
7203 mgmt_rp = kmalloc(sizeof(*mgmt_rp) + eir_len, GFP_KERNEL);
7204 if (!mgmt_rp)
7205 goto done;
7206
7207 if (status)
7208 goto send_rsp;
7209
7210 eir_len = eir_append_data(mgmt_rp->eir, 0, EIR_CLASS_OF_DEV,
7211 hdev->dev_class, 3);
7212
7213 if (h192 && r192) {
7214 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
7215 EIR_SSP_HASH_C192, h192, 16);
7216 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
7217 EIR_SSP_RAND_R192, r192, 16);
7218 }
7219
7220 if (h256 && r256) {
7221 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
7222 EIR_SSP_HASH_C256, h256, 16);
7223 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
7224 EIR_SSP_RAND_R256, r256, 16);
7225 }
7226
7227send_rsp:
7228 mgmt_rp->type = mgmt_cp->type;
7229 mgmt_rp->eir_len = cpu_to_le16(eir_len);
7230
7231 err = mgmt_cmd_complete(cmd->sk, hdev->id,
7232 MGMT_OP_READ_LOCAL_OOB_EXT_DATA, status,
7233 mgmt_rp, sizeof(*mgmt_rp) + eir_len);
7234 if (err < 0 || status)
7235 goto done;
7236
7237 hci_sock_set_flag(cmd->sk, HCI_MGMT_OOB_DATA_EVENTS);
7238
7239 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
7240 mgmt_rp, sizeof(*mgmt_rp) + eir_len,
7241 HCI_MGMT_OOB_DATA_EVENTS, cmd->sk);
7242done:
7243 kfree(mgmt_rp);
7244 mgmt_pending_remove(cmd);
7245}
7246
7247static int read_local_ssp_oob_req(struct hci_dev *hdev, struct sock *sk,
7248 struct mgmt_cp_read_local_oob_ext_data *cp)
7249{
7250 struct mgmt_pending_cmd *cmd;
7251 struct hci_request req;
7252 int err;
7253
7254 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev,
7255 cp, sizeof(*cp));
7256 if (!cmd)
7257 return -ENOMEM;
7258
7259 hci_req_init(&req, hdev);
7260
7261 if (bredr_sc_enabled(hdev))
7262 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
7263 else
7264 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
7265
7266 err = hci_req_run_skb(&req, read_local_oob_ext_data_complete);
7267 if (err < 0) {
7268 mgmt_pending_remove(cmd);
7269 return err;
7270 }
7271
7272 return 0;
7273}
7274
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007275static int read_local_oob_ext_data(struct sock *sk, struct hci_dev *hdev,
7276 void *data, u16 data_len)
7277{
7278 struct mgmt_cp_read_local_oob_ext_data *cp = data;
7279 struct mgmt_rp_read_local_oob_ext_data *rp;
7280 size_t rp_len;
7281 u16 eir_len;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007282 u8 status, flags, role, addr[7], hash[16], rand[16];
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007283 int err;
7284
Marcel Holtmann181d6952020-05-06 09:57:47 +02007285 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007286
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07007287 if (hdev_is_powered(hdev)) {
7288 switch (cp->type) {
7289 case BIT(BDADDR_BREDR):
7290 status = mgmt_bredr_support(hdev);
7291 if (status)
7292 eir_len = 0;
7293 else
7294 eir_len = 5;
7295 break;
7296 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
7297 status = mgmt_le_support(hdev);
7298 if (status)
7299 eir_len = 0;
7300 else
7301 eir_len = 9 + 3 + 18 + 18 + 3;
7302 break;
7303 default:
7304 status = MGMT_STATUS_INVALID_PARAMS;
7305 eir_len = 0;
7306 break;
7307 }
7308 } else {
7309 status = MGMT_STATUS_NOT_POWERED;
7310 eir_len = 0;
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007311 }
7312
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007313 rp_len = sizeof(*rp) + eir_len;
7314 rp = kmalloc(rp_len, GFP_ATOMIC);
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07007315 if (!rp)
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007316 return -ENOMEM;
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07007317
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07007318 if (status)
7319 goto complete;
7320
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07007321 hci_dev_lock(hdev);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007322
7323 eir_len = 0;
7324 switch (cp->type) {
7325 case BIT(BDADDR_BREDR):
Johan Hedberg40f66c02015-04-07 21:52:22 +03007326 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
7327 err = read_local_ssp_oob_req(hdev, sk, cp);
7328 hci_dev_unlock(hdev);
7329 if (!err)
7330 goto done;
7331
7332 status = MGMT_STATUS_FAILED;
7333 goto complete;
7334 } else {
7335 eir_len = eir_append_data(rp->eir, eir_len,
7336 EIR_CLASS_OF_DEV,
7337 hdev->dev_class, 3);
7338 }
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007339 break;
7340 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
Marcel Holtmann5082a592015-03-16 12:39:00 -07007341 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
7342 smp_generate_oob(hdev, hash, rand) < 0) {
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007343 hci_dev_unlock(hdev);
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07007344 status = MGMT_STATUS_FAILED;
7345 goto complete;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007346 }
7347
Marcel Holtmanne2135682015-04-02 12:00:58 -07007348 /* This should return the active RPA, but since the RPA
7349 * is only programmed on demand, it is really hard to fill
7350 * this in at the moment. For now disallow retrieving
7351 * local out-of-band data when privacy is in use.
7352 *
7353 * Returning the identity address will not help here since
7354 * pairing happens before the identity resolving key is
7355 * known and thus the connection establishment happens
7356 * based on the RPA and not the identity address.
7357 */
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007358 if (hci_dev_test_flag(hdev, HCI_PRIVACY)) {
Marcel Holtmanne2135682015-04-02 12:00:58 -07007359 hci_dev_unlock(hdev);
7360 status = MGMT_STATUS_REJECTED;
7361 goto complete;
7362 }
7363
7364 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
7365 !bacmp(&hdev->bdaddr, BDADDR_ANY) ||
7366 (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
7367 bacmp(&hdev->static_addr, BDADDR_ANY))) {
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007368 memcpy(addr, &hdev->static_addr, 6);
7369 addr[6] = 0x01;
7370 } else {
7371 memcpy(addr, &hdev->bdaddr, 6);
7372 addr[6] = 0x00;
7373 }
7374
7375 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_BDADDR,
7376 addr, sizeof(addr));
7377
7378 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
7379 role = 0x02;
7380 else
7381 role = 0x01;
7382
7383 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_ROLE,
7384 &role, sizeof(role));
7385
Marcel Holtmann5082a592015-03-16 12:39:00 -07007386 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED)) {
7387 eir_len = eir_append_data(rp->eir, eir_len,
7388 EIR_LE_SC_CONFIRM,
7389 hash, sizeof(hash));
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007390
Marcel Holtmann5082a592015-03-16 12:39:00 -07007391 eir_len = eir_append_data(rp->eir, eir_len,
7392 EIR_LE_SC_RANDOM,
7393 rand, sizeof(rand));
7394 }
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007395
Johan Hedbergf2252572015-11-18 12:49:20 +02007396 flags = mgmt_get_adv_discov_flags(hdev);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007397
7398 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
7399 flags |= LE_AD_NO_BREDR;
7400
7401 eir_len = eir_append_data(rp->eir, eir_len, EIR_FLAGS,
7402 &flags, sizeof(flags));
7403 break;
7404 }
7405
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007406 hci_dev_unlock(hdev);
7407
Marcel Holtmann72000df2015-03-16 16:11:21 -07007408 hci_sock_set_flag(sk, HCI_MGMT_OOB_DATA_EVENTS);
7409
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07007410 status = MGMT_STATUS_SUCCESS;
7411
7412complete:
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07007413 rp->type = cp->type;
7414 rp->eir_len = cpu_to_le16(eir_len);
7415
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007416 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07007417 status, rp, sizeof(*rp) + eir_len);
7418 if (err < 0 || status)
Marcel Holtmann72000df2015-03-16 16:11:21 -07007419 goto done;
7420
7421 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
7422 rp, sizeof(*rp) + eir_len,
7423 HCI_MGMT_OOB_DATA_EVENTS, sk);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007424
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007425done:
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007426 kfree(rp);
7427
7428 return err;
7429}
7430
Arman Uguray089fa8c2015-03-25 18:53:45 -07007431static u32 get_supported_adv_flags(struct hci_dev *hdev)
7432{
7433 u32 flags = 0;
7434
7435 flags |= MGMT_ADV_FLAG_CONNECTABLE;
7436 flags |= MGMT_ADV_FLAG_DISCOV;
7437 flags |= MGMT_ADV_FLAG_LIMITED_DISCOV;
7438 flags |= MGMT_ADV_FLAG_MANAGED_FLAGS;
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02007439 flags |= MGMT_ADV_FLAG_APPEARANCE;
MichaƂ Narajowski7c295c42016-09-18 12:50:02 +02007440 flags |= MGMT_ADV_FLAG_LOCAL_NAME;
Daniel Winkler12410572020-12-03 12:12:49 -08007441 flags |= MGMT_ADV_PARAM_DURATION;
7442 flags |= MGMT_ADV_PARAM_TIMEOUT;
7443 flags |= MGMT_ADV_PARAM_INTERVALS;
7444 flags |= MGMT_ADV_PARAM_TX_POWER;
Daniel Winklerff02db12021-03-03 11:15:23 -08007445 flags |= MGMT_ADV_PARAM_SCAN_RSP;
Arman Uguray089fa8c2015-03-25 18:53:45 -07007446
Jaganath Kanakkasseryde181e82018-07-19 17:09:41 +05307447 /* In extended adv TX_POWER returned from Set Adv Param
7448 * will be always valid.
7449 */
7450 if ((hdev->adv_tx_power != HCI_TX_POWER_INVALID) ||
7451 ext_adv_capable(hdev))
Arman Uguray089fa8c2015-03-25 18:53:45 -07007452 flags |= MGMT_ADV_FLAG_TX_POWER;
7453
Jaganath Kanakkassery85a721a2018-07-19 17:09:47 +05307454 if (ext_adv_capable(hdev)) {
7455 flags |= MGMT_ADV_FLAG_SEC_1M;
Daniel Winklerd5ea32d2020-08-25 16:31:51 -07007456 flags |= MGMT_ADV_FLAG_HW_OFFLOAD;
7457 flags |= MGMT_ADV_FLAG_CAN_SET_TX_POWER;
Jaganath Kanakkassery85a721a2018-07-19 17:09:47 +05307458
7459 if (hdev->le_features[1] & HCI_LE_PHY_2M)
7460 flags |= MGMT_ADV_FLAG_SEC_2M;
7461
7462 if (hdev->le_features[1] & HCI_LE_PHY_CODED)
7463 flags |= MGMT_ADV_FLAG_SEC_CODED;
7464 }
7465
Arman Uguray089fa8c2015-03-25 18:53:45 -07007466 return flags;
7467}
7468
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007469static int read_adv_features(struct sock *sk, struct hci_dev *hdev,
7470 void *data, u16 data_len)
7471{
7472 struct mgmt_rp_read_adv_features *rp;
7473 size_t rp_len;
Johan Hedberg02c04afe2015-11-26 12:15:58 +02007474 int err;
Florian Grandel286e0c82015-06-18 03:16:38 +02007475 struct adv_info *adv_instance;
Arman Uguray089fa8c2015-03-25 18:53:45 -07007476 u32 supported_flags;
Johan Hedberg02c04afe2015-11-26 12:15:58 +02007477 u8 *instance;
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007478
Marcel Holtmann181d6952020-05-06 09:57:47 +02007479 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007480
Arman Uguray089fa8c2015-03-25 18:53:45 -07007481 if (!lmp_le_capable(hdev))
7482 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
7483 MGMT_STATUS_REJECTED);
7484
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05307485 /* Enabling the experimental LL Privay support disables support for
7486 * advertising.
7487 */
7488 if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
Marcel Holtmann21dd1182021-03-14 14:56:08 +01007489 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05307490 MGMT_STATUS_NOT_SUPPORTED);
7491
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007492 hci_dev_lock(hdev);
7493
Johan Hedberg02c04afe2015-11-26 12:15:58 +02007494 rp_len = sizeof(*rp) + hdev->adv_instance_cnt;
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007495 rp = kmalloc(rp_len, GFP_ATOMIC);
7496 if (!rp) {
7497 hci_dev_unlock(hdev);
7498 return -ENOMEM;
7499 }
7500
Arman Uguray089fa8c2015-03-25 18:53:45 -07007501 supported_flags = get_supported_adv_flags(hdev);
7502
7503 rp->supported_flags = cpu_to_le32(supported_flags);
Marcel Holtmanndc5d82a2015-03-19 17:22:25 -07007504 rp->max_adv_data_len = HCI_MAX_AD_LENGTH;
7505 rp->max_scan_rsp_len = HCI_MAX_AD_LENGTH;
Daniel Winkler87597482020-08-25 16:31:50 -07007506 rp->max_instances = hdev->le_num_of_adv_sets;
Johan Hedberg02c04afe2015-11-26 12:15:58 +02007507 rp->num_instances = hdev->adv_instance_cnt;
Arman Uguray24b4f382015-03-23 15:57:12 -07007508
Johan Hedberg02c04afe2015-11-26 12:15:58 +02007509 instance = rp->instance;
7510 list_for_each_entry(adv_instance, &hdev->adv_instances, list) {
7511 *instance = adv_instance->instance;
7512 instance++;
Arman Uguray24b4f382015-03-23 15:57:12 -07007513 }
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007514
7515 hci_dev_unlock(hdev);
7516
7517 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
7518 MGMT_STATUS_SUCCESS, rp, rp_len);
7519
7520 kfree(rp);
7521
7522 return err;
7523}
7524
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02007525static u8 calculate_name_len(struct hci_dev *hdev)
7526{
7527 u8 buf[HCI_MAX_SHORT_NAME_LENGTH + 3];
7528
7529 return append_local_name(hdev, buf, 0);
7530}
7531
7532static u8 tlv_data_max_len(struct hci_dev *hdev, u32 adv_flags,
7533 bool is_adv_data)
Arman Uguray24b4f382015-03-23 15:57:12 -07007534{
Arman Uguray4117ed72015-03-23 15:57:14 -07007535 u8 max_len = HCI_MAX_AD_LENGTH;
Arman Uguray24b4f382015-03-23 15:57:12 -07007536
Marcel Holtmann31a32482015-11-19 16:16:42 +01007537 if (is_adv_data) {
7538 if (adv_flags & (MGMT_ADV_FLAG_DISCOV |
7539 MGMT_ADV_FLAG_LIMITED_DISCOV |
Szymon Janc2bb368702016-09-18 12:50:05 +02007540 MGMT_ADV_FLAG_MANAGED_FLAGS))
Marcel Holtmann31a32482015-11-19 16:16:42 +01007541 max_len -= 3;
Arman Uguray24b4f382015-03-23 15:57:12 -07007542
Szymon Janc2bb368702016-09-18 12:50:05 +02007543 if (adv_flags & MGMT_ADV_FLAG_TX_POWER)
Marcel Holtmann31a32482015-11-19 16:16:42 +01007544 max_len -= 3;
MichaƂ Narajowski7c295c42016-09-18 12:50:02 +02007545 } else {
MichaƂ Narajowski7c295c42016-09-18 12:50:02 +02007546 if (adv_flags & MGMT_ADV_FLAG_LOCAL_NAME)
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02007547 max_len -= calculate_name_len(hdev);
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02007548
Szymon Janc2bb368702016-09-18 12:50:05 +02007549 if (adv_flags & (MGMT_ADV_FLAG_APPEARANCE))
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02007550 max_len -= 4;
Arman Uguray5507e352015-03-25 18:53:44 -07007551 }
7552
Szymon Janc2bb368702016-09-18 12:50:05 +02007553 return max_len;
7554}
7555
7556static bool flags_managed(u32 adv_flags)
7557{
7558 return adv_flags & (MGMT_ADV_FLAG_DISCOV |
7559 MGMT_ADV_FLAG_LIMITED_DISCOV |
7560 MGMT_ADV_FLAG_MANAGED_FLAGS);
7561}
7562
7563static bool tx_power_managed(u32 adv_flags)
7564{
7565 return adv_flags & MGMT_ADV_FLAG_TX_POWER;
7566}
7567
7568static bool name_managed(u32 adv_flags)
7569{
7570 return adv_flags & MGMT_ADV_FLAG_LOCAL_NAME;
7571}
7572
7573static bool appearance_managed(u32 adv_flags)
7574{
7575 return adv_flags & MGMT_ADV_FLAG_APPEARANCE;
7576}
7577
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02007578static bool tlv_data_is_valid(struct hci_dev *hdev, u32 adv_flags, u8 *data,
7579 u8 len, bool is_adv_data)
Szymon Janc2bb368702016-09-18 12:50:05 +02007580{
7581 int i, cur_len;
7582 u8 max_len;
7583
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02007584 max_len = tlv_data_max_len(hdev, adv_flags, is_adv_data);
Szymon Janc2bb368702016-09-18 12:50:05 +02007585
Arman Uguray4117ed72015-03-23 15:57:14 -07007586 if (len > max_len)
Arman Uguray24b4f382015-03-23 15:57:12 -07007587 return false;
7588
Arman Uguray4117ed72015-03-23 15:57:14 -07007589 /* Make sure that the data is correctly formatted. */
7590 for (i = 0, cur_len = 0; i < len; i += (cur_len + 1)) {
7591 cur_len = data[i];
Arman Uguray24b4f382015-03-23 15:57:12 -07007592
Luiz Augusto von Dentz799acb92021-05-28 11:45:02 -07007593 if (!cur_len)
7594 continue;
7595
Szymon Janc9c9db782016-09-18 12:50:06 +02007596 if (data[i + 1] == EIR_FLAGS &&
7597 (!is_adv_data || flags_managed(adv_flags)))
Arman Ugurayb44133f2015-03-25 18:53:41 -07007598 return false;
7599
Szymon Janc2bb368702016-09-18 12:50:05 +02007600 if (data[i + 1] == EIR_TX_POWER && tx_power_managed(adv_flags))
7601 return false;
7602
7603 if (data[i + 1] == EIR_NAME_COMPLETE && name_managed(adv_flags))
7604 return false;
7605
7606 if (data[i + 1] == EIR_NAME_SHORT && name_managed(adv_flags))
7607 return false;
7608
7609 if (data[i + 1] == EIR_APPEARANCE &&
7610 appearance_managed(adv_flags))
Arman Uguray5507e352015-03-25 18:53:44 -07007611 return false;
7612
Arman Uguray24b4f382015-03-23 15:57:12 -07007613 /* If the current field length would exceed the total data
7614 * length, then it's invalid.
7615 */
Arman Uguray4117ed72015-03-23 15:57:14 -07007616 if (i + cur_len >= len)
Arman Uguray24b4f382015-03-23 15:57:12 -07007617 return false;
7618 }
7619
7620 return true;
7621}
7622
Daniel Winkler12410572020-12-03 12:12:49 -08007623static bool requested_adv_flags_are_valid(struct hci_dev *hdev, u32 adv_flags)
7624{
7625 u32 supported_flags, phy_flags;
7626
7627 /* The current implementation only supports a subset of the specified
7628 * flags. Also need to check mutual exclusiveness of sec flags.
7629 */
7630 supported_flags = get_supported_adv_flags(hdev);
7631 phy_flags = adv_flags & MGMT_ADV_FLAG_SEC_MASK;
7632 if (adv_flags & ~supported_flags ||
7633 ((phy_flags && (phy_flags ^ (phy_flags & -phy_flags)))))
7634 return false;
7635
7636 return true;
7637}
7638
7639static bool adv_busy(struct hci_dev *hdev)
7640{
7641 return (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
7642 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
7643 pending_find(MGMT_OP_SET_LE, hdev) ||
7644 pending_find(MGMT_OP_ADD_EXT_ADV_PARAMS, hdev) ||
7645 pending_find(MGMT_OP_ADD_EXT_ADV_DATA, hdev));
7646}
7647
Arman Uguray24b4f382015-03-23 15:57:12 -07007648static void add_advertising_complete(struct hci_dev *hdev, u8 status,
7649 u16 opcode)
7650{
7651 struct mgmt_pending_cmd *cmd;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007652 struct mgmt_cp_add_advertising *cp;
Arman Uguray24b4f382015-03-23 15:57:12 -07007653 struct mgmt_rp_add_advertising rp;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007654 struct adv_info *adv_instance, *n;
7655 u8 instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007656
Kai Ye85d672842021-06-03 15:41:02 +08007657 bt_dev_dbg(hdev, "status %u", status);
Arman Uguray24b4f382015-03-23 15:57:12 -07007658
7659 hci_dev_lock(hdev);
7660
7661 cmd = pending_find(MGMT_OP_ADD_ADVERTISING, hdev);
Daniel Winkler12410572020-12-03 12:12:49 -08007662 if (!cmd)
7663 cmd = pending_find(MGMT_OP_ADD_EXT_ADV_DATA, hdev);
Arman Uguray24b4f382015-03-23 15:57:12 -07007664
Florian Grandelfffd38b2015-06-18 03:16:47 +02007665 list_for_each_entry_safe(adv_instance, n, &hdev->adv_instances, list) {
7666 if (!adv_instance->pending)
7667 continue;
7668
7669 if (!status) {
7670 adv_instance->pending = false;
7671 continue;
7672 }
7673
7674 instance = adv_instance->instance;
7675
7676 if (hdev->cur_adv_instance == instance)
7677 cancel_adv_timeout(hdev);
7678
7679 hci_remove_adv_instance(hdev, instance);
Johan Hedbergf2252572015-11-18 12:49:20 +02007680 mgmt_advertising_removed(cmd ? cmd->sk : NULL, hdev, instance);
Arman Uguray24b4f382015-03-23 15:57:12 -07007681 }
7682
7683 if (!cmd)
7684 goto unlock;
7685
Florian Grandelfffd38b2015-06-18 03:16:47 +02007686 cp = cmd->param;
7687 rp.instance = cp->instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007688
7689 if (status)
7690 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
7691 mgmt_status(status));
7692 else
7693 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
7694 mgmt_status(status), &rp, sizeof(rp));
7695
7696 mgmt_pending_remove(cmd);
7697
7698unlock:
7699 hci_dev_unlock(hdev);
7700}
7701
7702static int add_advertising(struct sock *sk, struct hci_dev *hdev,
7703 void *data, u16 data_len)
7704{
7705 struct mgmt_cp_add_advertising *cp = data;
7706 struct mgmt_rp_add_advertising rp;
7707 u32 flags;
7708 u8 status;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007709 u16 timeout, duration;
7710 unsigned int prev_instance_cnt = hdev->adv_instance_cnt;
7711 u8 schedule_instance = 0;
7712 struct adv_info *next_instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007713 int err;
7714 struct mgmt_pending_cmd *cmd;
7715 struct hci_request req;
7716
Marcel Holtmann181d6952020-05-06 09:57:47 +02007717 bt_dev_dbg(hdev, "sock %p", sk);
Arman Uguray24b4f382015-03-23 15:57:12 -07007718
7719 status = mgmt_le_support(hdev);
7720 if (status)
7721 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7722 status);
7723
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05307724 /* Enabling the experimental LL Privay support disables support for
7725 * advertising.
7726 */
7727 if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
7728 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
7729 MGMT_STATUS_NOT_SUPPORTED);
7730
Daniel Winkler87597482020-08-25 16:31:50 -07007731 if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets)
Marcel Holtmannceff86a2015-11-19 16:16:41 +01007732 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7733 MGMT_STATUS_INVALID_PARAMS);
7734
Johan Hedberg6a0e7802016-03-11 09:56:33 +02007735 if (data_len != sizeof(*cp) + cp->adv_data_len + cp->scan_rsp_len)
7736 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7737 MGMT_STATUS_INVALID_PARAMS);
7738
Arman Uguray24b4f382015-03-23 15:57:12 -07007739 flags = __le32_to_cpu(cp->flags);
Arman Uguray912098a2015-03-23 15:57:15 -07007740 timeout = __le16_to_cpu(cp->timeout);
Florian Grandelfffd38b2015-06-18 03:16:47 +02007741 duration = __le16_to_cpu(cp->duration);
Arman Uguray24b4f382015-03-23 15:57:12 -07007742
Daniel Winkler12410572020-12-03 12:12:49 -08007743 if (!requested_adv_flags_are_valid(hdev, flags))
Arman Uguray24b4f382015-03-23 15:57:12 -07007744 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7745 MGMT_STATUS_INVALID_PARAMS);
7746
7747 hci_dev_lock(hdev);
7748
Arman Uguray912098a2015-03-23 15:57:15 -07007749 if (timeout && !hdev_is_powered(hdev)) {
7750 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7751 MGMT_STATUS_REJECTED);
7752 goto unlock;
7753 }
7754
Daniel Winkler12410572020-12-03 12:12:49 -08007755 if (adv_busy(hdev)) {
Arman Uguray24b4f382015-03-23 15:57:12 -07007756 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7757 MGMT_STATUS_BUSY);
7758 goto unlock;
7759 }
7760
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02007761 if (!tlv_data_is_valid(hdev, flags, cp->data, cp->adv_data_len, true) ||
7762 !tlv_data_is_valid(hdev, flags, cp->data + cp->adv_data_len,
Arman Ugurayb44133f2015-03-25 18:53:41 -07007763 cp->scan_rsp_len, false)) {
Arman Uguray24b4f382015-03-23 15:57:12 -07007764 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7765 MGMT_STATUS_INVALID_PARAMS);
7766 goto unlock;
7767 }
7768
Florian Grandelfffd38b2015-06-18 03:16:47 +02007769 err = hci_add_adv_instance(hdev, cp->instance, flags,
7770 cp->adv_data_len, cp->data,
7771 cp->scan_rsp_len,
7772 cp->data + cp->adv_data_len,
Daniel Winkler9bf9f4b2020-12-03 12:12:50 -08007773 timeout, duration,
7774 HCI_ADV_TX_POWER_NO_PREFERENCE,
7775 hdev->le_adv_min_interval,
7776 hdev->le_adv_max_interval);
Florian Grandelfffd38b2015-06-18 03:16:47 +02007777 if (err < 0) {
7778 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7779 MGMT_STATUS_FAILED);
7780 goto unlock;
7781 }
Arman Uguray24b4f382015-03-23 15:57:12 -07007782
Florian Grandelfffd38b2015-06-18 03:16:47 +02007783 /* Only trigger an advertising added event if a new instance was
7784 * actually added.
7785 */
7786 if (hdev->adv_instance_cnt > prev_instance_cnt)
Johan Hedbergf2252572015-11-18 12:49:20 +02007787 mgmt_advertising_added(sk, hdev, cp->instance);
Arman Uguray24b4f382015-03-23 15:57:12 -07007788
Florian Grandelfffd38b2015-06-18 03:16:47 +02007789 if (hdev->cur_adv_instance == cp->instance) {
7790 /* If the currently advertised instance is being changed then
7791 * cancel the current advertising and schedule the next
7792 * instance. If there is only one instance then the overridden
7793 * advertising data will be visible right away.
7794 */
7795 cancel_adv_timeout(hdev);
Arman Uguray912098a2015-03-23 15:57:15 -07007796
Florian Grandelfffd38b2015-06-18 03:16:47 +02007797 next_instance = hci_get_next_instance(hdev, cp->instance);
7798 if (next_instance)
7799 schedule_instance = next_instance->instance;
7800 } else if (!hdev->adv_instance_timeout) {
7801 /* Immediately advertise the new instance if no other
7802 * instance is currently being advertised.
7803 */
7804 schedule_instance = cp->instance;
7805 }
Arman Uguray912098a2015-03-23 15:57:15 -07007806
Florian Grandelfffd38b2015-06-18 03:16:47 +02007807 /* If the HCI_ADVERTISING flag is set or the device isn't powered or
7808 * there is no instance to be advertised then we have no HCI
7809 * communication to make. Simply return.
Arman Uguray24b4f382015-03-23 15:57:12 -07007810 */
7811 if (!hdev_is_powered(hdev) ||
Florian Grandelfffd38b2015-06-18 03:16:47 +02007812 hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
7813 !schedule_instance) {
7814 rp.instance = cp->instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007815 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7816 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
7817 goto unlock;
7818 }
7819
7820 /* We're good to go, update advertising data, parameters, and start
7821 * advertising.
7822 */
7823 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_ADVERTISING, hdev, data,
7824 data_len);
7825 if (!cmd) {
7826 err = -ENOMEM;
7827 goto unlock;
7828 }
7829
7830 hci_req_init(&req, hdev);
7831
Johan Hedbergf2252572015-11-18 12:49:20 +02007832 err = __hci_req_schedule_adv_instance(&req, schedule_instance, true);
Arman Uguray24b4f382015-03-23 15:57:12 -07007833
Florian Grandelfffd38b2015-06-18 03:16:47 +02007834 if (!err)
7835 err = hci_req_run(&req, add_advertising_complete);
7836
Joseph Hwang72da7b22020-03-10 09:31:50 -07007837 if (err < 0) {
7838 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7839 MGMT_STATUS_FAILED);
Arman Uguray24b4f382015-03-23 15:57:12 -07007840 mgmt_pending_remove(cmd);
Joseph Hwang72da7b22020-03-10 09:31:50 -07007841 }
Arman Uguray24b4f382015-03-23 15:57:12 -07007842
7843unlock:
7844 hci_dev_unlock(hdev);
7845
7846 return err;
7847}
7848
Daniel Winkler12410572020-12-03 12:12:49 -08007849static void add_ext_adv_params_complete(struct hci_dev *hdev, u8 status,
7850 u16 opcode)
7851{
7852 struct mgmt_pending_cmd *cmd;
7853 struct mgmt_cp_add_ext_adv_params *cp;
7854 struct mgmt_rp_add_ext_adv_params rp;
7855 struct adv_info *adv_instance;
7856 u32 flags;
7857
7858 BT_DBG("%s", hdev->name);
7859
7860 hci_dev_lock(hdev);
7861
7862 cmd = pending_find(MGMT_OP_ADD_EXT_ADV_PARAMS, hdev);
7863 if (!cmd)
7864 goto unlock;
7865
7866 cp = cmd->param;
7867 adv_instance = hci_find_adv_instance(hdev, cp->instance);
7868 if (!adv_instance)
7869 goto unlock;
7870
7871 rp.instance = cp->instance;
7872 rp.tx_power = adv_instance->tx_power;
7873
7874 /* While we're at it, inform userspace of the available space for this
7875 * advertisement, given the flags that will be used.
7876 */
7877 flags = __le32_to_cpu(cp->flags);
7878 rp.max_adv_data_len = tlv_data_max_len(hdev, flags, true);
7879 rp.max_scan_rsp_len = tlv_data_max_len(hdev, flags, false);
7880
7881 if (status) {
7882 /* If this advertisement was previously advertising and we
7883 * failed to update it, we signal that it has been removed and
7884 * delete its structure
7885 */
7886 if (!adv_instance->pending)
7887 mgmt_advertising_removed(cmd->sk, hdev, cp->instance);
7888
7889 hci_remove_adv_instance(hdev, cp->instance);
7890
7891 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
7892 mgmt_status(status));
7893
7894 } else {
7895 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
7896 mgmt_status(status), &rp, sizeof(rp));
7897 }
7898
7899unlock:
7900 if (cmd)
7901 mgmt_pending_remove(cmd);
7902
7903 hci_dev_unlock(hdev);
7904}
7905
7906static int add_ext_adv_params(struct sock *sk, struct hci_dev *hdev,
7907 void *data, u16 data_len)
7908{
7909 struct mgmt_cp_add_ext_adv_params *cp = data;
7910 struct mgmt_rp_add_ext_adv_params rp;
7911 struct mgmt_pending_cmd *cmd = NULL;
7912 struct adv_info *adv_instance;
7913 struct hci_request req;
7914 u32 flags, min_interval, max_interval;
7915 u16 timeout, duration;
7916 u8 status;
7917 s8 tx_power;
7918 int err;
7919
7920 BT_DBG("%s", hdev->name);
7921
7922 status = mgmt_le_support(hdev);
7923 if (status)
7924 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
7925 status);
7926
7927 if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets)
7928 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
7929 MGMT_STATUS_INVALID_PARAMS);
7930
7931 /* The purpose of breaking add_advertising into two separate MGMT calls
7932 * for params and data is to allow more parameters to be added to this
7933 * structure in the future. For this reason, we verify that we have the
7934 * bare minimum structure we know of when the interface was defined. Any
7935 * extra parameters we don't know about will be ignored in this request.
7936 */
7937 if (data_len < MGMT_ADD_EXT_ADV_PARAMS_MIN_SIZE)
7938 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7939 MGMT_STATUS_INVALID_PARAMS);
7940
7941 flags = __le32_to_cpu(cp->flags);
7942
7943 if (!requested_adv_flags_are_valid(hdev, flags))
7944 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
7945 MGMT_STATUS_INVALID_PARAMS);
7946
7947 hci_dev_lock(hdev);
7948
7949 /* In new interface, we require that we are powered to register */
7950 if (!hdev_is_powered(hdev)) {
7951 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
7952 MGMT_STATUS_REJECTED);
7953 goto unlock;
7954 }
7955
7956 if (adv_busy(hdev)) {
7957 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
7958 MGMT_STATUS_BUSY);
7959 goto unlock;
7960 }
7961
7962 /* Parse defined parameters from request, use defaults otherwise */
7963 timeout = (flags & MGMT_ADV_PARAM_TIMEOUT) ?
7964 __le16_to_cpu(cp->timeout) : 0;
7965
7966 duration = (flags & MGMT_ADV_PARAM_DURATION) ?
7967 __le16_to_cpu(cp->duration) :
7968 hdev->def_multi_adv_rotation_duration;
7969
7970 min_interval = (flags & MGMT_ADV_PARAM_INTERVALS) ?
7971 __le32_to_cpu(cp->min_interval) :
7972 hdev->le_adv_min_interval;
7973
7974 max_interval = (flags & MGMT_ADV_PARAM_INTERVALS) ?
7975 __le32_to_cpu(cp->max_interval) :
7976 hdev->le_adv_max_interval;
7977
7978 tx_power = (flags & MGMT_ADV_PARAM_TX_POWER) ?
7979 cp->tx_power :
7980 HCI_ADV_TX_POWER_NO_PREFERENCE;
7981
7982 /* Create advertising instance with no advertising or response data */
7983 err = hci_add_adv_instance(hdev, cp->instance, flags,
Daniel Winkler9bf9f4b2020-12-03 12:12:50 -08007984 0, NULL, 0, NULL, timeout, duration,
7985 tx_power, min_interval, max_interval);
Daniel Winkler12410572020-12-03 12:12:49 -08007986
7987 if (err < 0) {
7988 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
7989 MGMT_STATUS_FAILED);
7990 goto unlock;
7991 }
7992
Daniel Winkler12410572020-12-03 12:12:49 -08007993 /* Submit request for advertising params if ext adv available */
7994 if (ext_adv_capable(hdev)) {
7995 hci_req_init(&req, hdev);
7996 adv_instance = hci_find_adv_instance(hdev, cp->instance);
7997
7998 /* Updating parameters of an active instance will return a
7999 * Command Disallowed error, so we must first disable the
8000 * instance if it is active.
8001 */
8002 if (!adv_instance->pending)
8003 __hci_req_disable_ext_adv_instance(&req, cp->instance);
8004
8005 __hci_req_setup_ext_adv_instance(&req, cp->instance);
8006
8007 err = hci_req_run(&req, add_ext_adv_params_complete);
8008
8009 if (!err)
8010 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_EXT_ADV_PARAMS,
8011 hdev, data, data_len);
8012 if (!cmd) {
8013 err = -ENOMEM;
8014 hci_remove_adv_instance(hdev, cp->instance);
8015 goto unlock;
8016 }
8017
8018 } else {
8019 rp.instance = cp->instance;
8020 rp.tx_power = HCI_ADV_TX_POWER_NO_PREFERENCE;
8021 rp.max_adv_data_len = tlv_data_max_len(hdev, flags, true);
8022 rp.max_scan_rsp_len = tlv_data_max_len(hdev, flags, false);
8023 err = mgmt_cmd_complete(sk, hdev->id,
8024 MGMT_OP_ADD_EXT_ADV_PARAMS,
8025 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
8026 }
8027
8028unlock:
8029 hci_dev_unlock(hdev);
8030
8031 return err;
8032}
8033
8034static int add_ext_adv_data(struct sock *sk, struct hci_dev *hdev, void *data,
8035 u16 data_len)
8036{
8037 struct mgmt_cp_add_ext_adv_data *cp = data;
8038 struct mgmt_rp_add_ext_adv_data rp;
8039 u8 schedule_instance = 0;
8040 struct adv_info *next_instance;
8041 struct adv_info *adv_instance;
8042 int err = 0;
8043 struct mgmt_pending_cmd *cmd;
8044 struct hci_request req;
8045
8046 BT_DBG("%s", hdev->name);
8047
8048 hci_dev_lock(hdev);
8049
8050 adv_instance = hci_find_adv_instance(hdev, cp->instance);
8051
8052 if (!adv_instance) {
8053 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
8054 MGMT_STATUS_INVALID_PARAMS);
8055 goto unlock;
8056 }
8057
8058 /* In new interface, we require that we are powered to register */
8059 if (!hdev_is_powered(hdev)) {
8060 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
8061 MGMT_STATUS_REJECTED);
8062 goto clear_new_instance;
8063 }
8064
8065 if (adv_busy(hdev)) {
8066 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
8067 MGMT_STATUS_BUSY);
8068 goto clear_new_instance;
8069 }
8070
8071 /* Validate new data */
8072 if (!tlv_data_is_valid(hdev, adv_instance->flags, cp->data,
8073 cp->adv_data_len, true) ||
8074 !tlv_data_is_valid(hdev, adv_instance->flags, cp->data +
8075 cp->adv_data_len, cp->scan_rsp_len, false)) {
8076 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
8077 MGMT_STATUS_INVALID_PARAMS);
8078 goto clear_new_instance;
8079 }
8080
8081 /* Set the data in the advertising instance */
8082 hci_set_adv_instance_data(hdev, cp->instance, cp->adv_data_len,
8083 cp->data, cp->scan_rsp_len,
8084 cp->data + cp->adv_data_len);
8085
8086 /* We're good to go, update advertising data, parameters, and start
8087 * advertising.
8088 */
8089
8090 hci_req_init(&req, hdev);
8091
8092 hci_req_add(&req, HCI_OP_READ_LOCAL_NAME, 0, NULL);
8093
8094 if (ext_adv_capable(hdev)) {
8095 __hci_req_update_adv_data(&req, cp->instance);
8096 __hci_req_update_scan_rsp_data(&req, cp->instance);
8097 __hci_req_enable_ext_advertising(&req, cp->instance);
8098
8099 } else {
8100 /* If using software rotation, determine next instance to use */
8101
8102 if (hdev->cur_adv_instance == cp->instance) {
8103 /* If the currently advertised instance is being changed
8104 * then cancel the current advertising and schedule the
8105 * next instance. If there is only one instance then the
8106 * overridden advertising data will be visible right
8107 * away
8108 */
8109 cancel_adv_timeout(hdev);
8110
8111 next_instance = hci_get_next_instance(hdev,
8112 cp->instance);
8113 if (next_instance)
8114 schedule_instance = next_instance->instance;
8115 } else if (!hdev->adv_instance_timeout) {
8116 /* Immediately advertise the new instance if no other
8117 * instance is currently being advertised.
8118 */
8119 schedule_instance = cp->instance;
8120 }
8121
8122 /* If the HCI_ADVERTISING flag is set or there is no instance to
8123 * be advertised then we have no HCI communication to make.
8124 * Simply return.
8125 */
8126 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
8127 !schedule_instance) {
8128 if (adv_instance->pending) {
8129 mgmt_advertising_added(sk, hdev, cp->instance);
8130 adv_instance->pending = false;
8131 }
8132 rp.instance = cp->instance;
8133 err = mgmt_cmd_complete(sk, hdev->id,
8134 MGMT_OP_ADD_EXT_ADV_DATA,
8135 MGMT_STATUS_SUCCESS, &rp,
8136 sizeof(rp));
8137 goto unlock;
8138 }
8139
8140 err = __hci_req_schedule_adv_instance(&req, schedule_instance,
8141 true);
8142 }
8143
8144 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_EXT_ADV_DATA, hdev, data,
8145 data_len);
8146 if (!cmd) {
8147 err = -ENOMEM;
8148 goto clear_new_instance;
8149 }
8150
8151 if (!err)
8152 err = hci_req_run(&req, add_advertising_complete);
8153
8154 if (err < 0) {
8155 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
8156 MGMT_STATUS_FAILED);
8157 mgmt_pending_remove(cmd);
8158 goto clear_new_instance;
8159 }
8160
8161 /* We were successful in updating data, so trigger advertising_added
8162 * event if this is an instance that wasn't previously advertising. If
8163 * a failure occurs in the requests we initiated, we will remove the
8164 * instance again in add_advertising_complete
8165 */
8166 if (adv_instance->pending)
8167 mgmt_advertising_added(sk, hdev, cp->instance);
8168
8169 goto unlock;
8170
8171clear_new_instance:
8172 hci_remove_adv_instance(hdev, cp->instance);
8173
8174unlock:
8175 hci_dev_unlock(hdev);
8176
8177 return err;
8178}
8179
Arman Ugurayda9293352015-03-23 15:57:13 -07008180static void remove_advertising_complete(struct hci_dev *hdev, u8 status,
8181 u16 opcode)
8182{
8183 struct mgmt_pending_cmd *cmd;
Florian Grandel01948332015-06-18 03:16:48 +02008184 struct mgmt_cp_remove_advertising *cp;
Arman Ugurayda9293352015-03-23 15:57:13 -07008185 struct mgmt_rp_remove_advertising rp;
8186
Kai Ye85d672842021-06-03 15:41:02 +08008187 bt_dev_dbg(hdev, "status %u", status);
Arman Ugurayda9293352015-03-23 15:57:13 -07008188
8189 hci_dev_lock(hdev);
8190
8191 /* A failure status here only means that we failed to disable
8192 * advertising. Otherwise, the advertising instance has been removed,
8193 * so report success.
8194 */
8195 cmd = pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev);
8196 if (!cmd)
8197 goto unlock;
8198
Florian Grandel01948332015-06-18 03:16:48 +02008199 cp = cmd->param;
8200 rp.instance = cp->instance;
Arman Ugurayda9293352015-03-23 15:57:13 -07008201
8202 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, MGMT_STATUS_SUCCESS,
8203 &rp, sizeof(rp));
8204 mgmt_pending_remove(cmd);
8205
8206unlock:
8207 hci_dev_unlock(hdev);
8208}
8209
8210static int remove_advertising(struct sock *sk, struct hci_dev *hdev,
8211 void *data, u16 data_len)
8212{
8213 struct mgmt_cp_remove_advertising *cp = data;
8214 struct mgmt_rp_remove_advertising rp;
Arman Ugurayda9293352015-03-23 15:57:13 -07008215 struct mgmt_pending_cmd *cmd;
8216 struct hci_request req;
Johan Hedberg952497b2015-06-18 21:05:31 +03008217 int err;
Arman Ugurayda9293352015-03-23 15:57:13 -07008218
Marcel Holtmann181d6952020-05-06 09:57:47 +02008219 bt_dev_dbg(hdev, "sock %p", sk);
Arman Ugurayda9293352015-03-23 15:57:13 -07008220
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05308221 /* Enabling the experimental LL Privay support disables support for
8222 * advertising.
8223 */
8224 if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
8225 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
8226 MGMT_STATUS_NOT_SUPPORTED);
8227
Arman Ugurayda9293352015-03-23 15:57:13 -07008228 hci_dev_lock(hdev);
8229
Johan Hedberg952497b2015-06-18 21:05:31 +03008230 if (cp->instance && !hci_find_adv_instance(hdev, cp->instance)) {
Florian Grandel01948332015-06-18 03:16:48 +02008231 err = mgmt_cmd_status(sk, hdev->id,
8232 MGMT_OP_REMOVE_ADVERTISING,
8233 MGMT_STATUS_INVALID_PARAMS);
8234 goto unlock;
8235 }
8236
Arman Ugurayda9293352015-03-23 15:57:13 -07008237 if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
8238 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
8239 pending_find(MGMT_OP_SET_LE, hdev)) {
8240 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
8241 MGMT_STATUS_BUSY);
8242 goto unlock;
8243 }
8244
Johan Hedberg17fd08f2015-11-26 12:15:59 +02008245 if (list_empty(&hdev->adv_instances)) {
Arman Ugurayda9293352015-03-23 15:57:13 -07008246 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
8247 MGMT_STATUS_INVALID_PARAMS);
8248 goto unlock;
8249 }
8250
Florian Grandel01948332015-06-18 03:16:48 +02008251 hci_req_init(&req, hdev);
Arman Uguray912098a2015-03-23 15:57:15 -07008252
Daniel Winkler37adf702020-07-14 14:16:00 -07008253 /* If we use extended advertising, instance is disabled and removed */
8254 if (ext_adv_capable(hdev)) {
8255 __hci_req_disable_ext_adv_instance(&req, cp->instance);
8256 __hci_req_remove_ext_adv_instance(&req, cp->instance);
8257 }
8258
Johan Hedberg37d3a1f2016-08-28 20:53:34 +03008259 hci_req_clear_adv_instance(hdev, sk, &req, cp->instance, true);
Arman Ugurayda9293352015-03-23 15:57:13 -07008260
Florian Grandel01948332015-06-18 03:16:48 +02008261 if (list_empty(&hdev->adv_instances))
Johan Hedbergf2252572015-11-18 12:49:20 +02008262 __hci_req_disable_advertising(&req);
Arman Ugurayda9293352015-03-23 15:57:13 -07008263
Florian Grandel01948332015-06-18 03:16:48 +02008264 /* If no HCI commands have been collected so far or the HCI_ADVERTISING
8265 * flag is set or the device isn't powered then we have no HCI
8266 * communication to make. Simply return.
Arman Ugurayda9293352015-03-23 15:57:13 -07008267 */
Florian Grandel01948332015-06-18 03:16:48 +02008268 if (skb_queue_empty(&req.cmd_q) ||
8269 !hdev_is_powered(hdev) ||
Arman Ugurayda9293352015-03-23 15:57:13 -07008270 hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
Jaganath Kanakkasseryf17d8582017-10-25 10:58:48 +05308271 hci_req_purge(&req);
Florian Grandel01948332015-06-18 03:16:48 +02008272 rp.instance = cp->instance;
Arman Ugurayda9293352015-03-23 15:57:13 -07008273 err = mgmt_cmd_complete(sk, hdev->id,
8274 MGMT_OP_REMOVE_ADVERTISING,
8275 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
8276 goto unlock;
8277 }
8278
8279 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_ADVERTISING, hdev, data,
8280 data_len);
8281 if (!cmd) {
8282 err = -ENOMEM;
8283 goto unlock;
8284 }
8285
Arman Ugurayda9293352015-03-23 15:57:13 -07008286 err = hci_req_run(&req, remove_advertising_complete);
8287 if (err < 0)
8288 mgmt_pending_remove(cmd);
8289
8290unlock:
8291 hci_dev_unlock(hdev);
8292
8293 return err;
8294}
8295
Marcel Holtmann40b25fe2015-11-19 16:16:43 +01008296static int get_adv_size_info(struct sock *sk, struct hci_dev *hdev,
8297 void *data, u16 data_len)
8298{
8299 struct mgmt_cp_get_adv_size_info *cp = data;
8300 struct mgmt_rp_get_adv_size_info rp;
8301 u32 flags, supported_flags;
8302 int err;
8303
Marcel Holtmann181d6952020-05-06 09:57:47 +02008304 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann40b25fe2015-11-19 16:16:43 +01008305
8306 if (!lmp_le_capable(hdev))
8307 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
8308 MGMT_STATUS_REJECTED);
8309
Daniel Winkler87597482020-08-25 16:31:50 -07008310 if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets)
Marcel Holtmann40b25fe2015-11-19 16:16:43 +01008311 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
8312 MGMT_STATUS_INVALID_PARAMS);
8313
8314 flags = __le32_to_cpu(cp->flags);
8315
8316 /* The current implementation only supports a subset of the specified
8317 * flags.
8318 */
8319 supported_flags = get_supported_adv_flags(hdev);
8320 if (flags & ~supported_flags)
8321 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
8322 MGMT_STATUS_INVALID_PARAMS);
8323
8324 rp.instance = cp->instance;
8325 rp.flags = cp->flags;
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02008326 rp.max_adv_data_len = tlv_data_max_len(hdev, flags, true);
8327 rp.max_scan_rsp_len = tlv_data_max_len(hdev, flags, false);
Marcel Holtmann40b25fe2015-11-19 16:16:43 +01008328
8329 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
8330 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
8331
8332 return err;
8333}
8334
Johan Hedberg6d785aa32015-03-06 21:08:51 +02008335static const struct hci_mgmt_handler mgmt_handlers[] = {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02008336 { NULL }, /* 0x0000 (no command) */
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008337 { read_version, MGMT_READ_VERSION_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008338 HCI_MGMT_NO_HDEV |
8339 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008340 { read_commands, MGMT_READ_COMMANDS_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008341 HCI_MGMT_NO_HDEV |
8342 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008343 { read_index_list, MGMT_READ_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008344 HCI_MGMT_NO_HDEV |
8345 HCI_MGMT_UNTRUSTED },
8346 { read_controller_info, MGMT_READ_INFO_SIZE,
8347 HCI_MGMT_UNTRUSTED },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07008348 { set_powered, MGMT_SETTING_SIZE },
8349 { set_discoverable, MGMT_SET_DISCOVERABLE_SIZE },
8350 { set_connectable, MGMT_SETTING_SIZE },
8351 { set_fast_connectable, MGMT_SETTING_SIZE },
8352 { set_bondable, MGMT_SETTING_SIZE },
8353 { set_link_security, MGMT_SETTING_SIZE },
8354 { set_ssp, MGMT_SETTING_SIZE },
8355 { set_hs, MGMT_SETTING_SIZE },
8356 { set_le, MGMT_SETTING_SIZE },
8357 { set_dev_class, MGMT_SET_DEV_CLASS_SIZE },
8358 { set_local_name, MGMT_SET_LOCAL_NAME_SIZE },
8359 { add_uuid, MGMT_ADD_UUID_SIZE },
8360 { remove_uuid, MGMT_REMOVE_UUID_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008361 { load_link_keys, MGMT_LOAD_LINK_KEYS_SIZE,
8362 HCI_MGMT_VAR_LEN },
8363 { load_long_term_keys, MGMT_LOAD_LONG_TERM_KEYS_SIZE,
8364 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07008365 { disconnect, MGMT_DISCONNECT_SIZE },
8366 { get_connections, MGMT_GET_CONNECTIONS_SIZE },
8367 { pin_code_reply, MGMT_PIN_CODE_REPLY_SIZE },
8368 { pin_code_neg_reply, MGMT_PIN_CODE_NEG_REPLY_SIZE },
8369 { set_io_capability, MGMT_SET_IO_CAPABILITY_SIZE },
8370 { pair_device, MGMT_PAIR_DEVICE_SIZE },
8371 { cancel_pair_device, MGMT_CANCEL_PAIR_DEVICE_SIZE },
8372 { unpair_device, MGMT_UNPAIR_DEVICE_SIZE },
8373 { user_confirm_reply, MGMT_USER_CONFIRM_REPLY_SIZE },
8374 { user_confirm_neg_reply, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
8375 { user_passkey_reply, MGMT_USER_PASSKEY_REPLY_SIZE },
8376 { user_passkey_neg_reply, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008377 { read_local_oob_data, MGMT_READ_LOCAL_OOB_DATA_SIZE },
8378 { add_remote_oob_data, MGMT_ADD_REMOTE_OOB_DATA_SIZE,
8379 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07008380 { remove_remote_oob_data, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
8381 { start_discovery, MGMT_START_DISCOVERY_SIZE },
8382 { stop_discovery, MGMT_STOP_DISCOVERY_SIZE },
8383 { confirm_name, MGMT_CONFIRM_NAME_SIZE },
8384 { block_device, MGMT_BLOCK_DEVICE_SIZE },
8385 { unblock_device, MGMT_UNBLOCK_DEVICE_SIZE },
8386 { set_device_id, MGMT_SET_DEVICE_ID_SIZE },
8387 { set_advertising, MGMT_SETTING_SIZE },
8388 { set_bredr, MGMT_SETTING_SIZE },
8389 { set_static_address, MGMT_SET_STATIC_ADDRESS_SIZE },
8390 { set_scan_params, MGMT_SET_SCAN_PARAMS_SIZE },
8391 { set_secure_conn, MGMT_SETTING_SIZE },
8392 { set_debug_keys, MGMT_SETTING_SIZE },
8393 { set_privacy, MGMT_SET_PRIVACY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008394 { load_irks, MGMT_LOAD_IRKS_SIZE,
8395 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07008396 { get_conn_info, MGMT_GET_CONN_INFO_SIZE },
8397 { get_clock_info, MGMT_GET_CLOCK_INFO_SIZE },
8398 { add_device, MGMT_ADD_DEVICE_SIZE },
8399 { remove_device, MGMT_REMOVE_DEVICE_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008400 { load_conn_param, MGMT_LOAD_CONN_PARAM_SIZE,
8401 HCI_MGMT_VAR_LEN },
8402 { read_unconf_index_list, MGMT_READ_UNCONF_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008403 HCI_MGMT_NO_HDEV |
8404 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008405 { read_config_info, MGMT_READ_CONFIG_INFO_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008406 HCI_MGMT_UNCONFIGURED |
8407 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008408 { set_external_config, MGMT_SET_EXTERNAL_CONFIG_SIZE,
8409 HCI_MGMT_UNCONFIGURED },
8410 { set_public_address, MGMT_SET_PUBLIC_ADDRESS_SIZE,
8411 HCI_MGMT_UNCONFIGURED },
8412 { start_service_discovery, MGMT_START_SERVICE_DISCOVERY_SIZE,
8413 HCI_MGMT_VAR_LEN },
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07008414 { read_local_oob_ext_data, MGMT_READ_LOCAL_OOB_EXT_DATA_SIZE },
Marcel Holtmann96f14742015-03-14 19:27:57 -07008415 { read_ext_index_list, MGMT_READ_EXT_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008416 HCI_MGMT_NO_HDEV |
8417 HCI_MGMT_UNTRUSTED },
Marcel Holtmannd3d53052015-03-14 20:53:25 -07008418 { read_adv_features, MGMT_READ_ADV_FEATURES_SIZE },
Arman Uguray24b4f382015-03-23 15:57:12 -07008419 { add_advertising, MGMT_ADD_ADVERTISING_SIZE,
8420 HCI_MGMT_VAR_LEN },
Arman Ugurayda9293352015-03-23 15:57:13 -07008421 { remove_advertising, MGMT_REMOVE_ADVERTISING_SIZE },
Marcel Holtmann40b25fe2015-11-19 16:16:43 +01008422 { get_adv_size_info, MGMT_GET_ADV_SIZE_INFO_SIZE },
Johan Hedberg78b781c2016-01-05 13:19:32 +02008423 { start_limited_discovery, MGMT_START_DISCOVERY_SIZE },
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02008424 { read_ext_controller_info,MGMT_READ_EXT_INFO_SIZE,
8425 HCI_MGMT_UNTRUSTED },
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02008426 { set_appearance, MGMT_SET_APPEARANCE_SIZE },
Jaganath Kanakkassery62446912018-07-19 17:09:34 +05308427 { get_phy_configuration, MGMT_GET_PHY_CONFIGURATION_SIZE },
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05308428 { set_phy_configuration, MGMT_SET_PHY_CONFIGURATION_SIZE },
Alain Michaud600a8742020-01-07 00:43:17 +00008429 { set_blocked_keys, MGMT_OP_SET_BLOCKED_KEYS_SIZE,
8430 HCI_MGMT_VAR_LEN },
Alain Michaud00bce3f2020-03-05 16:14:59 +00008431 { set_wideband_speech, MGMT_SETTING_SIZE },
Daniel Winkler4d9b9522020-12-03 12:12:52 -08008432 { read_controller_cap, MGMT_READ_CONTROLLER_CAP_SIZE,
Marcel Holtmannbc292252020-04-03 21:44:05 +02008433 HCI_MGMT_UNTRUSTED },
Marcel Holtmanna10c9072020-05-06 09:57:51 +02008434 { read_exp_features_info, MGMT_READ_EXP_FEATURES_INFO_SIZE,
8435 HCI_MGMT_UNTRUSTED |
8436 HCI_MGMT_HDEV_OPTIONAL },
8437 { set_exp_feature, MGMT_SET_EXP_FEATURE_SIZE,
8438 HCI_MGMT_VAR_LEN |
8439 HCI_MGMT_HDEV_OPTIONAL },
Alain Michaud17896402020-06-11 02:01:57 +00008440 { read_def_system_config, MGMT_READ_DEF_SYSTEM_CONFIG_SIZE,
8441 HCI_MGMT_UNTRUSTED },
8442 { set_def_system_config, MGMT_SET_DEF_SYSTEM_CONFIG_SIZE,
8443 HCI_MGMT_VAR_LEN },
Marcel Holtmannaececa62020-06-17 16:39:07 +02008444 { read_def_runtime_config, MGMT_READ_DEF_RUNTIME_CONFIG_SIZE,
8445 HCI_MGMT_UNTRUSTED },
8446 { set_def_runtime_config, MGMT_SET_DEF_RUNTIME_CONFIG_SIZE,
8447 HCI_MGMT_VAR_LEN },
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02008448 { get_device_flags, MGMT_GET_DEVICE_FLAGS_SIZE },
8449 { set_device_flags, MGMT_SET_DEVICE_FLAGS_SIZE },
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02008450 { read_adv_mon_features, MGMT_READ_ADV_MONITOR_FEATURES_SIZE },
Miao-chen Choub1395532020-06-17 16:39:14 +02008451 { add_adv_patterns_monitor,MGMT_ADD_ADV_PATTERNS_MONITOR_SIZE,
8452 HCI_MGMT_VAR_LEN },
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02008453 { remove_adv_monitor, MGMT_REMOVE_ADV_MONITOR_SIZE },
Daniel Winkler12410572020-12-03 12:12:49 -08008454 { add_ext_adv_params, MGMT_ADD_EXT_ADV_PARAMS_MIN_SIZE,
8455 HCI_MGMT_VAR_LEN },
8456 { add_ext_adv_data, MGMT_ADD_EXT_ADV_DATA_SIZE,
8457 HCI_MGMT_VAR_LEN },
Archie Pusakab4a221e2021-01-22 16:36:11 +08008458 { add_adv_patterns_monitor_rssi,
8459 MGMT_ADD_ADV_PATTERNS_MONITOR_RSSI_SIZE,
8460 HCI_MGMT_VAR_LEN },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02008461};
8462
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07008463void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02008464{
Marcel Holtmannced85542015-03-14 19:27:56 -07008465 struct mgmt_ev_ext_index ev;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03008466
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02008467 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
8468 return;
8469
Marcel Holtmannf9207332015-03-14 19:27:55 -07008470 switch (hdev->dev_type) {
Marcel Holtmannca8bee52016-07-05 14:30:14 +02008471 case HCI_PRIMARY:
Marcel Holtmannf9207332015-03-14 19:27:55 -07008472 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
8473 mgmt_index_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev,
8474 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07008475 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008476 } else {
8477 mgmt_index_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0,
8478 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07008479 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008480 }
8481 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07008482 case HCI_AMP:
8483 ev.type = 0x02;
8484 break;
8485 default:
8486 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008487 }
Marcel Holtmannced85542015-03-14 19:27:56 -07008488
8489 ev.bus = hdev->bus;
8490
8491 mgmt_index_event(MGMT_EV_EXT_INDEX_ADDED, hdev, &ev, sizeof(ev),
8492 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02008493}
8494
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07008495void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02008496{
Marcel Holtmannced85542015-03-14 19:27:56 -07008497 struct mgmt_ev_ext_index ev;
Johan Hedberg5f159032012-03-02 03:13:19 +02008498 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02008499
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02008500 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
8501 return;
8502
Marcel Holtmannf9207332015-03-14 19:27:55 -07008503 switch (hdev->dev_type) {
Marcel Holtmannca8bee52016-07-05 14:30:14 +02008504 case HCI_PRIMARY:
Marcel Holtmannf9207332015-03-14 19:27:55 -07008505 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02008506
Marcel Holtmannf9207332015-03-14 19:27:55 -07008507 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
8508 mgmt_index_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev,
8509 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07008510 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008511 } else {
8512 mgmt_index_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0,
8513 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07008514 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008515 }
8516 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07008517 case HCI_AMP:
8518 ev.type = 0x02;
8519 break;
8520 default:
8521 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008522 }
Marcel Holtmannced85542015-03-14 19:27:56 -07008523
8524 ev.bus = hdev->bus;
8525
8526 mgmt_index_event(MGMT_EV_EXT_INDEX_REMOVED, hdev, &ev, sizeof(ev),
8527 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02008528}
8529
Andre Guedes6046dc32014-02-26 20:21:51 -03008530/* This function requires the caller holds hdev->lock */
Johan Hedbergaf02dd42015-11-11 08:11:21 +02008531static void restart_le_actions(struct hci_dev *hdev)
Andre Guedes6046dc32014-02-26 20:21:51 -03008532{
8533 struct hci_conn_params *p;
8534
8535 list_for_each_entry(p, &hdev->le_conn_params, list) {
Johan Hedbergd7347f32014-07-04 12:37:23 +03008536 /* Needed for AUTO_OFF case where might not "really"
8537 * have been powered off.
8538 */
8539 list_del_init(&p->action);
8540
8541 switch (p->auto_connect) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02008542 case HCI_AUTO_CONN_DIRECT:
Johan Hedbergd7347f32014-07-04 12:37:23 +03008543 case HCI_AUTO_CONN_ALWAYS:
8544 list_add(&p->action, &hdev->pend_le_conns);
8545 break;
8546 case HCI_AUTO_CONN_REPORT:
8547 list_add(&p->action, &hdev->pend_le_reports);
8548 break;
8549 default:
8550 break;
Marcel Holtmannc83ed192014-07-01 19:28:24 +02008551 }
Andre Guedes6046dc32014-02-26 20:21:51 -03008552 }
8553}
8554
Johan Hedberg2ff13892015-11-25 16:15:44 +02008555void mgmt_power_on(struct hci_dev *hdev, int err)
Johan Hedberg229ab392013-03-15 17:06:53 -05008556{
8557 struct cmd_lookup match = { NULL, hdev };
8558
Marcel Holtmann181d6952020-05-06 09:57:47 +02008559 bt_dev_dbg(hdev, "err %d", err);
Johan Hedberg229ab392013-03-15 17:06:53 -05008560
Johan Hedberg2ff13892015-11-25 16:15:44 +02008561 hci_dev_lock(hdev);
8562
8563 if (!err) {
Johan Hedbergaf02dd42015-11-11 08:11:21 +02008564 restart_le_actions(hdev);
8565 hci_update_background_scan(hdev);
Marcel Holtmann162a3ba2015-01-14 15:43:11 -08008566 }
8567
Johan Hedberg229ab392013-03-15 17:06:53 -05008568 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
8569
8570 new_settings(hdev, match.sk);
8571
Johan Hedberg229ab392013-03-15 17:06:53 -05008572 if (match.sk)
8573 sock_put(match.sk);
Johan Hedberg2ff13892015-11-25 16:15:44 +02008574
8575 hci_dev_unlock(hdev);
Johan Hedberg229ab392013-03-15 17:06:53 -05008576}
8577
Johan Hedberg2ff13892015-11-25 16:15:44 +02008578void __mgmt_power_off(struct hci_dev *hdev)
Johan Hedberg5add6af2010-12-16 10:00:37 +02008579{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02008580 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg98459042014-12-12 11:15:21 +02008581 u8 status, zero_cod[] = { 0, 0, 0 };
Johan Hedbergb24752f2011-11-03 14:40:33 +02008582
Johan Hedberg229ab392013-03-15 17:06:53 -05008583 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
Johan Hedberg98459042014-12-12 11:15:21 +02008584
8585 /* If the power off is because of hdev unregistration let
8586 * use the appropriate INVALID_INDEX status. Otherwise use
8587 * NOT_POWERED. We cover both scenarios here since later in
8588 * mgmt_index_removed() any hci_conn callbacks will have already
8589 * been triggered, potentially causing misleading DISCONNECTED
8590 * status responses.
8591 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07008592 if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
Johan Hedberg98459042014-12-12 11:15:21 +02008593 status = MGMT_STATUS_INVALID_INDEX;
8594 else
8595 status = MGMT_STATUS_NOT_POWERED;
8596
8597 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedberg229ab392013-03-15 17:06:53 -05008598
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02008599 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0) {
Marcel Holtmann5504c3a2016-08-29 06:19:46 +02008600 mgmt_limited_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
8601 zero_cod, sizeof(zero_cod),
8602 HCI_MGMT_DEV_CLASS_EVENTS, NULL);
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02008603 ext_info_changed(hdev, NULL);
8604 }
Johan Hedberg229ab392013-03-15 17:06:53 -05008605
Johan Hedberg2ff13892015-11-25 16:15:44 +02008606 new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02008607
8608 if (match.sk)
8609 sock_put(match.sk);
Johan Hedberg5add6af2010-12-16 10:00:37 +02008610}
Johan Hedberg73f22f62010-12-29 16:00:25 +02008611
Marcel Holtmann3eec7052013-10-06 23:55:46 -07008612void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03008613{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008614 struct mgmt_pending_cmd *cmd;
Johan Hedberg96570ff2013-05-29 09:51:29 +03008615 u8 status;
8616
Johan Hedberg333ae952015-03-17 13:48:47 +02008617 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg96570ff2013-05-29 09:51:29 +03008618 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07008619 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03008620
8621 if (err == -ERFKILL)
8622 status = MGMT_STATUS_RFKILLED;
8623 else
8624 status = MGMT_STATUS_FAILED;
8625
Johan Hedberga69e8372015-03-06 21:08:53 +02008626 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03008627
8628 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03008629}
8630
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07008631void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
8632 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02008633{
Johan Hedberg86742e12011-11-07 23:13:38 +02008634 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02008635
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03008636 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02008637
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03008638 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02008639 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03008640 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03008641 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03008642 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03008643 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02008644
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07008645 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02008646}
Johan Hedbergf7520542011-01-20 12:34:39 +02008647
Johan Hedbergd7b25452014-05-23 13:19:53 +03008648static u8 mgmt_ltk_type(struct smp_ltk *ltk)
8649{
Johan Hedberg23fb8de2014-05-23 13:15:37 +03008650 switch (ltk->type) {
8651 case SMP_LTK:
Archie Pusakafad646e2021-05-31 16:37:25 +08008652 case SMP_LTK_RESPONDER:
Johan Hedberg23fb8de2014-05-23 13:15:37 +03008653 if (ltk->authenticated)
8654 return MGMT_LTK_AUTHENTICATED;
8655 return MGMT_LTK_UNAUTHENTICATED;
8656 case SMP_LTK_P256:
8657 if (ltk->authenticated)
8658 return MGMT_LTK_P256_AUTH;
8659 return MGMT_LTK_P256_UNAUTH;
8660 case SMP_LTK_P256_DEBUG:
8661 return MGMT_LTK_P256_DEBUG;
8662 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03008663
8664 return MGMT_LTK_UNAUTHENTICATED;
8665}
8666
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07008667void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008668{
8669 struct mgmt_ev_new_long_term_key ev;
8670
8671 memset(&ev, 0, sizeof(ev));
8672
Marcel Holtmann5192d302014-02-19 17:11:58 -08008673 /* Devices using resolvable or non-resolvable random addresses
Florian Grandelf72186d2015-05-26 03:31:09 +02008674 * without providing an identity resolving key don't require
Marcel Holtmann5192d302014-02-19 17:11:58 -08008675 * to store long term keys. Their addresses will change the
8676 * next time around.
8677 *
8678 * Only when a remote device provides an identity address
8679 * make sure the long term key is stored. If the remote
8680 * identity is known, the long term keys are internally
8681 * mapped to the identity address. So allow static random
8682 * and public addresses here.
8683 */
Johan Hedbergba74b662014-02-19 14:57:45 +02008684 if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
8685 (key->bdaddr.b[5] & 0xc0) != 0xc0)
8686 ev.store_hint = 0x00;
8687 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07008688 ev.store_hint = persistent;
Johan Hedbergba74b662014-02-19 14:57:45 +02008689
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008690 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008691 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Johan Hedbergd7b25452014-05-23 13:19:53 +03008692 ev.key.type = mgmt_ltk_type(key);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008693 ev.key.enc_size = key->enc_size;
8694 ev.key.ediv = key->ediv;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08008695 ev.key.rand = key->rand;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008696
Johan Hedberg2ceba532014-06-16 19:25:16 +03008697 if (key->type == SMP_LTK)
Archie Pusakafad646e2021-05-31 16:37:25 +08008698 ev.key.initiator = 1;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008699
Johan Hedberg1fc62c52015-06-10 11:11:20 +03008700 /* Make sure we copy only the significant bytes based on the
8701 * encryption key size, and set the rest of the value to zeroes.
8702 */
Jakub Pawlowskicb922052015-08-05 23:16:29 +02008703 memcpy(ev.key.val, key->val, key->enc_size);
Johan Hedberg1fc62c52015-06-10 11:11:20 +03008704 memset(ev.key.val + key->enc_size, 0,
8705 sizeof(ev.key.val) - key->enc_size);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008706
Marcel Holtmann083368f2013-10-15 14:26:29 -07008707 mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008708}
8709
Johan Hedbergcad20c22015-10-12 13:36:19 +02008710void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk, bool persistent)
Johan Hedberg95fbac82014-02-19 15:18:31 +02008711{
8712 struct mgmt_ev_new_irk ev;
8713
8714 memset(&ev, 0, sizeof(ev));
8715
Johan Hedbergcad20c22015-10-12 13:36:19 +02008716 ev.store_hint = persistent;
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08008717
Johan Hedberg95fbac82014-02-19 15:18:31 +02008718 bacpy(&ev.rpa, &irk->rpa);
8719 bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
8720 ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
8721 memcpy(ev.irk.val, irk->val, sizeof(irk->val));
8722
8723 mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
8724}
8725
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07008726void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
8727 bool persistent)
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07008728{
8729 struct mgmt_ev_new_csrk ev;
8730
8731 memset(&ev, 0, sizeof(ev));
8732
8733 /* Devices using resolvable or non-resolvable random addresses
Florian Grandelf72186d2015-05-26 03:31:09 +02008734 * without providing an identity resolving key don't require
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07008735 * to store signature resolving keys. Their addresses will change
8736 * the next time around.
8737 *
8738 * Only when a remote device provides an identity address
8739 * make sure the signature resolving key is stored. So allow
8740 * static random and public addresses here.
8741 */
8742 if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
8743 (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
8744 ev.store_hint = 0x00;
8745 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07008746 ev.store_hint = persistent;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07008747
8748 bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
8749 ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
Johan Hedberg4cd39282015-02-27 10:11:13 +02008750 ev.key.type = csrk->type;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07008751 memcpy(ev.key.val, csrk->val, sizeof(csrk->val));
8752
8753 mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
8754}
8755
Andre Guedesffb5a8272014-07-01 18:10:11 -03008756void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedbergf4869e22014-07-02 17:37:32 +03008757 u8 bdaddr_type, u8 store_hint, u16 min_interval,
8758 u16 max_interval, u16 latency, u16 timeout)
Andre Guedesffb5a8272014-07-01 18:10:11 -03008759{
8760 struct mgmt_ev_new_conn_param ev;
8761
Johan Hedbergc103aea2014-07-02 17:37:34 +03008762 if (!hci_is_identity_address(bdaddr, bdaddr_type))
8763 return;
8764
Andre Guedesffb5a8272014-07-01 18:10:11 -03008765 memset(&ev, 0, sizeof(ev));
8766 bacpy(&ev.addr.bdaddr, bdaddr);
8767 ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
Johan Hedbergf4869e22014-07-02 17:37:32 +03008768 ev.store_hint = store_hint;
Andre Guedesffb5a8272014-07-01 18:10:11 -03008769 ev.min_interval = cpu_to_le16(min_interval);
8770 ev.max_interval = cpu_to_le16(max_interval);
8771 ev.latency = cpu_to_le16(latency);
8772 ev.timeout = cpu_to_le16(timeout);
8773
8774 mgmt_event(MGMT_EV_NEW_CONN_PARAM, hdev, &ev, sizeof(ev), NULL);
8775}
8776
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00008777void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
Yu Liu1c6ed312021-04-09 15:04:06 -07008778 u8 *name, u8 name_len)
Johan Hedbergf7520542011-01-20 12:34:39 +02008779{
Johan Hedbergb644ba32012-01-17 21:48:47 +02008780 char buf[512];
8781 struct mgmt_ev_device_connected *ev = (void *) buf;
8782 u16 eir_len = 0;
Yu Liu1c6ed312021-04-09 15:04:06 -07008783 u32 flags = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02008784
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00008785 bacpy(&ev->addr.bdaddr, &conn->dst);
8786 ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02008787
Yu Liu1c6ed312021-04-09 15:04:06 -07008788 if (conn->out)
8789 flags |= MGMT_DEV_FOUND_INITIATED_CONN;
8790
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02008791 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02008792
Alfonso Acostafd45ada2014-10-07 08:44:11 +00008793 /* We must ensure that the EIR Data fields are ordered and
8794 * unique. Keep it simple for now and avoid the problem by not
8795 * adding any BR/EDR data to the LE adv.
8796 */
8797 if (conn->le_adv_data_len > 0) {
8798 memcpy(&ev->eir[eir_len],
8799 conn->le_adv_data, conn->le_adv_data_len);
8800 eir_len = conn->le_adv_data_len;
8801 } else {
8802 if (name_len > 0)
8803 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
8804 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008805
Alfonso Acostaddbea5c2014-10-07 08:44:12 +00008806 if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
Alfonso Acostafd45ada2014-10-07 08:44:11 +00008807 eir_len = eir_append_data(ev->eir, eir_len,
8808 EIR_CLASS_OF_DEV,
8809 conn->dev_class, 3);
8810 }
Johan Hedbergb644ba32012-01-17 21:48:47 +02008811
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02008812 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02008813
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07008814 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
8815 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02008816}
8817
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008818static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg8962ee72011-01-20 12:40:27 +02008819{
Johan Hedberg8962ee72011-01-20 12:40:27 +02008820 struct sock **sk = data;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008821
Johan Hedbergf5818c22014-12-05 13:36:02 +02008822 cmd->cmd_complete(cmd, 0);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008823
8824 *sk = cmd->sk;
8825 sock_hold(*sk);
8826
Johan Hedberga664b5b2011-02-19 12:06:02 -03008827 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008828}
8829
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008830static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02008831{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02008832 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02008833 struct mgmt_cp_unpair_device *cp = cmd->param;
Johan Hedberga8a1d192011-11-10 15:54:38 +02008834
Johan Hedbergb1078ad2012-02-09 17:21:16 +02008835 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
8836
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02008837 cmd->cmd_complete(cmd, 0);
Johan Hedberga8a1d192011-11-10 15:54:38 +02008838 mgmt_pending_remove(cmd);
8839}
8840
Johan Hedberg84c61d92014-08-01 11:13:30 +03008841bool mgmt_powering_down(struct hci_dev *hdev)
8842{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008843 struct mgmt_pending_cmd *cmd;
Johan Hedberg84c61d92014-08-01 11:13:30 +03008844 struct mgmt_mode *cp;
8845
Johan Hedberg333ae952015-03-17 13:48:47 +02008846 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg84c61d92014-08-01 11:13:30 +03008847 if (!cmd)
8848 return false;
8849
8850 cp = cmd->param;
8851 if (!cp->val)
8852 return true;
8853
8854 return false;
8855}
8856
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07008857void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02008858 u8 link_type, u8 addr_type, u8 reason,
8859 bool mgmt_connected)
Johan Hedbergf7520542011-01-20 12:34:39 +02008860{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02008861 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008862 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008863
Johan Hedberg84c61d92014-08-01 11:13:30 +03008864 /* The connection is still in hci_conn_hash so test for 1
8865 * instead of 0 to know if this is the last one.
8866 */
8867 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
8868 cancel_delayed_work(&hdev->power_off);
8869 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberg8b064a32014-02-24 14:52:22 +02008870 }
8871
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02008872 if (!mgmt_connected)
8873 return;
8874
Andre Guedes57eb7762013-10-30 19:01:41 -03008875 if (link_type != ACL_LINK && link_type != LE_LINK)
8876 return;
8877
Johan Hedberg744cf192011-11-08 20:40:14 +02008878 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02008879
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02008880 bacpy(&ev.addr.bdaddr, bdaddr);
8881 ev.addr.type = link_to_bdaddr(link_type, addr_type);
8882 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02008883
Abhishek Pandit-Subedif0cfc482020-09-11 14:07:12 -07008884 /* Report disconnects due to suspend */
8885 if (hdev->suspended)
8886 ev.reason = MGMT_DEV_DISCONN_LOCAL_HOST_SUSPEND;
8887
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07008888 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008889
8890 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01008891 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008892
Johan Hedberg124f6e32012-02-09 13:50:12 +02008893 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008894 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008895}
8896
Marcel Holtmann78929242013-10-06 23:55:47 -07008897void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
8898 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02008899{
Andre Guedes3655bba2013-10-30 19:01:40 -03008900 u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
8901 struct mgmt_cp_disconnect *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008902 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008903
Jefferson Delfes36a75f12012-09-18 13:36:54 -04008904 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
8905 hdev);
8906
Johan Hedberg333ae952015-03-17 13:48:47 +02008907 cmd = pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02008908 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07008909 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02008910
Andre Guedes3655bba2013-10-30 19:01:40 -03008911 cp = cmd->param;
8912
8913 if (bacmp(bdaddr, &cp->addr.bdaddr))
8914 return;
8915
8916 if (cp->addr.type != bdaddr_type)
8917 return;
8918
Johan Hedbergf5818c22014-12-05 13:36:02 +02008919 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008920 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02008921}
Johan Hedberg17d5c042011-01-22 06:09:08 +02008922
Marcel Holtmann445608d2013-10-06 23:55:48 -07008923void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
8924 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02008925{
8926 struct mgmt_ev_connect_failed ev;
Johan Hedbergc9910d02014-02-27 14:35:12 +02008927
Johan Hedberg84c61d92014-08-01 11:13:30 +03008928 /* The connection is still in hci_conn_hash so test for 1
8929 * instead of 0 to know if this is the last one.
8930 */
8931 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
8932 cancel_delayed_work(&hdev->power_off);
8933 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedbergc9910d02014-02-27 14:35:12 +02008934 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02008935
Johan Hedberg4c659c32011-11-07 23:13:39 +02008936 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008937 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02008938 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02008939
Marcel Holtmann445608d2013-10-06 23:55:48 -07008940 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02008941}
Johan Hedberg980e1a52011-01-22 06:10:07 +02008942
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07008943void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02008944{
8945 struct mgmt_ev_pin_code_request ev;
8946
Johan Hedbergd8457692012-02-17 14:24:57 +02008947 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03008948 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02008949 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008950
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07008951 mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008952}
8953
Marcel Holtmanne669cf82013-10-15 14:26:21 -07008954void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8955 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02008956{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008957 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008958
Johan Hedberg333ae952015-03-17 13:48:47 +02008959 cmd = pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008960 if (!cmd)
Marcel Holtmanne669cf82013-10-15 14:26:21 -07008961 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008962
Johan Hedberg7776d1d2014-12-05 13:36:03 +02008963 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008964 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008965}
8966
Marcel Holtmann3eb38522013-10-15 14:26:22 -07008967void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
8968 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02008969{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008970 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008971
Johan Hedberg333ae952015-03-17 13:48:47 +02008972 cmd = pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008973 if (!cmd)
Marcel Holtmann3eb38522013-10-15 14:26:22 -07008974 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02008975
Johan Hedberg7776d1d2014-12-05 13:36:03 +02008976 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03008977 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02008978}
Johan Hedberga5c29682011-02-19 12:05:57 -03008979
Johan Hedberg744cf192011-11-08 20:40:14 +02008980int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg39adbff2014-03-20 08:18:14 +02008981 u8 link_type, u8 addr_type, u32 value,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008982 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03008983{
8984 struct mgmt_ev_user_confirm_request ev;
8985
Marcel Holtmann181d6952020-05-06 09:57:47 +02008986 bt_dev_dbg(hdev, "bdaddr %pMR", bdaddr);
Johan Hedberga5c29682011-02-19 12:05:57 -03008987
Johan Hedberg272d90d2012-02-09 15:26:12 +02008988 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008989 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07008990 ev.confirm_hint = confirm_hint;
Johan Hedberg39adbff2014-03-20 08:18:14 +02008991 ev.value = cpu_to_le32(value);
Johan Hedberga5c29682011-02-19 12:05:57 -03008992
Johan Hedberg744cf192011-11-08 20:40:14 +02008993 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03008994 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03008995}
8996
Johan Hedberg272d90d2012-02-09 15:26:12 +02008997int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03008998 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08008999{
9000 struct mgmt_ev_user_passkey_request ev;
9001
Marcel Holtmann181d6952020-05-06 09:57:47 +02009002 bt_dev_dbg(hdev, "bdaddr %pMR", bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08009003
Johan Hedberg272d90d2012-02-09 15:26:12 +02009004 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03009005 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08009006
9007 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009008 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08009009}
9010
Brian Gix0df4c182011-11-16 13:53:13 -08009011static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03009012 u8 link_type, u8 addr_type, u8 status,
9013 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03009014{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009015 struct mgmt_pending_cmd *cmd;
Johan Hedberga5c29682011-02-19 12:05:57 -03009016
Johan Hedberg333ae952015-03-17 13:48:47 +02009017 cmd = pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03009018 if (!cmd)
9019 return -ENOENT;
9020
Johan Hedberg7776d1d2014-12-05 13:36:03 +02009021 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03009022 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03009023
Johan Hedberg7776d1d2014-12-05 13:36:03 +02009024 return 0;
Johan Hedberga5c29682011-02-19 12:05:57 -03009025}
9026
Johan Hedberg744cf192011-11-08 20:40:14 +02009027int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009028 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03009029{
Johan Hedberg272d90d2012-02-09 15:26:12 +02009030 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009031 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03009032}
9033
Johan Hedberg272d90d2012-02-09 15:26:12 +02009034int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009035 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03009036{
Johan Hedberg272d90d2012-02-09 15:26:12 +02009037 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03009038 status,
9039 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03009040}
Johan Hedberg2a611692011-02-19 12:06:00 -03009041
Brian Gix604086b2011-11-23 08:28:33 -08009042int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009043 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08009044{
Johan Hedberg272d90d2012-02-09 15:26:12 +02009045 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009046 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08009047}
9048
Johan Hedberg272d90d2012-02-09 15:26:12 +02009049int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009050 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08009051{
Johan Hedberg272d90d2012-02-09 15:26:12 +02009052 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03009053 status,
9054 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08009055}
9056
Johan Hedberg92a25252012-09-06 18:39:26 +03009057int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
9058 u8 link_type, u8 addr_type, u32 passkey,
9059 u8 entered)
9060{
9061 struct mgmt_ev_passkey_notify ev;
9062
Marcel Holtmann181d6952020-05-06 09:57:47 +02009063 bt_dev_dbg(hdev, "bdaddr %pMR", bdaddr);
Johan Hedberg92a25252012-09-06 18:39:26 +03009064
9065 bacpy(&ev.addr.bdaddr, bdaddr);
9066 ev.addr.type = link_to_bdaddr(link_type, addr_type);
9067 ev.passkey = __cpu_to_le32(passkey);
9068 ev.entered = entered;
9069
9070 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
9071}
9072
Johan Hedberge1e930f2014-09-08 17:09:49 -07009073void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
Johan Hedberg2a611692011-02-19 12:06:00 -03009074{
9075 struct mgmt_ev_auth_failed ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009076 struct mgmt_pending_cmd *cmd;
Johan Hedberge1e930f2014-09-08 17:09:49 -07009077 u8 status = mgmt_status(hci_status);
Johan Hedberg2a611692011-02-19 12:06:00 -03009078
Johan Hedberge1e930f2014-09-08 17:09:49 -07009079 bacpy(&ev.addr.bdaddr, &conn->dst);
9080 ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
9081 ev.status = status;
Johan Hedberg2a611692011-02-19 12:06:00 -03009082
Johan Hedberge1e930f2014-09-08 17:09:49 -07009083 cmd = find_pairing(conn);
9084
9085 mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
9086 cmd ? cmd->sk : NULL);
9087
Johan Hedberga511b352014-12-11 21:45:45 +02009088 if (cmd) {
9089 cmd->cmd_complete(cmd, status);
9090 mgmt_pending_remove(cmd);
9091 }
Johan Hedberg2a611692011-02-19 12:06:00 -03009092}
Johan Hedbergb312b1612011-03-16 14:29:37 +02009093
Marcel Holtmann464996a2013-10-15 14:26:24 -07009094void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009095{
9096 struct cmd_lookup match = { NULL, hdev };
Marcel Holtmann464996a2013-10-15 14:26:24 -07009097 bool changed;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009098
9099 if (status) {
9100 u8 mgmt_err = mgmt_status(status);
9101 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009102 cmd_status_rsp, &mgmt_err);
Marcel Holtmann464996a2013-10-15 14:26:24 -07009103 return;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009104 }
9105
Marcel Holtmann464996a2013-10-15 14:26:24 -07009106 if (test_bit(HCI_AUTH, &hdev->flags))
Marcel Holtmann238be782015-03-13 02:11:06 -07009107 changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
Marcel Holtmann464996a2013-10-15 14:26:24 -07009108 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07009109 changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02009110
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009111 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009112 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009113
Johan Hedberg47990ea2012-02-22 11:58:37 +02009114 if (changed)
Marcel Holtmann464996a2013-10-15 14:26:24 -07009115 new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009116
9117 if (match.sk)
9118 sock_put(match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009119}
9120
Johan Hedberg890ea892013-03-15 17:06:52 -05009121static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02009122{
Johan Hedberg890ea892013-03-15 17:06:52 -05009123 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02009124 struct hci_cp_write_eir cp;
9125
Johan Hedberg976eb202012-10-24 21:12:01 +03009126 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05009127 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02009128
Johan Hedbergc80da272012-02-22 15:38:48 +02009129 memset(hdev->eir, 0, sizeof(hdev->eir));
9130
Johan Hedbergcacaf522012-02-21 00:52:42 +02009131 memset(&cp, 0, sizeof(cp));
9132
Johan Hedberg890ea892013-03-15 17:06:52 -05009133 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02009134}
9135
Marcel Holtmann3e248562013-10-15 14:26:25 -07009136void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009137{
9138 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05009139 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009140 bool changed = false;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009141
9142 if (status) {
9143 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009144
Marcel Holtmanna69d8922015-03-13 02:11:05 -07009145 if (enable && hci_dev_test_and_clear_flag(hdev,
9146 HCI_SSP_ENABLED)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07009147 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmann3e248562013-10-15 14:26:25 -07009148 new_settings(hdev, NULL);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07009149 }
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009150
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009151 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
9152 &mgmt_err);
Marcel Holtmann3e248562013-10-15 14:26:25 -07009153 return;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009154 }
9155
9156 if (enable) {
Marcel Holtmann238be782015-03-13 02:11:06 -07009157 changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009158 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07009159 changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07009160 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07009161 changed = hci_dev_test_and_clear_flag(hdev,
9162 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07009163 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07009164 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009165 }
9166
9167 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
9168
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009169 if (changed)
Marcel Holtmann3e248562013-10-15 14:26:25 -07009170 new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009171
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02009172 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009173 sock_put(match.sk);
9174
Johan Hedberg890ea892013-03-15 17:06:52 -05009175 hci_req_init(&req, hdev);
9176
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07009177 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
9178 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03009179 hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
9180 sizeof(enable), &enable);
Johan Hedbergb1a89172015-11-25 16:15:42 +02009181 __hci_req_update_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03009182 } else {
Johan Hedberg890ea892013-03-15 17:06:52 -05009183 clear_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03009184 }
Johan Hedberg890ea892013-03-15 17:06:52 -05009185
9186 hci_req_run(&req, NULL);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009187}
9188
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009189static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02009190{
9191 struct cmd_lookup *match = data;
9192
Johan Hedberg90e70452012-02-23 23:09:40 +02009193 if (match->sk == NULL) {
9194 match->sk = cmd->sk;
9195 sock_hold(match->sk);
9196 }
Johan Hedberg90e70452012-02-23 23:09:40 +02009197}
9198
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07009199void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
9200 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01009201{
Johan Hedberg90e70452012-02-23 23:09:40 +02009202 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01009203
Johan Hedberg92da6092013-03-15 17:06:55 -05009204 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
9205 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
9206 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02009207
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02009208 if (!status) {
Marcel Holtmann5504c3a2016-08-29 06:19:46 +02009209 mgmt_limited_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class,
9210 3, HCI_MGMT_DEV_CLASS_EVENTS, NULL);
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02009211 ext_info_changed(hdev, NULL);
9212 }
Johan Hedberg90e70452012-02-23 23:09:40 +02009213
9214 if (match.sk)
9215 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01009216}
9217
Marcel Holtmann7667da32013-10-15 14:26:27 -07009218void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02009219{
Johan Hedbergb312b1612011-03-16 14:29:37 +02009220 struct mgmt_cp_set_local_name ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009221 struct mgmt_pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02009222
Johan Hedberg13928972013-03-15 17:07:00 -05009223 if (status)
Marcel Holtmann7667da32013-10-15 14:26:27 -07009224 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02009225
9226 memset(&ev, 0, sizeof(ev));
9227 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02009228 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02009229
Johan Hedberg333ae952015-03-17 13:48:47 +02009230 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05009231 if (!cmd) {
9232 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02009233
Johan Hedberg13928972013-03-15 17:07:00 -05009234 /* If this is a HCI command related to powering on the
9235 * HCI dev don't send any mgmt signals.
9236 */
Johan Hedberg333ae952015-03-17 13:48:47 +02009237 if (pending_find(MGMT_OP_SET_POWERED, hdev))
Marcel Holtmann7667da32013-10-15 14:26:27 -07009238 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02009239 }
9240
Marcel Holtmann5504c3a2016-08-29 06:19:46 +02009241 mgmt_limited_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
9242 HCI_MGMT_LOCAL_NAME_EVENTS, cmd ? cmd->sk : NULL);
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02009243 ext_info_changed(hdev, cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02009244}
Szymon Jancc35938b2011-03-22 13:12:21 +01009245
Jakub Pawlowski799ce932014-12-05 10:55:58 +01009246static inline bool has_uuid(u8 *uuid, u16 uuid_count, u8 (*uuids)[16])
9247{
9248 int i;
9249
9250 for (i = 0; i < uuid_count; i++) {
9251 if (!memcmp(uuid, uuids[i], 16))
9252 return true;
9253 }
9254
9255 return false;
9256}
9257
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01009258static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
9259{
Jakub Pawlowski799ce932014-12-05 10:55:58 +01009260 u16 parsed = 0;
9261
9262 while (parsed < eir_len) {
9263 u8 field_len = eir[0];
9264 u8 uuid[16];
9265 int i;
9266
9267 if (field_len == 0)
9268 break;
9269
9270 if (eir_len - parsed < field_len + 1)
9271 break;
9272
9273 switch (eir[1]) {
9274 case EIR_UUID16_ALL:
9275 case EIR_UUID16_SOME:
9276 for (i = 0; i + 3 <= field_len; i += 2) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02009277 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01009278 uuid[13] = eir[i + 3];
9279 uuid[12] = eir[i + 2];
9280 if (has_uuid(uuid, uuid_count, uuids))
9281 return true;
9282 }
9283 break;
9284 case EIR_UUID32_ALL:
9285 case EIR_UUID32_SOME:
9286 for (i = 0; i + 5 <= field_len; i += 4) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02009287 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01009288 uuid[15] = eir[i + 5];
9289 uuid[14] = eir[i + 4];
9290 uuid[13] = eir[i + 3];
9291 uuid[12] = eir[i + 2];
9292 if (has_uuid(uuid, uuid_count, uuids))
9293 return true;
9294 }
9295 break;
9296 case EIR_UUID128_ALL:
9297 case EIR_UUID128_SOME:
9298 for (i = 0; i + 17 <= field_len; i += 16) {
9299 memcpy(uuid, eir + i + 2, 16);
9300 if (has_uuid(uuid, uuid_count, uuids))
9301 return true;
9302 }
9303 break;
9304 }
9305
9306 parsed += field_len + 1;
9307 eir += field_len + 1;
9308 }
9309
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01009310 return false;
9311}
9312
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08009313static void restart_le_scan(struct hci_dev *hdev)
9314{
9315 /* If controller is not scanning we are done. */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07009316 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08009317 return;
9318
9319 if (time_after(jiffies + DISCOV_LE_RESTART_DELAY,
9320 hdev->discovery.scan_start +
9321 hdev->discovery.scan_duration))
9322 return;
9323
Johan Hedberg7c1fbed2015-11-11 08:11:23 +02009324 queue_delayed_work(hdev->req_workqueue, &hdev->le_scan_restart,
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08009325 DISCOV_LE_RESTART_DELAY);
9326}
9327
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009328static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
9329 u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
9330{
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009331 /* If a RSSI threshold has been specified, and
9332 * HCI_QUIRK_STRICT_DUPLICATE_FILTER is not set, then all results with
9333 * a RSSI smaller than the RSSI threshold will be dropped. If the quirk
9334 * is set, let it through for further processing, as we might need to
9335 * restart the scan.
9336 *
9337 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
9338 * the results are also dropped.
9339 */
9340 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
9341 (rssi == HCI_RSSI_INVALID ||
9342 (rssi < hdev->discovery.rssi &&
9343 !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
9344 return false;
9345
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08009346 if (hdev->discovery.uuid_count != 0) {
9347 /* If a list of UUIDs is provided in filter, results with no
9348 * matching UUID should be dropped.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009349 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08009350 if (!eir_has_uuids(eir, eir_len, hdev->discovery.uuid_count,
9351 hdev->discovery.uuids) &&
9352 !eir_has_uuids(scan_rsp, scan_rsp_len,
9353 hdev->discovery.uuid_count,
9354 hdev->discovery.uuids))
9355 return false;
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009356 }
9357
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08009358 /* If duplicate filtering does not report RSSI changes, then restart
9359 * scanning to ensure updated result with updated RSSI values.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009360 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08009361 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks)) {
9362 restart_le_scan(hdev);
9363
9364 /* Validate RSSI value against the RSSI threshold once more. */
9365 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
9366 rssi < hdev->discovery.rssi)
9367 return false;
9368 }
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009369
9370 return true;
9371}
9372
Marcel Holtmann901801b2013-10-06 23:55:51 -07009373void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Marcel Holtmannaf589252014-07-01 14:11:20 +02009374 u8 addr_type, u8 *dev_class, s8 rssi, u32 flags,
9375 u8 *eir, u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03009376{
Johan Hedberge319d2e2012-01-15 19:51:59 +02009377 char buf[512];
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009378 struct mgmt_ev_device_found *ev = (void *)buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02009379 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03009380
Johan Hedberg75ce2082014-07-02 22:42:01 +03009381 /* Don't send events for a non-kernel initiated discovery. With
9382 * LE one exception is if we have pend_le_reports > 0 in which
9383 * case we're doing passive scanning and want these events.
9384 */
9385 if (!hci_discovery_active(hdev)) {
9386 if (link_type == ACL_LINK)
9387 return;
Miao-chen Chou8208f5a2020-06-17 16:39:18 +02009388 if (link_type == LE_LINK &&
9389 list_empty(&hdev->pend_le_reports) &&
9390 !hci_is_adv_monitoring(hdev)) {
Johan Hedberg75ce2082014-07-02 22:42:01 +03009391 return;
Miao-chen Chou8208f5a2020-06-17 16:39:18 +02009392 }
Johan Hedberg75ce2082014-07-02 22:42:01 +03009393 }
Andre Guedes12602d02013-04-30 15:29:40 -03009394
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08009395 if (hdev->discovery.result_filtering) {
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009396 /* We are using service discovery */
9397 if (!is_filter_match(hdev, rssi, eir, eir_len, scan_rsp,
9398 scan_rsp_len))
9399 return;
9400 }
Marcel Holtmannbda157a2014-12-05 10:55:56 +01009401
Johan Hedberg78b781c2016-01-05 13:19:32 +02009402 if (hdev->discovery.limited) {
9403 /* Check for limited discoverable bit */
9404 if (dev_class) {
9405 if (!(dev_class[1] & 0x20))
9406 return;
9407 } else {
9408 u8 *flags = eir_get_data(eir, eir_len, EIR_FLAGS, NULL);
9409 if (!flags || !(flags[0] & LE_AD_LIMITED))
9410 return;
9411 }
9412 }
9413
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02009414 /* Make sure that the buffer is big enough. The 5 extra bytes
9415 * are for the potential CoD field.
9416 */
9417 if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07009418 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03009419
Johan Hedberg1dc06092012-01-15 21:01:23 +02009420 memset(buf, 0, sizeof(buf));
9421
Marcel Holtmannda25cf62014-12-05 13:03:35 +01009422 /* In case of device discovery with BR/EDR devices (pre 1.2), the
9423 * RSSI value was reported as 0 when not available. This behavior
9424 * is kept when using device discovery. This is required for full
9425 * backwards compatibility with the API.
9426 *
9427 * However when using service discovery, the value 127 will be
9428 * returned when the RSSI is not available.
9429 */
Szymon Janc91200e92015-01-22 16:57:05 +01009430 if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi &&
9431 link_type == ACL_LINK)
Marcel Holtmannefb25132014-12-05 13:03:34 +01009432 rssi = 0;
9433
Johan Hedberg841c5642014-07-07 12:45:54 +03009434 bacpy(&ev->addr.bdaddr, bdaddr);
9435 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02009436 ev->rssi = rssi;
Marcel Holtmannaf589252014-07-01 14:11:20 +02009437 ev->flags = cpu_to_le32(flags);
Johan Hedberge17acd42011-03-30 23:57:16 +03009438
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009439 if (eir_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01009440 /* Copy EIR or advertising data into event */
Johan Hedberge319d2e2012-01-15 19:51:59 +02009441 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03009442
Johan Hedberg0d3b7f62016-01-05 13:19:31 +02009443 if (dev_class && !eir_get_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
9444 NULL))
Johan Hedberg1dc06092012-01-15 21:01:23 +02009445 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009446 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02009447
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009448 if (scan_rsp_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01009449 /* Append scan response data to event */
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02009450 memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08009451
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02009452 ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
9453 ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
Andre Guedesf8523592011-09-09 18:56:26 -03009454
Marcel Holtmann901801b2013-10-06 23:55:51 -07009455 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03009456}
Johan Hedberga88a9652011-03-30 13:18:12 +03009457
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07009458void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
9459 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03009460{
Johan Hedbergb644ba32012-01-17 21:48:47 +02009461 struct mgmt_ev_device_found *ev;
9462 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
9463 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03009464
Johan Hedbergb644ba32012-01-17 21:48:47 +02009465 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03009466
Johan Hedbergb644ba32012-01-17 21:48:47 +02009467 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03009468
Johan Hedbergb644ba32012-01-17 21:48:47 +02009469 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03009470 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02009471 ev->rssi = rssi;
9472
9473 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009474 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02009475
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02009476 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02009477
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07009478 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03009479}
Johan Hedberg314b2382011-04-27 10:29:57 -04009480
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07009481void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04009482{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02009483 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02009484
Marcel Holtmann181d6952020-05-06 09:57:47 +02009485 bt_dev_dbg(hdev, "discovering %u", discovering);
Andre Guedes343fb142011-11-22 17:14:19 -03009486
Johan Hedbergf963e8e2012-02-20 23:30:44 +02009487 memset(&ev, 0, sizeof(ev));
9488 ev.type = hdev->discovery.type;
9489 ev.discovering = discovering;
9490
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07009491 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04009492}
Antti Julku5e762442011-08-25 16:48:02 +03009493
Abhishek Pandit-Subedi346ce5b2020-09-11 14:07:11 -07009494void mgmt_suspending(struct hci_dev *hdev, u8 state)
9495{
9496 struct mgmt_ev_controller_suspend ev;
9497
9498 ev.suspend_state = state;
9499 mgmt_event(MGMT_EV_CONTROLLER_SUSPEND, hdev, &ev, sizeof(ev), NULL);
9500}
9501
9502void mgmt_resuming(struct hci_dev *hdev, u8 reason, bdaddr_t *bdaddr,
9503 u8 addr_type)
9504{
9505 struct mgmt_ev_controller_resume ev;
9506
9507 ev.wake_reason = reason;
9508 if (bdaddr) {
9509 bacpy(&ev.addr.bdaddr, bdaddr);
9510 ev.addr.type = addr_type;
9511 } else {
9512 memset(&ev.addr, 0, sizeof(ev.addr));
9513 }
9514
9515 mgmt_event(MGMT_EV_CONTROLLER_RESUME, hdev, &ev, sizeof(ev), NULL);
9516}
9517
Johan Hedberg6d785aa32015-03-06 21:08:51 +02009518static struct hci_mgmt_chan chan = {
9519 .channel = HCI_CHANNEL_CONTROL,
9520 .handler_count = ARRAY_SIZE(mgmt_handlers),
9521 .handlers = mgmt_handlers,
Johan Hedberg88b94ce2015-03-17 13:48:49 +02009522 .hdev_init = mgmt_init_hdev,
Johan Hedberg6d785aa32015-03-06 21:08:51 +02009523};
9524
9525int mgmt_init(void)
9526{
9527 return hci_mgmt_chan_register(&chan);
9528}
9529
9530void mgmt_exit(void)
9531{
9532 hci_mgmt_chan_unregister(&chan);
9533}