blob: df5e16d7e313e33caf27f7f2991f0eb549d9c4de [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 Holtmann43e59cb2021-06-15 21:23:35 +020043#define MGMT_REVISION 21
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
Joseph Hwangae7d9252021-08-15 20:17:16 +08003794/* 330859bc-7506-492d-9370-9a6f0614037f */
3795static const u8 quality_report_uuid[16] = {
3796 0x7f, 0x03, 0x14, 0x06, 0x6f, 0x9a, 0x70, 0x93,
3797 0x2d, 0x49, 0x06, 0x75, 0xbc, 0x59, 0x08, 0x33,
3798};
3799
Kiran Kad933152021-09-07 15:42:47 +05303800/* a6695ace-ee7f-4fb9-881a-5fac66c629af */
3801static const u8 offload_codecs_uuid[16] = {
3802 0xaf, 0x29, 0xc6, 0x66, 0xac, 0x5f, 0x1a, 0x88,
3803 0xb9, 0x4f, 0x7f, 0xee, 0xce, 0x5a, 0x69, 0xa6,
3804};
3805
Alain Michaud15d8ce02020-07-07 17:46:06 +02003806/* 671b10b5-42c0-4696-9227-eb28d1b049d6 */
3807static const u8 simult_central_periph_uuid[16] = {
3808 0xd6, 0x49, 0xb0, 0xd1, 0x28, 0xeb, 0x27, 0x92,
3809 0x96, 0x46, 0xc0, 0x42, 0xb5, 0x10, 0x1b, 0x67,
3810};
3811
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05303812/* 15c0a148-c273-11ea-b3de-0242ac130004 */
3813static const u8 rpa_resolution_uuid[16] = {
3814 0x04, 0x00, 0x13, 0xac, 0x42, 0x02, 0xde, 0xb3,
3815 0xea, 0x11, 0x73, 0xc2, 0x48, 0xa1, 0xc0, 0x15,
3816};
3817
Marcel Holtmanna10c9072020-05-06 09:57:51 +02003818static int read_exp_features_info(struct sock *sk, struct hci_dev *hdev,
3819 void *data, u16 data_len)
3820{
Kiran Kad933152021-09-07 15:42:47 +05303821 char buf[102]; /* Enough space for 5 features: 2 + 20 * 5 */
Marcel Holtmanna10c9072020-05-06 09:57:51 +02003822 struct mgmt_rp_read_exp_features_info *rp = (void *)buf;
3823 u16 idx = 0;
Alain Michaud15d8ce02020-07-07 17:46:06 +02003824 u32 flags;
Marcel Holtmanna10c9072020-05-06 09:57:51 +02003825
3826 bt_dev_dbg(hdev, "sock %p", sk);
3827
3828 memset(&buf, 0, sizeof(buf));
3829
Marcel Holtmanne625e502020-05-06 09:57:52 +02003830#ifdef CONFIG_BT_FEATURE_DEBUG
3831 if (!hdev) {
Alain Michaud15d8ce02020-07-07 17:46:06 +02003832 flags = bt_dbg_get() ? BIT(0) : 0;
Marcel Holtmanne625e502020-05-06 09:57:52 +02003833
3834 memcpy(rp->features[idx].uuid, debug_uuid, 16);
3835 rp->features[idx].flags = cpu_to_le32(flags);
3836 idx++;
3837 }
3838#endif
3839
Alain Michaud15d8ce02020-07-07 17:46:06 +02003840 if (hdev) {
3841 if (test_bit(HCI_QUIRK_VALID_LE_STATES, &hdev->quirks) &&
3842 (hdev->le_states[4] & 0x08) && /* Central */
3843 (hdev->le_states[4] & 0x40) && /* Peripheral */
3844 (hdev->le_states[3] & 0x10)) /* Simultaneous */
3845 flags = BIT(0);
3846 else
3847 flags = 0;
3848
3849 memcpy(rp->features[idx].uuid, simult_central_periph_uuid, 16);
3850 rp->features[idx].flags = cpu_to_le32(flags);
3851 idx++;
3852 }
3853
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05303854 if (hdev && use_ll_privacy(hdev)) {
3855 if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
3856 flags = BIT(0) | BIT(1);
3857 else
3858 flags = BIT(1);
3859
3860 memcpy(rp->features[idx].uuid, rpa_resolution_uuid, 16);
3861 rp->features[idx].flags = cpu_to_le32(flags);
3862 idx++;
3863 }
3864
Joseph Hwangae7d9252021-08-15 20:17:16 +08003865 if (hdev) {
3866 if (hdev->set_quality_report) {
3867 /* BIT(0): indicating if set_quality_report is
3868 * supported by controller.
3869 */
3870 flags = BIT(0);
3871
3872 /* BIT(1): indicating if the feature is enabled. */
3873 if (hci_dev_test_flag(hdev, HCI_QUALITY_REPORT))
3874 flags |= BIT(1);
3875 } else {
3876 flags = 0;
3877 }
3878 memcpy(rp->features[idx].uuid, quality_report_uuid, 16);
3879 rp->features[idx].flags = cpu_to_le32(flags);
3880 idx++;
3881 }
3882
Kiran Kad933152021-09-07 15:42:47 +05303883 if (hdev) {
3884 if (hdev->get_data_path_id) {
3885 /* BIT(0): indicating if offload codecs are
3886 * supported by controller.
3887 */
3888 flags = BIT(0);
3889
3890 /* BIT(1): indicating if codec offload feature
3891 * is enabled.
3892 */
3893 if (hci_dev_test_flag(hdev, HCI_OFFLOAD_CODECS_ENABLED))
3894 flags |= BIT(1);
3895 } else {
3896 flags = 0;
3897 }
3898 memcpy(rp->features[idx].uuid, offload_codecs_uuid, 16);
3899 rp->features[idx].flags = cpu_to_le32(flags);
3900 idx++;
3901 }
3902
Marcel Holtmanna10c9072020-05-06 09:57:51 +02003903 rp->feature_count = cpu_to_le16(idx);
3904
3905 /* After reading the experimental features information, enable
3906 * the events to update client on any future change.
3907 */
3908 hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
3909
3910 return mgmt_cmd_complete(sk, hdev ? hdev->id : MGMT_INDEX_NONE,
3911 MGMT_OP_READ_EXP_FEATURES_INFO,
3912 0, rp, sizeof(*rp) + (20 * idx));
3913}
3914
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05303915static int exp_ll_privacy_feature_changed(bool enabled, struct hci_dev *hdev,
3916 struct sock *skip)
3917{
3918 struct mgmt_ev_exp_feature_changed ev;
3919
3920 memset(&ev, 0, sizeof(ev));
3921 memcpy(ev.uuid, rpa_resolution_uuid, 16);
3922 ev.flags = cpu_to_le32((enabled ? BIT(0) : 0) | BIT(1));
3923
3924 return mgmt_limited_event(MGMT_EV_EXP_FEATURE_CHANGED, hdev,
3925 &ev, sizeof(ev),
3926 HCI_MGMT_EXP_FEATURE_EVENTS, skip);
3927
3928}
3929
Marcel Holtmanne625e502020-05-06 09:57:52 +02003930#ifdef CONFIG_BT_FEATURE_DEBUG
3931static int exp_debug_feature_changed(bool enabled, struct sock *skip)
3932{
3933 struct mgmt_ev_exp_feature_changed ev;
3934
3935 memset(&ev, 0, sizeof(ev));
3936 memcpy(ev.uuid, debug_uuid, 16);
3937 ev.flags = cpu_to_le32(enabled ? BIT(0) : 0);
3938
3939 return mgmt_limited_event(MGMT_EV_EXP_FEATURE_CHANGED, NULL,
3940 &ev, sizeof(ev),
3941 HCI_MGMT_EXP_FEATURE_EVENTS, skip);
3942}
3943#endif
3944
Joseph Hwangae7d9252021-08-15 20:17:16 +08003945static int exp_quality_report_feature_changed(bool enabled, struct sock *skip)
3946{
3947 struct mgmt_ev_exp_feature_changed ev;
3948
3949 memset(&ev, 0, sizeof(ev));
3950 memcpy(ev.uuid, quality_report_uuid, 16);
3951 ev.flags = cpu_to_le32(enabled ? BIT(0) : 0);
3952
3953 return mgmt_limited_event(MGMT_EV_EXP_FEATURE_CHANGED, NULL,
3954 &ev, sizeof(ev),
3955 HCI_MGMT_EXP_FEATURE_EVENTS, skip);
3956}
3957
Joseph Hwang93fb70b2021-08-15 20:17:15 +08003958#define EXP_FEAT(_uuid, _set_func) \
3959{ \
3960 .uuid = _uuid, \
3961 .set_func = _set_func, \
3962}
3963
3964/* The zero key uuid is special. Multiple exp features are set through it. */
3965static int set_zero_key_func(struct sock *sk, struct hci_dev *hdev,
3966 struct mgmt_cp_set_exp_feature *cp, u16 data_len)
3967{
3968 struct mgmt_rp_set_exp_feature rp;
3969
3970 memset(rp.uuid, 0, 16);
3971 rp.flags = cpu_to_le32(0);
3972
3973#ifdef CONFIG_BT_FEATURE_DEBUG
3974 if (!hdev) {
3975 bool changed = bt_dbg_get();
3976
3977 bt_dbg_set(false);
3978
3979 if (changed)
3980 exp_debug_feature_changed(false, sk);
3981 }
3982#endif
3983
3984 if (hdev && use_ll_privacy(hdev) && !hdev_is_powered(hdev)) {
3985 bool changed = hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY);
3986
3987 hci_dev_clear_flag(hdev, HCI_ENABLE_LL_PRIVACY);
3988
3989 if (changed)
3990 exp_ll_privacy_feature_changed(false, hdev, sk);
3991 }
3992
3993 hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
3994
3995 return mgmt_cmd_complete(sk, hdev ? hdev->id : MGMT_INDEX_NONE,
3996 MGMT_OP_SET_EXP_FEATURE, 0,
3997 &rp, sizeof(rp));
3998}
3999
4000#ifdef CONFIG_BT_FEATURE_DEBUG
4001static int set_debug_func(struct sock *sk, struct hci_dev *hdev,
4002 struct mgmt_cp_set_exp_feature *cp, u16 data_len)
4003{
4004 struct mgmt_rp_set_exp_feature rp;
4005
4006 bool val, changed;
4007 int err;
4008
4009 /* Command requires to use the non-controller index */
4010 if (hdev)
4011 return mgmt_cmd_status(sk, hdev->id,
4012 MGMT_OP_SET_EXP_FEATURE,
4013 MGMT_STATUS_INVALID_INDEX);
4014
4015 /* Parameters are limited to a single octet */
4016 if (data_len != MGMT_SET_EXP_FEATURE_SIZE + 1)
4017 return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
4018 MGMT_OP_SET_EXP_FEATURE,
4019 MGMT_STATUS_INVALID_PARAMS);
4020
4021 /* Only boolean on/off is supported */
4022 if (cp->param[0] != 0x00 && cp->param[0] != 0x01)
4023 return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
4024 MGMT_OP_SET_EXP_FEATURE,
4025 MGMT_STATUS_INVALID_PARAMS);
4026
4027 val = !!cp->param[0];
4028 changed = val ? !bt_dbg_get() : bt_dbg_get();
4029 bt_dbg_set(val);
4030
4031 memcpy(rp.uuid, debug_uuid, 16);
4032 rp.flags = cpu_to_le32(val ? BIT(0) : 0);
4033
4034 hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
4035
4036 err = mgmt_cmd_complete(sk, MGMT_INDEX_NONE,
4037 MGMT_OP_SET_EXP_FEATURE, 0,
4038 &rp, sizeof(rp));
4039
4040 if (changed)
4041 exp_debug_feature_changed(val, sk);
4042
4043 return err;
4044}
4045#endif
4046
4047static int set_rpa_resolution_func(struct sock *sk, struct hci_dev *hdev,
4048 struct mgmt_cp_set_exp_feature *cp,
4049 u16 data_len)
4050{
4051 struct mgmt_rp_set_exp_feature rp;
4052 bool val, changed;
4053 int err;
4054 u32 flags;
4055
4056 /* Command requires to use the controller index */
4057 if (!hdev)
4058 return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
4059 MGMT_OP_SET_EXP_FEATURE,
4060 MGMT_STATUS_INVALID_INDEX);
4061
4062 /* Changes can only be made when controller is powered down */
4063 if (hdev_is_powered(hdev))
4064 return mgmt_cmd_status(sk, hdev->id,
4065 MGMT_OP_SET_EXP_FEATURE,
4066 MGMT_STATUS_REJECTED);
4067
4068 /* Parameters are limited to a single octet */
4069 if (data_len != MGMT_SET_EXP_FEATURE_SIZE + 1)
4070 return mgmt_cmd_status(sk, hdev->id,
4071 MGMT_OP_SET_EXP_FEATURE,
4072 MGMT_STATUS_INVALID_PARAMS);
4073
4074 /* Only boolean on/off is supported */
4075 if (cp->param[0] != 0x00 && cp->param[0] != 0x01)
4076 return mgmt_cmd_status(sk, hdev->id,
4077 MGMT_OP_SET_EXP_FEATURE,
4078 MGMT_STATUS_INVALID_PARAMS);
4079
4080 val = !!cp->param[0];
4081
4082 if (val) {
4083 changed = !hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY);
4084 hci_dev_set_flag(hdev, HCI_ENABLE_LL_PRIVACY);
4085 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
4086
4087 /* Enable LL privacy + supported settings changed */
4088 flags = BIT(0) | BIT(1);
4089 } else {
4090 changed = hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY);
4091 hci_dev_clear_flag(hdev, HCI_ENABLE_LL_PRIVACY);
4092
4093 /* Disable LL privacy + supported settings changed */
4094 flags = BIT(1);
4095 }
4096
4097 memcpy(rp.uuid, rpa_resolution_uuid, 16);
4098 rp.flags = cpu_to_le32(flags);
4099
4100 hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
4101
4102 err = mgmt_cmd_complete(sk, hdev->id,
4103 MGMT_OP_SET_EXP_FEATURE, 0,
4104 &rp, sizeof(rp));
4105
4106 if (changed)
4107 exp_ll_privacy_feature_changed(val, hdev, sk);
4108
4109 return err;
4110}
4111
Joseph Hwangae7d9252021-08-15 20:17:16 +08004112static int set_quality_report_func(struct sock *sk, struct hci_dev *hdev,
4113 struct mgmt_cp_set_exp_feature *cp,
4114 u16 data_len)
4115{
4116 struct mgmt_rp_set_exp_feature rp;
4117 bool val, changed;
4118 int err;
4119
4120 /* Command requires to use a valid controller index */
4121 if (!hdev)
4122 return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
4123 MGMT_OP_SET_EXP_FEATURE,
4124 MGMT_STATUS_INVALID_INDEX);
4125
4126 /* Parameters are limited to a single octet */
4127 if (data_len != MGMT_SET_EXP_FEATURE_SIZE + 1)
4128 return mgmt_cmd_status(sk, hdev->id,
4129 MGMT_OP_SET_EXP_FEATURE,
4130 MGMT_STATUS_INVALID_PARAMS);
4131
4132 /* Only boolean on/off is supported */
4133 if (cp->param[0] != 0x00 && cp->param[0] != 0x01)
4134 return mgmt_cmd_status(sk, hdev->id,
4135 MGMT_OP_SET_EXP_FEATURE,
4136 MGMT_STATUS_INVALID_PARAMS);
4137
4138 hci_req_sync_lock(hdev);
4139
4140 val = !!cp->param[0];
4141 changed = (val != hci_dev_test_flag(hdev, HCI_QUALITY_REPORT));
4142
4143 if (!hdev->set_quality_report) {
4144 err = mgmt_cmd_status(sk, hdev->id,
4145 MGMT_OP_SET_EXP_FEATURE,
4146 MGMT_STATUS_NOT_SUPPORTED);
4147 goto unlock_quality_report;
4148 }
4149
4150 if (changed) {
4151 err = hdev->set_quality_report(hdev, val);
4152 if (err) {
4153 err = mgmt_cmd_status(sk, hdev->id,
4154 MGMT_OP_SET_EXP_FEATURE,
4155 MGMT_STATUS_FAILED);
4156 goto unlock_quality_report;
4157 }
4158 if (val)
4159 hci_dev_set_flag(hdev, HCI_QUALITY_REPORT);
4160 else
4161 hci_dev_clear_flag(hdev, HCI_QUALITY_REPORT);
4162 }
4163
4164 bt_dev_dbg(hdev, "quality report enable %d changed %d", val, changed);
4165
4166 memcpy(rp.uuid, quality_report_uuid, 16);
4167 rp.flags = cpu_to_le32(val ? BIT(0) : 0);
4168 hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
4169 err = mgmt_cmd_complete(sk, hdev->id,
4170 MGMT_OP_SET_EXP_FEATURE, 0,
4171 &rp, sizeof(rp));
4172
4173 if (changed)
4174 exp_quality_report_feature_changed(val, sk);
4175
4176unlock_quality_report:
4177 hci_req_sync_unlock(hdev);
4178 return err;
4179}
4180
Kiran Kad933152021-09-07 15:42:47 +05304181static int exp_offload_codec_feature_changed(bool enabled, struct sock *skip)
4182{
4183 struct mgmt_ev_exp_feature_changed ev;
4184
4185 memset(&ev, 0, sizeof(ev));
4186 memcpy(ev.uuid, offload_codecs_uuid, 16);
4187 ev.flags = cpu_to_le32(enabled ? BIT(0) : 0);
4188
4189 return mgmt_limited_event(MGMT_EV_EXP_FEATURE_CHANGED, NULL,
4190 &ev, sizeof(ev),
4191 HCI_MGMT_EXP_FEATURE_EVENTS, skip);
4192}
4193
4194static int set_offload_codec_func(struct sock *sk, struct hci_dev *hdev,
4195 struct mgmt_cp_set_exp_feature *cp,
4196 u16 data_len)
4197{
4198 bool val, changed;
4199 int err;
4200 struct mgmt_rp_set_exp_feature rp;
4201
4202 /* Command requires to use a valid controller index */
4203 if (!hdev)
4204 return mgmt_cmd_status(sk, MGMT_INDEX_NONE,
4205 MGMT_OP_SET_EXP_FEATURE,
4206 MGMT_STATUS_INVALID_INDEX);
4207
4208 /* Parameters are limited to a single octet */
4209 if (data_len != MGMT_SET_EXP_FEATURE_SIZE + 1)
4210 return mgmt_cmd_status(sk, hdev->id,
4211 MGMT_OP_SET_EXP_FEATURE,
4212 MGMT_STATUS_INVALID_PARAMS);
4213
4214 /* Only boolean on/off is supported */
4215 if (cp->param[0] != 0x00 && cp->param[0] != 0x01)
4216 return mgmt_cmd_status(sk, hdev->id,
4217 MGMT_OP_SET_EXP_FEATURE,
4218 MGMT_STATUS_INVALID_PARAMS);
4219
4220 val = !!cp->param[0];
4221 changed = (val != hci_dev_test_flag(hdev, HCI_OFFLOAD_CODECS_ENABLED));
4222
4223 if (!hdev->get_data_path_id) {
4224 return mgmt_cmd_status(sk, hdev->id,
4225 MGMT_OP_SET_EXP_FEATURE,
4226 MGMT_STATUS_NOT_SUPPORTED);
4227 }
4228
4229 if (changed) {
4230 if (val)
4231 hci_dev_set_flag(hdev, HCI_OFFLOAD_CODECS_ENABLED);
4232 else
4233 hci_dev_clear_flag(hdev, HCI_OFFLOAD_CODECS_ENABLED);
4234 }
4235
4236 bt_dev_info(hdev, "offload codecs enable %d changed %d",
4237 val, changed);
4238
4239 memcpy(rp.uuid, offload_codecs_uuid, 16);
4240 rp.flags = cpu_to_le32(val ? BIT(0) : 0);
4241 hci_sock_set_flag(sk, HCI_MGMT_EXP_FEATURE_EVENTS);
4242 err = mgmt_cmd_complete(sk, hdev->id,
4243 MGMT_OP_SET_EXP_FEATURE, 0,
4244 &rp, sizeof(rp));
4245
4246 if (changed)
4247 exp_offload_codec_feature_changed(val, sk);
4248
4249 return err;
4250}
4251
Joseph Hwang93fb70b2021-08-15 20:17:15 +08004252static const struct mgmt_exp_feature {
4253 const u8 *uuid;
4254 int (*set_func)(struct sock *sk, struct hci_dev *hdev,
4255 struct mgmt_cp_set_exp_feature *cp, u16 data_len);
4256} exp_features[] = {
4257 EXP_FEAT(ZERO_KEY, set_zero_key_func),
4258#ifdef CONFIG_BT_FEATURE_DEBUG
4259 EXP_FEAT(debug_uuid, set_debug_func),
4260#endif
4261 EXP_FEAT(rpa_resolution_uuid, set_rpa_resolution_func),
Joseph Hwangae7d9252021-08-15 20:17:16 +08004262 EXP_FEAT(quality_report_uuid, set_quality_report_func),
Kiran Kad933152021-09-07 15:42:47 +05304263 EXP_FEAT(offload_codecs_uuid, set_offload_codec_func),
Joseph Hwang93fb70b2021-08-15 20:17:15 +08004264
4265 /* end with a null feature */
4266 EXP_FEAT(NULL, NULL)
4267};
4268
Marcel Holtmanna10c9072020-05-06 09:57:51 +02004269static int set_exp_feature(struct sock *sk, struct hci_dev *hdev,
4270 void *data, u16 data_len)
4271{
4272 struct mgmt_cp_set_exp_feature *cp = data;
Joseph Hwang93fb70b2021-08-15 20:17:15 +08004273 size_t i = 0;
Marcel Holtmanna10c9072020-05-06 09:57:51 +02004274
4275 bt_dev_dbg(hdev, "sock %p", sk);
4276
Joseph Hwang93fb70b2021-08-15 20:17:15 +08004277 for (i = 0; exp_features[i].uuid; i++) {
4278 if (!memcmp(cp->uuid, exp_features[i].uuid, 16))
4279 return exp_features[i].set_func(sk, hdev, cp, data_len);
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05304280 }
4281
Marcel Holtmanna10c9072020-05-06 09:57:51 +02004282 return mgmt_cmd_status(sk, hdev ? hdev->id : MGMT_INDEX_NONE,
4283 MGMT_OP_SET_EXP_FEATURE,
4284 MGMT_STATUS_NOT_SUPPORTED);
4285}
4286
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004287#define SUPPORTED_DEVICE_FLAGS() ((1U << HCI_CONN_FLAG_MAX) - 1)
4288
4289static int get_device_flags(struct sock *sk, struct hci_dev *hdev, void *data,
4290 u16 data_len)
4291{
4292 struct mgmt_cp_get_device_flags *cp = data;
4293 struct mgmt_rp_get_device_flags rp;
4294 struct bdaddr_list_with_flags *br_params;
4295 struct hci_conn_params *params;
4296 u32 supported_flags = SUPPORTED_DEVICE_FLAGS();
4297 u32 current_flags = 0;
4298 u8 status = MGMT_STATUS_INVALID_PARAMS;
4299
4300 bt_dev_dbg(hdev, "Get device flags %pMR (type 0x%x)\n",
4301 &cp->addr.bdaddr, cp->addr.type);
4302
Abhishek Pandit-Subedi3ca33e32020-06-19 17:10:24 -07004303 hci_dev_lock(hdev);
4304
Tedd Ho-Jeong An02ce2c22021-05-26 10:36:22 -07004305 memset(&rp, 0, sizeof(rp));
4306
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004307 if (cp->addr.type == BDADDR_BREDR) {
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08004308 br_params = hci_bdaddr_list_lookup_with_flags(&hdev->accept_list,
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004309 &cp->addr.bdaddr,
4310 cp->addr.type);
4311 if (!br_params)
4312 goto done;
4313
4314 current_flags = br_params->current_flags;
4315 } else {
4316 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
4317 le_addr_type(cp->addr.type));
4318
4319 if (!params)
4320 goto done;
4321
4322 current_flags = params->current_flags;
4323 }
4324
4325 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
4326 rp.addr.type = cp->addr.type;
4327 rp.supported_flags = cpu_to_le32(supported_flags);
4328 rp.current_flags = cpu_to_le32(current_flags);
4329
4330 status = MGMT_STATUS_SUCCESS;
4331
4332done:
Abhishek Pandit-Subedi3ca33e32020-06-19 17:10:24 -07004333 hci_dev_unlock(hdev);
4334
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004335 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_DEVICE_FLAGS, status,
4336 &rp, sizeof(rp));
4337}
4338
4339static void device_flags_changed(struct sock *sk, struct hci_dev *hdev,
4340 bdaddr_t *bdaddr, u8 bdaddr_type,
4341 u32 supported_flags, u32 current_flags)
4342{
4343 struct mgmt_ev_device_flags_changed ev;
4344
4345 bacpy(&ev.addr.bdaddr, bdaddr);
4346 ev.addr.type = bdaddr_type;
4347 ev.supported_flags = cpu_to_le32(supported_flags);
4348 ev.current_flags = cpu_to_le32(current_flags);
4349
4350 mgmt_event(MGMT_EV_DEVICE_FLAGS_CHANGED, hdev, &ev, sizeof(ev), sk);
4351}
4352
4353static int set_device_flags(struct sock *sk, struct hci_dev *hdev, void *data,
4354 u16 len)
4355{
4356 struct mgmt_cp_set_device_flags *cp = data;
4357 struct bdaddr_list_with_flags *br_params;
4358 struct hci_conn_params *params;
4359 u8 status = MGMT_STATUS_INVALID_PARAMS;
4360 u32 supported_flags = SUPPORTED_DEVICE_FLAGS();
4361 u32 current_flags = __le32_to_cpu(cp->current_flags);
4362
4363 bt_dev_dbg(hdev, "Set device flags %pMR (type 0x%x) = 0x%x",
4364 &cp->addr.bdaddr, cp->addr.type,
4365 __le32_to_cpu(current_flags));
4366
4367 if ((supported_flags | current_flags) != supported_flags) {
4368 bt_dev_warn(hdev, "Bad flag given (0x%x) vs supported (0x%0x)",
4369 current_flags, supported_flags);
4370 goto done;
4371 }
4372
Abhishek Pandit-Subedi3ca33e32020-06-19 17:10:24 -07004373 hci_dev_lock(hdev);
4374
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004375 if (cp->addr.type == BDADDR_BREDR) {
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08004376 br_params = hci_bdaddr_list_lookup_with_flags(&hdev->accept_list,
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004377 &cp->addr.bdaddr,
4378 cp->addr.type);
4379
4380 if (br_params) {
4381 br_params->current_flags = current_flags;
4382 status = MGMT_STATUS_SUCCESS;
4383 } else {
4384 bt_dev_warn(hdev, "No such BR/EDR device %pMR (0x%x)",
4385 &cp->addr.bdaddr, cp->addr.type);
4386 }
4387 } else {
4388 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
4389 le_addr_type(cp->addr.type));
4390 if (params) {
4391 params->current_flags = current_flags;
4392 status = MGMT_STATUS_SUCCESS;
4393 } else {
4394 bt_dev_warn(hdev, "No such LE device %pMR (0x%x)",
4395 &cp->addr.bdaddr,
4396 le_addr_type(cp->addr.type));
4397 }
4398 }
4399
4400done:
Abhishek Pandit-Subedi3ca33e32020-06-19 17:10:24 -07004401 hci_dev_unlock(hdev);
4402
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02004403 if (status == MGMT_STATUS_SUCCESS)
4404 device_flags_changed(sk, hdev, &cp->addr.bdaddr, cp->addr.type,
4405 supported_flags, current_flags);
4406
4407 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_FLAGS, status,
4408 &cp->addr, sizeof(cp->addr));
4409}
4410
Miao-chen Choub52729f2020-06-17 16:39:16 +02004411static void mgmt_adv_monitor_added(struct sock *sk, struct hci_dev *hdev,
4412 u16 handle)
4413{
4414 struct mgmt_ev_adv_monitor_added ev;
4415
4416 ev.monitor_handle = cpu_to_le16(handle);
4417
4418 mgmt_event(MGMT_EV_ADV_MONITOR_ADDED, hdev, &ev, sizeof(ev), sk);
4419}
4420
Archie Pusaka66bd0952021-01-22 16:36:13 +08004421void mgmt_adv_monitor_removed(struct hci_dev *hdev, u16 handle)
Miao-chen Choucdde92e2020-06-17 16:39:17 +02004422{
Archie Pusaka66bd0952021-01-22 16:36:13 +08004423 struct mgmt_ev_adv_monitor_removed ev;
4424 struct mgmt_pending_cmd *cmd;
4425 struct sock *sk_skip = NULL;
4426 struct mgmt_cp_remove_adv_monitor *cp;
4427
4428 cmd = pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev);
4429 if (cmd) {
4430 cp = cmd->param;
4431
4432 if (cp->monitor_handle)
4433 sk_skip = cmd->sk;
4434 }
Miao-chen Choucdde92e2020-06-17 16:39:17 +02004435
4436 ev.monitor_handle = cpu_to_le16(handle);
4437
Archie Pusaka66bd0952021-01-22 16:36:13 +08004438 mgmt_event(MGMT_EV_ADV_MONITOR_REMOVED, hdev, &ev, sizeof(ev), sk_skip);
Miao-chen Choucdde92e2020-06-17 16:39:17 +02004439}
4440
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004441static int read_adv_mon_features(struct sock *sk, struct hci_dev *hdev,
4442 void *data, u16 len)
4443{
4444 struct adv_monitor *monitor = NULL;
4445 struct mgmt_rp_read_adv_monitor_features *rp = NULL;
Peilin Yecafd4722020-09-09 03:25:51 -04004446 int handle, err;
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004447 size_t rp_size = 0;
4448 __u32 supported = 0;
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004449 __u32 enabled = 0;
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004450 __u16 num_handles = 0;
4451 __u16 handles[HCI_MAX_ADV_MONITOR_NUM_HANDLES];
4452
4453 BT_DBG("request for %s", hdev->name);
4454
4455 hci_dev_lock(hdev);
4456
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004457 if (msft_monitor_supported(hdev))
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004458 supported |= MGMT_ADV_MONITOR_FEATURE_MASK_OR_PATTERNS;
4459
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004460 idr_for_each_entry(&hdev->adv_monitors_idr, monitor, handle)
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004461 handles[num_handles++] = monitor->handle;
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004462
4463 hci_dev_unlock(hdev);
4464
4465 rp_size = sizeof(*rp) + (num_handles * sizeof(u16));
4466 rp = kmalloc(rp_size, GFP_KERNEL);
4467 if (!rp)
4468 return -ENOMEM;
4469
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004470 /* All supported features are currently enabled */
4471 enabled = supported;
4472
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004473 rp->supported_features = cpu_to_le32(supported);
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004474 rp->enabled_features = cpu_to_le32(enabled);
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004475 rp->max_num_handles = cpu_to_le16(HCI_MAX_ADV_MONITOR_NUM_HANDLES);
4476 rp->max_num_patterns = HCI_MAX_ADV_MONITOR_NUM_PATTERNS;
4477 rp->num_handles = cpu_to_le16(num_handles);
4478 if (num_handles)
4479 memcpy(&rp->handles, &handles, (num_handles * sizeof(u16)));
4480
Peilin Yecafd4722020-09-09 03:25:51 -04004481 err = mgmt_cmd_complete(sk, hdev->id,
4482 MGMT_OP_READ_ADV_MONITOR_FEATURES,
4483 MGMT_STATUS_SUCCESS, rp, rp_size);
4484
4485 kfree(rp);
4486
4487 return err;
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02004488}
4489
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004490int mgmt_add_adv_patterns_monitor_complete(struct hci_dev *hdev, u8 status)
Miao-chen Choub1395532020-06-17 16:39:14 +02004491{
Miao-chen Choub1395532020-06-17 16:39:14 +02004492 struct mgmt_rp_add_adv_patterns_monitor rp;
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004493 struct mgmt_pending_cmd *cmd;
4494 struct adv_monitor *monitor;
4495 int err = 0;
Miao-chen Choub1395532020-06-17 16:39:14 +02004496
4497 hci_dev_lock(hdev);
4498
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004499 cmd = pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI, hdev);
4500 if (!cmd) {
4501 cmd = pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR, hdev);
4502 if (!cmd)
4503 goto done;
4504 }
Miao-chen Choub52729f2020-06-17 16:39:16 +02004505
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004506 monitor = cmd->user_data;
4507 rp.monitor_handle = cpu_to_le16(monitor->handle);
Archie Pusakab4a221e2021-01-22 16:36:11 +08004508
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004509 if (!status) {
4510 mgmt_adv_monitor_added(cmd->sk, hdev, monitor->handle);
4511 hdev->adv_monitors_cnt++;
4512 if (monitor->state == ADV_MONITOR_STATE_NOT_REGISTERED)
4513 monitor->state = ADV_MONITOR_STATE_REGISTERED;
4514 hci_update_background_scan(hdev);
4515 }
4516
4517 err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
4518 mgmt_status(status), &rp, sizeof(rp));
4519 mgmt_pending_remove(cmd);
4520
4521done:
4522 hci_dev_unlock(hdev);
Kai Ye85d672842021-06-03 15:41:02 +08004523 bt_dev_dbg(hdev, "add monitor %d complete, status %u",
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004524 rp.monitor_handle, status);
4525
4526 return err;
4527}
4528
4529static int __add_adv_patterns_monitor(struct sock *sk, struct hci_dev *hdev,
4530 struct adv_monitor *m, u8 status,
4531 void *data, u16 len, u16 op)
4532{
4533 struct mgmt_rp_add_adv_patterns_monitor rp;
4534 struct mgmt_pending_cmd *cmd;
4535 int err;
4536 bool pending;
4537
4538 hci_dev_lock(hdev);
4539
4540 if (status)
4541 goto unlock;
4542
4543 if (pending_find(MGMT_OP_SET_LE, hdev) ||
4544 pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR, hdev) ||
4545 pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI, hdev) ||
4546 pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev)) {
4547 status = MGMT_STATUS_BUSY;
Miao-chen Choub1395532020-06-17 16:39:14 +02004548 goto unlock;
4549 }
4550
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004551 cmd = mgmt_pending_add(sk, op, hdev, data, len);
4552 if (!cmd) {
4553 status = MGMT_STATUS_NO_RESOURCES;
4554 goto unlock;
4555 }
4556
Howard Chungb1810fe2021-02-03 15:09:29 +08004557 cmd->user_data = m;
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004558 pending = hci_add_adv_monitor(hdev, m, &err);
4559 if (err) {
4560 if (err == -ENOSPC || err == -ENOMEM)
4561 status = MGMT_STATUS_NO_RESOURCES;
4562 else if (err == -EINVAL)
4563 status = MGMT_STATUS_INVALID_PARAMS;
4564 else
4565 status = MGMT_STATUS_FAILED;
4566
4567 mgmt_pending_remove(cmd);
4568 goto unlock;
4569 }
4570
4571 if (!pending) {
4572 mgmt_pending_remove(cmd);
4573 rp.monitor_handle = cpu_to_le16(m->handle);
Miao-chen Choub52729f2020-06-17 16:39:16 +02004574 mgmt_adv_monitor_added(sk, hdev, m->handle);
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004575 m->state = ADV_MONITOR_STATE_REGISTERED;
4576 hdev->adv_monitors_cnt++;
4577
4578 hci_dev_unlock(hdev);
4579 return mgmt_cmd_complete(sk, hdev->id, op, MGMT_STATUS_SUCCESS,
4580 &rp, sizeof(rp));
4581 }
Miao-chen Choub52729f2020-06-17 16:39:16 +02004582
Miao-chen Choub1395532020-06-17 16:39:14 +02004583 hci_dev_unlock(hdev);
4584
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004585 return 0;
Miao-chen Choub1395532020-06-17 16:39:14 +02004586
4587unlock:
Archie Pusaka66bd0952021-01-22 16:36:13 +08004588 hci_free_adv_monitor(hdev, m);
Miao-chen Choub1395532020-06-17 16:39:14 +02004589 hci_dev_unlock(hdev);
Archie Pusakab4a221e2021-01-22 16:36:11 +08004590 return mgmt_cmd_status(sk, hdev->id, op, status);
4591}
4592
4593static void parse_adv_monitor_rssi(struct adv_monitor *m,
4594 struct mgmt_adv_rssi_thresholds *rssi)
4595{
4596 if (rssi) {
4597 m->rssi.low_threshold = rssi->low_threshold;
4598 m->rssi.low_threshold_timeout =
4599 __le16_to_cpu(rssi->low_threshold_timeout);
4600 m->rssi.high_threshold = rssi->high_threshold;
4601 m->rssi.high_threshold_timeout =
4602 __le16_to_cpu(rssi->high_threshold_timeout);
4603 m->rssi.sampling_period = rssi->sampling_period;
4604 } else {
4605 /* Default values. These numbers are the least constricting
4606 * parameters for MSFT API to work, so it behaves as if there
4607 * are no rssi parameter to consider. May need to be changed
4608 * if other API are to be supported.
4609 */
4610 m->rssi.low_threshold = -127;
4611 m->rssi.low_threshold_timeout = 60;
4612 m->rssi.high_threshold = -127;
4613 m->rssi.high_threshold_timeout = 0;
4614 m->rssi.sampling_period = 0;
4615 }
4616}
4617
4618static u8 parse_adv_monitor_pattern(struct adv_monitor *m, u8 pattern_count,
4619 struct mgmt_adv_pattern *patterns)
4620{
4621 u8 offset = 0, length = 0;
4622 struct adv_pattern *p = NULL;
Archie Pusakab4a221e2021-01-22 16:36:11 +08004623 int i;
4624
4625 for (i = 0; i < pattern_count; i++) {
Archie Pusakab4a221e2021-01-22 16:36:11 +08004626 offset = patterns[i].offset;
4627 length = patterns[i].length;
4628 if (offset >= HCI_MAX_AD_LENGTH ||
4629 length > HCI_MAX_AD_LENGTH ||
4630 (offset + length) > HCI_MAX_AD_LENGTH)
4631 return MGMT_STATUS_INVALID_PARAMS;
4632
4633 p = kmalloc(sizeof(*p), GFP_KERNEL);
4634 if (!p)
4635 return MGMT_STATUS_NO_RESOURCES;
4636
4637 p->ad_type = patterns[i].ad_type;
4638 p->offset = patterns[i].offset;
4639 p->length = patterns[i].length;
4640 memcpy(p->value, patterns[i].value, p->length);
4641
4642 INIT_LIST_HEAD(&p->list);
4643 list_add(&p->list, &m->patterns);
4644 }
4645
Archie Pusakab4a221e2021-01-22 16:36:11 +08004646 return MGMT_STATUS_SUCCESS;
4647}
4648
4649static int add_adv_patterns_monitor(struct sock *sk, struct hci_dev *hdev,
4650 void *data, u16 len)
4651{
4652 struct mgmt_cp_add_adv_patterns_monitor *cp = data;
4653 struct adv_monitor *m = NULL;
4654 u8 status = MGMT_STATUS_SUCCESS;
4655 size_t expected_size = sizeof(*cp);
4656
4657 BT_DBG("request for %s", hdev->name);
4658
4659 if (len <= sizeof(*cp)) {
4660 status = MGMT_STATUS_INVALID_PARAMS;
4661 goto done;
4662 }
4663
4664 expected_size += cp->pattern_count * sizeof(struct mgmt_adv_pattern);
4665 if (len != expected_size) {
4666 status = MGMT_STATUS_INVALID_PARAMS;
4667 goto done;
4668 }
4669
4670 m = kzalloc(sizeof(*m), GFP_KERNEL);
4671 if (!m) {
4672 status = MGMT_STATUS_NO_RESOURCES;
4673 goto done;
4674 }
4675
4676 INIT_LIST_HEAD(&m->patterns);
4677
4678 parse_adv_monitor_rssi(m, NULL);
4679 status = parse_adv_monitor_pattern(m, cp->pattern_count, cp->patterns);
4680
4681done:
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004682 return __add_adv_patterns_monitor(sk, hdev, m, status, data, len,
Archie Pusakab4a221e2021-01-22 16:36:11 +08004683 MGMT_OP_ADD_ADV_PATTERNS_MONITOR);
4684}
4685
4686static int add_adv_patterns_monitor_rssi(struct sock *sk, struct hci_dev *hdev,
4687 void *data, u16 len)
4688{
4689 struct mgmt_cp_add_adv_patterns_monitor_rssi *cp = data;
4690 struct adv_monitor *m = NULL;
4691 u8 status = MGMT_STATUS_SUCCESS;
4692 size_t expected_size = sizeof(*cp);
4693
4694 BT_DBG("request for %s", hdev->name);
4695
4696 if (len <= sizeof(*cp)) {
4697 status = MGMT_STATUS_INVALID_PARAMS;
4698 goto done;
4699 }
4700
4701 expected_size += cp->pattern_count * sizeof(struct mgmt_adv_pattern);
4702 if (len != expected_size) {
4703 status = MGMT_STATUS_INVALID_PARAMS;
4704 goto done;
4705 }
4706
4707 m = kzalloc(sizeof(*m), GFP_KERNEL);
4708 if (!m) {
4709 status = MGMT_STATUS_NO_RESOURCES;
4710 goto done;
4711 }
4712
4713 INIT_LIST_HEAD(&m->patterns);
4714
4715 parse_adv_monitor_rssi(m, &cp->rssi);
4716 status = parse_adv_monitor_pattern(m, cp->pattern_count, cp->patterns);
4717
4718done:
Archie Pusakaa2a4ded2021-01-22 16:36:12 +08004719 return __add_adv_patterns_monitor(sk, hdev, m, status, data, len,
Archie Pusakab4a221e2021-01-22 16:36:11 +08004720 MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI);
Miao-chen Choub1395532020-06-17 16:39:14 +02004721}
4722
Archie Pusaka66bd0952021-01-22 16:36:13 +08004723int mgmt_remove_adv_monitor_complete(struct hci_dev *hdev, u8 status)
4724{
4725 struct mgmt_rp_remove_adv_monitor rp;
4726 struct mgmt_cp_remove_adv_monitor *cp;
4727 struct mgmt_pending_cmd *cmd;
4728 int err = 0;
4729
4730 hci_dev_lock(hdev);
4731
4732 cmd = pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev);
4733 if (!cmd)
4734 goto done;
4735
4736 cp = cmd->param;
4737 rp.monitor_handle = cp->monitor_handle;
4738
4739 if (!status)
4740 hci_update_background_scan(hdev);
4741
4742 err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
4743 mgmt_status(status), &rp, sizeof(rp));
4744 mgmt_pending_remove(cmd);
4745
4746done:
4747 hci_dev_unlock(hdev);
Kai Ye85d672842021-06-03 15:41:02 +08004748 bt_dev_dbg(hdev, "remove monitor %d complete, status %u",
Archie Pusaka66bd0952021-01-22 16:36:13 +08004749 rp.monitor_handle, status);
4750
4751 return err;
4752}
4753
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004754static int remove_adv_monitor(struct sock *sk, struct hci_dev *hdev,
4755 void *data, u16 len)
4756{
4757 struct mgmt_cp_remove_adv_monitor *cp = data;
4758 struct mgmt_rp_remove_adv_monitor rp;
Archie Pusaka66bd0952021-01-22 16:36:13 +08004759 struct mgmt_pending_cmd *cmd;
4760 u16 handle = __le16_to_cpu(cp->monitor_handle);
4761 int err, status;
4762 bool pending;
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004763
4764 BT_DBG("request for %s", hdev->name);
Archie Pusaka66bd0952021-01-22 16:36:13 +08004765 rp.monitor_handle = cp->monitor_handle;
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004766
4767 hci_dev_lock(hdev);
4768
Archie Pusaka66bd0952021-01-22 16:36:13 +08004769 if (pending_find(MGMT_OP_SET_LE, hdev) ||
4770 pending_find(MGMT_OP_REMOVE_ADV_MONITOR, hdev) ||
4771 pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR, hdev) ||
4772 pending_find(MGMT_OP_ADD_ADV_PATTERNS_MONITOR_RSSI, hdev)) {
4773 status = MGMT_STATUS_BUSY;
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004774 goto unlock;
4775 }
4776
Archie Pusaka66bd0952021-01-22 16:36:13 +08004777 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_ADV_MONITOR, hdev, data, len);
4778 if (!cmd) {
4779 status = MGMT_STATUS_NO_RESOURCES;
4780 goto unlock;
4781 }
4782
4783 if (handle)
4784 pending = hci_remove_single_adv_monitor(hdev, handle, &err);
4785 else
4786 pending = hci_remove_all_adv_monitor(hdev, &err);
4787
4788 if (err) {
4789 mgmt_pending_remove(cmd);
4790
4791 if (err == -ENOENT)
4792 status = MGMT_STATUS_INVALID_INDEX;
4793 else
4794 status = MGMT_STATUS_FAILED;
4795
4796 goto unlock;
4797 }
4798
4799 /* monitor can be removed without forwarding request to controller */
4800 if (!pending) {
4801 mgmt_pending_remove(cmd);
4802 hci_dev_unlock(hdev);
4803
4804 return mgmt_cmd_complete(sk, hdev->id,
4805 MGMT_OP_REMOVE_ADV_MONITOR,
4806 MGMT_STATUS_SUCCESS,
4807 &rp, sizeof(rp));
4808 }
Miao-chen Choucdde92e2020-06-17 16:39:17 +02004809
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004810 hci_dev_unlock(hdev);
Archie Pusaka66bd0952021-01-22 16:36:13 +08004811 return 0;
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004812
4813unlock:
4814 hci_dev_unlock(hdev);
Archie Pusaka66bd0952021-01-22 16:36:13 +08004815 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADV_MONITOR,
4816 status);
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02004817}
4818
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004819static void read_local_oob_data_complete(struct hci_dev *hdev, u8 status,
4820 u16 opcode, struct sk_buff *skb)
4821{
4822 struct mgmt_rp_read_local_oob_data mgmt_rp;
4823 size_t rp_size = sizeof(mgmt_rp);
4824 struct mgmt_pending_cmd *cmd;
4825
Marcel Holtmann181d6952020-05-06 09:57:47 +02004826 bt_dev_dbg(hdev, "status %u", status);
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004827
4828 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
4829 if (!cmd)
4830 return;
4831
4832 if (status || !skb) {
4833 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4834 status ? mgmt_status(status) : MGMT_STATUS_FAILED);
4835 goto remove;
4836 }
4837
4838 memset(&mgmt_rp, 0, sizeof(mgmt_rp));
4839
4840 if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
4841 struct hci_rp_read_local_oob_data *rp = (void *) skb->data;
4842
4843 if (skb->len < sizeof(*rp)) {
4844 mgmt_cmd_status(cmd->sk, hdev->id,
4845 MGMT_OP_READ_LOCAL_OOB_DATA,
4846 MGMT_STATUS_FAILED);
4847 goto remove;
4848 }
4849
4850 memcpy(mgmt_rp.hash192, rp->hash, sizeof(rp->hash));
4851 memcpy(mgmt_rp.rand192, rp->rand, sizeof(rp->rand));
4852
4853 rp_size -= sizeof(mgmt_rp.hash256) + sizeof(mgmt_rp.rand256);
4854 } else {
4855 struct hci_rp_read_local_oob_ext_data *rp = (void *) skb->data;
4856
4857 if (skb->len < sizeof(*rp)) {
4858 mgmt_cmd_status(cmd->sk, hdev->id,
4859 MGMT_OP_READ_LOCAL_OOB_DATA,
4860 MGMT_STATUS_FAILED);
4861 goto remove;
4862 }
4863
4864 memcpy(mgmt_rp.hash192, rp->hash192, sizeof(rp->hash192));
4865 memcpy(mgmt_rp.rand192, rp->rand192, sizeof(rp->rand192));
4866
4867 memcpy(mgmt_rp.hash256, rp->hash256, sizeof(rp->hash256));
4868 memcpy(mgmt_rp.rand256, rp->rand256, sizeof(rp->rand256));
4869 }
4870
4871 mgmt_cmd_complete(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4872 MGMT_STATUS_SUCCESS, &mgmt_rp, rp_size);
4873
4874remove:
4875 mgmt_pending_remove(cmd);
4876}
4877
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004878static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004879 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01004880{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02004881 struct mgmt_pending_cmd *cmd;
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004882 struct hci_request req;
Szymon Jancc35938b2011-03-22 13:12:21 +01004883 int err;
4884
Marcel Holtmann181d6952020-05-06 09:57:47 +02004885 bt_dev_dbg(hdev, "sock %p", sk);
Szymon Jancc35938b2011-03-22 13:12:21 +01004886
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004887 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01004888
Johan Hedberg4b34ee782012-02-21 14:13:02 +02004889 if (!hdev_is_powered(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004890 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4891 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01004892 goto unlock;
4893 }
4894
Andre Guedes9a1a1992012-07-24 15:03:48 -03004895 if (!lmp_ssp_capable(hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004896 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4897 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01004898 goto unlock;
4899 }
4900
Johan Hedberg333ae952015-03-17 13:48:47 +02004901 if (pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02004902 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
4903 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01004904 goto unlock;
4905 }
4906
Johan Hedberg2e58ef32011-11-08 20:40:15 +02004907 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01004908 if (!cmd) {
4909 err = -ENOMEM;
4910 goto unlock;
4911 }
4912
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004913 hci_req_init(&req, hdev);
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08004914
Johan Hedberg1b9441f2015-04-02 13:41:13 +03004915 if (bredr_sc_enabled(hdev))
4916 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
4917 else
4918 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
4919
4920 err = hci_req_run_skb(&req, read_local_oob_data_complete);
Szymon Jancc35938b2011-03-22 13:12:21 +01004921 if (err < 0)
4922 mgmt_pending_remove(cmd);
4923
4924unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004925 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01004926 return err;
4927}
4928
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004929static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004930 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01004931{
Johan Hedberg5d57e792015-01-23 10:10:38 +02004932 struct mgmt_addr_info *addr = data;
Szymon Janc2763eda2011-03-22 13:12:22 +01004933 int err;
4934
Marcel Holtmann181d6952020-05-06 09:57:47 +02004935 bt_dev_dbg(hdev, "sock %p", sk);
Szymon Janc2763eda2011-03-22 13:12:22 +01004936
Johan Hedberg5d57e792015-01-23 10:10:38 +02004937 if (!bdaddr_type_is_valid(addr->type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004938 return mgmt_cmd_complete(sk, hdev->id,
4939 MGMT_OP_ADD_REMOTE_OOB_DATA,
4940 MGMT_STATUS_INVALID_PARAMS,
4941 addr, sizeof(*addr));
Johan Hedberg5d57e792015-01-23 10:10:38 +02004942
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004943 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01004944
Marcel Holtmannec109112014-01-10 02:07:30 -08004945 if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
4946 struct mgmt_cp_add_remote_oob_data *cp = data;
4947 u8 status;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02004948
Johan Hedbergc19a4952014-11-17 20:52:19 +02004949 if (cp->addr.type != BDADDR_BREDR) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004950 err = mgmt_cmd_complete(sk, hdev->id,
4951 MGMT_OP_ADD_REMOTE_OOB_DATA,
4952 MGMT_STATUS_INVALID_PARAMS,
4953 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02004954 goto unlock;
4955 }
4956
Marcel Holtmannec109112014-01-10 02:07:30 -08004957 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg6928a922014-10-26 20:46:09 +01004958 cp->addr.type, cp->hash,
4959 cp->rand, NULL, NULL);
Marcel Holtmannec109112014-01-10 02:07:30 -08004960 if (err < 0)
4961 status = MGMT_STATUS_FAILED;
4962 else
4963 status = MGMT_STATUS_SUCCESS;
4964
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004965 err = mgmt_cmd_complete(sk, hdev->id,
4966 MGMT_OP_ADD_REMOTE_OOB_DATA, status,
4967 &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08004968 } else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
4969 struct mgmt_cp_add_remote_oob_ext_data *cp = data;
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004970 u8 *rand192, *hash192, *rand256, *hash256;
Marcel Holtmannec109112014-01-10 02:07:30 -08004971 u8 status;
4972
Johan Hedberg86df9202014-10-26 20:52:27 +01004973 if (bdaddr_type_is_le(cp->addr.type)) {
Johan Hedbergd25b78e2015-01-27 12:55:52 +02004974 /* Enforce zero-valued 192-bit parameters as
4975 * long as legacy SMP OOB isn't implemented.
4976 */
4977 if (memcmp(cp->rand192, ZERO_KEY, 16) ||
4978 memcmp(cp->hash192, ZERO_KEY, 16)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02004979 err = mgmt_cmd_complete(sk, hdev->id,
4980 MGMT_OP_ADD_REMOTE_OOB_DATA,
4981 MGMT_STATUS_INVALID_PARAMS,
4982 addr, sizeof(*addr));
Johan Hedbergd25b78e2015-01-27 12:55:52 +02004983 goto unlock;
4984 }
4985
Johan Hedberg86df9202014-10-26 20:52:27 +01004986 rand192 = NULL;
4987 hash192 = NULL;
4988 } else {
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08004989 /* In case one of the P-192 values is set to zero,
4990 * then just disable OOB data for P-192.
4991 */
4992 if (!memcmp(cp->rand192, ZERO_KEY, 16) ||
4993 !memcmp(cp->hash192, ZERO_KEY, 16)) {
4994 rand192 = NULL;
4995 hash192 = NULL;
4996 } else {
4997 rand192 = cp->rand192;
4998 hash192 = cp->hash192;
4999 }
5000 }
5001
5002 /* In case one of the P-256 values is set to zero, then just
5003 * disable OOB data for P-256.
5004 */
5005 if (!memcmp(cp->rand256, ZERO_KEY, 16) ||
5006 !memcmp(cp->hash256, ZERO_KEY, 16)) {
5007 rand256 = NULL;
5008 hash256 = NULL;
5009 } else {
5010 rand256 = cp->rand256;
5011 hash256 = cp->hash256;
Johan Hedberg86df9202014-10-26 20:52:27 +01005012 }
5013
Johan Hedberg81328d5c2014-10-26 20:33:47 +01005014 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg86df9202014-10-26 20:52:27 +01005015 cp->addr.type, hash192, rand192,
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08005016 hash256, rand256);
Marcel Holtmannec109112014-01-10 02:07:30 -08005017 if (err < 0)
5018 status = MGMT_STATUS_FAILED;
5019 else
5020 status = MGMT_STATUS_SUCCESS;
5021
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005022 err = mgmt_cmd_complete(sk, hdev->id,
5023 MGMT_OP_ADD_REMOTE_OOB_DATA,
5024 status, &cp->addr, sizeof(cp->addr));
Marcel Holtmannec109112014-01-10 02:07:30 -08005025 } else {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01005026 bt_dev_err(hdev, "add_remote_oob_data: invalid len of %u bytes",
5027 len);
Johan Hedberga69e8372015-03-06 21:08:53 +02005028 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
5029 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannec109112014-01-10 02:07:30 -08005030 }
Szymon Janc2763eda2011-03-22 13:12:22 +01005031
Johan Hedbergc19a4952014-11-17 20:52:19 +02005032unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005033 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01005034 return err;
5035}
5036
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005037static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03005038 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01005039{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005040 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02005041 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01005042 int err;
5043
Marcel Holtmann181d6952020-05-06 09:57:47 +02005044 bt_dev_dbg(hdev, "sock %p", sk);
Szymon Janc2763eda2011-03-22 13:12:22 +01005045
Johan Hedbergc19a4952014-11-17 20:52:19 +02005046 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005047 return mgmt_cmd_complete(sk, hdev->id,
5048 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
5049 MGMT_STATUS_INVALID_PARAMS,
5050 &cp->addr, sizeof(cp->addr));
Johan Hedbergc19a4952014-11-17 20:52:19 +02005051
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005052 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01005053
Johan Hedbergeedbd582014-11-15 09:34:23 +02005054 if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
5055 hci_remote_oob_data_clear(hdev);
5056 status = MGMT_STATUS_SUCCESS;
5057 goto done;
5058 }
5059
Johan Hedberg6928a922014-10-26 20:46:09 +01005060 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
Szymon Janc2763eda2011-03-22 13:12:22 +01005061 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02005062 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01005063 else
Szymon Janca6785be2012-12-13 15:11:21 +01005064 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02005065
Johan Hedbergeedbd582014-11-15 09:34:23 +02005066done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005067 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
5068 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01005069
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005070 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01005071 return err;
5072}
5073
Johan Hedberge68f0722015-11-11 08:30:30 +02005074void mgmt_start_discovery_complete(struct hci_dev *hdev, u8 status)
Andre Guedes7c307722013-04-30 15:29:28 -03005075{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005076 struct mgmt_pending_cmd *cmd;
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01005077
Kai Ye85d672842021-06-03 15:41:02 +08005078 bt_dev_dbg(hdev, "status %u", status);
Andre Guedes7c307722013-04-30 15:29:28 -03005079
Marcel Holtmann11e6e252014-12-04 11:36:35 +01005080 hci_dev_lock(hdev);
5081
Johan Hedberg333ae952015-03-17 13:48:47 +02005082 cmd = pending_find(MGMT_OP_START_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005083 if (!cmd)
Johan Hedberg333ae952015-03-17 13:48:47 +02005084 cmd = pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005085
Johan Hedberg78b781c2016-01-05 13:19:32 +02005086 if (!cmd)
5087 cmd = pending_find(MGMT_OP_START_LIMITED_DISCOVERY, hdev);
5088
Marcel Holtmann11e6e252014-12-04 11:36:35 +01005089 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02005090 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01005091 mgmt_pending_remove(cmd);
Andre Guedes7c307722013-04-30 15:29:28 -03005092 }
5093
Marcel Holtmann11e6e252014-12-04 11:36:35 +01005094 hci_dev_unlock(hdev);
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07005095
5096 /* Handle suspend notifier */
5097 if (test_and_clear_bit(SUSPEND_UNPAUSE_DISCOVERY,
5098 hdev->suspend_tasks)) {
5099 bt_dev_dbg(hdev, "Unpaused discovery");
5100 wake_up(&hdev->suspend_wait_q);
5101 }
Andre Guedes7c307722013-04-30 15:29:28 -03005102}
5103
Johan Hedberg591752a2015-11-11 08:11:24 +02005104static bool discovery_type_is_valid(struct hci_dev *hdev, uint8_t type,
5105 uint8_t *mgmt_status)
5106{
5107 switch (type) {
5108 case DISCOV_TYPE_LE:
5109 *mgmt_status = mgmt_le_support(hdev);
5110 if (*mgmt_status)
5111 return false;
5112 break;
5113 case DISCOV_TYPE_INTERLEAVED:
5114 *mgmt_status = mgmt_le_support(hdev);
5115 if (*mgmt_status)
5116 return false;
Gustavo A. R. Silva19186c72020-07-08 15:18:23 -05005117 fallthrough;
Johan Hedberg591752a2015-11-11 08:11:24 +02005118 case DISCOV_TYPE_BREDR:
5119 *mgmt_status = mgmt_bredr_support(hdev);
5120 if (*mgmt_status)
5121 return false;
5122 break;
5123 default:
5124 *mgmt_status = MGMT_STATUS_INVALID_PARAMS;
5125 return false;
5126 }
5127
5128 return true;
5129}
5130
Johan Hedberg78b781c2016-01-05 13:19:32 +02005131static int start_discovery_internal(struct sock *sk, struct hci_dev *hdev,
5132 u16 op, void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04005133{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005134 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005135 struct mgmt_pending_cmd *cmd;
Marcel Holtmann80190442014-12-04 11:36:36 +01005136 u8 status;
Johan Hedberg14a53662011-04-27 10:29:56 -04005137 int err;
5138
Marcel Holtmann181d6952020-05-06 09:57:47 +02005139 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg14a53662011-04-27 10:29:56 -04005140
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005141 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04005142
Johan Hedberg4b34ee782012-02-21 14:13:02 +02005143 if (!hdev_is_powered(hdev)) {
Johan Hedberg78b781c2016-01-05 13:19:32 +02005144 err = mgmt_cmd_complete(sk, hdev->id, op,
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005145 MGMT_STATUS_NOT_POWERED,
5146 &cp->type, sizeof(cp->type));
Johan Hedbergbd2d1332011-11-07 23:13:37 +02005147 goto failed;
5148 }
5149
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01005150 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005151 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg78b781c2016-01-05 13:19:32 +02005152 err = mgmt_cmd_complete(sk, hdev->id, op, MGMT_STATUS_BUSY,
5153 &cp->type, sizeof(cp->type));
Andre Guedes642be6c2012-03-21 00:03:37 -03005154 goto failed;
5155 }
5156
Johan Hedberg591752a2015-11-11 08:11:24 +02005157 if (!discovery_type_is_valid(hdev, cp->type, &status)) {
Johan Hedberg78b781c2016-01-05 13:19:32 +02005158 err = mgmt_cmd_complete(sk, hdev->id, op, status,
5159 &cp->type, sizeof(cp->type));
Johan Hedberg591752a2015-11-11 08:11:24 +02005160 goto failed;
5161 }
5162
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07005163 /* Can't start discovery when it is paused */
5164 if (hdev->discovery_paused) {
5165 err = mgmt_cmd_complete(sk, hdev->id, op, MGMT_STATUS_BUSY,
5166 &cp->type, sizeof(cp->type));
5167 goto failed;
5168 }
5169
Marcel Holtmann22078802014-12-05 11:45:22 +01005170 /* Clear the discovery filter first to free any previously
5171 * allocated memory for the UUID list.
5172 */
5173 hci_discovery_filter_clear(hdev);
5174
Andre Guedes4aab14e2012-02-17 20:39:36 -03005175 hdev->discovery.type = cp->type;
Marcel Holtmannda25cf62014-12-05 13:03:35 +01005176 hdev->discovery.report_invalid_rssi = false;
Johan Hedberg78b781c2016-01-05 13:19:32 +02005177 if (op == MGMT_OP_START_LIMITED_DISCOVERY)
5178 hdev->discovery.limited = true;
5179 else
5180 hdev->discovery.limited = false;
Andre Guedes4aab14e2012-02-17 20:39:36 -03005181
Johan Hedberg78b781c2016-01-05 13:19:32 +02005182 cmd = mgmt_pending_add(sk, op, hdev, data, len);
Johan Hedberge68f0722015-11-11 08:30:30 +02005183 if (!cmd) {
5184 err = -ENOMEM;
Johan Hedberg04106752013-01-10 14:54:09 +02005185 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03005186 }
Andre Guedes3fd24152012-02-03 17:48:01 -03005187
Johan Hedberge68f0722015-11-11 08:30:30 +02005188 cmd->cmd_complete = generic_cmd_complete;
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01005189
5190 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberge68f0722015-11-11 08:30:30 +02005191 queue_work(hdev->req_workqueue, &hdev->discov_update);
5192 err = 0;
Johan Hedberg14a53662011-04-27 10:29:56 -04005193
5194failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005195 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04005196 return err;
5197}
5198
Johan Hedberg78b781c2016-01-05 13:19:32 +02005199static int start_discovery(struct sock *sk, struct hci_dev *hdev,
5200 void *data, u16 len)
5201{
5202 return start_discovery_internal(sk, hdev, MGMT_OP_START_DISCOVERY,
5203 data, len);
5204}
5205
5206static int start_limited_discovery(struct sock *sk, struct hci_dev *hdev,
5207 void *data, u16 len)
5208{
5209 return start_discovery_internal(sk, hdev,
5210 MGMT_OP_START_LIMITED_DISCOVERY,
5211 data, len);
5212}
5213
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005214static int service_discovery_cmd_complete(struct mgmt_pending_cmd *cmd,
5215 u8 status)
Andre Guedes1183fdc2013-04-30 15:29:35 -03005216{
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005217 return mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
5218 cmd->param, 1);
Johan Hedberg2922a942014-12-05 13:36:06 +02005219}
5220
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005221static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
5222 void *data, u16 len)
5223{
5224 struct mgmt_cp_start_service_discovery *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005225 struct mgmt_pending_cmd *cmd;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005226 const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
5227 u16 uuid_count, expected_len;
5228 u8 status;
Andre Guedes1183fdc2013-04-30 15:29:35 -03005229 int err;
5230
Marcel Holtmann181d6952020-05-06 09:57:47 +02005231 bt_dev_dbg(hdev, "sock %p", sk);
Andre Guedes1183fdc2013-04-30 15:29:35 -03005232
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005233 hci_dev_lock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03005234
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005235 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005236 err = mgmt_cmd_complete(sk, hdev->id,
5237 MGMT_OP_START_SERVICE_DISCOVERY,
5238 MGMT_STATUS_NOT_POWERED,
5239 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005240 goto failed;
5241 }
5242
5243 if (hdev->discovery.state != DISCOVERY_STOPPED ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005244 hci_dev_test_flag(hdev, HCI_PERIODIC_INQ)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005245 err = mgmt_cmd_complete(sk, hdev->id,
5246 MGMT_OP_START_SERVICE_DISCOVERY,
5247 MGMT_STATUS_BUSY, &cp->type,
5248 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005249 goto failed;
5250 }
5251
Abhishek Pandit-Subedi36211f72020-12-17 15:04:08 -08005252 if (hdev->discovery_paused) {
5253 err = mgmt_cmd_complete(sk, hdev->id,
5254 MGMT_OP_START_SERVICE_DISCOVERY,
5255 MGMT_STATUS_BUSY, &cp->type,
5256 sizeof(cp->type));
5257 goto failed;
5258 }
5259
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005260 uuid_count = __le16_to_cpu(cp->uuid_count);
5261 if (uuid_count > max_uuid_count) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01005262 bt_dev_err(hdev, "service_discovery: too big uuid_count value %u",
5263 uuid_count);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005264 err = mgmt_cmd_complete(sk, hdev->id,
5265 MGMT_OP_START_SERVICE_DISCOVERY,
5266 MGMT_STATUS_INVALID_PARAMS, &cp->type,
5267 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005268 goto failed;
5269 }
5270
5271 expected_len = sizeof(*cp) + uuid_count * 16;
5272 if (expected_len != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01005273 bt_dev_err(hdev, "service_discovery: expected %u bytes, got %u bytes",
5274 expected_len, len);
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005275 err = mgmt_cmd_complete(sk, hdev->id,
5276 MGMT_OP_START_SERVICE_DISCOVERY,
5277 MGMT_STATUS_INVALID_PARAMS, &cp->type,
5278 sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005279 goto failed;
5280 }
5281
Johan Hedberg591752a2015-11-11 08:11:24 +02005282 if (!discovery_type_is_valid(hdev, cp->type, &status)) {
5283 err = mgmt_cmd_complete(sk, hdev->id,
5284 MGMT_OP_START_SERVICE_DISCOVERY,
5285 status, &cp->type, sizeof(cp->type));
5286 goto failed;
5287 }
5288
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005289 cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
Johan Hedberg2922a942014-12-05 13:36:06 +02005290 hdev, data, len);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005291 if (!cmd) {
5292 err = -ENOMEM;
5293 goto failed;
5294 }
5295
Johan Hedberg2922a942014-12-05 13:36:06 +02005296 cmd->cmd_complete = service_discovery_cmd_complete;
5297
Marcel Holtmann22078802014-12-05 11:45:22 +01005298 /* Clear the discovery filter first to free any previously
5299 * allocated memory for the UUID list.
5300 */
5301 hci_discovery_filter_clear(hdev);
5302
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08005303 hdev->discovery.result_filtering = true;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005304 hdev->discovery.type = cp->type;
5305 hdev->discovery.rssi = cp->rssi;
5306 hdev->discovery.uuid_count = uuid_count;
5307
5308 if (uuid_count > 0) {
5309 hdev->discovery.uuids = kmemdup(cp->uuids, uuid_count * 16,
5310 GFP_KERNEL);
5311 if (!hdev->discovery.uuids) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005312 err = mgmt_cmd_complete(sk, hdev->id,
5313 MGMT_OP_START_SERVICE_DISCOVERY,
5314 MGMT_STATUS_FAILED,
5315 &cp->type, sizeof(cp->type));
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005316 mgmt_pending_remove(cmd);
5317 goto failed;
5318 }
5319 }
5320
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005321 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberge68f0722015-11-11 08:30:30 +02005322 queue_work(hdev->req_workqueue, &hdev->discov_update);
5323 err = 0;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01005324
5325failed:
5326 hci_dev_unlock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03005327 return err;
5328}
5329
Johan Hedberg2154d3f2015-11-11 08:30:45 +02005330void mgmt_stop_discovery_complete(struct hci_dev *hdev, u8 status)
Andre Guedes0e05bba2013-04-30 15:29:33 -03005331{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005332 struct mgmt_pending_cmd *cmd;
Marcel Holtmann11e6e252014-12-04 11:36:35 +01005333
Kai Ye85d672842021-06-03 15:41:02 +08005334 bt_dev_dbg(hdev, "status %u", status);
Andre Guedes0e05bba2013-04-30 15:29:33 -03005335
5336 hci_dev_lock(hdev);
5337
Johan Hedberg333ae952015-03-17 13:48:47 +02005338 cmd = pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01005339 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02005340 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01005341 mgmt_pending_remove(cmd);
Andre Guedes0e05bba2013-04-30 15:29:33 -03005342 }
5343
Andre Guedes0e05bba2013-04-30 15:29:33 -03005344 hci_dev_unlock(hdev);
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07005345
5346 /* Handle suspend notifier */
5347 if (test_and_clear_bit(SUSPEND_PAUSE_DISCOVERY, hdev->suspend_tasks)) {
5348 bt_dev_dbg(hdev, "Paused discovery");
5349 wake_up(&hdev->suspend_wait_q);
5350 }
Andre Guedes0e05bba2013-04-30 15:29:33 -03005351}
5352
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005353static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005354 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04005355{
Johan Hedbergd9306502012-02-20 23:25:18 +02005356 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005357 struct mgmt_pending_cmd *cmd;
Johan Hedberg14a53662011-04-27 10:29:56 -04005358 int err;
5359
Marcel Holtmann181d6952020-05-06 09:57:47 +02005360 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg14a53662011-04-27 10:29:56 -04005361
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005362 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04005363
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005364 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005365 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
5366 MGMT_STATUS_REJECTED, &mgmt_cp->type,
5367 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02005368 goto unlock;
5369 }
5370
5371 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005372 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
5373 MGMT_STATUS_INVALID_PARAMS,
5374 &mgmt_cp->type, sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005375 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02005376 }
5377
Johan Hedberg2922a942014-12-05 13:36:06 +02005378 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04005379 if (!cmd) {
5380 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005381 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04005382 }
5383
Johan Hedberg2922a942014-12-05 13:36:06 +02005384 cmd->cmd_complete = generic_cmd_complete;
5385
Johan Hedberg2154d3f2015-11-11 08:30:45 +02005386 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
5387 queue_work(hdev->req_workqueue, &hdev->discov_update);
5388 err = 0;
Johan Hedberg14a53662011-04-27 10:29:56 -04005389
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005390unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005391 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04005392 return err;
5393}
5394
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005395static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005396 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02005397{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005398 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02005399 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02005400 int err;
5401
Marcel Holtmann181d6952020-05-06 09:57:47 +02005402 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg561aafb2012-01-04 13:31:59 +02005403
Johan Hedberg561aafb2012-01-04 13:31:59 +02005404 hci_dev_lock(hdev);
5405
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005406 if (!hci_discovery_active(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005407 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
5408 MGMT_STATUS_FAILED, &cp->addr,
5409 sizeof(cp->addr));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02005410 goto failed;
5411 }
5412
Johan Hedberga198e7b2012-02-17 14:27:06 +02005413 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02005414 if (!e) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005415 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
5416 MGMT_STATUS_INVALID_PARAMS, &cp->addr,
5417 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02005418 goto failed;
5419 }
5420
5421 if (cp->name_known) {
5422 e->name_state = NAME_KNOWN;
5423 list_del(&e->list);
5424 } else {
5425 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e20a2012-01-09 00:53:02 +02005426 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02005427 }
5428
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005429 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0,
5430 &cp->addr, sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02005431
5432failed:
5433 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02005434 return err;
5435}
5436
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005437static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005438 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03005439{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005440 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005441 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03005442 int err;
5443
Marcel Holtmann181d6952020-05-06 09:57:47 +02005444 bt_dev_dbg(hdev, "sock %p", sk);
Antti Julku7fbec222011-06-15 12:01:15 +03005445
Johan Hedberg4ee71b22013-01-20 14:27:19 +02005446 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005447 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
5448 MGMT_STATUS_INVALID_PARAMS,
5449 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02005450
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005451 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03005452
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08005453 err = hci_bdaddr_list_add(&hdev->reject_list, &cp->addr.bdaddr,
Johan Hedbergdcc36c12014-07-09 12:59:13 +03005454 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005455 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005456 status = MGMT_STATUS_FAILED;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005457 goto done;
5458 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005459
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005460 mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &cp->addr, sizeof(cp->addr),
5461 sk);
5462 status = MGMT_STATUS_SUCCESS;
5463
5464done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005465 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
5466 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03005467
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005468 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03005469
5470 return err;
5471}
5472
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005473static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005474 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03005475{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005476 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005477 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03005478 int err;
5479
Marcel Holtmann181d6952020-05-06 09:57:47 +02005480 bt_dev_dbg(hdev, "sock %p", sk);
Antti Julku7fbec222011-06-15 12:01:15 +03005481
Johan Hedberg4ee71b22013-01-20 14:27:19 +02005482 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005483 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
5484 MGMT_STATUS_INVALID_PARAMS,
5485 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02005486
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005487 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03005488
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08005489 err = hci_bdaddr_list_del(&hdev->reject_list, &cp->addr.bdaddr,
Johan Hedbergdcc36c12014-07-09 12:59:13 +03005490 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005491 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005492 status = MGMT_STATUS_INVALID_PARAMS;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005493 goto done;
5494 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02005495
Johan Hedberg2a8357f2014-07-01 22:09:47 +03005496 mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &cp->addr, sizeof(cp->addr),
5497 sk);
5498 status = MGMT_STATUS_SUCCESS;
5499
5500done:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005501 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
5502 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03005503
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03005504 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03005505
5506 return err;
5507}
5508
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005509static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
5510 u16 len)
5511{
5512 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05005513 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005514 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01005515 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005516
Marcel Holtmann181d6952020-05-06 09:57:47 +02005517 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005518
Szymon Jancc72d4b82012-03-16 16:02:57 +01005519 source = __le16_to_cpu(cp->source);
5520
5521 if (source > 0x0002)
Johan Hedberga69e8372015-03-06 21:08:53 +02005522 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
5523 MGMT_STATUS_INVALID_PARAMS);
Szymon Jancc72d4b82012-03-16 16:02:57 +01005524
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005525 hci_dev_lock(hdev);
5526
Szymon Jancc72d4b82012-03-16 16:02:57 +01005527 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005528 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
5529 hdev->devid_product = __le16_to_cpu(cp->product);
5530 hdev->devid_version = __le16_to_cpu(cp->version);
5531
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005532 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0,
5533 NULL, 0);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005534
Johan Hedberg890ea892013-03-15 17:06:52 -05005535 hci_req_init(&req, hdev);
Johan Hedbergb1a89172015-11-25 16:15:42 +02005536 __hci_req_update_eir(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05005537 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07005538
5539 hci_dev_unlock(hdev);
5540
5541 return err;
5542}
5543
Arman Uguray24b4f382015-03-23 15:57:12 -07005544static void enable_advertising_instance(struct hci_dev *hdev, u8 status,
5545 u16 opcode)
5546{
Kai Ye85d672842021-06-03 15:41:02 +08005547 bt_dev_dbg(hdev, "status %u", status);
Arman Uguray24b4f382015-03-23 15:57:12 -07005548}
5549
Marcel Holtmann1904a852015-01-11 13:50:44 -08005550static void set_advertising_complete(struct hci_dev *hdev, u8 status,
5551 u16 opcode)
Johan Hedberg4375f102013-09-25 13:26:10 +03005552{
5553 struct cmd_lookup match = { NULL, hdev };
Arman Uguray24b4f382015-03-23 15:57:12 -07005554 struct hci_request req;
Florian Grandel7816b822015-06-18 03:16:45 +02005555 u8 instance;
5556 struct adv_info *adv_instance;
5557 int err;
Johan Hedberg4375f102013-09-25 13:26:10 +03005558
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05305559 hci_dev_lock(hdev);
5560
Johan Hedberg4375f102013-09-25 13:26:10 +03005561 if (status) {
5562 u8 mgmt_err = mgmt_status(status);
5563
5564 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
5565 cmd_status_rsp, &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05305566 goto unlock;
Johan Hedberg4375f102013-09-25 13:26:10 +03005567 }
5568
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005569 if (hci_dev_test_flag(hdev, HCI_LE_ADV))
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005570 hci_dev_set_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03005571 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005572 hci_dev_clear_flag(hdev, HCI_ADVERTISING);
Johan Hedbergc93bd152014-07-08 15:07:48 +03005573
Johan Hedberg4375f102013-09-25 13:26:10 +03005574 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
5575 &match);
5576
5577 new_settings(hdev, match.sk);
5578
5579 if (match.sk)
5580 sock_put(match.sk);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05305581
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07005582 /* Handle suspend notifier */
5583 if (test_and_clear_bit(SUSPEND_PAUSE_ADVERTISING,
5584 hdev->suspend_tasks)) {
5585 bt_dev_dbg(hdev, "Paused advertising");
5586 wake_up(&hdev->suspend_wait_q);
5587 } else if (test_and_clear_bit(SUSPEND_UNPAUSE_ADVERTISING,
5588 hdev->suspend_tasks)) {
5589 bt_dev_dbg(hdev, "Unpaused advertising");
5590 wake_up(&hdev->suspend_wait_q);
5591 }
5592
Arman Uguray24b4f382015-03-23 15:57:12 -07005593 /* If "Set Advertising" was just disabled and instance advertising was
Florian Grandel7816b822015-06-18 03:16:45 +02005594 * set up earlier, then re-enable multi-instance advertising.
Arman Uguray24b4f382015-03-23 15:57:12 -07005595 */
5596 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
Florian Grandel7816b822015-06-18 03:16:45 +02005597 list_empty(&hdev->adv_instances))
Arman Uguray24b4f382015-03-23 15:57:12 -07005598 goto unlock;
5599
Florian Grandel7816b822015-06-18 03:16:45 +02005600 instance = hdev->cur_adv_instance;
5601 if (!instance) {
5602 adv_instance = list_first_entry_or_null(&hdev->adv_instances,
5603 struct adv_info, list);
5604 if (!adv_instance)
5605 goto unlock;
5606
5607 instance = adv_instance->instance;
5608 }
5609
Arman Uguray24b4f382015-03-23 15:57:12 -07005610 hci_req_init(&req, hdev);
5611
Johan Hedbergf2252572015-11-18 12:49:20 +02005612 err = __hci_req_schedule_adv_instance(&req, instance, true);
Arman Uguray24b4f382015-03-23 15:57:12 -07005613
Florian Grandel7816b822015-06-18 03:16:45 +02005614 if (!err)
5615 err = hci_req_run(&req, enable_advertising_instance);
5616
5617 if (err)
Marcel Holtmann2064ee32017-10-30 10:42:59 +01005618 bt_dev_err(hdev, "failed to re-configure advertising");
Arman Uguray24b4f382015-03-23 15:57:12 -07005619
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05305620unlock:
5621 hci_dev_unlock(hdev);
Johan Hedberg4375f102013-09-25 13:26:10 +03005622}
5623
Marcel Holtmann21b51872013-10-10 09:47:53 -07005624static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
5625 u16 len)
Johan Hedberg4375f102013-09-25 13:26:10 +03005626{
5627 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005628 struct mgmt_pending_cmd *cmd;
Johan Hedberg4375f102013-09-25 13:26:10 +03005629 struct hci_request req;
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005630 u8 val, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03005631 int err;
5632
Marcel Holtmann181d6952020-05-06 09:57:47 +02005633 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg4375f102013-09-25 13:26:10 +03005634
Johan Hedberge6fe7982013-10-02 15:45:22 +03005635 status = mgmt_le_support(hdev);
5636 if (status)
Johan Hedberga69e8372015-03-06 21:08:53 +02005637 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
5638 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03005639
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05305640 /* Enabling the experimental LL Privay support disables support for
5641 * advertising.
5642 */
5643 if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
5644 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
5645 MGMT_STATUS_NOT_SUPPORTED);
5646
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005647 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02005648 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
5649 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg4375f102013-09-25 13:26:10 +03005650
Abhishek Pandit-Subedi4867bd02020-03-11 08:54:03 -07005651 if (hdev->advertising_paused)
5652 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
5653 MGMT_STATUS_BUSY);
5654
Johan Hedberg4375f102013-09-25 13:26:10 +03005655 hci_dev_lock(hdev);
5656
5657 val = !!cp->val;
Johan Hedberg4375f102013-09-25 13:26:10 +03005658
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02005659 /* The following conditions are ones which mean that we should
5660 * not do any HCI communication but directly send a mgmt
5661 * response to user space (after toggling the flag if
5662 * necessary).
5663 */
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005664 if (!hdev_is_powered(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005665 (val == hci_dev_test_flag(hdev, HCI_ADVERTISING) &&
5666 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_ADVERTISING_CONNECTABLE)) ||
Johan Hedberge8bb6b92014-07-08 15:07:53 +03005667 hci_conn_num(hdev, LE_LINK) > 0 ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005668 (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Johan Hedberge8bb6b92014-07-08 15:07:53 +03005669 hdev->le_scan_type == LE_SCAN_ACTIVE)) {
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005670 bool changed;
Johan Hedberg4375f102013-09-25 13:26:10 +03005671
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005672 if (cp->val) {
Johan Hedbergcab054a2015-11-30 11:21:45 +02005673 hdev->cur_adv_instance = 0x00;
Marcel Holtmann238be782015-03-13 02:11:06 -07005674 changed = !hci_dev_test_and_set_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005675 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005676 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005677 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005678 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005679 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07005680 changed = hci_dev_test_and_clear_flag(hdev, HCI_ADVERTISING);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005681 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Johan Hedberg4375f102013-09-25 13:26:10 +03005682 }
5683
5684 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
5685 if (err < 0)
5686 goto unlock;
5687
5688 if (changed)
5689 err = new_settings(hdev, sk);
5690
5691 goto unlock;
5692 }
5693
Johan Hedberg333ae952015-03-17 13:48:47 +02005694 if (pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
5695 pending_find(MGMT_OP_SET_LE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005696 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
5697 MGMT_STATUS_BUSY);
Johan Hedberg4375f102013-09-25 13:26:10 +03005698 goto unlock;
5699 }
5700
5701 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
5702 if (!cmd) {
5703 err = -ENOMEM;
5704 goto unlock;
5705 }
5706
5707 hci_req_init(&req, hdev);
5708
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005709 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005710 hci_dev_set_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005711 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005712 hci_dev_clear_flag(hdev, HCI_ADVERTISING_CONNECTABLE);
Marcel Holtmanncc91cb042015-03-12 22:30:58 -07005713
Florian Grandel7816b822015-06-18 03:16:45 +02005714 cancel_adv_timeout(hdev);
5715
Arman Uguray24b4f382015-03-23 15:57:12 -07005716 if (val) {
Florian Grandel7816b822015-06-18 03:16:45 +02005717 /* Switch to instance "0" for the Set Advertising setting.
5718 * We cannot use update_[adv|scan_rsp]_data() here as the
5719 * HCI_ADVERTISING flag is not yet set.
5720 */
Johan Hedbergcab054a2015-11-30 11:21:45 +02005721 hdev->cur_adv_instance = 0x00;
Jaganath Kanakkasseryde181e82018-07-19 17:09:41 +05305722
5723 if (ext_adv_capable(hdev)) {
5724 __hci_req_start_ext_adv(&req, 0x00);
5725 } else {
5726 __hci_req_update_adv_data(&req, 0x00);
5727 __hci_req_update_scan_rsp_data(&req, 0x00);
5728 __hci_req_enable_advertising(&req);
5729 }
Arman Uguray24b4f382015-03-23 15:57:12 -07005730 } else {
Johan Hedbergf2252572015-11-18 12:49:20 +02005731 __hci_req_disable_advertising(&req);
Arman Uguray24b4f382015-03-23 15:57:12 -07005732 }
Johan Hedberg4375f102013-09-25 13:26:10 +03005733
5734 err = hci_req_run(&req, set_advertising_complete);
5735 if (err < 0)
5736 mgmt_pending_remove(cmd);
5737
5738unlock:
5739 hci_dev_unlock(hdev);
5740 return err;
5741}
5742
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005743static int set_static_address(struct sock *sk, struct hci_dev *hdev,
5744 void *data, u16 len)
5745{
5746 struct mgmt_cp_set_static_address *cp = data;
5747 int err;
5748
Marcel Holtmann181d6952020-05-06 09:57:47 +02005749 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005750
Marcel Holtmann62af4442013-10-02 22:10:32 -07005751 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005752 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
5753 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005754
5755 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005756 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
5757 MGMT_STATUS_REJECTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005758
5759 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
5760 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
Johan Hedberga69e8372015-03-06 21:08:53 +02005761 return mgmt_cmd_status(sk, hdev->id,
5762 MGMT_OP_SET_STATIC_ADDRESS,
5763 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005764
5765 /* Two most significant bits shall be set */
5766 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
Johan Hedberga69e8372015-03-06 21:08:53 +02005767 return mgmt_cmd_status(sk, hdev->id,
5768 MGMT_OP_SET_STATIC_ADDRESS,
5769 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005770 }
5771
5772 hci_dev_lock(hdev);
5773
5774 bacpy(&hdev->static_addr, &cp->bdaddr);
5775
Marcel Holtmann93690c22015-03-06 10:11:21 -08005776 err = send_settings_rsp(sk, MGMT_OP_SET_STATIC_ADDRESS, hdev);
5777 if (err < 0)
5778 goto unlock;
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005779
Marcel Holtmann93690c22015-03-06 10:11:21 -08005780 err = new_settings(hdev, sk);
5781
5782unlock:
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005783 hci_dev_unlock(hdev);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005784 return err;
5785}
5786
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005787static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
5788 void *data, u16 len)
5789{
5790 struct mgmt_cp_set_scan_params *cp = data;
5791 __u16 interval, window;
5792 int err;
5793
Marcel Holtmann181d6952020-05-06 09:57:47 +02005794 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005795
5796 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005797 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5798 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005799
5800 interval = __le16_to_cpu(cp->interval);
5801
5802 if (interval < 0x0004 || interval > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02005803 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5804 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005805
5806 window = __le16_to_cpu(cp->window);
5807
5808 if (window < 0x0004 || window > 0x4000)
Johan Hedberga69e8372015-03-06 21:08:53 +02005809 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5810 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005811
Marcel Holtmann899e1072013-10-14 09:55:32 -07005812 if (window > interval)
Johan Hedberga69e8372015-03-06 21:08:53 +02005813 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
5814 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann899e1072013-10-14 09:55:32 -07005815
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005816 hci_dev_lock(hdev);
5817
5818 hdev->le_scan_interval = interval;
5819 hdev->le_scan_window = window;
5820
Johan Hedberg2a1afb52015-03-06 21:08:54 +02005821 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0,
5822 NULL, 0);
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005823
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03005824 /* If background scan is running, restart it so new parameters are
5825 * loaded.
5826 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005827 if (hci_dev_test_flag(hdev, HCI_LE_SCAN) &&
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03005828 hdev->discovery.state == DISCOVERY_STOPPED) {
5829 struct hci_request req;
5830
5831 hci_req_init(&req, hdev);
5832
Sathish Narasimman5c49bcc2020-07-23 18:09:01 +05305833 hci_req_add_le_scan_disable(&req, false);
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03005834 hci_req_add_le_passive_scan(&req);
5835
5836 hci_req_run(&req, NULL);
5837 }
5838
Marcel Holtmann14b49b92013-10-11 08:23:20 -07005839 hci_dev_unlock(hdev);
5840
5841 return err;
5842}
5843
Marcel Holtmann1904a852015-01-11 13:50:44 -08005844static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
5845 u16 opcode)
Johan Hedberg33e38b32013-03-15 17:07:05 -05005846{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005847 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05005848
Marcel Holtmann181d6952020-05-06 09:57:47 +02005849 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005850
5851 hci_dev_lock(hdev);
5852
Johan Hedberg333ae952015-03-17 13:48:47 +02005853 cmd = pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005854 if (!cmd)
5855 goto unlock;
5856
5857 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005858 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5859 mgmt_status(status));
Johan Hedberg33e38b32013-03-15 17:07:05 -05005860 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005861 struct mgmt_mode *cp = cmd->param;
5862
5863 if (cp->val)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07005864 hci_dev_set_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005865 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005866 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005867
Johan Hedberg33e38b32013-03-15 17:07:05 -05005868 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
5869 new_settings(hdev, cmd->sk);
5870 }
5871
5872 mgmt_pending_remove(cmd);
5873
5874unlock:
5875 hci_dev_unlock(hdev);
5876}
5877
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005878static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005879 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03005880{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03005881 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005882 struct mgmt_pending_cmd *cmd;
Johan Hedberg33e38b32013-03-15 17:07:05 -05005883 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03005884 int err;
5885
Marcel Holtmann181d6952020-05-06 09:57:47 +02005886 bt_dev_dbg(hdev, "sock %p", sk);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005887
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005888 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) ||
Johan Hedberg56f87902013-10-02 13:43:13 +03005889 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberga69e8372015-03-06 21:08:53 +02005890 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5891 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03005892
Johan Hedberga7e80f22013-01-09 16:05:19 +02005893 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005894 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5895 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga7e80f22013-01-09 16:05:19 +02005896
Antti Julkuf6422ec2011-06-22 13:11:56 +03005897 hci_dev_lock(hdev);
5898
Johan Hedberg333ae952015-03-17 13:48:47 +02005899 if (pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005900 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5901 MGMT_STATUS_BUSY);
Johan Hedberg05cbf292013-03-15 17:07:07 -05005902 goto unlock;
5903 }
5904
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005905 if (!!cp->val == hci_dev_test_flag(hdev, HCI_FAST_CONNECTABLE)) {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05005906 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
5907 hdev);
5908 goto unlock;
5909 }
5910
Johan Hedberg406ef2a2015-03-10 20:14:27 +02005911 if (!hdev_is_powered(hdev)) {
Marcel Holtmannce05d602015-03-13 02:11:03 -07005912 hci_dev_change_flag(hdev, HCI_FAST_CONNECTABLE);
Johan Hedberg406ef2a2015-03-10 20:14:27 +02005913 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
5914 hdev);
5915 new_settings(hdev, sk);
5916 goto unlock;
5917 }
5918
Johan Hedberg33e38b32013-03-15 17:07:05 -05005919 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
5920 data, len);
5921 if (!cmd) {
5922 err = -ENOMEM;
5923 goto unlock;
5924 }
5925
5926 hci_req_init(&req, hdev);
5927
Johan Hedbergbf943cb2015-11-25 16:15:43 +02005928 __hci_req_write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005929
5930 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005931 if (err < 0) {
Johan Hedberga69e8372015-03-06 21:08:53 +02005932 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
5933 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005934 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03005935 }
5936
Johan Hedberg33e38b32013-03-15 17:07:05 -05005937unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03005938 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05005939
Antti Julkuf6422ec2011-06-22 13:11:56 +03005940 return err;
5941}
5942
Marcel Holtmann1904a852015-01-11 13:50:44 -08005943static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg0663ca22013-10-02 13:43:14 +03005944{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005945 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03005946
Marcel Holtmann181d6952020-05-06 09:57:47 +02005947 bt_dev_dbg(hdev, "status 0x%02x", status);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005948
5949 hci_dev_lock(hdev);
5950
Johan Hedberg333ae952015-03-17 13:48:47 +02005951 cmd = pending_find(MGMT_OP_SET_BREDR, hdev);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005952 if (!cmd)
5953 goto unlock;
5954
5955 if (status) {
5956 u8 mgmt_err = mgmt_status(status);
5957
5958 /* We need to restore the flag if related HCI commands
5959 * failed.
5960 */
Marcel Holtmanna358dc12015-03-13 02:11:02 -07005961 hci_dev_clear_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005962
Johan Hedberga69e8372015-03-06 21:08:53 +02005963 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005964 } else {
5965 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
5966 new_settings(hdev, cmd->sk);
5967 }
5968
5969 mgmt_pending_remove(cmd);
5970
5971unlock:
5972 hci_dev_unlock(hdev);
5973}
5974
5975static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
5976{
5977 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02005978 struct mgmt_pending_cmd *cmd;
Johan Hedberg0663ca22013-10-02 13:43:14 +03005979 struct hci_request req;
5980 int err;
5981
Marcel Holtmann181d6952020-05-06 09:57:47 +02005982 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005983
5984 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02005985 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5986 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005987
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005988 if (!hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02005989 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5990 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005991
5992 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02005993 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
5994 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg0663ca22013-10-02 13:43:14 +03005995
5996 hci_dev_lock(hdev);
5997
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07005998 if (cp->val == hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Johan Hedberg0663ca22013-10-02 13:43:14 +03005999 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
6000 goto unlock;
6001 }
6002
6003 if (!hdev_is_powered(hdev)) {
6004 if (!cp->val) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006005 hci_dev_clear_flag(hdev, HCI_DISCOVERABLE);
6006 hci_dev_clear_flag(hdev, HCI_SSP_ENABLED);
6007 hci_dev_clear_flag(hdev, HCI_LINK_SECURITY);
6008 hci_dev_clear_flag(hdev, HCI_FAST_CONNECTABLE);
6009 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03006010 }
6011
Marcel Holtmannce05d602015-03-13 02:11:03 -07006012 hci_dev_change_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03006013
6014 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
6015 if (err < 0)
6016 goto unlock;
6017
6018 err = new_settings(hdev, sk);
6019 goto unlock;
6020 }
6021
6022 /* Reject disabling when powered on */
6023 if (!cp->val) {
Johan Hedberga69e8372015-03-06 21:08:53 +02006024 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
6025 MGMT_STATUS_REJECTED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03006026 goto unlock;
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08006027 } else {
6028 /* When configuring a dual-mode controller to operate
6029 * with LE only and using a static address, then switching
6030 * BR/EDR back on is not allowed.
6031 *
6032 * Dual-mode controllers shall operate with the public
6033 * address as its identity address for BR/EDR and LE. So
6034 * reject the attempt to create an invalid configuration.
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08006035 *
6036 * The same restrictions applies when secure connections
6037 * has been enabled. For BR/EDR this is a controller feature
6038 * while for LE it is a host stack feature. This means that
6039 * switching BR/EDR back on when secure connections has been
6040 * enabled is not a supported transaction.
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08006041 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006042 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08006043 (bacmp(&hdev->static_addr, BDADDR_ANY) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006044 hci_dev_test_flag(hdev, HCI_SC_ENABLED))) {
Johan Hedberga69e8372015-03-06 21:08:53 +02006045 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
6046 MGMT_STATUS_REJECTED);
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08006047 goto unlock;
6048 }
Johan Hedberg0663ca22013-10-02 13:43:14 +03006049 }
6050
Johan Hedberg333ae952015-03-17 13:48:47 +02006051 if (pending_find(MGMT_OP_SET_BREDR, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02006052 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
6053 MGMT_STATUS_BUSY);
Johan Hedberg0663ca22013-10-02 13:43:14 +03006054 goto unlock;
6055 }
6056
6057 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
6058 if (!cmd) {
6059 err = -ENOMEM;
6060 goto unlock;
6061 }
6062
Johan Hedbergf2252572015-11-18 12:49:20 +02006063 /* We need to flip the bit already here so that
6064 * hci_req_update_adv_data generates the correct flags.
Johan Hedberg0663ca22013-10-02 13:43:14 +03006065 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006066 hci_dev_set_flag(hdev, HCI_BREDR_ENABLED);
Johan Hedberg0663ca22013-10-02 13:43:14 +03006067
6068 hci_req_init(&req, hdev);
Johan Hedbergaa8af462013-10-14 21:15:26 +03006069
Johan Hedbergbf943cb2015-11-25 16:15:43 +02006070 __hci_req_write_fast_connectable(&req, false);
Johan Hedberg01b1cb82015-11-16 12:52:21 +02006071 __hci_req_update_scan(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03006072
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07006073 /* Since only the advertising data flags will change, there
6074 * is no need to update the scan response data.
6075 */
Johan Hedbergcab054a2015-11-30 11:21:45 +02006076 __hci_req_update_adv_data(&req, hdev->cur_adv_instance);
Johan Hedbergaa8af462013-10-14 21:15:26 +03006077
Johan Hedberg0663ca22013-10-02 13:43:14 +03006078 err = hci_req_run(&req, set_bredr_complete);
6079 if (err < 0)
6080 mgmt_pending_remove(cmd);
6081
6082unlock:
6083 hci_dev_unlock(hdev);
6084 return err;
6085}
6086
Johan Hedberga1443f52015-01-23 15:42:46 +02006087static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
6088{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006089 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02006090 struct mgmt_mode *cp;
6091
Marcel Holtmann181d6952020-05-06 09:57:47 +02006092 bt_dev_dbg(hdev, "status %u", status);
Johan Hedberga1443f52015-01-23 15:42:46 +02006093
6094 hci_dev_lock(hdev);
6095
Johan Hedberg333ae952015-03-17 13:48:47 +02006096 cmd = pending_find(MGMT_OP_SET_SECURE_CONN, hdev);
Johan Hedberga1443f52015-01-23 15:42:46 +02006097 if (!cmd)
6098 goto unlock;
6099
6100 if (status) {
Johan Hedberga69e8372015-03-06 21:08:53 +02006101 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
6102 mgmt_status(status));
Johan Hedberga1443f52015-01-23 15:42:46 +02006103 goto remove;
6104 }
6105
6106 cp = cmd->param;
6107
6108 switch (cp->val) {
6109 case 0x00:
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006110 hci_dev_clear_flag(hdev, HCI_SC_ENABLED);
6111 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02006112 break;
6113 case 0x01:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006114 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006115 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02006116 break;
6117 case 0x02:
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006118 hci_dev_set_flag(hdev, HCI_SC_ENABLED);
6119 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Johan Hedberga1443f52015-01-23 15:42:46 +02006120 break;
6121 }
6122
6123 send_settings_rsp(cmd->sk, MGMT_OP_SET_SECURE_CONN, hdev);
6124 new_settings(hdev, cmd->sk);
6125
6126remove:
6127 mgmt_pending_remove(cmd);
6128unlock:
6129 hci_dev_unlock(hdev);
6130}
6131
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006132static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
6133 void *data, u16 len)
6134{
6135 struct mgmt_mode *cp = data;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006136 struct mgmt_pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02006137 struct hci_request req;
Johan Hedberga3209692014-05-26 11:23:35 +03006138 u8 val;
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006139 int err;
6140
Marcel Holtmann181d6952020-05-06 09:57:47 +02006141 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006142
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08006143 if (!lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006144 !hci_dev_test_flag(hdev, HCI_LE_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02006145 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
6146 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006147
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006148 if (hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
Johan Hedberg59200282015-01-28 19:56:00 +02006149 lmp_sc_capable(hdev) &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006150 !hci_dev_test_flag(hdev, HCI_SSP_ENABLED))
Johan Hedberga69e8372015-03-06 21:08:53 +02006151 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
6152 MGMT_STATUS_REJECTED);
Marcel Holtmanned93ec62015-01-22 11:15:22 -08006153
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08006154 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02006155 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006156 MGMT_STATUS_INVALID_PARAMS);
6157
6158 hci_dev_lock(hdev);
6159
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08006160 if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006161 !hci_dev_test_flag(hdev, HCI_BREDR_ENABLED)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006162 bool changed;
6163
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08006164 if (cp->val) {
Marcel Holtmann238be782015-03-13 02:11:06 -07006165 changed = !hci_dev_test_and_set_flag(hdev,
6166 HCI_SC_ENABLED);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08006167 if (cp->val == 0x02)
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006168 hci_dev_set_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08006169 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006170 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08006171 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07006172 changed = hci_dev_test_and_clear_flag(hdev,
6173 HCI_SC_ENABLED);
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006174 hci_dev_clear_flag(hdev, HCI_SC_ONLY);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08006175 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006176
6177 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
6178 if (err < 0)
6179 goto failed;
6180
6181 if (changed)
6182 err = new_settings(hdev, sk);
6183
6184 goto failed;
6185 }
6186
Johan Hedberg333ae952015-03-17 13:48:47 +02006187 if (pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
Johan Hedberga69e8372015-03-06 21:08:53 +02006188 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
6189 MGMT_STATUS_BUSY);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006190 goto failed;
6191 }
6192
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08006193 val = !!cp->val;
6194
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006195 if (val == hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
6196 (cp->val == 0x02) == hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006197 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
6198 goto failed;
6199 }
6200
6201 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
6202 if (!cmd) {
6203 err = -ENOMEM;
6204 goto failed;
6205 }
6206
Johan Hedberga1443f52015-01-23 15:42:46 +02006207 hci_req_init(&req, hdev);
6208 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
6209 err = hci_req_run(&req, sc_enable_complete);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006210 if (err < 0) {
6211 mgmt_pending_remove(cmd);
6212 goto failed;
6213 }
6214
6215failed:
6216 hci_dev_unlock(hdev);
6217 return err;
6218}
6219
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08006220static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
6221 void *data, u16 len)
6222{
6223 struct mgmt_mode *cp = data;
Johan Hedbergb97109792014-06-24 14:00:28 +03006224 bool changed, use_changed;
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08006225 int err;
6226
Marcel Holtmann181d6952020-05-06 09:57:47 +02006227 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08006228
Johan Hedbergb97109792014-06-24 14:00:28 +03006229 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02006230 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
6231 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08006232
6233 hci_dev_lock(hdev);
6234
6235 if (cp->val)
Marcel Holtmann238be782015-03-13 02:11:06 -07006236 changed = !hci_dev_test_and_set_flag(hdev, HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08006237 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07006238 changed = hci_dev_test_and_clear_flag(hdev,
6239 HCI_KEEP_DEBUG_KEYS);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08006240
Johan Hedbergb97109792014-06-24 14:00:28 +03006241 if (cp->val == 0x02)
Marcel Holtmann238be782015-03-13 02:11:06 -07006242 use_changed = !hci_dev_test_and_set_flag(hdev,
6243 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03006244 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07006245 use_changed = hci_dev_test_and_clear_flag(hdev,
6246 HCI_USE_DEBUG_KEYS);
Johan Hedbergb97109792014-06-24 14:00:28 +03006247
6248 if (hdev_is_powered(hdev) && use_changed &&
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07006249 hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
Johan Hedbergb97109792014-06-24 14:00:28 +03006250 u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
6251 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
6252 sizeof(mode), &mode);
6253 }
6254
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08006255 err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
6256 if (err < 0)
6257 goto unlock;
6258
6259 if (changed)
6260 err = new_settings(hdev, sk);
6261
6262unlock:
6263 hci_dev_unlock(hdev);
6264 return err;
6265}
6266
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006267static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
6268 u16 len)
6269{
6270 struct mgmt_cp_set_privacy *cp = cp_data;
6271 bool changed;
6272 int err;
6273
Marcel Holtmann181d6952020-05-06 09:57:47 +02006274 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006275
6276 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006277 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
6278 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006279
Johan Hedberg82a37ad2016-03-09 17:30:34 +02006280 if (cp->privacy != 0x00 && cp->privacy != 0x01 && cp->privacy != 0x02)
Johan Hedberga69e8372015-03-06 21:08:53 +02006281 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
6282 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006283
6284 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006285 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
6286 MGMT_STATUS_REJECTED);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006287
6288 hci_dev_lock(hdev);
6289
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02006290 /* If user space supports this command it is also expected to
6291 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
6292 */
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006293 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02006294
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006295 if (cp->privacy) {
Marcel Holtmann238be782015-03-13 02:11:06 -07006296 changed = !hci_dev_test_and_set_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006297 memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006298 hci_dev_set_flag(hdev, HCI_RPA_EXPIRED);
Jaganath Kanakkasserya73c0462018-07-19 17:09:45 +05306299 hci_adv_instances_set_rpa_expired(hdev, true);
Johan Hedberg82a37ad2016-03-09 17:30:34 +02006300 if (cp->privacy == 0x02)
6301 hci_dev_set_flag(hdev, HCI_LIMITED_PRIVACY);
6302 else
6303 hci_dev_clear_flag(hdev, HCI_LIMITED_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006304 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07006305 changed = hci_dev_test_and_clear_flag(hdev, HCI_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006306 memset(hdev->irk, 0, sizeof(hdev->irk));
Marcel Holtmanna358dc12015-03-13 02:11:02 -07006307 hci_dev_clear_flag(hdev, HCI_RPA_EXPIRED);
Jaganath Kanakkasserya73c0462018-07-19 17:09:45 +05306308 hci_adv_instances_set_rpa_expired(hdev, false);
Johan Hedberg82a37ad2016-03-09 17:30:34 +02006309 hci_dev_clear_flag(hdev, HCI_LIMITED_PRIVACY);
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006310 }
6311
6312 err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
6313 if (err < 0)
6314 goto unlock;
6315
6316 if (changed)
6317 err = new_settings(hdev, sk);
6318
6319unlock:
6320 hci_dev_unlock(hdev);
6321 return err;
6322}
6323
Johan Hedberg41edf162014-02-18 10:19:35 +02006324static bool irk_is_valid(struct mgmt_irk_info *irk)
6325{
6326 switch (irk->addr.type) {
6327 case BDADDR_LE_PUBLIC:
6328 return true;
6329
6330 case BDADDR_LE_RANDOM:
6331 /* Two most significant bits shall be set */
6332 if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
6333 return false;
6334 return true;
6335 }
6336
6337 return false;
6338}
6339
6340static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
6341 u16 len)
6342{
6343 struct mgmt_cp_load_irks *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03006344 const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
6345 sizeof(struct mgmt_irk_info));
Johan Hedberg41edf162014-02-18 10:19:35 +02006346 u16 irk_count, expected_len;
6347 int i, err;
6348
Marcel Holtmann181d6952020-05-06 09:57:47 +02006349 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg41edf162014-02-18 10:19:35 +02006350
6351 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006352 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
6353 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg41edf162014-02-18 10:19:35 +02006354
6355 irk_count = __le16_to_cpu(cp->irk_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006356 if (irk_count > max_irk_count) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006357 bt_dev_err(hdev, "load_irks: too big irk_count value %u",
6358 irk_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02006359 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
6360 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006361 }
Johan Hedberg41edf162014-02-18 10:19:35 +02006362
Gustavo A. R. Silva5bec1fb2019-03-28 12:30:29 -05006363 expected_len = struct_size(cp, irks, irk_count);
Johan Hedberg41edf162014-02-18 10:19:35 +02006364 if (expected_len != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006365 bt_dev_err(hdev, "load_irks: expected %u bytes, got %u bytes",
6366 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02006367 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
6368 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02006369 }
6370
Marcel Holtmann181d6952020-05-06 09:57:47 +02006371 bt_dev_dbg(hdev, "irk_count %u", irk_count);
Johan Hedberg41edf162014-02-18 10:19:35 +02006372
6373 for (i = 0; i < irk_count; i++) {
6374 struct mgmt_irk_info *key = &cp->irks[i];
6375
6376 if (!irk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02006377 return mgmt_cmd_status(sk, hdev->id,
6378 MGMT_OP_LOAD_IRKS,
6379 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg41edf162014-02-18 10:19:35 +02006380 }
6381
6382 hci_dev_lock(hdev);
6383
6384 hci_smp_irks_clear(hdev);
6385
6386 for (i = 0; i < irk_count; i++) {
6387 struct mgmt_irk_info *irk = &cp->irks[i];
Johan Hedberg41edf162014-02-18 10:19:35 +02006388
Alain Michaud600a8742020-01-07 00:43:17 +00006389 if (hci_is_blocked_key(hdev,
6390 HCI_BLOCKED_KEY_TYPE_IRK,
6391 irk->val)) {
6392 bt_dev_warn(hdev, "Skipping blocked IRK for %pMR",
6393 &irk->addr.bdaddr);
6394 continue;
6395 }
6396
Johan Hedberg85813a72015-10-21 18:02:59 +03006397 hci_add_irk(hdev, &irk->addr.bdaddr,
6398 le_addr_type(irk->addr.type), irk->val,
Johan Hedberg41edf162014-02-18 10:19:35 +02006399 BDADDR_ANY);
6400 }
6401
Marcel Holtmanna1536da2015-03-13 02:11:01 -07006402 hci_dev_set_flag(hdev, HCI_RPA_RESOLVING);
Johan Hedberg41edf162014-02-18 10:19:35 +02006403
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006404 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
Johan Hedberg41edf162014-02-18 10:19:35 +02006405
6406 hci_dev_unlock(hdev);
6407
6408 return err;
6409}
6410
Johan Hedberg3f706b72013-01-20 14:27:16 +02006411static bool ltk_is_valid(struct mgmt_ltk_info *key)
6412{
Archie Pusakafad646e2021-05-31 16:37:25 +08006413 if (key->initiator != 0x00 && key->initiator != 0x01)
Johan Hedberg3f706b72013-01-20 14:27:16 +02006414 return false;
Marcel Holtmann490cb0b2014-02-16 12:59:05 -08006415
6416 switch (key->addr.type) {
6417 case BDADDR_LE_PUBLIC:
6418 return true;
6419
6420 case BDADDR_LE_RANDOM:
6421 /* Two most significant bits shall be set */
6422 if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
6423 return false;
6424 return true;
6425 }
6426
6427 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02006428}
6429
Johan Hedbergbdb6d972012-02-28 06:13:32 +02006430static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006431 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006432{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006433 struct mgmt_cp_load_long_term_keys *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03006434 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
6435 sizeof(struct mgmt_ltk_info));
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006436 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02006437 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006438
Marcel Holtmann181d6952020-05-06 09:57:47 +02006439 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07006440
6441 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02006442 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
6443 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07006444
Marcel Holtmann1f350c82012-03-12 20:31:08 -07006445 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006446 if (key_count > max_key_count) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006447 bt_dev_err(hdev, "load_ltks: too big key_count value %u",
6448 key_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02006449 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
6450 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03006451 }
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006452
Gustavo A. R. Silva5bec1fb2019-03-28 12:30:29 -05006453 expected_len = struct_size(cp, keys, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006454 if (expected_len != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006455 bt_dev_err(hdev, "load_keys: expected %u bytes, got %u bytes",
6456 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02006457 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
6458 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006459 }
6460
Marcel Holtmann181d6952020-05-06 09:57:47 +02006461 bt_dev_dbg(hdev, "key_count %u", key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006462
Johan Hedberg54ad6d82013-01-20 14:27:15 +02006463 for (i = 0; i < key_count; i++) {
6464 struct mgmt_ltk_info *key = &cp->keys[i];
6465
Johan Hedberg3f706b72013-01-20 14:27:16 +02006466 if (!ltk_is_valid(key))
Johan Hedberga69e8372015-03-06 21:08:53 +02006467 return mgmt_cmd_status(sk, hdev->id,
6468 MGMT_OP_LOAD_LONG_TERM_KEYS,
6469 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg54ad6d82013-01-20 14:27:15 +02006470 }
6471
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006472 hci_dev_lock(hdev);
6473
6474 hci_smp_ltks_clear(hdev);
6475
6476 for (i = 0; i < key_count; i++) {
6477 struct mgmt_ltk_info *key = &cp->keys[i];
Johan Hedberg85813a72015-10-21 18:02:59 +03006478 u8 type, authenticated;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006479
Alain Michaud600a8742020-01-07 00:43:17 +00006480 if (hci_is_blocked_key(hdev,
6481 HCI_BLOCKED_KEY_TYPE_LTK,
6482 key->val)) {
6483 bt_dev_warn(hdev, "Skipping blocked LTK for %pMR",
6484 &key->addr.bdaddr);
6485 continue;
6486 }
6487
Johan Hedberg61b43352014-05-29 19:36:53 +03006488 switch (key->type) {
6489 case MGMT_LTK_UNAUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03006490 authenticated = 0x00;
Archie Pusakafad646e2021-05-31 16:37:25 +08006491 type = key->initiator ? SMP_LTK : SMP_LTK_RESPONDER;
Johan Hedberg61b43352014-05-29 19:36:53 +03006492 break;
6493 case MGMT_LTK_AUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03006494 authenticated = 0x01;
Archie Pusakafad646e2021-05-31 16:37:25 +08006495 type = key->initiator ? SMP_LTK : SMP_LTK_RESPONDER;
Johan Hedberg61b43352014-05-29 19:36:53 +03006496 break;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03006497 case MGMT_LTK_P256_UNAUTH:
6498 authenticated = 0x00;
6499 type = SMP_LTK_P256;
6500 break;
6501 case MGMT_LTK_P256_AUTH:
6502 authenticated = 0x01;
6503 type = SMP_LTK_P256;
6504 break;
6505 case MGMT_LTK_P256_DEBUG:
6506 authenticated = 0x00;
6507 type = SMP_LTK_P256_DEBUG;
Gustavo A. R. Silva19186c72020-07-08 15:18:23 -05006508 fallthrough;
Johan Hedberg61b43352014-05-29 19:36:53 +03006509 default:
6510 continue;
6511 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03006512
Johan Hedberg85813a72015-10-21 18:02:59 +03006513 hci_add_ltk(hdev, &key->addr.bdaddr,
6514 le_addr_type(key->addr.type), type, authenticated,
6515 key->val, key->enc_size, key->ediv, key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006516 }
6517
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006518 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
Johan Hedberg715a5bf2013-01-09 15:29:34 +02006519 NULL, 0);
6520
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006521 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006522
Johan Hedberg715a5bf2013-01-09 15:29:34 +02006523 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006524}
6525
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006526static int conn_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006527{
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006528 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006529 struct mgmt_rp_get_conn_info rp;
Johan Hedberg9df74652014-12-19 22:26:03 +02006530 int err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006531
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006532 memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006533
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006534 if (status == MGMT_STATUS_SUCCESS) {
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006535 rp.rssi = conn->rssi;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006536 rp.tx_power = conn->tx_power;
6537 rp.max_tx_power = conn->max_tx_power;
6538 } else {
6539 rp.rssi = HCI_RSSI_INVALID;
6540 rp.tx_power = HCI_TX_POWER_INVALID;
6541 rp.max_tx_power = HCI_TX_POWER_INVALID;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006542 }
6543
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006544 err = mgmt_cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
6545 status, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006546
6547 hci_conn_drop(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03006548 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02006549
6550 return err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006551}
6552
Marcel Holtmann1904a852015-01-11 13:50:44 -08006553static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
6554 u16 opcode)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006555{
6556 struct hci_cp_read_rssi *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006557 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006558 struct hci_conn *conn;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006559 u16 handle;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006560 u8 status;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006561
Marcel Holtmann181d6952020-05-06 09:57:47 +02006562 bt_dev_dbg(hdev, "status 0x%02x", hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006563
6564 hci_dev_lock(hdev);
6565
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006566 /* Commands sent in request are either Read RSSI or Read Transmit Power
6567 * Level so we check which one was last sent to retrieve connection
6568 * handle. Both commands have handle as first parameter so it's safe to
6569 * cast data on the same command struct.
6570 *
6571 * First command sent is always Read RSSI and we fail only if it fails.
6572 * In other case we simply override error to indicate success as we
6573 * already remembered if TX power value is actually valid.
6574 */
6575 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI);
6576 if (!cp) {
6577 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006578 status = MGMT_STATUS_SUCCESS;
6579 } else {
6580 status = mgmt_status(hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006581 }
6582
6583 if (!cp) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006584 bt_dev_err(hdev, "invalid sent_cmd in conn_info response");
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006585 goto unlock;
6586 }
6587
6588 handle = __le16_to_cpu(cp->handle);
6589 conn = hci_conn_hash_lookup_handle(hdev, handle);
6590 if (!conn) {
Kai Ye85d672842021-06-03 15:41:02 +08006591 bt_dev_err(hdev, "unknown handle (%u) in conn_info response",
Marcel Holtmann2064ee32017-10-30 10:42:59 +01006592 handle);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006593 goto unlock;
6594 }
6595
Johan Hedberg333ae952015-03-17 13:48:47 +02006596 cmd = pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006597 if (!cmd)
6598 goto unlock;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006599
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006600 cmd->cmd_complete(cmd, status);
6601 mgmt_pending_remove(cmd);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006602
6603unlock:
6604 hci_dev_unlock(hdev);
6605}
6606
6607static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data,
6608 u16 len)
6609{
6610 struct mgmt_cp_get_conn_info *cp = data;
6611 struct mgmt_rp_get_conn_info rp;
6612 struct hci_conn *conn;
6613 unsigned long conn_info_age;
6614 int err = 0;
6615
Marcel Holtmann181d6952020-05-06 09:57:47 +02006616 bt_dev_dbg(hdev, "sock %p", sk);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006617
6618 memset(&rp, 0, sizeof(rp));
6619 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
6620 rp.addr.type = cp->addr.type;
6621
6622 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006623 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
6624 MGMT_STATUS_INVALID_PARAMS,
6625 &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006626
6627 hci_dev_lock(hdev);
6628
6629 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006630 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
6631 MGMT_STATUS_NOT_POWERED, &rp,
6632 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006633 goto unlock;
6634 }
6635
6636 if (cp->addr.type == BDADDR_BREDR)
6637 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
6638 &cp->addr.bdaddr);
6639 else
6640 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
6641
6642 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006643 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
6644 MGMT_STATUS_NOT_CONNECTED, &rp,
6645 sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006646 goto unlock;
6647 }
6648
Johan Hedberg333ae952015-03-17 13:48:47 +02006649 if (pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006650 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
6651 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006652 goto unlock;
6653 }
6654
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006655 /* To avoid client trying to guess when to poll again for information we
6656 * calculate conn info age as random value between min/max set in hdev.
6657 */
6658 conn_info_age = hdev->conn_info_min_age +
6659 prandom_u32_max(hdev->conn_info_max_age -
6660 hdev->conn_info_min_age);
6661
6662 /* Query controller to refresh cached values if they are too old or were
6663 * never read.
6664 */
Andrzej Kaczmarekf4e2dd52014-05-16 16:48:57 +02006665 if (time_after(jiffies, conn->conn_info_timestamp +
6666 msecs_to_jiffies(conn_info_age)) ||
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006667 !conn->conn_info_timestamp) {
6668 struct hci_request req;
6669 struct hci_cp_read_tx_power req_txp_cp;
6670 struct hci_cp_read_rssi req_rssi_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006671 struct mgmt_pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006672
6673 hci_req_init(&req, hdev);
6674 req_rssi_cp.handle = cpu_to_le16(conn->handle);
6675 hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp),
6676 &req_rssi_cp);
6677
Andrzej Kaczmarekf7faab02014-05-14 13:43:04 +02006678 /* For LE links TX power does not change thus we don't need to
6679 * query for it once value is known.
6680 */
6681 if (!bdaddr_type_is_le(cp->addr.type) ||
6682 conn->tx_power == HCI_TX_POWER_INVALID) {
6683 req_txp_cp.handle = cpu_to_le16(conn->handle);
6684 req_txp_cp.type = 0x00;
6685 hci_req_add(&req, HCI_OP_READ_TX_POWER,
6686 sizeof(req_txp_cp), &req_txp_cp);
6687 }
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006688
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02006689 /* Max TX power needs to be read only once per connection */
6690 if (conn->max_tx_power == HCI_TX_POWER_INVALID) {
6691 req_txp_cp.handle = cpu_to_le16(conn->handle);
6692 req_txp_cp.type = 0x01;
6693 hci_req_add(&req, HCI_OP_READ_TX_POWER,
6694 sizeof(req_txp_cp), &req_txp_cp);
6695 }
6696
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006697 err = hci_req_run(&req, conn_info_refresh_complete);
6698 if (err < 0)
6699 goto unlock;
6700
6701 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CONN_INFO, hdev,
6702 data, len);
6703 if (!cmd) {
6704 err = -ENOMEM;
6705 goto unlock;
6706 }
6707
6708 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03006709 cmd->user_data = hci_conn_get(conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02006710 cmd->cmd_complete = conn_info_cmd_complete;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006711
6712 conn->conn_info_timestamp = jiffies;
6713 } else {
6714 /* Cache is valid, just reply with values cached in hci_conn */
6715 rp.rssi = conn->rssi;
6716 rp.tx_power = conn->tx_power;
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02006717 rp.max_tx_power = conn->max_tx_power;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006718
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006719 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
6720 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006721 }
6722
6723unlock:
6724 hci_dev_unlock(hdev);
6725 return err;
6726}
6727
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006728static int clock_info_cmd_complete(struct mgmt_pending_cmd *cmd, u8 status)
Johan Hedberg69487372014-12-05 13:36:07 +02006729{
6730 struct hci_conn *conn = cmd->user_data;
6731 struct mgmt_rp_get_clock_info rp;
6732 struct hci_dev *hdev;
Johan Hedberg9df74652014-12-19 22:26:03 +02006733 int err;
Johan Hedberg69487372014-12-05 13:36:07 +02006734
6735 memset(&rp, 0, sizeof(rp));
Marcel Holtmann56f787c2016-08-29 06:19:47 +02006736 memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
Johan Hedberg69487372014-12-05 13:36:07 +02006737
6738 if (status)
6739 goto complete;
6740
6741 hdev = hci_dev_get(cmd->index);
6742 if (hdev) {
6743 rp.local_clock = cpu_to_le32(hdev->clock);
6744 hci_dev_put(hdev);
6745 }
6746
6747 if (conn) {
6748 rp.piconet_clock = cpu_to_le32(conn->clock);
6749 rp.accuracy = cpu_to_le16(conn->clock_accuracy);
6750 }
6751
6752complete:
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006753 err = mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
6754 sizeof(rp));
Johan Hedberg69487372014-12-05 13:36:07 +02006755
6756 if (conn) {
6757 hci_conn_drop(conn);
6758 hci_conn_put(conn);
6759 }
Johan Hedberg9df74652014-12-19 22:26:03 +02006760
6761 return err;
Johan Hedberg69487372014-12-05 13:36:07 +02006762}
6763
Marcel Holtmann1904a852015-01-11 13:50:44 -08006764static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg95868422014-06-28 17:54:07 +03006765{
Johan Hedberg95868422014-06-28 17:54:07 +03006766 struct hci_cp_read_clock *hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006767 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03006768 struct hci_conn *conn;
6769
Marcel Holtmann181d6952020-05-06 09:57:47 +02006770 bt_dev_dbg(hdev, "status %u", status);
Johan Hedberg95868422014-06-28 17:54:07 +03006771
6772 hci_dev_lock(hdev);
6773
6774 hci_cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
6775 if (!hci_cp)
6776 goto unlock;
6777
6778 if (hci_cp->which) {
6779 u16 handle = __le16_to_cpu(hci_cp->handle);
6780 conn = hci_conn_hash_lookup_handle(hdev, handle);
6781 } else {
6782 conn = NULL;
6783 }
6784
Johan Hedberg333ae952015-03-17 13:48:47 +02006785 cmd = pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
Johan Hedberg95868422014-06-28 17:54:07 +03006786 if (!cmd)
6787 goto unlock;
6788
Johan Hedberg69487372014-12-05 13:36:07 +02006789 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberg95868422014-06-28 17:54:07 +03006790 mgmt_pending_remove(cmd);
Johan Hedberg95868422014-06-28 17:54:07 +03006791
6792unlock:
6793 hci_dev_unlock(hdev);
6794}
6795
6796static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data,
6797 u16 len)
6798{
6799 struct mgmt_cp_get_clock_info *cp = data;
6800 struct mgmt_rp_get_clock_info rp;
6801 struct hci_cp_read_clock hci_cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02006802 struct mgmt_pending_cmd *cmd;
Johan Hedberg95868422014-06-28 17:54:07 +03006803 struct hci_request req;
6804 struct hci_conn *conn;
6805 int err;
6806
Marcel Holtmann181d6952020-05-06 09:57:47 +02006807 bt_dev_dbg(hdev, "sock %p", sk);
Johan Hedberg95868422014-06-28 17:54:07 +03006808
6809 memset(&rp, 0, sizeof(rp));
6810 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
6811 rp.addr.type = cp->addr.type;
6812
6813 if (cp->addr.type != BDADDR_BREDR)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006814 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
6815 MGMT_STATUS_INVALID_PARAMS,
6816 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006817
6818 hci_dev_lock(hdev);
6819
6820 if (!hdev_is_powered(hdev)) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006821 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
6822 MGMT_STATUS_NOT_POWERED, &rp,
6823 sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006824 goto unlock;
6825 }
6826
6827 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
6828 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
6829 &cp->addr.bdaddr);
6830 if (!conn || conn->state != BT_CONNECTED) {
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006831 err = mgmt_cmd_complete(sk, hdev->id,
6832 MGMT_OP_GET_CLOCK_INFO,
6833 MGMT_STATUS_NOT_CONNECTED,
6834 &rp, sizeof(rp));
Johan Hedberg95868422014-06-28 17:54:07 +03006835 goto unlock;
6836 }
6837 } else {
6838 conn = NULL;
6839 }
6840
6841 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CLOCK_INFO, hdev, data, len);
6842 if (!cmd) {
6843 err = -ENOMEM;
6844 goto unlock;
6845 }
6846
Johan Hedberg69487372014-12-05 13:36:07 +02006847 cmd->cmd_complete = clock_info_cmd_complete;
6848
Johan Hedberg95868422014-06-28 17:54:07 +03006849 hci_req_init(&req, hdev);
6850
6851 memset(&hci_cp, 0, sizeof(hci_cp));
6852 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
6853
6854 if (conn) {
6855 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03006856 cmd->user_data = hci_conn_get(conn);
Johan Hedberg95868422014-06-28 17:54:07 +03006857
6858 hci_cp.handle = cpu_to_le16(conn->handle);
6859 hci_cp.which = 0x01; /* Piconet clock */
6860 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
6861 }
6862
6863 err = hci_req_run(&req, get_clock_info_complete);
6864 if (err < 0)
6865 mgmt_pending_remove(cmd);
6866
6867unlock:
6868 hci_dev_unlock(hdev);
6869 return err;
6870}
6871
Johan Hedberg5a154e62014-12-19 22:26:02 +02006872static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
6873{
6874 struct hci_conn *conn;
6875
6876 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
6877 if (!conn)
6878 return false;
6879
6880 if (conn->dst_type != type)
6881 return false;
6882
6883 if (conn->state != BT_CONNECTED)
6884 return false;
6885
6886 return true;
6887}
6888
6889/* This function requires the caller holds hdev->lock */
Johan Hedberg51d7a942015-11-11 08:11:18 +02006890static int hci_conn_params_set(struct hci_dev *hdev, bdaddr_t *addr,
Johan Hedberg5a154e62014-12-19 22:26:02 +02006891 u8 addr_type, u8 auto_connect)
6892{
Johan Hedberg5a154e62014-12-19 22:26:02 +02006893 struct hci_conn_params *params;
6894
6895 params = hci_conn_params_add(hdev, addr, addr_type);
6896 if (!params)
6897 return -EIO;
6898
6899 if (params->auto_connect == auto_connect)
6900 return 0;
6901
6902 list_del_init(&params->action);
6903
6904 switch (auto_connect) {
6905 case HCI_AUTO_CONN_DISABLED:
6906 case HCI_AUTO_CONN_LINK_LOSS:
Jakub Pawlowski28a667c2015-08-07 20:22:54 +02006907 /* If auto connect is being disabled when we're trying to
6908 * connect to device, keep connecting.
6909 */
6910 if (params->explicit_connect)
6911 list_add(&params->action, &hdev->pend_le_conns);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006912 break;
6913 case HCI_AUTO_CONN_REPORT:
Johan Hedberg49c50922015-10-16 10:07:51 +03006914 if (params->explicit_connect)
6915 list_add(&params->action, &hdev->pend_le_conns);
6916 else
6917 list_add(&params->action, &hdev->pend_le_reports);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006918 break;
6919 case HCI_AUTO_CONN_DIRECT:
6920 case HCI_AUTO_CONN_ALWAYS:
Johan Hedberg51d7a942015-11-11 08:11:18 +02006921 if (!is_connected(hdev, addr, addr_type))
Johan Hedberg5a154e62014-12-19 22:26:02 +02006922 list_add(&params->action, &hdev->pend_le_conns);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006923 break;
6924 }
6925
6926 params->auto_connect = auto_connect;
6927
Marcel Holtmann181d6952020-05-06 09:57:47 +02006928 bt_dev_dbg(hdev, "addr %pMR (type %u) auto_connect %u",
6929 addr, addr_type, auto_connect);
Johan Hedberg5a154e62014-12-19 22:26:02 +02006930
6931 return 0;
6932}
6933
Marcel Holtmann8afef092014-06-29 22:28:34 +02006934static void device_added(struct sock *sk, struct hci_dev *hdev,
6935 bdaddr_t *bdaddr, u8 type, u8 action)
6936{
6937 struct mgmt_ev_device_added ev;
6938
6939 bacpy(&ev.addr.bdaddr, bdaddr);
6940 ev.addr.type = type;
6941 ev.action = action;
6942
6943 mgmt_event(MGMT_EV_DEVICE_ADDED, hdev, &ev, sizeof(ev), sk);
6944}
6945
Marcel Holtmann2faade52014-06-29 19:44:03 +02006946static int add_device(struct sock *sk, struct hci_dev *hdev,
6947 void *data, u16 len)
6948{
6949 struct mgmt_cp_add_device *cp = data;
6950 u8 auto_conn, addr_type;
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02006951 struct hci_conn_params *params;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006952 int err;
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02006953 u32 current_flags = 0;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006954
Marcel Holtmann181d6952020-05-06 09:57:47 +02006955 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006956
Johan Hedberg66593582014-07-09 12:59:14 +03006957 if (!bdaddr_type_is_valid(cp->addr.type) ||
Marcel Holtmann2faade52014-06-29 19:44:03 +02006958 !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006959 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6960 MGMT_STATUS_INVALID_PARAMS,
6961 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006962
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006963 if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
Johan Hedberg2a1afb52015-03-06 21:08:54 +02006964 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
6965 MGMT_STATUS_INVALID_PARAMS,
6966 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02006967
6968 hci_dev_lock(hdev);
6969
Johan Hedberg66593582014-07-09 12:59:14 +03006970 if (cp->addr.type == BDADDR_BREDR) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006971 /* Only incoming connections action is supported for now */
Johan Hedberg66593582014-07-09 12:59:14 +03006972 if (cp->action != 0x01) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02006973 err = mgmt_cmd_complete(sk, hdev->id,
6974 MGMT_OP_ADD_DEVICE,
6975 MGMT_STATUS_INVALID_PARAMS,
6976 &cp->addr, sizeof(cp->addr));
Johan Hedberg66593582014-07-09 12:59:14 +03006977 goto unlock;
6978 }
6979
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08006980 err = hci_bdaddr_list_add_with_flags(&hdev->accept_list,
Abhishek Pandit-Subedi8baaa402020-06-17 16:39:08 +02006981 &cp->addr.bdaddr,
6982 cp->addr.type, 0);
Johan Hedberg66593582014-07-09 12:59:14 +03006983 if (err)
6984 goto unlock;
Johan Hedberga3974072014-07-09 12:59:15 +03006985
Johan Hedberg01b1cb82015-11-16 12:52:21 +02006986 hci_req_update_scan(hdev);
Johan Hedberga3974072014-07-09 12:59:15 +03006987
Johan Hedberg66593582014-07-09 12:59:14 +03006988 goto added;
6989 }
6990
Johan Hedberg85813a72015-10-21 18:02:59 +03006991 addr_type = le_addr_type(cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02006992
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006993 if (cp->action == 0x02)
Marcel Holtmann2faade52014-06-29 19:44:03 +02006994 auto_conn = HCI_AUTO_CONN_ALWAYS;
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006995 else if (cp->action == 0x01)
6996 auto_conn = HCI_AUTO_CONN_DIRECT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006997 else
Johan Hedberga3451d22014-07-02 17:37:27 +03006998 auto_conn = HCI_AUTO_CONN_REPORT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02006999
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02007000 /* Kernel internally uses conn_params with resolvable private
7001 * address, but Add Device allows only identity addresses.
7002 * Make sure it is enforced before calling
7003 * hci_conn_params_lookup.
7004 */
7005 if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02007006 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
7007 MGMT_STATUS_INVALID_PARAMS,
7008 &cp->addr, sizeof(cp->addr));
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02007009 goto unlock;
7010 }
7011
Marcel Holtmannbf5b3c82014-06-30 12:34:39 +02007012 /* If the connection parameters don't exist for this device,
7013 * they will be created and configured with defaults.
7014 */
Johan Hedberg51d7a942015-11-11 08:11:18 +02007015 if (hci_conn_params_set(hdev, &cp->addr.bdaddr, addr_type,
Marcel Holtmannd06b50c2014-07-01 12:11:06 +02007016 auto_conn) < 0) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02007017 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
7018 MGMT_STATUS_FAILED, &cp->addr,
7019 sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02007020 goto unlock;
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02007021 } else {
7022 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
7023 addr_type);
7024 if (params)
7025 current_flags = params->current_flags;
Marcel Holtmann2faade52014-06-29 19:44:03 +02007026 }
7027
Johan Hedberg51d7a942015-11-11 08:11:18 +02007028 hci_update_background_scan(hdev);
7029
Johan Hedberg66593582014-07-09 12:59:14 +03007030added:
Marcel Holtmann8afef092014-06-29 22:28:34 +02007031 device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02007032 device_flags_changed(NULL, hdev, &cp->addr.bdaddr, cp->addr.type,
7033 SUPPORTED_DEVICE_FLAGS(), current_flags);
Marcel Holtmann8afef092014-06-29 22:28:34 +02007034
Johan Hedberg51d7a942015-11-11 08:11:18 +02007035 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
7036 MGMT_STATUS_SUCCESS, &cp->addr,
7037 sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02007038
7039unlock:
7040 hci_dev_unlock(hdev);
7041 return err;
7042}
7043
Marcel Holtmann8afef092014-06-29 22:28:34 +02007044static void device_removed(struct sock *sk, struct hci_dev *hdev,
7045 bdaddr_t *bdaddr, u8 type)
7046{
7047 struct mgmt_ev_device_removed ev;
7048
7049 bacpy(&ev.addr.bdaddr, bdaddr);
7050 ev.addr.type = type;
7051
7052 mgmt_event(MGMT_EV_DEVICE_REMOVED, hdev, &ev, sizeof(ev), sk);
7053}
7054
Marcel Holtmann2faade52014-06-29 19:44:03 +02007055static int remove_device(struct sock *sk, struct hci_dev *hdev,
7056 void *data, u16 len)
7057{
7058 struct mgmt_cp_remove_device *cp = data;
7059 int err;
7060
Marcel Holtmann181d6952020-05-06 09:57:47 +02007061 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann2faade52014-06-29 19:44:03 +02007062
7063 hci_dev_lock(hdev);
7064
7065 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
Johan Hedbergc71593d2014-07-02 17:37:28 +03007066 struct hci_conn_params *params;
Marcel Holtmann2faade52014-06-29 19:44:03 +02007067 u8 addr_type;
7068
Johan Hedberg66593582014-07-09 12:59:14 +03007069 if (!bdaddr_type_is_valid(cp->addr.type)) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02007070 err = mgmt_cmd_complete(sk, hdev->id,
7071 MGMT_OP_REMOVE_DEVICE,
7072 MGMT_STATUS_INVALID_PARAMS,
7073 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02007074 goto unlock;
7075 }
7076
Johan Hedberg66593582014-07-09 12:59:14 +03007077 if (cp->addr.type == BDADDR_BREDR) {
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08007078 err = hci_bdaddr_list_del(&hdev->accept_list,
Johan Hedberg66593582014-07-09 12:59:14 +03007079 &cp->addr.bdaddr,
7080 cp->addr.type);
7081 if (err) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02007082 err = mgmt_cmd_complete(sk, hdev->id,
7083 MGMT_OP_REMOVE_DEVICE,
7084 MGMT_STATUS_INVALID_PARAMS,
7085 &cp->addr,
7086 sizeof(cp->addr));
Johan Hedberg66593582014-07-09 12:59:14 +03007087 goto unlock;
7088 }
7089
Johan Hedberg01b1cb82015-11-16 12:52:21 +02007090 hci_req_update_scan(hdev);
Johan Hedberga3974072014-07-09 12:59:15 +03007091
Johan Hedberg66593582014-07-09 12:59:14 +03007092 device_removed(sk, hdev, &cp->addr.bdaddr,
7093 cp->addr.type);
7094 goto complete;
7095 }
7096
Johan Hedberg85813a72015-10-21 18:02:59 +03007097 addr_type = le_addr_type(cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02007098
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02007099 /* Kernel internally uses conn_params with resolvable private
7100 * address, but Remove Device allows only identity addresses.
7101 * Make sure it is enforced before calling
7102 * hci_conn_params_lookup.
7103 */
7104 if (!hci_is_identity_address(&cp->addr.bdaddr, addr_type)) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02007105 err = mgmt_cmd_complete(sk, hdev->id,
7106 MGMT_OP_REMOVE_DEVICE,
7107 MGMT_STATUS_INVALID_PARAMS,
7108 &cp->addr, sizeof(cp->addr));
Jakub Pawlowski9a0a8a82015-07-20 13:12:49 +02007109 goto unlock;
7110 }
7111
Johan Hedbergc71593d2014-07-02 17:37:28 +03007112 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
7113 addr_type);
7114 if (!params) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02007115 err = mgmt_cmd_complete(sk, hdev->id,
7116 MGMT_OP_REMOVE_DEVICE,
7117 MGMT_STATUS_INVALID_PARAMS,
7118 &cp->addr, sizeof(cp->addr));
Johan Hedbergc71593d2014-07-02 17:37:28 +03007119 goto unlock;
7120 }
7121
Johan Hedberg679d2b62015-10-16 10:07:52 +03007122 if (params->auto_connect == HCI_AUTO_CONN_DISABLED ||
7123 params->auto_connect == HCI_AUTO_CONN_EXPLICIT) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02007124 err = mgmt_cmd_complete(sk, hdev->id,
7125 MGMT_OP_REMOVE_DEVICE,
7126 MGMT_STATUS_INVALID_PARAMS,
7127 &cp->addr, sizeof(cp->addr));
Johan Hedbergc71593d2014-07-02 17:37:28 +03007128 goto unlock;
7129 }
7130
Johan Hedbergd1dbf122014-07-04 16:17:23 +03007131 list_del(&params->action);
Johan Hedbergc71593d2014-07-02 17:37:28 +03007132 list_del(&params->list);
7133 kfree(params);
Johan Hedberg51d7a942015-11-11 08:11:18 +02007134 hci_update_background_scan(hdev);
Marcel Holtmann8afef092014-06-29 22:28:34 +02007135
7136 device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02007137 } else {
Johan Hedberg19de0822014-07-06 13:06:51 +03007138 struct hci_conn_params *p, *tmp;
Johan Hedberg66593582014-07-09 12:59:14 +03007139 struct bdaddr_list *b, *btmp;
Johan Hedberg19de0822014-07-06 13:06:51 +03007140
Marcel Holtmann2faade52014-06-29 19:44:03 +02007141 if (cp->addr.type) {
Johan Hedberg51d7a942015-11-11 08:11:18 +02007142 err = mgmt_cmd_complete(sk, hdev->id,
7143 MGMT_OP_REMOVE_DEVICE,
7144 MGMT_STATUS_INVALID_PARAMS,
7145 &cp->addr, sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02007146 goto unlock;
7147 }
7148
Archie Pusaka3d4f9c02021-06-04 16:26:27 +08007149 list_for_each_entry_safe(b, btmp, &hdev->accept_list, list) {
Johan Hedberg66593582014-07-09 12:59:14 +03007150 device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type);
7151 list_del(&b->list);
7152 kfree(b);
7153 }
7154
Johan Hedberg01b1cb82015-11-16 12:52:21 +02007155 hci_req_update_scan(hdev);
Johan Hedberga3974072014-07-09 12:59:15 +03007156
Johan Hedberg19de0822014-07-06 13:06:51 +03007157 list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) {
7158 if (p->auto_connect == HCI_AUTO_CONN_DISABLED)
7159 continue;
7160 device_removed(sk, hdev, &p->addr, p->addr_type);
Johan Hedberg679d2b62015-10-16 10:07:52 +03007161 if (p->explicit_connect) {
7162 p->auto_connect = HCI_AUTO_CONN_EXPLICIT;
7163 continue;
7164 }
Johan Hedberg19de0822014-07-06 13:06:51 +03007165 list_del(&p->action);
7166 list_del(&p->list);
7167 kfree(p);
7168 }
7169
Marcel Holtmann181d6952020-05-06 09:57:47 +02007170 bt_dev_dbg(hdev, "All LE connection parameters were removed");
Johan Hedberg19de0822014-07-06 13:06:51 +03007171
Johan Hedberg51d7a942015-11-11 08:11:18 +02007172 hci_update_background_scan(hdev);
Marcel Holtmann2faade52014-06-29 19:44:03 +02007173 }
7174
Johan Hedberg66593582014-07-09 12:59:14 +03007175complete:
Johan Hedberg51d7a942015-11-11 08:11:18 +02007176 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_DEVICE,
7177 MGMT_STATUS_SUCCESS, &cp->addr,
7178 sizeof(cp->addr));
Marcel Holtmann2faade52014-06-29 19:44:03 +02007179unlock:
7180 hci_dev_unlock(hdev);
7181 return err;
7182}
7183
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007184static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
7185 u16 len)
7186{
7187 struct mgmt_cp_load_conn_param *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03007188 const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
7189 sizeof(struct mgmt_conn_param));
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007190 u16 param_count, expected_len;
7191 int i;
7192
7193 if (!lmp_le_capable(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02007194 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
7195 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007196
7197 param_count = __le16_to_cpu(cp->param_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03007198 if (param_count > max_param_count) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01007199 bt_dev_err(hdev, "load_conn_param: too big param_count value %u",
7200 param_count);
Johan Hedberga69e8372015-03-06 21:08:53 +02007201 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
7202 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergba1d6932014-07-03 13:52:27 +03007203 }
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007204
Gustavo A. R. Silva5bec1fb2019-03-28 12:30:29 -05007205 expected_len = struct_size(cp, params, param_count);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007206 if (expected_len != len) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01007207 bt_dev_err(hdev, "load_conn_param: expected %u bytes, got %u bytes",
7208 expected_len, len);
Johan Hedberga69e8372015-03-06 21:08:53 +02007209 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
7210 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007211 }
7212
Marcel Holtmann181d6952020-05-06 09:57:47 +02007213 bt_dev_dbg(hdev, "param_count %u", param_count);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007214
7215 hci_dev_lock(hdev);
7216
7217 hci_conn_params_clear_disabled(hdev);
7218
7219 for (i = 0; i < param_count; i++) {
7220 struct mgmt_conn_param *param = &cp->params[i];
7221 struct hci_conn_params *hci_param;
7222 u16 min, max, latency, timeout;
7223 u8 addr_type;
7224
Marcel Holtmann181d6952020-05-06 09:57:47 +02007225 bt_dev_dbg(hdev, "Adding %pMR (type %u)", &param->addr.bdaddr,
7226 param->addr.type);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007227
7228 if (param->addr.type == BDADDR_LE_PUBLIC) {
7229 addr_type = ADDR_LE_DEV_PUBLIC;
7230 } else if (param->addr.type == BDADDR_LE_RANDOM) {
7231 addr_type = ADDR_LE_DEV_RANDOM;
7232 } else {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01007233 bt_dev_err(hdev, "ignoring invalid connection parameters");
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007234 continue;
7235 }
7236
7237 min = le16_to_cpu(param->min_interval);
7238 max = le16_to_cpu(param->max_interval);
7239 latency = le16_to_cpu(param->latency);
7240 timeout = le16_to_cpu(param->timeout);
7241
Marcel Holtmann181d6952020-05-06 09:57:47 +02007242 bt_dev_dbg(hdev, "min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x",
7243 min, max, latency, timeout);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007244
7245 if (hci_check_conn_params(min, max, latency, timeout) < 0) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01007246 bt_dev_err(hdev, "ignoring invalid connection parameters");
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007247 continue;
7248 }
7249
7250 hci_param = hci_conn_params_add(hdev, &param->addr.bdaddr,
7251 addr_type);
7252 if (!hci_param) {
Marcel Holtmann2064ee32017-10-30 10:42:59 +01007253 bt_dev_err(hdev, "failed to add connection parameters");
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007254 continue;
7255 }
7256
7257 hci_param->conn_min_interval = min;
7258 hci_param->conn_max_interval = max;
7259 hci_param->conn_latency = latency;
7260 hci_param->supervision_timeout = timeout;
7261 }
7262
7263 hci_dev_unlock(hdev);
7264
Johan Hedberg2a1afb52015-03-06 21:08:54 +02007265 return mgmt_cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0,
7266 NULL, 0);
Johan Hedberga26f3dc2014-07-02 17:37:29 +03007267}
7268
Marcel Holtmanndbece372014-07-04 18:11:55 +02007269static int set_external_config(struct sock *sk, struct hci_dev *hdev,
7270 void *data, u16 len)
7271{
7272 struct mgmt_cp_set_external_config *cp = data;
7273 bool changed;
7274 int err;
7275
Marcel Holtmann181d6952020-05-06 09:57:47 +02007276 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007277
7278 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02007279 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
7280 MGMT_STATUS_REJECTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007281
7282 if (cp->config != 0x00 && cp->config != 0x01)
Johan Hedberga69e8372015-03-06 21:08:53 +02007283 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
7284 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007285
7286 if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
Johan Hedberga69e8372015-03-06 21:08:53 +02007287 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
7288 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007289
7290 hci_dev_lock(hdev);
7291
7292 if (cp->config)
Marcel Holtmann238be782015-03-13 02:11:06 -07007293 changed = !hci_dev_test_and_set_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007294 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07007295 changed = hci_dev_test_and_clear_flag(hdev, HCI_EXT_CONFIGURED);
Marcel Holtmanndbece372014-07-04 18:11:55 +02007296
7297 err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
7298 if (err < 0)
7299 goto unlock;
7300
7301 if (!changed)
7302 goto unlock;
7303
Marcel Holtmannf4537c02014-07-04 19:06:23 +02007304 err = new_options(hdev, sk);
7305
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007306 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED) == is_configured(hdev)) {
Marcel Holtmanndbece372014-07-04 18:11:55 +02007307 mgmt_index_removed(hdev);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02007308
Marcel Holtmann516018a2015-03-13 02:11:04 -07007309 if (hci_dev_test_and_change_flag(hdev, HCI_UNCONFIGURED)) {
Marcel Holtmanna1536da2015-03-13 02:11:01 -07007310 hci_dev_set_flag(hdev, HCI_CONFIG);
7311 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02007312
7313 queue_work(hdev->req_workqueue, &hdev->power_on);
7314 } else {
Marcel Holtmann5ea234d2014-07-06 12:11:16 +02007315 set_bit(HCI_RAW, &hdev->flags);
Marcel Holtmannd603b76b2014-07-06 12:11:14 +02007316 mgmt_index_added(hdev);
7317 }
Marcel Holtmanndbece372014-07-04 18:11:55 +02007318 }
7319
7320unlock:
7321 hci_dev_unlock(hdev);
7322 return err;
7323}
7324
Marcel Holtmann9713c172014-07-06 12:11:15 +02007325static int set_public_address(struct sock *sk, struct hci_dev *hdev,
7326 void *data, u16 len)
7327{
7328 struct mgmt_cp_set_public_address *cp = data;
7329 bool changed;
7330 int err;
7331
Marcel Holtmann181d6952020-05-06 09:57:47 +02007332 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007333
7334 if (hdev_is_powered(hdev))
Johan Hedberga69e8372015-03-06 21:08:53 +02007335 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
7336 MGMT_STATUS_REJECTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007337
7338 if (!bacmp(&cp->bdaddr, BDADDR_ANY))
Johan Hedberga69e8372015-03-06 21:08:53 +02007339 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
7340 MGMT_STATUS_INVALID_PARAMS);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007341
7342 if (!hdev->set_bdaddr)
Johan Hedberga69e8372015-03-06 21:08:53 +02007343 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
7344 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007345
7346 hci_dev_lock(hdev);
7347
7348 changed = !!bacmp(&hdev->public_addr, &cp->bdaddr);
7349 bacpy(&hdev->public_addr, &cp->bdaddr);
7350
7351 err = send_options_rsp(sk, MGMT_OP_SET_PUBLIC_ADDRESS, hdev);
7352 if (err < 0)
7353 goto unlock;
7354
7355 if (!changed)
7356 goto unlock;
7357
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07007358 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED))
Marcel Holtmann9713c172014-07-06 12:11:15 +02007359 err = new_options(hdev, sk);
7360
7361 if (is_configured(hdev)) {
7362 mgmt_index_removed(hdev);
7363
Marcel Holtmanna358dc12015-03-13 02:11:02 -07007364 hci_dev_clear_flag(hdev, HCI_UNCONFIGURED);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007365
Marcel Holtmanna1536da2015-03-13 02:11:01 -07007366 hci_dev_set_flag(hdev, HCI_CONFIG);
7367 hci_dev_set_flag(hdev, HCI_AUTO_OFF);
Marcel Holtmann9713c172014-07-06 12:11:15 +02007368
7369 queue_work(hdev->req_workqueue, &hdev->power_on);
7370 }
7371
7372unlock:
7373 hci_dev_unlock(hdev);
7374 return err;
7375}
7376
Johan Hedberg40f66c02015-04-07 21:52:22 +03007377static void read_local_oob_ext_data_complete(struct hci_dev *hdev, u8 status,
7378 u16 opcode, struct sk_buff *skb)
7379{
7380 const struct mgmt_cp_read_local_oob_ext_data *mgmt_cp;
7381 struct mgmt_rp_read_local_oob_ext_data *mgmt_rp;
7382 u8 *h192, *r192, *h256, *r256;
7383 struct mgmt_pending_cmd *cmd;
7384 u16 eir_len;
7385 int err;
7386
Marcel Holtmann181d6952020-05-06 09:57:47 +02007387 bt_dev_dbg(hdev, "status %u", status);
Johan Hedberg40f66c02015-04-07 21:52:22 +03007388
7389 cmd = pending_find(MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev);
7390 if (!cmd)
7391 return;
7392
7393 mgmt_cp = cmd->param;
7394
7395 if (status) {
7396 status = mgmt_status(status);
7397 eir_len = 0;
7398
7399 h192 = NULL;
7400 r192 = NULL;
7401 h256 = NULL;
7402 r256 = NULL;
7403 } else if (opcode == HCI_OP_READ_LOCAL_OOB_DATA) {
7404 struct hci_rp_read_local_oob_data *rp;
7405
7406 if (skb->len != sizeof(*rp)) {
7407 status = MGMT_STATUS_FAILED;
7408 eir_len = 0;
7409 } else {
7410 status = MGMT_STATUS_SUCCESS;
7411 rp = (void *)skb->data;
7412
7413 eir_len = 5 + 18 + 18;
7414 h192 = rp->hash;
7415 r192 = rp->rand;
7416 h256 = NULL;
7417 r256 = NULL;
7418 }
7419 } else {
7420 struct hci_rp_read_local_oob_ext_data *rp;
7421
7422 if (skb->len != sizeof(*rp)) {
7423 status = MGMT_STATUS_FAILED;
7424 eir_len = 0;
7425 } else {
7426 status = MGMT_STATUS_SUCCESS;
7427 rp = (void *)skb->data;
7428
7429 if (hci_dev_test_flag(hdev, HCI_SC_ONLY)) {
7430 eir_len = 5 + 18 + 18;
7431 h192 = NULL;
7432 r192 = NULL;
7433 } else {
7434 eir_len = 5 + 18 + 18 + 18 + 18;
7435 h192 = rp->hash192;
7436 r192 = rp->rand192;
7437 }
7438
7439 h256 = rp->hash256;
7440 r256 = rp->rand256;
7441 }
7442 }
7443
7444 mgmt_rp = kmalloc(sizeof(*mgmt_rp) + eir_len, GFP_KERNEL);
7445 if (!mgmt_rp)
7446 goto done;
7447
Kees Cooka31e5a42021-08-17 21:39:12 -07007448 if (eir_len == 0)
Johan Hedberg40f66c02015-04-07 21:52:22 +03007449 goto send_rsp;
7450
7451 eir_len = eir_append_data(mgmt_rp->eir, 0, EIR_CLASS_OF_DEV,
7452 hdev->dev_class, 3);
7453
7454 if (h192 && r192) {
7455 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
7456 EIR_SSP_HASH_C192, h192, 16);
7457 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
7458 EIR_SSP_RAND_R192, r192, 16);
7459 }
7460
7461 if (h256 && r256) {
7462 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
7463 EIR_SSP_HASH_C256, h256, 16);
7464 eir_len = eir_append_data(mgmt_rp->eir, eir_len,
7465 EIR_SSP_RAND_R256, r256, 16);
7466 }
7467
7468send_rsp:
7469 mgmt_rp->type = mgmt_cp->type;
7470 mgmt_rp->eir_len = cpu_to_le16(eir_len);
7471
7472 err = mgmt_cmd_complete(cmd->sk, hdev->id,
7473 MGMT_OP_READ_LOCAL_OOB_EXT_DATA, status,
7474 mgmt_rp, sizeof(*mgmt_rp) + eir_len);
7475 if (err < 0 || status)
7476 goto done;
7477
7478 hci_sock_set_flag(cmd->sk, HCI_MGMT_OOB_DATA_EVENTS);
7479
7480 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
7481 mgmt_rp, sizeof(*mgmt_rp) + eir_len,
7482 HCI_MGMT_OOB_DATA_EVENTS, cmd->sk);
7483done:
7484 kfree(mgmt_rp);
7485 mgmt_pending_remove(cmd);
7486}
7487
7488static int read_local_ssp_oob_req(struct hci_dev *hdev, struct sock *sk,
7489 struct mgmt_cp_read_local_oob_ext_data *cp)
7490{
7491 struct mgmt_pending_cmd *cmd;
7492 struct hci_request req;
7493 int err;
7494
7495 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_EXT_DATA, hdev,
7496 cp, sizeof(*cp));
7497 if (!cmd)
7498 return -ENOMEM;
7499
7500 hci_req_init(&req, hdev);
7501
7502 if (bredr_sc_enabled(hdev))
7503 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_EXT_DATA, 0, NULL);
7504 else
7505 hci_req_add(&req, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
7506
7507 err = hci_req_run_skb(&req, read_local_oob_ext_data_complete);
7508 if (err < 0) {
7509 mgmt_pending_remove(cmd);
7510 return err;
7511 }
7512
7513 return 0;
7514}
7515
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007516static int read_local_oob_ext_data(struct sock *sk, struct hci_dev *hdev,
7517 void *data, u16 data_len)
7518{
7519 struct mgmt_cp_read_local_oob_ext_data *cp = data;
7520 struct mgmt_rp_read_local_oob_ext_data *rp;
7521 size_t rp_len;
7522 u16 eir_len;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007523 u8 status, flags, role, addr[7], hash[16], rand[16];
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007524 int err;
7525
Marcel Holtmann181d6952020-05-06 09:57:47 +02007526 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007527
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07007528 if (hdev_is_powered(hdev)) {
7529 switch (cp->type) {
7530 case BIT(BDADDR_BREDR):
7531 status = mgmt_bredr_support(hdev);
7532 if (status)
7533 eir_len = 0;
7534 else
7535 eir_len = 5;
7536 break;
7537 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
7538 status = mgmt_le_support(hdev);
7539 if (status)
7540 eir_len = 0;
7541 else
7542 eir_len = 9 + 3 + 18 + 18 + 3;
7543 break;
7544 default:
7545 status = MGMT_STATUS_INVALID_PARAMS;
7546 eir_len = 0;
7547 break;
7548 }
7549 } else {
7550 status = MGMT_STATUS_NOT_POWERED;
7551 eir_len = 0;
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007552 }
7553
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007554 rp_len = sizeof(*rp) + eir_len;
7555 rp = kmalloc(rp_len, GFP_ATOMIC);
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07007556 if (!rp)
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007557 return -ENOMEM;
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07007558
Brian Gix81218cb2021-08-23 14:57:29 -07007559 if (!status && !lmp_ssp_capable(hdev)) {
7560 status = MGMT_STATUS_NOT_SUPPORTED;
7561 eir_len = 0;
7562 }
7563
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07007564 if (status)
7565 goto complete;
7566
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07007567 hci_dev_lock(hdev);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007568
7569 eir_len = 0;
7570 switch (cp->type) {
7571 case BIT(BDADDR_BREDR):
Johan Hedberg40f66c02015-04-07 21:52:22 +03007572 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
7573 err = read_local_ssp_oob_req(hdev, sk, cp);
7574 hci_dev_unlock(hdev);
7575 if (!err)
7576 goto done;
7577
7578 status = MGMT_STATUS_FAILED;
7579 goto complete;
7580 } else {
7581 eir_len = eir_append_data(rp->eir, eir_len,
7582 EIR_CLASS_OF_DEV,
7583 hdev->dev_class, 3);
7584 }
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007585 break;
7586 case (BIT(BDADDR_LE_PUBLIC) | BIT(BDADDR_LE_RANDOM)):
Marcel Holtmann5082a592015-03-16 12:39:00 -07007587 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED) &&
7588 smp_generate_oob(hdev, hash, rand) < 0) {
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007589 hci_dev_unlock(hdev);
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07007590 status = MGMT_STATUS_FAILED;
7591 goto complete;
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007592 }
7593
Marcel Holtmanne2135682015-04-02 12:00:58 -07007594 /* This should return the active RPA, but since the RPA
7595 * is only programmed on demand, it is really hard to fill
7596 * this in at the moment. For now disallow retrieving
7597 * local out-of-band data when privacy is in use.
7598 *
7599 * Returning the identity address will not help here since
7600 * pairing happens before the identity resolving key is
7601 * known and thus the connection establishment happens
7602 * based on the RPA and not the identity address.
7603 */
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007604 if (hci_dev_test_flag(hdev, HCI_PRIVACY)) {
Marcel Holtmanne2135682015-04-02 12:00:58 -07007605 hci_dev_unlock(hdev);
7606 status = MGMT_STATUS_REJECTED;
7607 goto complete;
7608 }
7609
7610 if (hci_dev_test_flag(hdev, HCI_FORCE_STATIC_ADDR) ||
7611 !bacmp(&hdev->bdaddr, BDADDR_ANY) ||
7612 (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED) &&
7613 bacmp(&hdev->static_addr, BDADDR_ANY))) {
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007614 memcpy(addr, &hdev->static_addr, 6);
7615 addr[6] = 0x01;
7616 } else {
7617 memcpy(addr, &hdev->bdaddr, 6);
7618 addr[6] = 0x00;
7619 }
7620
7621 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_BDADDR,
7622 addr, sizeof(addr));
7623
7624 if (hci_dev_test_flag(hdev, HCI_ADVERTISING))
7625 role = 0x02;
7626 else
7627 role = 0x01;
7628
7629 eir_len = eir_append_data(rp->eir, eir_len, EIR_LE_ROLE,
7630 &role, sizeof(role));
7631
Marcel Holtmann5082a592015-03-16 12:39:00 -07007632 if (hci_dev_test_flag(hdev, HCI_SC_ENABLED)) {
7633 eir_len = eir_append_data(rp->eir, eir_len,
7634 EIR_LE_SC_CONFIRM,
7635 hash, sizeof(hash));
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007636
Marcel Holtmann5082a592015-03-16 12:39:00 -07007637 eir_len = eir_append_data(rp->eir, eir_len,
7638 EIR_LE_SC_RANDOM,
7639 rand, sizeof(rand));
7640 }
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007641
Johan Hedbergf2252572015-11-18 12:49:20 +02007642 flags = mgmt_get_adv_discov_flags(hdev);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007643
7644 if (!hci_dev_test_flag(hdev, HCI_BREDR_ENABLED))
7645 flags |= LE_AD_NO_BREDR;
7646
7647 eir_len = eir_append_data(rp->eir, eir_len, EIR_FLAGS,
7648 &flags, sizeof(flags));
7649 break;
7650 }
7651
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007652 hci_dev_unlock(hdev);
7653
Marcel Holtmann72000df2015-03-16 16:11:21 -07007654 hci_sock_set_flag(sk, HCI_MGMT_OOB_DATA_EVENTS);
7655
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07007656 status = MGMT_STATUS_SUCCESS;
7657
7658complete:
Marcel Holtmannefcd8c92015-03-28 15:18:58 -07007659 rp->type = cp->type;
7660 rp->eir_len = cpu_to_le16(eir_len);
7661
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007662 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_EXT_DATA,
Marcel Holtmann57b0d3e2015-03-28 15:18:59 -07007663 status, rp, sizeof(*rp) + eir_len);
7664 if (err < 0 || status)
Marcel Holtmann72000df2015-03-16 16:11:21 -07007665 goto done;
7666
7667 err = mgmt_limited_event(MGMT_EV_LOCAL_OOB_DATA_UPDATED, hdev,
7668 rp, sizeof(*rp) + eir_len,
7669 HCI_MGMT_OOB_DATA_EVENTS, sk);
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007670
Marcel Holtmann0821a2c2015-03-16 01:10:23 -07007671done:
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07007672 kfree(rp);
7673
7674 return err;
7675}
7676
Arman Uguray089fa8c2015-03-25 18:53:45 -07007677static u32 get_supported_adv_flags(struct hci_dev *hdev)
7678{
7679 u32 flags = 0;
7680
7681 flags |= MGMT_ADV_FLAG_CONNECTABLE;
7682 flags |= MGMT_ADV_FLAG_DISCOV;
7683 flags |= MGMT_ADV_FLAG_LIMITED_DISCOV;
7684 flags |= MGMT_ADV_FLAG_MANAGED_FLAGS;
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02007685 flags |= MGMT_ADV_FLAG_APPEARANCE;
MichaƂ Narajowski7c295c42016-09-18 12:50:02 +02007686 flags |= MGMT_ADV_FLAG_LOCAL_NAME;
Daniel Winkler12410572020-12-03 12:12:49 -08007687 flags |= MGMT_ADV_PARAM_DURATION;
7688 flags |= MGMT_ADV_PARAM_TIMEOUT;
7689 flags |= MGMT_ADV_PARAM_INTERVALS;
7690 flags |= MGMT_ADV_PARAM_TX_POWER;
Daniel Winklerff02db12021-03-03 11:15:23 -08007691 flags |= MGMT_ADV_PARAM_SCAN_RSP;
Arman Uguray089fa8c2015-03-25 18:53:45 -07007692
Jaganath Kanakkasseryde181e82018-07-19 17:09:41 +05307693 /* In extended adv TX_POWER returned from Set Adv Param
7694 * will be always valid.
7695 */
7696 if ((hdev->adv_tx_power != HCI_TX_POWER_INVALID) ||
7697 ext_adv_capable(hdev))
Arman Uguray089fa8c2015-03-25 18:53:45 -07007698 flags |= MGMT_ADV_FLAG_TX_POWER;
7699
Jaganath Kanakkassery85a721a2018-07-19 17:09:47 +05307700 if (ext_adv_capable(hdev)) {
7701 flags |= MGMT_ADV_FLAG_SEC_1M;
Daniel Winklerd5ea32d2020-08-25 16:31:51 -07007702 flags |= MGMT_ADV_FLAG_HW_OFFLOAD;
7703 flags |= MGMT_ADV_FLAG_CAN_SET_TX_POWER;
Jaganath Kanakkassery85a721a2018-07-19 17:09:47 +05307704
7705 if (hdev->le_features[1] & HCI_LE_PHY_2M)
7706 flags |= MGMT_ADV_FLAG_SEC_2M;
7707
7708 if (hdev->le_features[1] & HCI_LE_PHY_CODED)
7709 flags |= MGMT_ADV_FLAG_SEC_CODED;
7710 }
7711
Arman Uguray089fa8c2015-03-25 18:53:45 -07007712 return flags;
7713}
7714
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007715static int read_adv_features(struct sock *sk, struct hci_dev *hdev,
7716 void *data, u16 data_len)
7717{
7718 struct mgmt_rp_read_adv_features *rp;
7719 size_t rp_len;
Johan Hedberg02c04afe2015-11-26 12:15:58 +02007720 int err;
Florian Grandel286e0c82015-06-18 03:16:38 +02007721 struct adv_info *adv_instance;
Arman Uguray089fa8c2015-03-25 18:53:45 -07007722 u32 supported_flags;
Johan Hedberg02c04afe2015-11-26 12:15:58 +02007723 u8 *instance;
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007724
Marcel Holtmann181d6952020-05-06 09:57:47 +02007725 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007726
Arman Uguray089fa8c2015-03-25 18:53:45 -07007727 if (!lmp_le_capable(hdev))
7728 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
7729 MGMT_STATUS_REJECTED);
7730
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05307731 /* Enabling the experimental LL Privay support disables support for
7732 * advertising.
7733 */
7734 if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
Marcel Holtmann21dd1182021-03-14 14:56:08 +01007735 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05307736 MGMT_STATUS_NOT_SUPPORTED);
7737
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007738 hci_dev_lock(hdev);
7739
Johan Hedberg02c04afe2015-11-26 12:15:58 +02007740 rp_len = sizeof(*rp) + hdev->adv_instance_cnt;
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007741 rp = kmalloc(rp_len, GFP_ATOMIC);
7742 if (!rp) {
7743 hci_dev_unlock(hdev);
7744 return -ENOMEM;
7745 }
7746
Arman Uguray089fa8c2015-03-25 18:53:45 -07007747 supported_flags = get_supported_adv_flags(hdev);
7748
7749 rp->supported_flags = cpu_to_le32(supported_flags);
Marcel Holtmanndc5d82a2015-03-19 17:22:25 -07007750 rp->max_adv_data_len = HCI_MAX_AD_LENGTH;
7751 rp->max_scan_rsp_len = HCI_MAX_AD_LENGTH;
Daniel Winkler87597482020-08-25 16:31:50 -07007752 rp->max_instances = hdev->le_num_of_adv_sets;
Johan Hedberg02c04afe2015-11-26 12:15:58 +02007753 rp->num_instances = hdev->adv_instance_cnt;
Arman Uguray24b4f382015-03-23 15:57:12 -07007754
Johan Hedberg02c04afe2015-11-26 12:15:58 +02007755 instance = rp->instance;
7756 list_for_each_entry(adv_instance, &hdev->adv_instances, list) {
7757 *instance = adv_instance->instance;
7758 instance++;
Arman Uguray24b4f382015-03-23 15:57:12 -07007759 }
Marcel Holtmannd3d53052015-03-14 20:53:25 -07007760
7761 hci_dev_unlock(hdev);
7762
7763 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_READ_ADV_FEATURES,
7764 MGMT_STATUS_SUCCESS, rp, rp_len);
7765
7766 kfree(rp);
7767
7768 return err;
7769}
7770
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02007771static u8 calculate_name_len(struct hci_dev *hdev)
7772{
7773 u8 buf[HCI_MAX_SHORT_NAME_LENGTH + 3];
7774
7775 return append_local_name(hdev, buf, 0);
7776}
7777
7778static u8 tlv_data_max_len(struct hci_dev *hdev, u32 adv_flags,
7779 bool is_adv_data)
Arman Uguray24b4f382015-03-23 15:57:12 -07007780{
Arman Uguray4117ed72015-03-23 15:57:14 -07007781 u8 max_len = HCI_MAX_AD_LENGTH;
Arman Uguray24b4f382015-03-23 15:57:12 -07007782
Marcel Holtmann31a32482015-11-19 16:16:42 +01007783 if (is_adv_data) {
7784 if (adv_flags & (MGMT_ADV_FLAG_DISCOV |
7785 MGMT_ADV_FLAG_LIMITED_DISCOV |
Szymon Janc2bb368702016-09-18 12:50:05 +02007786 MGMT_ADV_FLAG_MANAGED_FLAGS))
Marcel Holtmann31a32482015-11-19 16:16:42 +01007787 max_len -= 3;
Arman Uguray24b4f382015-03-23 15:57:12 -07007788
Szymon Janc2bb368702016-09-18 12:50:05 +02007789 if (adv_flags & MGMT_ADV_FLAG_TX_POWER)
Marcel Holtmann31a32482015-11-19 16:16:42 +01007790 max_len -= 3;
MichaƂ Narajowski7c295c42016-09-18 12:50:02 +02007791 } else {
MichaƂ Narajowski7c295c42016-09-18 12:50:02 +02007792 if (adv_flags & MGMT_ADV_FLAG_LOCAL_NAME)
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02007793 max_len -= calculate_name_len(hdev);
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02007794
Szymon Janc2bb368702016-09-18 12:50:05 +02007795 if (adv_flags & (MGMT_ADV_FLAG_APPEARANCE))
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02007796 max_len -= 4;
Arman Uguray5507e352015-03-25 18:53:44 -07007797 }
7798
Szymon Janc2bb368702016-09-18 12:50:05 +02007799 return max_len;
7800}
7801
7802static bool flags_managed(u32 adv_flags)
7803{
7804 return adv_flags & (MGMT_ADV_FLAG_DISCOV |
7805 MGMT_ADV_FLAG_LIMITED_DISCOV |
7806 MGMT_ADV_FLAG_MANAGED_FLAGS);
7807}
7808
7809static bool tx_power_managed(u32 adv_flags)
7810{
7811 return adv_flags & MGMT_ADV_FLAG_TX_POWER;
7812}
7813
7814static bool name_managed(u32 adv_flags)
7815{
7816 return adv_flags & MGMT_ADV_FLAG_LOCAL_NAME;
7817}
7818
7819static bool appearance_managed(u32 adv_flags)
7820{
7821 return adv_flags & MGMT_ADV_FLAG_APPEARANCE;
7822}
7823
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02007824static bool tlv_data_is_valid(struct hci_dev *hdev, u32 adv_flags, u8 *data,
7825 u8 len, bool is_adv_data)
Szymon Janc2bb368702016-09-18 12:50:05 +02007826{
7827 int i, cur_len;
7828 u8 max_len;
7829
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02007830 max_len = tlv_data_max_len(hdev, adv_flags, is_adv_data);
Szymon Janc2bb368702016-09-18 12:50:05 +02007831
Arman Uguray4117ed72015-03-23 15:57:14 -07007832 if (len > max_len)
Arman Uguray24b4f382015-03-23 15:57:12 -07007833 return false;
7834
Arman Uguray4117ed72015-03-23 15:57:14 -07007835 /* Make sure that the data is correctly formatted. */
7836 for (i = 0, cur_len = 0; i < len; i += (cur_len + 1)) {
7837 cur_len = data[i];
Arman Uguray24b4f382015-03-23 15:57:12 -07007838
Luiz Augusto von Dentz799acb92021-05-28 11:45:02 -07007839 if (!cur_len)
7840 continue;
7841
Szymon Janc9c9db782016-09-18 12:50:06 +02007842 if (data[i + 1] == EIR_FLAGS &&
7843 (!is_adv_data || flags_managed(adv_flags)))
Arman Ugurayb44133f2015-03-25 18:53:41 -07007844 return false;
7845
Szymon Janc2bb368702016-09-18 12:50:05 +02007846 if (data[i + 1] == EIR_TX_POWER && tx_power_managed(adv_flags))
7847 return false;
7848
7849 if (data[i + 1] == EIR_NAME_COMPLETE && name_managed(adv_flags))
7850 return false;
7851
7852 if (data[i + 1] == EIR_NAME_SHORT && name_managed(adv_flags))
7853 return false;
7854
7855 if (data[i + 1] == EIR_APPEARANCE &&
7856 appearance_managed(adv_flags))
Arman Uguray5507e352015-03-25 18:53:44 -07007857 return false;
7858
Arman Uguray24b4f382015-03-23 15:57:12 -07007859 /* If the current field length would exceed the total data
7860 * length, then it's invalid.
7861 */
Arman Uguray4117ed72015-03-23 15:57:14 -07007862 if (i + cur_len >= len)
Arman Uguray24b4f382015-03-23 15:57:12 -07007863 return false;
7864 }
7865
7866 return true;
7867}
7868
Daniel Winkler12410572020-12-03 12:12:49 -08007869static bool requested_adv_flags_are_valid(struct hci_dev *hdev, u32 adv_flags)
7870{
7871 u32 supported_flags, phy_flags;
7872
7873 /* The current implementation only supports a subset of the specified
7874 * flags. Also need to check mutual exclusiveness of sec flags.
7875 */
7876 supported_flags = get_supported_adv_flags(hdev);
7877 phy_flags = adv_flags & MGMT_ADV_FLAG_SEC_MASK;
7878 if (adv_flags & ~supported_flags ||
7879 ((phy_flags && (phy_flags ^ (phy_flags & -phy_flags)))))
7880 return false;
7881
7882 return true;
7883}
7884
7885static bool adv_busy(struct hci_dev *hdev)
7886{
7887 return (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
7888 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
7889 pending_find(MGMT_OP_SET_LE, hdev) ||
7890 pending_find(MGMT_OP_ADD_EXT_ADV_PARAMS, hdev) ||
7891 pending_find(MGMT_OP_ADD_EXT_ADV_DATA, hdev));
7892}
7893
Arman Uguray24b4f382015-03-23 15:57:12 -07007894static void add_advertising_complete(struct hci_dev *hdev, u8 status,
7895 u16 opcode)
7896{
7897 struct mgmt_pending_cmd *cmd;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007898 struct mgmt_cp_add_advertising *cp;
Arman Uguray24b4f382015-03-23 15:57:12 -07007899 struct mgmt_rp_add_advertising rp;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007900 struct adv_info *adv_instance, *n;
7901 u8 instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007902
Kai Ye85d672842021-06-03 15:41:02 +08007903 bt_dev_dbg(hdev, "status %u", status);
Arman Uguray24b4f382015-03-23 15:57:12 -07007904
7905 hci_dev_lock(hdev);
7906
7907 cmd = pending_find(MGMT_OP_ADD_ADVERTISING, hdev);
Daniel Winkler12410572020-12-03 12:12:49 -08007908 if (!cmd)
7909 cmd = pending_find(MGMT_OP_ADD_EXT_ADV_DATA, hdev);
Arman Uguray24b4f382015-03-23 15:57:12 -07007910
Florian Grandelfffd38b2015-06-18 03:16:47 +02007911 list_for_each_entry_safe(adv_instance, n, &hdev->adv_instances, list) {
7912 if (!adv_instance->pending)
7913 continue;
7914
7915 if (!status) {
7916 adv_instance->pending = false;
7917 continue;
7918 }
7919
7920 instance = adv_instance->instance;
7921
7922 if (hdev->cur_adv_instance == instance)
7923 cancel_adv_timeout(hdev);
7924
7925 hci_remove_adv_instance(hdev, instance);
Johan Hedbergf2252572015-11-18 12:49:20 +02007926 mgmt_advertising_removed(cmd ? cmd->sk : NULL, hdev, instance);
Arman Uguray24b4f382015-03-23 15:57:12 -07007927 }
7928
7929 if (!cmd)
7930 goto unlock;
7931
Florian Grandelfffd38b2015-06-18 03:16:47 +02007932 cp = cmd->param;
7933 rp.instance = cp->instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007934
7935 if (status)
7936 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
7937 mgmt_status(status));
7938 else
7939 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
7940 mgmt_status(status), &rp, sizeof(rp));
7941
7942 mgmt_pending_remove(cmd);
7943
7944unlock:
7945 hci_dev_unlock(hdev);
7946}
7947
7948static int add_advertising(struct sock *sk, struct hci_dev *hdev,
7949 void *data, u16 data_len)
7950{
7951 struct mgmt_cp_add_advertising *cp = data;
7952 struct mgmt_rp_add_advertising rp;
7953 u32 flags;
7954 u8 status;
Florian Grandelfffd38b2015-06-18 03:16:47 +02007955 u16 timeout, duration;
7956 unsigned int prev_instance_cnt = hdev->adv_instance_cnt;
7957 u8 schedule_instance = 0;
7958 struct adv_info *next_instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07007959 int err;
7960 struct mgmt_pending_cmd *cmd;
7961 struct hci_request req;
7962
Marcel Holtmann181d6952020-05-06 09:57:47 +02007963 bt_dev_dbg(hdev, "sock %p", sk);
Arman Uguray24b4f382015-03-23 15:57:12 -07007964
7965 status = mgmt_le_support(hdev);
7966 if (status)
7967 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7968 status);
7969
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05307970 /* Enabling the experimental LL Privay support disables support for
7971 * advertising.
7972 */
7973 if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
Tedd Ho-Jeong Ana25fca42021-07-26 13:22:36 -07007974 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05307975 MGMT_STATUS_NOT_SUPPORTED);
7976
Daniel Winkler87597482020-08-25 16:31:50 -07007977 if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets)
Marcel Holtmannceff86a2015-11-19 16:16:41 +01007978 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7979 MGMT_STATUS_INVALID_PARAMS);
7980
Johan Hedberg6a0e7802016-03-11 09:56:33 +02007981 if (data_len != sizeof(*cp) + cp->adv_data_len + cp->scan_rsp_len)
7982 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7983 MGMT_STATUS_INVALID_PARAMS);
7984
Arman Uguray24b4f382015-03-23 15:57:12 -07007985 flags = __le32_to_cpu(cp->flags);
Arman Uguray912098a2015-03-23 15:57:15 -07007986 timeout = __le16_to_cpu(cp->timeout);
Florian Grandelfffd38b2015-06-18 03:16:47 +02007987 duration = __le16_to_cpu(cp->duration);
Arman Uguray24b4f382015-03-23 15:57:12 -07007988
Daniel Winkler12410572020-12-03 12:12:49 -08007989 if (!requested_adv_flags_are_valid(hdev, flags))
Arman Uguray24b4f382015-03-23 15:57:12 -07007990 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7991 MGMT_STATUS_INVALID_PARAMS);
7992
7993 hci_dev_lock(hdev);
7994
Arman Uguray912098a2015-03-23 15:57:15 -07007995 if (timeout && !hdev_is_powered(hdev)) {
7996 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
7997 MGMT_STATUS_REJECTED);
7998 goto unlock;
7999 }
8000
Daniel Winkler12410572020-12-03 12:12:49 -08008001 if (adv_busy(hdev)) {
Arman Uguray24b4f382015-03-23 15:57:12 -07008002 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
8003 MGMT_STATUS_BUSY);
8004 goto unlock;
8005 }
8006
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02008007 if (!tlv_data_is_valid(hdev, flags, cp->data, cp->adv_data_len, true) ||
8008 !tlv_data_is_valid(hdev, flags, cp->data + cp->adv_data_len,
Arman Ugurayb44133f2015-03-25 18:53:41 -07008009 cp->scan_rsp_len, false)) {
Arman Uguray24b4f382015-03-23 15:57:12 -07008010 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
8011 MGMT_STATUS_INVALID_PARAMS);
8012 goto unlock;
8013 }
8014
Florian Grandelfffd38b2015-06-18 03:16:47 +02008015 err = hci_add_adv_instance(hdev, cp->instance, flags,
8016 cp->adv_data_len, cp->data,
8017 cp->scan_rsp_len,
8018 cp->data + cp->adv_data_len,
Daniel Winkler9bf9f4b2020-12-03 12:12:50 -08008019 timeout, duration,
8020 HCI_ADV_TX_POWER_NO_PREFERENCE,
8021 hdev->le_adv_min_interval,
8022 hdev->le_adv_max_interval);
Florian Grandelfffd38b2015-06-18 03:16:47 +02008023 if (err < 0) {
8024 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
8025 MGMT_STATUS_FAILED);
8026 goto unlock;
8027 }
Arman Uguray24b4f382015-03-23 15:57:12 -07008028
Florian Grandelfffd38b2015-06-18 03:16:47 +02008029 /* Only trigger an advertising added event if a new instance was
8030 * actually added.
8031 */
8032 if (hdev->adv_instance_cnt > prev_instance_cnt)
Johan Hedbergf2252572015-11-18 12:49:20 +02008033 mgmt_advertising_added(sk, hdev, cp->instance);
Arman Uguray24b4f382015-03-23 15:57:12 -07008034
Florian Grandelfffd38b2015-06-18 03:16:47 +02008035 if (hdev->cur_adv_instance == cp->instance) {
8036 /* If the currently advertised instance is being changed then
8037 * cancel the current advertising and schedule the next
8038 * instance. If there is only one instance then the overridden
8039 * advertising data will be visible right away.
8040 */
8041 cancel_adv_timeout(hdev);
Arman Uguray912098a2015-03-23 15:57:15 -07008042
Florian Grandelfffd38b2015-06-18 03:16:47 +02008043 next_instance = hci_get_next_instance(hdev, cp->instance);
8044 if (next_instance)
8045 schedule_instance = next_instance->instance;
8046 } else if (!hdev->adv_instance_timeout) {
8047 /* Immediately advertise the new instance if no other
8048 * instance is currently being advertised.
8049 */
8050 schedule_instance = cp->instance;
8051 }
Arman Uguray912098a2015-03-23 15:57:15 -07008052
Florian Grandelfffd38b2015-06-18 03:16:47 +02008053 /* If the HCI_ADVERTISING flag is set or the device isn't powered or
8054 * there is no instance to be advertised then we have no HCI
8055 * communication to make. Simply return.
Arman Uguray24b4f382015-03-23 15:57:12 -07008056 */
8057 if (!hdev_is_powered(hdev) ||
Florian Grandelfffd38b2015-06-18 03:16:47 +02008058 hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
8059 !schedule_instance) {
8060 rp.instance = cp->instance;
Arman Uguray24b4f382015-03-23 15:57:12 -07008061 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
8062 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
8063 goto unlock;
8064 }
8065
8066 /* We're good to go, update advertising data, parameters, and start
8067 * advertising.
8068 */
8069 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_ADVERTISING, hdev, data,
8070 data_len);
8071 if (!cmd) {
8072 err = -ENOMEM;
8073 goto unlock;
8074 }
8075
8076 hci_req_init(&req, hdev);
8077
Johan Hedbergf2252572015-11-18 12:49:20 +02008078 err = __hci_req_schedule_adv_instance(&req, schedule_instance, true);
Arman Uguray24b4f382015-03-23 15:57:12 -07008079
Florian Grandelfffd38b2015-06-18 03:16:47 +02008080 if (!err)
8081 err = hci_req_run(&req, add_advertising_complete);
8082
Joseph Hwang72da7b22020-03-10 09:31:50 -07008083 if (err < 0) {
8084 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
8085 MGMT_STATUS_FAILED);
Arman Uguray24b4f382015-03-23 15:57:12 -07008086 mgmt_pending_remove(cmd);
Joseph Hwang72da7b22020-03-10 09:31:50 -07008087 }
Arman Uguray24b4f382015-03-23 15:57:12 -07008088
8089unlock:
8090 hci_dev_unlock(hdev);
8091
8092 return err;
8093}
8094
Daniel Winkler12410572020-12-03 12:12:49 -08008095static void add_ext_adv_params_complete(struct hci_dev *hdev, u8 status,
8096 u16 opcode)
8097{
8098 struct mgmt_pending_cmd *cmd;
8099 struct mgmt_cp_add_ext_adv_params *cp;
8100 struct mgmt_rp_add_ext_adv_params rp;
8101 struct adv_info *adv_instance;
8102 u32 flags;
8103
8104 BT_DBG("%s", hdev->name);
8105
8106 hci_dev_lock(hdev);
8107
8108 cmd = pending_find(MGMT_OP_ADD_EXT_ADV_PARAMS, hdev);
8109 if (!cmd)
8110 goto unlock;
8111
8112 cp = cmd->param;
8113 adv_instance = hci_find_adv_instance(hdev, cp->instance);
8114 if (!adv_instance)
8115 goto unlock;
8116
8117 rp.instance = cp->instance;
8118 rp.tx_power = adv_instance->tx_power;
8119
8120 /* While we're at it, inform userspace of the available space for this
8121 * advertisement, given the flags that will be used.
8122 */
8123 flags = __le32_to_cpu(cp->flags);
8124 rp.max_adv_data_len = tlv_data_max_len(hdev, flags, true);
8125 rp.max_scan_rsp_len = tlv_data_max_len(hdev, flags, false);
8126
8127 if (status) {
8128 /* If this advertisement was previously advertising and we
8129 * failed to update it, we signal that it has been removed and
8130 * delete its structure
8131 */
8132 if (!adv_instance->pending)
8133 mgmt_advertising_removed(cmd->sk, hdev, cp->instance);
8134
8135 hci_remove_adv_instance(hdev, cp->instance);
8136
8137 mgmt_cmd_status(cmd->sk, cmd->index, cmd->opcode,
8138 mgmt_status(status));
8139
8140 } else {
8141 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode,
8142 mgmt_status(status), &rp, sizeof(rp));
8143 }
8144
8145unlock:
8146 if (cmd)
8147 mgmt_pending_remove(cmd);
8148
8149 hci_dev_unlock(hdev);
8150}
8151
8152static int add_ext_adv_params(struct sock *sk, struct hci_dev *hdev,
8153 void *data, u16 data_len)
8154{
8155 struct mgmt_cp_add_ext_adv_params *cp = data;
8156 struct mgmt_rp_add_ext_adv_params rp;
8157 struct mgmt_pending_cmd *cmd = NULL;
8158 struct adv_info *adv_instance;
8159 struct hci_request req;
8160 u32 flags, min_interval, max_interval;
8161 u16 timeout, duration;
8162 u8 status;
8163 s8 tx_power;
8164 int err;
8165
8166 BT_DBG("%s", hdev->name);
8167
8168 status = mgmt_le_support(hdev);
8169 if (status)
8170 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
8171 status);
8172
8173 if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets)
8174 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
8175 MGMT_STATUS_INVALID_PARAMS);
8176
8177 /* The purpose of breaking add_advertising into two separate MGMT calls
8178 * for params and data is to allow more parameters to be added to this
8179 * structure in the future. For this reason, we verify that we have the
8180 * bare minimum structure we know of when the interface was defined. Any
8181 * extra parameters we don't know about will be ignored in this request.
8182 */
8183 if (data_len < MGMT_ADD_EXT_ADV_PARAMS_MIN_SIZE)
8184 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_ADVERTISING,
8185 MGMT_STATUS_INVALID_PARAMS);
8186
8187 flags = __le32_to_cpu(cp->flags);
8188
8189 if (!requested_adv_flags_are_valid(hdev, flags))
8190 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
8191 MGMT_STATUS_INVALID_PARAMS);
8192
8193 hci_dev_lock(hdev);
8194
8195 /* In new interface, we require that we are powered to register */
8196 if (!hdev_is_powered(hdev)) {
8197 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
8198 MGMT_STATUS_REJECTED);
8199 goto unlock;
8200 }
8201
8202 if (adv_busy(hdev)) {
8203 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
8204 MGMT_STATUS_BUSY);
8205 goto unlock;
8206 }
8207
8208 /* Parse defined parameters from request, use defaults otherwise */
8209 timeout = (flags & MGMT_ADV_PARAM_TIMEOUT) ?
8210 __le16_to_cpu(cp->timeout) : 0;
8211
8212 duration = (flags & MGMT_ADV_PARAM_DURATION) ?
8213 __le16_to_cpu(cp->duration) :
8214 hdev->def_multi_adv_rotation_duration;
8215
8216 min_interval = (flags & MGMT_ADV_PARAM_INTERVALS) ?
8217 __le32_to_cpu(cp->min_interval) :
8218 hdev->le_adv_min_interval;
8219
8220 max_interval = (flags & MGMT_ADV_PARAM_INTERVALS) ?
8221 __le32_to_cpu(cp->max_interval) :
8222 hdev->le_adv_max_interval;
8223
8224 tx_power = (flags & MGMT_ADV_PARAM_TX_POWER) ?
8225 cp->tx_power :
8226 HCI_ADV_TX_POWER_NO_PREFERENCE;
8227
8228 /* Create advertising instance with no advertising or response data */
8229 err = hci_add_adv_instance(hdev, cp->instance, flags,
Daniel Winkler9bf9f4b2020-12-03 12:12:50 -08008230 0, NULL, 0, NULL, timeout, duration,
8231 tx_power, min_interval, max_interval);
Daniel Winkler12410572020-12-03 12:12:49 -08008232
8233 if (err < 0) {
8234 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_PARAMS,
8235 MGMT_STATUS_FAILED);
8236 goto unlock;
8237 }
8238
Daniel Winkler12410572020-12-03 12:12:49 -08008239 /* Submit request for advertising params if ext adv available */
8240 if (ext_adv_capable(hdev)) {
8241 hci_req_init(&req, hdev);
8242 adv_instance = hci_find_adv_instance(hdev, cp->instance);
8243
8244 /* Updating parameters of an active instance will return a
8245 * Command Disallowed error, so we must first disable the
8246 * instance if it is active.
8247 */
8248 if (!adv_instance->pending)
8249 __hci_req_disable_ext_adv_instance(&req, cp->instance);
8250
8251 __hci_req_setup_ext_adv_instance(&req, cp->instance);
8252
8253 err = hci_req_run(&req, add_ext_adv_params_complete);
8254
8255 if (!err)
8256 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_EXT_ADV_PARAMS,
8257 hdev, data, data_len);
8258 if (!cmd) {
8259 err = -ENOMEM;
8260 hci_remove_adv_instance(hdev, cp->instance);
8261 goto unlock;
8262 }
8263
8264 } else {
8265 rp.instance = cp->instance;
8266 rp.tx_power = HCI_ADV_TX_POWER_NO_PREFERENCE;
8267 rp.max_adv_data_len = tlv_data_max_len(hdev, flags, true);
8268 rp.max_scan_rsp_len = tlv_data_max_len(hdev, flags, false);
8269 err = mgmt_cmd_complete(sk, hdev->id,
8270 MGMT_OP_ADD_EXT_ADV_PARAMS,
8271 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
8272 }
8273
8274unlock:
8275 hci_dev_unlock(hdev);
8276
8277 return err;
8278}
8279
8280static int add_ext_adv_data(struct sock *sk, struct hci_dev *hdev, void *data,
8281 u16 data_len)
8282{
8283 struct mgmt_cp_add_ext_adv_data *cp = data;
8284 struct mgmt_rp_add_ext_adv_data rp;
8285 u8 schedule_instance = 0;
8286 struct adv_info *next_instance;
8287 struct adv_info *adv_instance;
8288 int err = 0;
8289 struct mgmt_pending_cmd *cmd;
8290 struct hci_request req;
8291
8292 BT_DBG("%s", hdev->name);
8293
8294 hci_dev_lock(hdev);
8295
8296 adv_instance = hci_find_adv_instance(hdev, cp->instance);
8297
8298 if (!adv_instance) {
8299 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
8300 MGMT_STATUS_INVALID_PARAMS);
8301 goto unlock;
8302 }
8303
8304 /* In new interface, we require that we are powered to register */
8305 if (!hdev_is_powered(hdev)) {
8306 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
8307 MGMT_STATUS_REJECTED);
8308 goto clear_new_instance;
8309 }
8310
8311 if (adv_busy(hdev)) {
8312 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
8313 MGMT_STATUS_BUSY);
8314 goto clear_new_instance;
8315 }
8316
8317 /* Validate new data */
8318 if (!tlv_data_is_valid(hdev, adv_instance->flags, cp->data,
8319 cp->adv_data_len, true) ||
8320 !tlv_data_is_valid(hdev, adv_instance->flags, cp->data +
8321 cp->adv_data_len, cp->scan_rsp_len, false)) {
8322 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
8323 MGMT_STATUS_INVALID_PARAMS);
8324 goto clear_new_instance;
8325 }
8326
8327 /* Set the data in the advertising instance */
8328 hci_set_adv_instance_data(hdev, cp->instance, cp->adv_data_len,
8329 cp->data, cp->scan_rsp_len,
8330 cp->data + cp->adv_data_len);
8331
8332 /* We're good to go, update advertising data, parameters, and start
8333 * advertising.
8334 */
8335
8336 hci_req_init(&req, hdev);
8337
8338 hci_req_add(&req, HCI_OP_READ_LOCAL_NAME, 0, NULL);
8339
8340 if (ext_adv_capable(hdev)) {
8341 __hci_req_update_adv_data(&req, cp->instance);
8342 __hci_req_update_scan_rsp_data(&req, cp->instance);
8343 __hci_req_enable_ext_advertising(&req, cp->instance);
8344
8345 } else {
8346 /* If using software rotation, determine next instance to use */
8347
8348 if (hdev->cur_adv_instance == cp->instance) {
8349 /* If the currently advertised instance is being changed
8350 * then cancel the current advertising and schedule the
8351 * next instance. If there is only one instance then the
8352 * overridden advertising data will be visible right
8353 * away
8354 */
8355 cancel_adv_timeout(hdev);
8356
8357 next_instance = hci_get_next_instance(hdev,
8358 cp->instance);
8359 if (next_instance)
8360 schedule_instance = next_instance->instance;
8361 } else if (!hdev->adv_instance_timeout) {
8362 /* Immediately advertise the new instance if no other
8363 * instance is currently being advertised.
8364 */
8365 schedule_instance = cp->instance;
8366 }
8367
8368 /* If the HCI_ADVERTISING flag is set or there is no instance to
8369 * be advertised then we have no HCI communication to make.
8370 * Simply return.
8371 */
8372 if (hci_dev_test_flag(hdev, HCI_ADVERTISING) ||
8373 !schedule_instance) {
8374 if (adv_instance->pending) {
8375 mgmt_advertising_added(sk, hdev, cp->instance);
8376 adv_instance->pending = false;
8377 }
8378 rp.instance = cp->instance;
8379 err = mgmt_cmd_complete(sk, hdev->id,
8380 MGMT_OP_ADD_EXT_ADV_DATA,
8381 MGMT_STATUS_SUCCESS, &rp,
8382 sizeof(rp));
8383 goto unlock;
8384 }
8385
8386 err = __hci_req_schedule_adv_instance(&req, schedule_instance,
8387 true);
8388 }
8389
8390 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_EXT_ADV_DATA, hdev, data,
8391 data_len);
8392 if (!cmd) {
8393 err = -ENOMEM;
8394 goto clear_new_instance;
8395 }
8396
8397 if (!err)
8398 err = hci_req_run(&req, add_advertising_complete);
8399
8400 if (err < 0) {
8401 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_ADD_EXT_ADV_DATA,
8402 MGMT_STATUS_FAILED);
8403 mgmt_pending_remove(cmd);
8404 goto clear_new_instance;
8405 }
8406
8407 /* We were successful in updating data, so trigger advertising_added
8408 * event if this is an instance that wasn't previously advertising. If
8409 * a failure occurs in the requests we initiated, we will remove the
8410 * instance again in add_advertising_complete
8411 */
8412 if (adv_instance->pending)
8413 mgmt_advertising_added(sk, hdev, cp->instance);
8414
8415 goto unlock;
8416
8417clear_new_instance:
8418 hci_remove_adv_instance(hdev, cp->instance);
8419
8420unlock:
8421 hci_dev_unlock(hdev);
8422
8423 return err;
8424}
8425
Arman Ugurayda9293352015-03-23 15:57:13 -07008426static void remove_advertising_complete(struct hci_dev *hdev, u8 status,
8427 u16 opcode)
8428{
8429 struct mgmt_pending_cmd *cmd;
Florian Grandel01948332015-06-18 03:16:48 +02008430 struct mgmt_cp_remove_advertising *cp;
Arman Ugurayda9293352015-03-23 15:57:13 -07008431 struct mgmt_rp_remove_advertising rp;
8432
Kai Ye85d672842021-06-03 15:41:02 +08008433 bt_dev_dbg(hdev, "status %u", status);
Arman Ugurayda9293352015-03-23 15:57:13 -07008434
8435 hci_dev_lock(hdev);
8436
8437 /* A failure status here only means that we failed to disable
8438 * advertising. Otherwise, the advertising instance has been removed,
8439 * so report success.
8440 */
8441 cmd = pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev);
8442 if (!cmd)
8443 goto unlock;
8444
Florian Grandel01948332015-06-18 03:16:48 +02008445 cp = cmd->param;
8446 rp.instance = cp->instance;
Arman Ugurayda9293352015-03-23 15:57:13 -07008447
8448 mgmt_cmd_complete(cmd->sk, cmd->index, cmd->opcode, MGMT_STATUS_SUCCESS,
8449 &rp, sizeof(rp));
8450 mgmt_pending_remove(cmd);
8451
8452unlock:
8453 hci_dev_unlock(hdev);
8454}
8455
8456static int remove_advertising(struct sock *sk, struct hci_dev *hdev,
8457 void *data, u16 data_len)
8458{
8459 struct mgmt_cp_remove_advertising *cp = data;
8460 struct mgmt_rp_remove_advertising rp;
Arman Ugurayda9293352015-03-23 15:57:13 -07008461 struct mgmt_pending_cmd *cmd;
8462 struct hci_request req;
Johan Hedberg952497b2015-06-18 21:05:31 +03008463 int err;
Arman Ugurayda9293352015-03-23 15:57:13 -07008464
Marcel Holtmann181d6952020-05-06 09:57:47 +02008465 bt_dev_dbg(hdev, "sock %p", sk);
Arman Ugurayda9293352015-03-23 15:57:13 -07008466
Sathish Narasimmancbbdfa62020-07-23 18:09:03 +05308467 /* Enabling the experimental LL Privay support disables support for
8468 * advertising.
8469 */
8470 if (hci_dev_test_flag(hdev, HCI_ENABLE_LL_PRIVACY))
8471 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
8472 MGMT_STATUS_NOT_SUPPORTED);
8473
Arman Ugurayda9293352015-03-23 15:57:13 -07008474 hci_dev_lock(hdev);
8475
Johan Hedberg952497b2015-06-18 21:05:31 +03008476 if (cp->instance && !hci_find_adv_instance(hdev, cp->instance)) {
Florian Grandel01948332015-06-18 03:16:48 +02008477 err = mgmt_cmd_status(sk, hdev->id,
8478 MGMT_OP_REMOVE_ADVERTISING,
8479 MGMT_STATUS_INVALID_PARAMS);
8480 goto unlock;
8481 }
8482
Arman Ugurayda9293352015-03-23 15:57:13 -07008483 if (pending_find(MGMT_OP_ADD_ADVERTISING, hdev) ||
8484 pending_find(MGMT_OP_REMOVE_ADVERTISING, hdev) ||
8485 pending_find(MGMT_OP_SET_LE, hdev)) {
8486 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
8487 MGMT_STATUS_BUSY);
8488 goto unlock;
8489 }
8490
Johan Hedberg17fd08f2015-11-26 12:15:59 +02008491 if (list_empty(&hdev->adv_instances)) {
Arman Ugurayda9293352015-03-23 15:57:13 -07008492 err = mgmt_cmd_status(sk, hdev->id, MGMT_OP_REMOVE_ADVERTISING,
8493 MGMT_STATUS_INVALID_PARAMS);
8494 goto unlock;
8495 }
8496
Florian Grandel01948332015-06-18 03:16:48 +02008497 hci_req_init(&req, hdev);
Arman Uguray912098a2015-03-23 15:57:15 -07008498
Daniel Winkler37adf702020-07-14 14:16:00 -07008499 /* If we use extended advertising, instance is disabled and removed */
8500 if (ext_adv_capable(hdev)) {
8501 __hci_req_disable_ext_adv_instance(&req, cp->instance);
8502 __hci_req_remove_ext_adv_instance(&req, cp->instance);
8503 }
8504
Johan Hedberg37d3a1f2016-08-28 20:53:34 +03008505 hci_req_clear_adv_instance(hdev, sk, &req, cp->instance, true);
Arman Ugurayda9293352015-03-23 15:57:13 -07008506
Florian Grandel01948332015-06-18 03:16:48 +02008507 if (list_empty(&hdev->adv_instances))
Johan Hedbergf2252572015-11-18 12:49:20 +02008508 __hci_req_disable_advertising(&req);
Arman Ugurayda9293352015-03-23 15:57:13 -07008509
Florian Grandel01948332015-06-18 03:16:48 +02008510 /* If no HCI commands have been collected so far or the HCI_ADVERTISING
8511 * flag is set or the device isn't powered then we have no HCI
8512 * communication to make. Simply return.
Arman Ugurayda9293352015-03-23 15:57:13 -07008513 */
Florian Grandel01948332015-06-18 03:16:48 +02008514 if (skb_queue_empty(&req.cmd_q) ||
8515 !hdev_is_powered(hdev) ||
Arman Ugurayda9293352015-03-23 15:57:13 -07008516 hci_dev_test_flag(hdev, HCI_ADVERTISING)) {
Jaganath Kanakkasseryf17d8582017-10-25 10:58:48 +05308517 hci_req_purge(&req);
Florian Grandel01948332015-06-18 03:16:48 +02008518 rp.instance = cp->instance;
Arman Ugurayda9293352015-03-23 15:57:13 -07008519 err = mgmt_cmd_complete(sk, hdev->id,
8520 MGMT_OP_REMOVE_ADVERTISING,
8521 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
8522 goto unlock;
8523 }
8524
8525 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_ADVERTISING, hdev, data,
8526 data_len);
8527 if (!cmd) {
8528 err = -ENOMEM;
8529 goto unlock;
8530 }
8531
Arman Ugurayda9293352015-03-23 15:57:13 -07008532 err = hci_req_run(&req, remove_advertising_complete);
8533 if (err < 0)
8534 mgmt_pending_remove(cmd);
8535
8536unlock:
8537 hci_dev_unlock(hdev);
8538
8539 return err;
8540}
8541
Marcel Holtmann40b25fe2015-11-19 16:16:43 +01008542static int get_adv_size_info(struct sock *sk, struct hci_dev *hdev,
8543 void *data, u16 data_len)
8544{
8545 struct mgmt_cp_get_adv_size_info *cp = data;
8546 struct mgmt_rp_get_adv_size_info rp;
8547 u32 flags, supported_flags;
8548 int err;
8549
Marcel Holtmann181d6952020-05-06 09:57:47 +02008550 bt_dev_dbg(hdev, "sock %p", sk);
Marcel Holtmann40b25fe2015-11-19 16:16:43 +01008551
8552 if (!lmp_le_capable(hdev))
8553 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
8554 MGMT_STATUS_REJECTED);
8555
Daniel Winkler87597482020-08-25 16:31:50 -07008556 if (cp->instance < 1 || cp->instance > hdev->le_num_of_adv_sets)
Marcel Holtmann40b25fe2015-11-19 16:16:43 +01008557 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
8558 MGMT_STATUS_INVALID_PARAMS);
8559
8560 flags = __le32_to_cpu(cp->flags);
8561
8562 /* The current implementation only supports a subset of the specified
8563 * flags.
8564 */
8565 supported_flags = get_supported_adv_flags(hdev);
8566 if (flags & ~supported_flags)
8567 return mgmt_cmd_status(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
8568 MGMT_STATUS_INVALID_PARAMS);
8569
8570 rp.instance = cp->instance;
8571 rp.flags = cp->flags;
MichaƂ Narajowskif61851f2016-10-19 10:20:27 +02008572 rp.max_adv_data_len = tlv_data_max_len(hdev, flags, true);
8573 rp.max_scan_rsp_len = tlv_data_max_len(hdev, flags, false);
Marcel Holtmann40b25fe2015-11-19 16:16:43 +01008574
8575 err = mgmt_cmd_complete(sk, hdev->id, MGMT_OP_GET_ADV_SIZE_INFO,
8576 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
8577
8578 return err;
8579}
8580
Johan Hedberg6d785aa32015-03-06 21:08:51 +02008581static const struct hci_mgmt_handler mgmt_handlers[] = {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02008582 { NULL }, /* 0x0000 (no command) */
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008583 { read_version, MGMT_READ_VERSION_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008584 HCI_MGMT_NO_HDEV |
8585 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008586 { read_commands, MGMT_READ_COMMANDS_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008587 HCI_MGMT_NO_HDEV |
8588 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008589 { read_index_list, MGMT_READ_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008590 HCI_MGMT_NO_HDEV |
8591 HCI_MGMT_UNTRUSTED },
8592 { read_controller_info, MGMT_READ_INFO_SIZE,
8593 HCI_MGMT_UNTRUSTED },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07008594 { set_powered, MGMT_SETTING_SIZE },
8595 { set_discoverable, MGMT_SET_DISCOVERABLE_SIZE },
8596 { set_connectable, MGMT_SETTING_SIZE },
8597 { set_fast_connectable, MGMT_SETTING_SIZE },
8598 { set_bondable, MGMT_SETTING_SIZE },
8599 { set_link_security, MGMT_SETTING_SIZE },
8600 { set_ssp, MGMT_SETTING_SIZE },
8601 { set_hs, MGMT_SETTING_SIZE },
8602 { set_le, MGMT_SETTING_SIZE },
8603 { set_dev_class, MGMT_SET_DEV_CLASS_SIZE },
8604 { set_local_name, MGMT_SET_LOCAL_NAME_SIZE },
8605 { add_uuid, MGMT_ADD_UUID_SIZE },
8606 { remove_uuid, MGMT_REMOVE_UUID_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008607 { load_link_keys, MGMT_LOAD_LINK_KEYS_SIZE,
8608 HCI_MGMT_VAR_LEN },
8609 { load_long_term_keys, MGMT_LOAD_LONG_TERM_KEYS_SIZE,
8610 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07008611 { disconnect, MGMT_DISCONNECT_SIZE },
8612 { get_connections, MGMT_GET_CONNECTIONS_SIZE },
8613 { pin_code_reply, MGMT_PIN_CODE_REPLY_SIZE },
8614 { pin_code_neg_reply, MGMT_PIN_CODE_NEG_REPLY_SIZE },
8615 { set_io_capability, MGMT_SET_IO_CAPABILITY_SIZE },
8616 { pair_device, MGMT_PAIR_DEVICE_SIZE },
8617 { cancel_pair_device, MGMT_CANCEL_PAIR_DEVICE_SIZE },
8618 { unpair_device, MGMT_UNPAIR_DEVICE_SIZE },
8619 { user_confirm_reply, MGMT_USER_CONFIRM_REPLY_SIZE },
8620 { user_confirm_neg_reply, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
8621 { user_passkey_reply, MGMT_USER_PASSKEY_REPLY_SIZE },
8622 { user_passkey_neg_reply, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008623 { read_local_oob_data, MGMT_READ_LOCAL_OOB_DATA_SIZE },
8624 { add_remote_oob_data, MGMT_ADD_REMOTE_OOB_DATA_SIZE,
8625 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07008626 { remove_remote_oob_data, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
8627 { start_discovery, MGMT_START_DISCOVERY_SIZE },
8628 { stop_discovery, MGMT_STOP_DISCOVERY_SIZE },
8629 { confirm_name, MGMT_CONFIRM_NAME_SIZE },
8630 { block_device, MGMT_BLOCK_DEVICE_SIZE },
8631 { unblock_device, MGMT_UNBLOCK_DEVICE_SIZE },
8632 { set_device_id, MGMT_SET_DEVICE_ID_SIZE },
8633 { set_advertising, MGMT_SETTING_SIZE },
8634 { set_bredr, MGMT_SETTING_SIZE },
8635 { set_static_address, MGMT_SET_STATIC_ADDRESS_SIZE },
8636 { set_scan_params, MGMT_SET_SCAN_PARAMS_SIZE },
8637 { set_secure_conn, MGMT_SETTING_SIZE },
8638 { set_debug_keys, MGMT_SETTING_SIZE },
8639 { set_privacy, MGMT_SET_PRIVACY_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008640 { load_irks, MGMT_LOAD_IRKS_SIZE,
8641 HCI_MGMT_VAR_LEN },
Marcel Holtmann7aea86162015-03-14 19:28:02 -07008642 { get_conn_info, MGMT_GET_CONN_INFO_SIZE },
8643 { get_clock_info, MGMT_GET_CLOCK_INFO_SIZE },
8644 { add_device, MGMT_ADD_DEVICE_SIZE },
8645 { remove_device, MGMT_REMOVE_DEVICE_SIZE },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008646 { load_conn_param, MGMT_LOAD_CONN_PARAM_SIZE,
8647 HCI_MGMT_VAR_LEN },
8648 { read_unconf_index_list, MGMT_READ_UNCONF_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008649 HCI_MGMT_NO_HDEV |
8650 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008651 { read_config_info, MGMT_READ_CONFIG_INFO_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008652 HCI_MGMT_UNCONFIGURED |
8653 HCI_MGMT_UNTRUSTED },
Johan Hedbergb9a245fb2015-03-06 21:08:52 +02008654 { set_external_config, MGMT_SET_EXTERNAL_CONFIG_SIZE,
8655 HCI_MGMT_UNCONFIGURED },
8656 { set_public_address, MGMT_SET_PUBLIC_ADDRESS_SIZE,
8657 HCI_MGMT_UNCONFIGURED },
8658 { start_service_discovery, MGMT_START_SERVICE_DISCOVERY_SIZE,
8659 HCI_MGMT_VAR_LEN },
Marcel Holtmann4f0f1552015-03-14 22:43:19 -07008660 { read_local_oob_ext_data, MGMT_READ_LOCAL_OOB_EXT_DATA_SIZE },
Marcel Holtmann96f14742015-03-14 19:27:57 -07008661 { read_ext_index_list, MGMT_READ_EXT_INDEX_LIST_SIZE,
Marcel Holtmannc91041d2015-03-14 19:28:01 -07008662 HCI_MGMT_NO_HDEV |
8663 HCI_MGMT_UNTRUSTED },
Marcel Holtmannd3d53052015-03-14 20:53:25 -07008664 { read_adv_features, MGMT_READ_ADV_FEATURES_SIZE },
Arman Uguray24b4f382015-03-23 15:57:12 -07008665 { add_advertising, MGMT_ADD_ADVERTISING_SIZE,
8666 HCI_MGMT_VAR_LEN },
Arman Ugurayda9293352015-03-23 15:57:13 -07008667 { remove_advertising, MGMT_REMOVE_ADVERTISING_SIZE },
Marcel Holtmann40b25fe2015-11-19 16:16:43 +01008668 { get_adv_size_info, MGMT_GET_ADV_SIZE_INFO_SIZE },
Johan Hedberg78b781c2016-01-05 13:19:32 +02008669 { start_limited_discovery, MGMT_START_DISCOVERY_SIZE },
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02008670 { read_ext_controller_info,MGMT_READ_EXT_INFO_SIZE,
8671 HCI_MGMT_UNTRUSTED },
MichaƂ Narajowskic4960ec2016-09-18 12:50:03 +02008672 { set_appearance, MGMT_SET_APPEARANCE_SIZE },
Jaganath Kanakkassery62446912018-07-19 17:09:34 +05308673 { get_phy_configuration, MGMT_GET_PHY_CONFIGURATION_SIZE },
Jaganath Kanakkassery0314f282018-07-19 17:09:35 +05308674 { set_phy_configuration, MGMT_SET_PHY_CONFIGURATION_SIZE },
Alain Michaud600a8742020-01-07 00:43:17 +00008675 { set_blocked_keys, MGMT_OP_SET_BLOCKED_KEYS_SIZE,
8676 HCI_MGMT_VAR_LEN },
Alain Michaud00bce3f2020-03-05 16:14:59 +00008677 { set_wideband_speech, MGMT_SETTING_SIZE },
Daniel Winkler4d9b9522020-12-03 12:12:52 -08008678 { read_controller_cap, MGMT_READ_CONTROLLER_CAP_SIZE,
Marcel Holtmannbc292252020-04-03 21:44:05 +02008679 HCI_MGMT_UNTRUSTED },
Marcel Holtmanna10c9072020-05-06 09:57:51 +02008680 { read_exp_features_info, MGMT_READ_EXP_FEATURES_INFO_SIZE,
8681 HCI_MGMT_UNTRUSTED |
8682 HCI_MGMT_HDEV_OPTIONAL },
8683 { set_exp_feature, MGMT_SET_EXP_FEATURE_SIZE,
8684 HCI_MGMT_VAR_LEN |
8685 HCI_MGMT_HDEV_OPTIONAL },
Alain Michaud17896402020-06-11 02:01:57 +00008686 { read_def_system_config, MGMT_READ_DEF_SYSTEM_CONFIG_SIZE,
8687 HCI_MGMT_UNTRUSTED },
8688 { set_def_system_config, MGMT_SET_DEF_SYSTEM_CONFIG_SIZE,
8689 HCI_MGMT_VAR_LEN },
Marcel Holtmannaececa62020-06-17 16:39:07 +02008690 { read_def_runtime_config, MGMT_READ_DEF_RUNTIME_CONFIG_SIZE,
8691 HCI_MGMT_UNTRUSTED },
8692 { set_def_runtime_config, MGMT_SET_DEF_RUNTIME_CONFIG_SIZE,
8693 HCI_MGMT_VAR_LEN },
Abhishek Pandit-Subedi4c54bf22020-06-17 16:39:11 +02008694 { get_device_flags, MGMT_GET_DEVICE_FLAGS_SIZE },
8695 { set_device_flags, MGMT_SET_DEVICE_FLAGS_SIZE },
Miao-chen Choue5e1e7f2020-06-17 16:39:13 +02008696 { read_adv_mon_features, MGMT_READ_ADV_MONITOR_FEATURES_SIZE },
Miao-chen Choub1395532020-06-17 16:39:14 +02008697 { add_adv_patterns_monitor,MGMT_ADD_ADV_PATTERNS_MONITOR_SIZE,
8698 HCI_MGMT_VAR_LEN },
Miao-chen Choubd2fbc62020-06-17 16:39:15 +02008699 { remove_adv_monitor, MGMT_REMOVE_ADV_MONITOR_SIZE },
Daniel Winkler12410572020-12-03 12:12:49 -08008700 { add_ext_adv_params, MGMT_ADD_EXT_ADV_PARAMS_MIN_SIZE,
8701 HCI_MGMT_VAR_LEN },
8702 { add_ext_adv_data, MGMT_ADD_EXT_ADV_DATA_SIZE,
8703 HCI_MGMT_VAR_LEN },
Archie Pusakab4a221e2021-01-22 16:36:11 +08008704 { add_adv_patterns_monitor_rssi,
8705 MGMT_ADD_ADV_PATTERNS_MONITOR_RSSI_SIZE,
8706 HCI_MGMT_VAR_LEN },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02008707};
8708
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07008709void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02008710{
Marcel Holtmannced85542015-03-14 19:27:56 -07008711 struct mgmt_ev_ext_index ev;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03008712
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02008713 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
8714 return;
8715
Marcel Holtmannf9207332015-03-14 19:27:55 -07008716 switch (hdev->dev_type) {
Marcel Holtmannca8bee52016-07-05 14:30:14 +02008717 case HCI_PRIMARY:
Marcel Holtmannf9207332015-03-14 19:27:55 -07008718 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
8719 mgmt_index_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev,
8720 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07008721 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008722 } else {
8723 mgmt_index_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0,
8724 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07008725 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008726 }
8727 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07008728 case HCI_AMP:
8729 ev.type = 0x02;
8730 break;
8731 default:
8732 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008733 }
Marcel Holtmannced85542015-03-14 19:27:56 -07008734
8735 ev.bus = hdev->bus;
8736
8737 mgmt_index_event(MGMT_EV_EXT_INDEX_ADDED, hdev, &ev, sizeof(ev),
8738 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02008739}
8740
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07008741void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02008742{
Marcel Holtmannced85542015-03-14 19:27:56 -07008743 struct mgmt_ev_ext_index ev;
Johan Hedberg5f159032012-03-02 03:13:19 +02008744 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02008745
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02008746 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
8747 return;
8748
Marcel Holtmannf9207332015-03-14 19:27:55 -07008749 switch (hdev->dev_type) {
Marcel Holtmannca8bee52016-07-05 14:30:14 +02008750 case HCI_PRIMARY:
Marcel Holtmannf9207332015-03-14 19:27:55 -07008751 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02008752
Marcel Holtmannf9207332015-03-14 19:27:55 -07008753 if (hci_dev_test_flag(hdev, HCI_UNCONFIGURED)) {
8754 mgmt_index_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev,
8755 NULL, 0, HCI_MGMT_UNCONF_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07008756 ev.type = 0x01;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008757 } else {
8758 mgmt_index_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0,
8759 HCI_MGMT_INDEX_EVENTS);
Marcel Holtmannced85542015-03-14 19:27:56 -07008760 ev.type = 0x00;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008761 }
8762 break;
Marcel Holtmannced85542015-03-14 19:27:56 -07008763 case HCI_AMP:
8764 ev.type = 0x02;
8765 break;
8766 default:
8767 return;
Marcel Holtmannf9207332015-03-14 19:27:55 -07008768 }
Marcel Holtmannced85542015-03-14 19:27:56 -07008769
8770 ev.bus = hdev->bus;
8771
8772 mgmt_index_event(MGMT_EV_EXT_INDEX_REMOVED, hdev, &ev, sizeof(ev),
8773 HCI_MGMT_EXT_INDEX_EVENTS);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02008774}
8775
Andre Guedes6046dc32014-02-26 20:21:51 -03008776/* This function requires the caller holds hdev->lock */
Johan Hedbergaf02dd42015-11-11 08:11:21 +02008777static void restart_le_actions(struct hci_dev *hdev)
Andre Guedes6046dc32014-02-26 20:21:51 -03008778{
8779 struct hci_conn_params *p;
8780
8781 list_for_each_entry(p, &hdev->le_conn_params, list) {
Johan Hedbergd7347f32014-07-04 12:37:23 +03008782 /* Needed for AUTO_OFF case where might not "really"
8783 * have been powered off.
8784 */
8785 list_del_init(&p->action);
8786
8787 switch (p->auto_connect) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02008788 case HCI_AUTO_CONN_DIRECT:
Johan Hedbergd7347f32014-07-04 12:37:23 +03008789 case HCI_AUTO_CONN_ALWAYS:
8790 list_add(&p->action, &hdev->pend_le_conns);
8791 break;
8792 case HCI_AUTO_CONN_REPORT:
8793 list_add(&p->action, &hdev->pend_le_reports);
8794 break;
8795 default:
8796 break;
Marcel Holtmannc83ed192014-07-01 19:28:24 +02008797 }
Andre Guedes6046dc32014-02-26 20:21:51 -03008798 }
8799}
8800
Johan Hedberg2ff13892015-11-25 16:15:44 +02008801void mgmt_power_on(struct hci_dev *hdev, int err)
Johan Hedberg229ab392013-03-15 17:06:53 -05008802{
8803 struct cmd_lookup match = { NULL, hdev };
8804
Marcel Holtmann181d6952020-05-06 09:57:47 +02008805 bt_dev_dbg(hdev, "err %d", err);
Johan Hedberg229ab392013-03-15 17:06:53 -05008806
Johan Hedberg2ff13892015-11-25 16:15:44 +02008807 hci_dev_lock(hdev);
8808
8809 if (!err) {
Johan Hedbergaf02dd42015-11-11 08:11:21 +02008810 restart_le_actions(hdev);
8811 hci_update_background_scan(hdev);
Marcel Holtmann162a3ba2015-01-14 15:43:11 -08008812 }
8813
Johan Hedberg229ab392013-03-15 17:06:53 -05008814 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
8815
8816 new_settings(hdev, match.sk);
8817
Johan Hedberg229ab392013-03-15 17:06:53 -05008818 if (match.sk)
8819 sock_put(match.sk);
Johan Hedberg2ff13892015-11-25 16:15:44 +02008820
8821 hci_dev_unlock(hdev);
Johan Hedberg229ab392013-03-15 17:06:53 -05008822}
8823
Johan Hedberg2ff13892015-11-25 16:15:44 +02008824void __mgmt_power_off(struct hci_dev *hdev)
Johan Hedberg5add6af2010-12-16 10:00:37 +02008825{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02008826 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg98459042014-12-12 11:15:21 +02008827 u8 status, zero_cod[] = { 0, 0, 0 };
Johan Hedbergb24752f2011-11-03 14:40:33 +02008828
Johan Hedberg229ab392013-03-15 17:06:53 -05008829 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
Johan Hedberg98459042014-12-12 11:15:21 +02008830
8831 /* If the power off is because of hdev unregistration let
8832 * use the appropriate INVALID_INDEX status. Otherwise use
8833 * NOT_POWERED. We cover both scenarios here since later in
8834 * mgmt_index_removed() any hci_conn callbacks will have already
8835 * been triggered, potentially causing misleading DISCONNECTED
8836 * status responses.
8837 */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07008838 if (hci_dev_test_flag(hdev, HCI_UNREGISTER))
Johan Hedberg98459042014-12-12 11:15:21 +02008839 status = MGMT_STATUS_INVALID_INDEX;
8840 else
8841 status = MGMT_STATUS_NOT_POWERED;
8842
8843 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedberg229ab392013-03-15 17:06:53 -05008844
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02008845 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0) {
Marcel Holtmann5504c3a2016-08-29 06:19:46 +02008846 mgmt_limited_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
8847 zero_cod, sizeof(zero_cod),
8848 HCI_MGMT_DEV_CLASS_EVENTS, NULL);
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02008849 ext_info_changed(hdev, NULL);
8850 }
Johan Hedberg229ab392013-03-15 17:06:53 -05008851
Johan Hedberg2ff13892015-11-25 16:15:44 +02008852 new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02008853
8854 if (match.sk)
8855 sock_put(match.sk);
Johan Hedberg5add6af2010-12-16 10:00:37 +02008856}
Johan Hedberg73f22f62010-12-29 16:00:25 +02008857
Marcel Holtmann3eec7052013-10-06 23:55:46 -07008858void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03008859{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02008860 struct mgmt_pending_cmd *cmd;
Johan Hedberg96570ff2013-05-29 09:51:29 +03008861 u8 status;
8862
Johan Hedberg333ae952015-03-17 13:48:47 +02008863 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg96570ff2013-05-29 09:51:29 +03008864 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07008865 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03008866
8867 if (err == -ERFKILL)
8868 status = MGMT_STATUS_RFKILLED;
8869 else
8870 status = MGMT_STATUS_FAILED;
8871
Johan Hedberga69e8372015-03-06 21:08:53 +02008872 mgmt_cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03008873
8874 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03008875}
8876
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07008877void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
8878 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02008879{
Johan Hedberg86742e12011-11-07 23:13:38 +02008880 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02008881
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03008882 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02008883
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03008884 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02008885 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03008886 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03008887 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03008888 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03008889 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02008890
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07008891 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02008892}
Johan Hedbergf7520542011-01-20 12:34:39 +02008893
Johan Hedbergd7b25452014-05-23 13:19:53 +03008894static u8 mgmt_ltk_type(struct smp_ltk *ltk)
8895{
Johan Hedberg23fb8de2014-05-23 13:15:37 +03008896 switch (ltk->type) {
8897 case SMP_LTK:
Archie Pusakafad646e2021-05-31 16:37:25 +08008898 case SMP_LTK_RESPONDER:
Johan Hedberg23fb8de2014-05-23 13:15:37 +03008899 if (ltk->authenticated)
8900 return MGMT_LTK_AUTHENTICATED;
8901 return MGMT_LTK_UNAUTHENTICATED;
8902 case SMP_LTK_P256:
8903 if (ltk->authenticated)
8904 return MGMT_LTK_P256_AUTH;
8905 return MGMT_LTK_P256_UNAUTH;
8906 case SMP_LTK_P256_DEBUG:
8907 return MGMT_LTK_P256_DEBUG;
8908 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03008909
8910 return MGMT_LTK_UNAUTHENTICATED;
8911}
8912
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07008913void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008914{
8915 struct mgmt_ev_new_long_term_key ev;
8916
8917 memset(&ev, 0, sizeof(ev));
8918
Marcel Holtmann5192d302014-02-19 17:11:58 -08008919 /* Devices using resolvable or non-resolvable random addresses
Florian Grandelf72186d2015-05-26 03:31:09 +02008920 * without providing an identity resolving key don't require
Marcel Holtmann5192d302014-02-19 17:11:58 -08008921 * to store long term keys. Their addresses will change the
8922 * next time around.
8923 *
8924 * Only when a remote device provides an identity address
8925 * make sure the long term key is stored. If the remote
8926 * identity is known, the long term keys are internally
8927 * mapped to the identity address. So allow static random
8928 * and public addresses here.
8929 */
Johan Hedbergba74b662014-02-19 14:57:45 +02008930 if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
8931 (key->bdaddr.b[5] & 0xc0) != 0xc0)
8932 ev.store_hint = 0x00;
8933 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07008934 ev.store_hint = persistent;
Johan Hedbergba74b662014-02-19 14:57:45 +02008935
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008936 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03008937 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Johan Hedbergd7b25452014-05-23 13:19:53 +03008938 ev.key.type = mgmt_ltk_type(key);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008939 ev.key.enc_size = key->enc_size;
8940 ev.key.ediv = key->ediv;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08008941 ev.key.rand = key->rand;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008942
Johan Hedberg2ceba532014-06-16 19:25:16 +03008943 if (key->type == SMP_LTK)
Archie Pusakafad646e2021-05-31 16:37:25 +08008944 ev.key.initiator = 1;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008945
Johan Hedberg1fc62c52015-06-10 11:11:20 +03008946 /* Make sure we copy only the significant bytes based on the
8947 * encryption key size, and set the rest of the value to zeroes.
8948 */
Jakub Pawlowskicb922052015-08-05 23:16:29 +02008949 memcpy(ev.key.val, key->val, key->enc_size);
Johan Hedberg1fc62c52015-06-10 11:11:20 +03008950 memset(ev.key.val + key->enc_size, 0,
8951 sizeof(ev.key.val) - key->enc_size);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008952
Marcel Holtmann083368f2013-10-15 14:26:29 -07008953 mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03008954}
8955
Johan Hedbergcad20c22015-10-12 13:36:19 +02008956void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk, bool persistent)
Johan Hedberg95fbac82014-02-19 15:18:31 +02008957{
8958 struct mgmt_ev_new_irk ev;
8959
8960 memset(&ev, 0, sizeof(ev));
8961
Johan Hedbergcad20c22015-10-12 13:36:19 +02008962 ev.store_hint = persistent;
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08008963
Johan Hedberg95fbac82014-02-19 15:18:31 +02008964 bacpy(&ev.rpa, &irk->rpa);
8965 bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
8966 ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
8967 memcpy(ev.irk.val, irk->val, sizeof(irk->val));
8968
8969 mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
8970}
8971
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07008972void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
8973 bool persistent)
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07008974{
8975 struct mgmt_ev_new_csrk ev;
8976
8977 memset(&ev, 0, sizeof(ev));
8978
8979 /* Devices using resolvable or non-resolvable random addresses
Florian Grandelf72186d2015-05-26 03:31:09 +02008980 * without providing an identity resolving key don't require
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07008981 * to store signature resolving keys. Their addresses will change
8982 * the next time around.
8983 *
8984 * Only when a remote device provides an identity address
8985 * make sure the signature resolving key is stored. So allow
8986 * static random and public addresses here.
8987 */
8988 if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
8989 (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
8990 ev.store_hint = 0x00;
8991 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07008992 ev.store_hint = persistent;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07008993
8994 bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
8995 ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
Johan Hedberg4cd39282015-02-27 10:11:13 +02008996 ev.key.type = csrk->type;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07008997 memcpy(ev.key.val, csrk->val, sizeof(csrk->val));
8998
8999 mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
9000}
9001
Andre Guedesffb5a8272014-07-01 18:10:11 -03009002void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedbergf4869e22014-07-02 17:37:32 +03009003 u8 bdaddr_type, u8 store_hint, u16 min_interval,
9004 u16 max_interval, u16 latency, u16 timeout)
Andre Guedesffb5a8272014-07-01 18:10:11 -03009005{
9006 struct mgmt_ev_new_conn_param ev;
9007
Johan Hedbergc103aea2014-07-02 17:37:34 +03009008 if (!hci_is_identity_address(bdaddr, bdaddr_type))
9009 return;
9010
Andre Guedesffb5a8272014-07-01 18:10:11 -03009011 memset(&ev, 0, sizeof(ev));
9012 bacpy(&ev.addr.bdaddr, bdaddr);
9013 ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
Johan Hedbergf4869e22014-07-02 17:37:32 +03009014 ev.store_hint = store_hint;
Andre Guedesffb5a8272014-07-01 18:10:11 -03009015 ev.min_interval = cpu_to_le16(min_interval);
9016 ev.max_interval = cpu_to_le16(max_interval);
9017 ev.latency = cpu_to_le16(latency);
9018 ev.timeout = cpu_to_le16(timeout);
9019
9020 mgmt_event(MGMT_EV_NEW_CONN_PARAM, hdev, &ev, sizeof(ev), NULL);
9021}
9022
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00009023void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
Yu Liu1c6ed312021-04-09 15:04:06 -07009024 u8 *name, u8 name_len)
Johan Hedbergf7520542011-01-20 12:34:39 +02009025{
Johan Hedbergb644ba32012-01-17 21:48:47 +02009026 char buf[512];
9027 struct mgmt_ev_device_connected *ev = (void *) buf;
9028 u16 eir_len = 0;
Yu Liu1c6ed312021-04-09 15:04:06 -07009029 u32 flags = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02009030
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00009031 bacpy(&ev->addr.bdaddr, &conn->dst);
9032 ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02009033
Yu Liu1c6ed312021-04-09 15:04:06 -07009034 if (conn->out)
9035 flags |= MGMT_DEV_FOUND_INITIATED_CONN;
9036
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02009037 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02009038
Alfonso Acostafd45ada2014-10-07 08:44:11 +00009039 /* We must ensure that the EIR Data fields are ordered and
9040 * unique. Keep it simple for now and avoid the problem by not
9041 * adding any BR/EDR data to the LE adv.
9042 */
9043 if (conn->le_adv_data_len > 0) {
9044 memcpy(&ev->eir[eir_len],
9045 conn->le_adv_data, conn->le_adv_data_len);
9046 eir_len = conn->le_adv_data_len;
9047 } else {
9048 if (name_len > 0)
9049 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
9050 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02009051
Alfonso Acostaddbea5c2014-10-07 08:44:12 +00009052 if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
Alfonso Acostafd45ada2014-10-07 08:44:11 +00009053 eir_len = eir_append_data(ev->eir, eir_len,
9054 EIR_CLASS_OF_DEV,
9055 conn->dev_class, 3);
9056 }
Johan Hedbergb644ba32012-01-17 21:48:47 +02009057
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02009058 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02009059
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07009060 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
9061 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02009062}
9063
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009064static void disconnect_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg8962ee72011-01-20 12:40:27 +02009065{
Johan Hedberg8962ee72011-01-20 12:40:27 +02009066 struct sock **sk = data;
Johan Hedberg8962ee72011-01-20 12:40:27 +02009067
Johan Hedbergf5818c22014-12-05 13:36:02 +02009068 cmd->cmd_complete(cmd, 0);
Johan Hedberg8962ee72011-01-20 12:40:27 +02009069
9070 *sk = cmd->sk;
9071 sock_hold(*sk);
9072
Johan Hedberga664b5b2011-02-19 12:06:02 -03009073 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02009074}
9075
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009076static void unpair_device_rsp(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02009077{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02009078 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02009079 struct mgmt_cp_unpair_device *cp = cmd->param;
Johan Hedberga8a1d192011-11-10 15:54:38 +02009080
Johan Hedbergb1078ad2012-02-09 17:21:16 +02009081 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
9082
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02009083 cmd->cmd_complete(cmd, 0);
Johan Hedberga8a1d192011-11-10 15:54:38 +02009084 mgmt_pending_remove(cmd);
9085}
9086
Johan Hedberg84c61d92014-08-01 11:13:30 +03009087bool mgmt_powering_down(struct hci_dev *hdev)
9088{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009089 struct mgmt_pending_cmd *cmd;
Johan Hedberg84c61d92014-08-01 11:13:30 +03009090 struct mgmt_mode *cp;
9091
Johan Hedberg333ae952015-03-17 13:48:47 +02009092 cmd = pending_find(MGMT_OP_SET_POWERED, hdev);
Johan Hedberg84c61d92014-08-01 11:13:30 +03009093 if (!cmd)
9094 return false;
9095
9096 cp = cmd->param;
9097 if (!cp->val)
9098 return true;
9099
9100 return false;
9101}
9102
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07009103void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02009104 u8 link_type, u8 addr_type, u8 reason,
9105 bool mgmt_connected)
Johan Hedbergf7520542011-01-20 12:34:39 +02009106{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02009107 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02009108 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02009109
Johan Hedberg84c61d92014-08-01 11:13:30 +03009110 /* The connection is still in hci_conn_hash so test for 1
9111 * instead of 0 to know if this is the last one.
9112 */
9113 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
9114 cancel_delayed_work(&hdev->power_off);
9115 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberg8b064a32014-02-24 14:52:22 +02009116 }
9117
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02009118 if (!mgmt_connected)
9119 return;
9120
Andre Guedes57eb7762013-10-30 19:01:41 -03009121 if (link_type != ACL_LINK && link_type != LE_LINK)
9122 return;
9123
Johan Hedberg744cf192011-11-08 20:40:14 +02009124 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02009125
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02009126 bacpy(&ev.addr.bdaddr, bdaddr);
9127 ev.addr.type = link_to_bdaddr(link_type, addr_type);
9128 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02009129
Abhishek Pandit-Subedif0cfc482020-09-11 14:07:12 -07009130 /* Report disconnects due to suspend */
9131 if (hdev->suspended)
9132 ev.reason = MGMT_DEV_DISCONN_LOCAL_HOST_SUSPEND;
9133
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07009134 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02009135
9136 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01009137 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02009138
Johan Hedberg124f6e32012-02-09 13:50:12 +02009139 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009140 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02009141}
9142
Marcel Holtmann78929242013-10-06 23:55:47 -07009143void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
9144 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02009145{
Andre Guedes3655bba2013-10-30 19:01:40 -03009146 u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
9147 struct mgmt_cp_disconnect *cp;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009148 struct mgmt_pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02009149
Jefferson Delfes36a75f12012-09-18 13:36:54 -04009150 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
9151 hdev);
9152
Johan Hedberg333ae952015-03-17 13:48:47 +02009153 cmd = pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02009154 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07009155 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02009156
Andre Guedes3655bba2013-10-30 19:01:40 -03009157 cp = cmd->param;
9158
9159 if (bacmp(bdaddr, &cp->addr.bdaddr))
9160 return;
9161
9162 if (cp->addr.type != bdaddr_type)
9163 return;
9164
Johan Hedbergf5818c22014-12-05 13:36:02 +02009165 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03009166 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02009167}
Johan Hedberg17d5c042011-01-22 06:09:08 +02009168
Marcel Holtmann445608d2013-10-06 23:55:48 -07009169void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
9170 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02009171{
9172 struct mgmt_ev_connect_failed ev;
Johan Hedbergc9910d02014-02-27 14:35:12 +02009173
Johan Hedberg84c61d92014-08-01 11:13:30 +03009174 /* The connection is still in hci_conn_hash so test for 1
9175 * instead of 0 to know if this is the last one.
9176 */
9177 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
9178 cancel_delayed_work(&hdev->power_off);
9179 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedbergc9910d02014-02-27 14:35:12 +02009180 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02009181
Johan Hedberg4c659c32011-11-07 23:13:39 +02009182 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03009183 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02009184 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02009185
Marcel Holtmann445608d2013-10-06 23:55:48 -07009186 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02009187}
Johan Hedberg980e1a52011-01-22 06:10:07 +02009188
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07009189void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02009190{
9191 struct mgmt_ev_pin_code_request ev;
9192
Johan Hedbergd8457692012-02-17 14:24:57 +02009193 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03009194 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02009195 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02009196
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07009197 mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02009198}
9199
Marcel Holtmanne669cf82013-10-15 14:26:21 -07009200void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
9201 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02009202{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009203 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02009204
Johan Hedberg333ae952015-03-17 13:48:47 +02009205 cmd = pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02009206 if (!cmd)
Marcel Holtmanne669cf82013-10-15 14:26:21 -07009207 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02009208
Johan Hedberg7776d1d2014-12-05 13:36:03 +02009209 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03009210 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02009211}
9212
Marcel Holtmann3eb38522013-10-15 14:26:22 -07009213void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
9214 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02009215{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009216 struct mgmt_pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02009217
Johan Hedberg333ae952015-03-17 13:48:47 +02009218 cmd = pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02009219 if (!cmd)
Marcel Holtmann3eb38522013-10-15 14:26:22 -07009220 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02009221
Johan Hedberg7776d1d2014-12-05 13:36:03 +02009222 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03009223 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02009224}
Johan Hedberga5c29682011-02-19 12:05:57 -03009225
Johan Hedberg744cf192011-11-08 20:40:14 +02009226int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg39adbff2014-03-20 08:18:14 +02009227 u8 link_type, u8 addr_type, u32 value,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009228 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03009229{
9230 struct mgmt_ev_user_confirm_request ev;
9231
Marcel Holtmann181d6952020-05-06 09:57:47 +02009232 bt_dev_dbg(hdev, "bdaddr %pMR", bdaddr);
Johan Hedberga5c29682011-02-19 12:05:57 -03009233
Johan Hedberg272d90d2012-02-09 15:26:12 +02009234 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03009235 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07009236 ev.confirm_hint = confirm_hint;
Johan Hedberg39adbff2014-03-20 08:18:14 +02009237 ev.value = cpu_to_le32(value);
Johan Hedberga5c29682011-02-19 12:05:57 -03009238
Johan Hedberg744cf192011-11-08 20:40:14 +02009239 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009240 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03009241}
9242
Johan Hedberg272d90d2012-02-09 15:26:12 +02009243int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03009244 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08009245{
9246 struct mgmt_ev_user_passkey_request ev;
9247
Marcel Holtmann181d6952020-05-06 09:57:47 +02009248 bt_dev_dbg(hdev, "bdaddr %pMR", bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08009249
Johan Hedberg272d90d2012-02-09 15:26:12 +02009250 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03009251 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08009252
9253 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009254 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08009255}
9256
Brian Gix0df4c182011-11-16 13:53:13 -08009257static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03009258 u8 link_type, u8 addr_type, u8 status,
9259 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03009260{
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009261 struct mgmt_pending_cmd *cmd;
Johan Hedberga5c29682011-02-19 12:05:57 -03009262
Johan Hedberg333ae952015-03-17 13:48:47 +02009263 cmd = pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03009264 if (!cmd)
9265 return -ENOENT;
9266
Johan Hedberg7776d1d2014-12-05 13:36:03 +02009267 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03009268 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03009269
Johan Hedberg7776d1d2014-12-05 13:36:03 +02009270 return 0;
Johan Hedberga5c29682011-02-19 12:05:57 -03009271}
9272
Johan Hedberg744cf192011-11-08 20:40:14 +02009273int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009274 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03009275{
Johan Hedberg272d90d2012-02-09 15:26:12 +02009276 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009277 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03009278}
9279
Johan Hedberg272d90d2012-02-09 15:26:12 +02009280int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009281 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03009282{
Johan Hedberg272d90d2012-02-09 15:26:12 +02009283 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03009284 status,
9285 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03009286}
Johan Hedberg2a611692011-02-19 12:06:00 -03009287
Brian Gix604086b2011-11-23 08:28:33 -08009288int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009289 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08009290{
Johan Hedberg272d90d2012-02-09 15:26:12 +02009291 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009292 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08009293}
9294
Johan Hedberg272d90d2012-02-09 15:26:12 +02009295int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009296 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08009297{
Johan Hedberg272d90d2012-02-09 15:26:12 +02009298 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03009299 status,
9300 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08009301}
9302
Johan Hedberg92a25252012-09-06 18:39:26 +03009303int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
9304 u8 link_type, u8 addr_type, u32 passkey,
9305 u8 entered)
9306{
9307 struct mgmt_ev_passkey_notify ev;
9308
Marcel Holtmann181d6952020-05-06 09:57:47 +02009309 bt_dev_dbg(hdev, "bdaddr %pMR", bdaddr);
Johan Hedberg92a25252012-09-06 18:39:26 +03009310
9311 bacpy(&ev.addr.bdaddr, bdaddr);
9312 ev.addr.type = link_to_bdaddr(link_type, addr_type);
9313 ev.passkey = __cpu_to_le32(passkey);
9314 ev.entered = entered;
9315
9316 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
9317}
9318
Johan Hedberge1e930f2014-09-08 17:09:49 -07009319void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
Johan Hedberg2a611692011-02-19 12:06:00 -03009320{
9321 struct mgmt_ev_auth_failed ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009322 struct mgmt_pending_cmd *cmd;
Johan Hedberge1e930f2014-09-08 17:09:49 -07009323 u8 status = mgmt_status(hci_status);
Johan Hedberg2a611692011-02-19 12:06:00 -03009324
Johan Hedberge1e930f2014-09-08 17:09:49 -07009325 bacpy(&ev.addr.bdaddr, &conn->dst);
9326 ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
9327 ev.status = status;
Johan Hedberg2a611692011-02-19 12:06:00 -03009328
Johan Hedberge1e930f2014-09-08 17:09:49 -07009329 cmd = find_pairing(conn);
9330
9331 mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
9332 cmd ? cmd->sk : NULL);
9333
Johan Hedberga511b352014-12-11 21:45:45 +02009334 if (cmd) {
9335 cmd->cmd_complete(cmd, status);
9336 mgmt_pending_remove(cmd);
9337 }
Johan Hedberg2a611692011-02-19 12:06:00 -03009338}
Johan Hedbergb312b1612011-03-16 14:29:37 +02009339
Marcel Holtmann464996a2013-10-15 14:26:24 -07009340void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009341{
9342 struct cmd_lookup match = { NULL, hdev };
Marcel Holtmann464996a2013-10-15 14:26:24 -07009343 bool changed;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009344
9345 if (status) {
9346 u8 mgmt_err = mgmt_status(status);
9347 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009348 cmd_status_rsp, &mgmt_err);
Marcel Holtmann464996a2013-10-15 14:26:24 -07009349 return;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009350 }
9351
Marcel Holtmann464996a2013-10-15 14:26:24 -07009352 if (test_bit(HCI_AUTH, &hdev->flags))
Marcel Holtmann238be782015-03-13 02:11:06 -07009353 changed = !hci_dev_test_and_set_flag(hdev, HCI_LINK_SECURITY);
Marcel Holtmann464996a2013-10-15 14:26:24 -07009354 else
Marcel Holtmanna69d8922015-03-13 02:11:05 -07009355 changed = hci_dev_test_and_clear_flag(hdev, HCI_LINK_SECURITY);
Johan Hedberg47990ea2012-02-22 11:58:37 +02009356
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009357 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009358 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009359
Johan Hedberg47990ea2012-02-22 11:58:37 +02009360 if (changed)
Marcel Holtmann464996a2013-10-15 14:26:24 -07009361 new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009362
9363 if (match.sk)
9364 sock_put(match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02009365}
9366
Johan Hedberg890ea892013-03-15 17:06:52 -05009367static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02009368{
Johan Hedberg890ea892013-03-15 17:06:52 -05009369 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02009370 struct hci_cp_write_eir cp;
9371
Johan Hedberg976eb202012-10-24 21:12:01 +03009372 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05009373 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02009374
Johan Hedbergc80da272012-02-22 15:38:48 +02009375 memset(hdev->eir, 0, sizeof(hdev->eir));
9376
Johan Hedbergcacaf522012-02-21 00:52:42 +02009377 memset(&cp, 0, sizeof(cp));
9378
Johan Hedberg890ea892013-03-15 17:06:52 -05009379 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02009380}
9381
Marcel Holtmann3e248562013-10-15 14:26:25 -07009382void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009383{
9384 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05009385 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009386 bool changed = false;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009387
9388 if (status) {
9389 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009390
Marcel Holtmanna69d8922015-03-13 02:11:05 -07009391 if (enable && hci_dev_test_and_clear_flag(hdev,
9392 HCI_SSP_ENABLED)) {
Marcel Holtmanna358dc12015-03-13 02:11:02 -07009393 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Marcel Holtmann3e248562013-10-15 14:26:25 -07009394 new_settings(hdev, NULL);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07009395 }
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009396
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009397 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
9398 &mgmt_err);
Marcel Holtmann3e248562013-10-15 14:26:25 -07009399 return;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009400 }
9401
9402 if (enable) {
Marcel Holtmann238be782015-03-13 02:11:06 -07009403 changed = !hci_dev_test_and_set_flag(hdev, HCI_SSP_ENABLED);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009404 } else {
Marcel Holtmanna69d8922015-03-13 02:11:05 -07009405 changed = hci_dev_test_and_clear_flag(hdev, HCI_SSP_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07009406 if (!changed)
Marcel Holtmanna69d8922015-03-13 02:11:05 -07009407 changed = hci_dev_test_and_clear_flag(hdev,
9408 HCI_HS_ENABLED);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07009409 else
Marcel Holtmanna358dc12015-03-13 02:11:02 -07009410 hci_dev_clear_flag(hdev, HCI_HS_ENABLED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009411 }
9412
9413 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
9414
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02009415 if (changed)
Marcel Holtmann3e248562013-10-15 14:26:25 -07009416 new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009417
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02009418 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009419 sock_put(match.sk);
9420
Johan Hedberg890ea892013-03-15 17:06:52 -05009421 hci_req_init(&req, hdev);
9422
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07009423 if (hci_dev_test_flag(hdev, HCI_SSP_ENABLED)) {
9424 if (hci_dev_test_flag(hdev, HCI_USE_DEBUG_KEYS))
Johan Hedberg37699722014-06-24 14:00:27 +03009425 hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
9426 sizeof(enable), &enable);
Johan Hedbergb1a89172015-11-25 16:15:42 +02009427 __hci_req_update_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03009428 } else {
Johan Hedberg890ea892013-03-15 17:06:52 -05009429 clear_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03009430 }
Johan Hedberg890ea892013-03-15 17:06:52 -05009431
9432 hci_req_run(&req, NULL);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02009433}
9434
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009435static void sk_lookup(struct mgmt_pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02009436{
9437 struct cmd_lookup *match = data;
9438
Johan Hedberg90e70452012-02-23 23:09:40 +02009439 if (match->sk == NULL) {
9440 match->sk = cmd->sk;
9441 sock_hold(match->sk);
9442 }
Johan Hedberg90e70452012-02-23 23:09:40 +02009443}
9444
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07009445void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
9446 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01009447{
Johan Hedberg90e70452012-02-23 23:09:40 +02009448 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01009449
Johan Hedberg92da6092013-03-15 17:06:55 -05009450 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
9451 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
9452 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02009453
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02009454 if (!status) {
Marcel Holtmann5504c3a2016-08-29 06:19:46 +02009455 mgmt_limited_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class,
9456 3, HCI_MGMT_DEV_CLASS_EVENTS, NULL);
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02009457 ext_info_changed(hdev, NULL);
9458 }
Johan Hedberg90e70452012-02-23 23:09:40 +02009459
9460 if (match.sk)
9461 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01009462}
9463
Marcel Holtmann7667da32013-10-15 14:26:27 -07009464void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02009465{
Johan Hedbergb312b1612011-03-16 14:29:37 +02009466 struct mgmt_cp_set_local_name ev;
Johan Hedberg3b0602c2015-03-06 21:08:55 +02009467 struct mgmt_pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02009468
Johan Hedberg13928972013-03-15 17:07:00 -05009469 if (status)
Marcel Holtmann7667da32013-10-15 14:26:27 -07009470 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02009471
9472 memset(&ev, 0, sizeof(ev));
9473 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02009474 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02009475
Johan Hedberg333ae952015-03-17 13:48:47 +02009476 cmd = pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05009477 if (!cmd) {
9478 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02009479
Johan Hedberg13928972013-03-15 17:07:00 -05009480 /* If this is a HCI command related to powering on the
9481 * HCI dev don't send any mgmt signals.
9482 */
Johan Hedberg333ae952015-03-17 13:48:47 +02009483 if (pending_find(MGMT_OP_SET_POWERED, hdev))
Marcel Holtmann7667da32013-10-15 14:26:27 -07009484 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02009485 }
9486
Marcel Holtmann5504c3a2016-08-29 06:19:46 +02009487 mgmt_limited_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
9488 HCI_MGMT_LOCAL_NAME_EVENTS, cmd ? cmd->sk : NULL);
Marcel Holtmann321c6fe2016-09-01 16:46:23 +02009489 ext_info_changed(hdev, cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02009490}
Szymon Jancc35938b2011-03-22 13:12:21 +01009491
Jakub Pawlowski799ce932014-12-05 10:55:58 +01009492static inline bool has_uuid(u8 *uuid, u16 uuid_count, u8 (*uuids)[16])
9493{
9494 int i;
9495
9496 for (i = 0; i < uuid_count; i++) {
9497 if (!memcmp(uuid, uuids[i], 16))
9498 return true;
9499 }
9500
9501 return false;
9502}
9503
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01009504static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
9505{
Jakub Pawlowski799ce932014-12-05 10:55:58 +01009506 u16 parsed = 0;
9507
9508 while (parsed < eir_len) {
9509 u8 field_len = eir[0];
9510 u8 uuid[16];
9511 int i;
9512
9513 if (field_len == 0)
9514 break;
9515
9516 if (eir_len - parsed < field_len + 1)
9517 break;
9518
9519 switch (eir[1]) {
9520 case EIR_UUID16_ALL:
9521 case EIR_UUID16_SOME:
9522 for (i = 0; i + 3 <= field_len; i += 2) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02009523 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01009524 uuid[13] = eir[i + 3];
9525 uuid[12] = eir[i + 2];
9526 if (has_uuid(uuid, uuid_count, uuids))
9527 return true;
9528 }
9529 break;
9530 case EIR_UUID32_ALL:
9531 case EIR_UUID32_SOME:
9532 for (i = 0; i + 5 <= field_len; i += 4) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02009533 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01009534 uuid[15] = eir[i + 5];
9535 uuid[14] = eir[i + 4];
9536 uuid[13] = eir[i + 3];
9537 uuid[12] = eir[i + 2];
9538 if (has_uuid(uuid, uuid_count, uuids))
9539 return true;
9540 }
9541 break;
9542 case EIR_UUID128_ALL:
9543 case EIR_UUID128_SOME:
9544 for (i = 0; i + 17 <= field_len; i += 16) {
9545 memcpy(uuid, eir + i + 2, 16);
9546 if (has_uuid(uuid, uuid_count, uuids))
9547 return true;
9548 }
9549 break;
9550 }
9551
9552 parsed += field_len + 1;
9553 eir += field_len + 1;
9554 }
9555
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01009556 return false;
9557}
9558
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08009559static void restart_le_scan(struct hci_dev *hdev)
9560{
9561 /* If controller is not scanning we are done. */
Marcel Holtmannd7a5a112015-03-13 02:11:00 -07009562 if (!hci_dev_test_flag(hdev, HCI_LE_SCAN))
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08009563 return;
9564
9565 if (time_after(jiffies + DISCOV_LE_RESTART_DELAY,
9566 hdev->discovery.scan_start +
9567 hdev->discovery.scan_duration))
9568 return;
9569
Johan Hedberg7c1fbed2015-11-11 08:11:23 +02009570 queue_delayed_work(hdev->req_workqueue, &hdev->le_scan_restart,
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08009571 DISCOV_LE_RESTART_DELAY);
9572}
9573
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009574static bool is_filter_match(struct hci_dev *hdev, s8 rssi, u8 *eir,
9575 u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
9576{
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009577 /* If a RSSI threshold has been specified, and
9578 * HCI_QUIRK_STRICT_DUPLICATE_FILTER is not set, then all results with
9579 * a RSSI smaller than the RSSI threshold will be dropped. If the quirk
9580 * is set, let it through for further processing, as we might need to
9581 * restart the scan.
9582 *
9583 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
9584 * the results are also dropped.
9585 */
9586 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
9587 (rssi == HCI_RSSI_INVALID ||
9588 (rssi < hdev->discovery.rssi &&
9589 !test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks))))
9590 return false;
9591
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08009592 if (hdev->discovery.uuid_count != 0) {
9593 /* If a list of UUIDs is provided in filter, results with no
9594 * matching UUID should be dropped.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009595 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08009596 if (!eir_has_uuids(eir, eir_len, hdev->discovery.uuid_count,
9597 hdev->discovery.uuids) &&
9598 !eir_has_uuids(scan_rsp, scan_rsp_len,
9599 hdev->discovery.uuid_count,
9600 hdev->discovery.uuids))
9601 return false;
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009602 }
9603
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08009604 /* If duplicate filtering does not report RSSI changes, then restart
9605 * scanning to ensure updated result with updated RSSI values.
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009606 */
Jakub Pawlowski2976cde2015-03-04 16:24:25 -08009607 if (test_bit(HCI_QUIRK_STRICT_DUPLICATE_FILTER, &hdev->quirks)) {
9608 restart_le_scan(hdev);
9609
9610 /* Validate RSSI value against the RSSI threshold once more. */
9611 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
9612 rssi < hdev->discovery.rssi)
9613 return false;
9614 }
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009615
9616 return true;
9617}
9618
Marcel Holtmann901801b2013-10-06 23:55:51 -07009619void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Marcel Holtmannaf589252014-07-01 14:11:20 +02009620 u8 addr_type, u8 *dev_class, s8 rssi, u32 flags,
9621 u8 *eir, u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03009622{
Johan Hedberge319d2e2012-01-15 19:51:59 +02009623 char buf[512];
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009624 struct mgmt_ev_device_found *ev = (void *)buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02009625 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03009626
Johan Hedberg75ce2082014-07-02 22:42:01 +03009627 /* Don't send events for a non-kernel initiated discovery. With
9628 * LE one exception is if we have pend_le_reports > 0 in which
9629 * case we're doing passive scanning and want these events.
9630 */
9631 if (!hci_discovery_active(hdev)) {
9632 if (link_type == ACL_LINK)
9633 return;
Miao-chen Chou8208f5a2020-06-17 16:39:18 +02009634 if (link_type == LE_LINK &&
9635 list_empty(&hdev->pend_le_reports) &&
9636 !hci_is_adv_monitoring(hdev)) {
Johan Hedberg75ce2082014-07-02 22:42:01 +03009637 return;
Miao-chen Chou8208f5a2020-06-17 16:39:18 +02009638 }
Johan Hedberg75ce2082014-07-02 22:42:01 +03009639 }
Andre Guedes12602d02013-04-30 15:29:40 -03009640
Jakub Pawlowski82f8b652015-03-04 16:24:26 -08009641 if (hdev->discovery.result_filtering) {
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009642 /* We are using service discovery */
9643 if (!is_filter_match(hdev, rssi, eir, eir_len, scan_rsp,
9644 scan_rsp_len))
9645 return;
9646 }
Marcel Holtmannbda157a2014-12-05 10:55:56 +01009647
Johan Hedberg78b781c2016-01-05 13:19:32 +02009648 if (hdev->discovery.limited) {
9649 /* Check for limited discoverable bit */
9650 if (dev_class) {
9651 if (!(dev_class[1] & 0x20))
9652 return;
9653 } else {
9654 u8 *flags = eir_get_data(eir, eir_len, EIR_FLAGS, NULL);
9655 if (!flags || !(flags[0] & LE_AD_LIMITED))
9656 return;
9657 }
9658 }
9659
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02009660 /* Make sure that the buffer is big enough. The 5 extra bytes
9661 * are for the potential CoD field.
9662 */
9663 if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07009664 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03009665
Johan Hedberg1dc06092012-01-15 21:01:23 +02009666 memset(buf, 0, sizeof(buf));
9667
Marcel Holtmannda25cf62014-12-05 13:03:35 +01009668 /* In case of device discovery with BR/EDR devices (pre 1.2), the
9669 * RSSI value was reported as 0 when not available. This behavior
9670 * is kept when using device discovery. This is required for full
9671 * backwards compatibility with the API.
9672 *
9673 * However when using service discovery, the value 127 will be
9674 * returned when the RSSI is not available.
9675 */
Szymon Janc91200e92015-01-22 16:57:05 +01009676 if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi &&
9677 link_type == ACL_LINK)
Marcel Holtmannefb25132014-12-05 13:03:34 +01009678 rssi = 0;
9679
Johan Hedberg841c5642014-07-07 12:45:54 +03009680 bacpy(&ev->addr.bdaddr, bdaddr);
9681 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02009682 ev->rssi = rssi;
Marcel Holtmannaf589252014-07-01 14:11:20 +02009683 ev->flags = cpu_to_le32(flags);
Johan Hedberge17acd42011-03-30 23:57:16 +03009684
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009685 if (eir_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01009686 /* Copy EIR or advertising data into event */
Johan Hedberge319d2e2012-01-15 19:51:59 +02009687 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03009688
Johan Hedberg0d3b7f62016-01-05 13:19:31 +02009689 if (dev_class && !eir_get_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
9690 NULL))
Johan Hedberg1dc06092012-01-15 21:01:23 +02009691 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009692 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02009693
Jakub Pawlowski48f86b72015-03-04 16:24:24 -08009694 if (scan_rsp_len > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01009695 /* Append scan response data to event */
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02009696 memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);
Jakub Pawlowski4b0e0ce2015-02-01 23:07:55 -08009697
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02009698 ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
9699 ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
Andre Guedesf8523592011-09-09 18:56:26 -03009700
Marcel Holtmann901801b2013-10-06 23:55:51 -07009701 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03009702}
Johan Hedberga88a9652011-03-30 13:18:12 +03009703
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07009704void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
9705 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03009706{
Johan Hedbergb644ba32012-01-17 21:48:47 +02009707 struct mgmt_ev_device_found *ev;
9708 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
9709 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03009710
Johan Hedbergb644ba32012-01-17 21:48:47 +02009711 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03009712
Johan Hedbergb644ba32012-01-17 21:48:47 +02009713 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03009714
Johan Hedbergb644ba32012-01-17 21:48:47 +02009715 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03009716 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02009717 ev->rssi = rssi;
9718
9719 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03009720 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02009721
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02009722 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02009723
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07009724 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03009725}
Johan Hedberg314b2382011-04-27 10:29:57 -04009726
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07009727void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04009728{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02009729 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02009730
Marcel Holtmann181d6952020-05-06 09:57:47 +02009731 bt_dev_dbg(hdev, "discovering %u", discovering);
Andre Guedes343fb142011-11-22 17:14:19 -03009732
Johan Hedbergf963e8e2012-02-20 23:30:44 +02009733 memset(&ev, 0, sizeof(ev));
9734 ev.type = hdev->discovery.type;
9735 ev.discovering = discovering;
9736
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07009737 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04009738}
Antti Julku5e762442011-08-25 16:48:02 +03009739
Abhishek Pandit-Subedi346ce5b2020-09-11 14:07:11 -07009740void mgmt_suspending(struct hci_dev *hdev, u8 state)
9741{
9742 struct mgmt_ev_controller_suspend ev;
9743
9744 ev.suspend_state = state;
9745 mgmt_event(MGMT_EV_CONTROLLER_SUSPEND, hdev, &ev, sizeof(ev), NULL);
9746}
9747
9748void mgmt_resuming(struct hci_dev *hdev, u8 reason, bdaddr_t *bdaddr,
9749 u8 addr_type)
9750{
9751 struct mgmt_ev_controller_resume ev;
9752
9753 ev.wake_reason = reason;
9754 if (bdaddr) {
9755 bacpy(&ev.addr.bdaddr, bdaddr);
9756 ev.addr.type = addr_type;
9757 } else {
9758 memset(&ev.addr, 0, sizeof(ev.addr));
9759 }
9760
9761 mgmt_event(MGMT_EV_CONTROLLER_RESUME, hdev, &ev, sizeof(ev), NULL);
9762}
9763
Johan Hedberg6d785aa32015-03-06 21:08:51 +02009764static struct hci_mgmt_chan chan = {
9765 .channel = HCI_CHANNEL_CONTROL,
9766 .handler_count = ARRAY_SIZE(mgmt_handlers),
9767 .handlers = mgmt_handlers,
Johan Hedberg88b94ce2015-03-17 13:48:49 +02009768 .hdev_init = mgmt_init_hdev,
Johan Hedberg6d785aa32015-03-06 21:08:51 +02009769};
9770
9771int mgmt_init(void)
9772{
9773 return hci_mgmt_chan_register(&chan);
9774}
9775
9776void mgmt_exit(void)
9777{
9778 hci_mgmt_chan_unregister(&chan);
9779}