blob: ba3b4a5820b13794807dd4233a82e0d20514bce8 [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 Hedberg4bc58f52014-05-20 09:45:47 +030032#include <net/bluetooth/l2cap.h>
Johan Hedberg03811012010-12-08 00:21:06 +020033#include <net/bluetooth/mgmt.h>
Marcel Holtmannac4b7232013-10-10 14:54:16 -070034
Johan Hedberg0857dd32014-12-19 13:40:20 +020035#include "hci_request.h"
Marcel Holtmannac4b7232013-10-10 14:54:16 -070036#include "smp.h"
Johan Hedberg03811012010-12-08 00:21:06 +020037
Johan Hedberg2da9c552012-02-17 14:39:28 +020038#define MGMT_VERSION 1
Marcel Holtmann854bda12014-12-03 19:52:43 +010039#define MGMT_REVISION 8
Johan Hedberg02d98122010-12-13 21:07:04 +020040
Johan Hedberge70bb2e2012-02-13 16:59:33 +020041static const u16 mgmt_commands[] = {
42 MGMT_OP_READ_INDEX_LIST,
43 MGMT_OP_READ_INFO,
44 MGMT_OP_SET_POWERED,
45 MGMT_OP_SET_DISCOVERABLE,
46 MGMT_OP_SET_CONNECTABLE,
47 MGMT_OP_SET_FAST_CONNECTABLE,
Johan Hedbergb2939472014-07-30 09:22:23 +030048 MGMT_OP_SET_BONDABLE,
Johan Hedberge70bb2e2012-02-13 16:59:33 +020049 MGMT_OP_SET_LINK_SECURITY,
50 MGMT_OP_SET_SSP,
51 MGMT_OP_SET_HS,
52 MGMT_OP_SET_LE,
53 MGMT_OP_SET_DEV_CLASS,
54 MGMT_OP_SET_LOCAL_NAME,
55 MGMT_OP_ADD_UUID,
56 MGMT_OP_REMOVE_UUID,
57 MGMT_OP_LOAD_LINK_KEYS,
58 MGMT_OP_LOAD_LONG_TERM_KEYS,
59 MGMT_OP_DISCONNECT,
60 MGMT_OP_GET_CONNECTIONS,
61 MGMT_OP_PIN_CODE_REPLY,
62 MGMT_OP_PIN_CODE_NEG_REPLY,
63 MGMT_OP_SET_IO_CAPABILITY,
64 MGMT_OP_PAIR_DEVICE,
65 MGMT_OP_CANCEL_PAIR_DEVICE,
66 MGMT_OP_UNPAIR_DEVICE,
67 MGMT_OP_USER_CONFIRM_REPLY,
68 MGMT_OP_USER_CONFIRM_NEG_REPLY,
69 MGMT_OP_USER_PASSKEY_REPLY,
70 MGMT_OP_USER_PASSKEY_NEG_REPLY,
71 MGMT_OP_READ_LOCAL_OOB_DATA,
72 MGMT_OP_ADD_REMOTE_OOB_DATA,
73 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
74 MGMT_OP_START_DISCOVERY,
75 MGMT_OP_STOP_DISCOVERY,
76 MGMT_OP_CONFIRM_NAME,
77 MGMT_OP_BLOCK_DEVICE,
78 MGMT_OP_UNBLOCK_DEVICE,
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -070079 MGMT_OP_SET_DEVICE_ID,
Johan Hedberg4375f102013-09-25 13:26:10 +030080 MGMT_OP_SET_ADVERTISING,
Johan Hedberg0663ca22013-10-02 13:43:14 +030081 MGMT_OP_SET_BREDR,
Marcel Holtmannd13eafc2013-10-02 04:41:30 -070082 MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann7f72134e2013-10-11 14:44:58 -070083 MGMT_OP_SET_SCAN_PARAMS,
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -080084 MGMT_OP_SET_SECURE_CONN,
Marcel Holtmann4e39ac82014-01-31 11:55:22 -080085 MGMT_OP_SET_DEBUG_KEYS,
Johan Hedberg62b04cd2014-02-23 19:42:27 +020086 MGMT_OP_SET_PRIVACY,
Johan Hedberg41edf162014-02-18 10:19:35 +020087 MGMT_OP_LOAD_IRKS,
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +020088 MGMT_OP_GET_CONN_INFO,
Johan Hedberg95868422014-06-28 17:54:07 +030089 MGMT_OP_GET_CLOCK_INFO,
Marcel Holtmann2faade52014-06-29 19:44:03 +020090 MGMT_OP_ADD_DEVICE,
91 MGMT_OP_REMOVE_DEVICE,
Johan Hedberga26f3dc2014-07-02 17:37:29 +030092 MGMT_OP_LOAD_CONN_PARAM,
Marcel Holtmann73d1df22014-07-02 22:10:52 +020093 MGMT_OP_READ_UNCONF_INDEX_LIST,
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +020094 MGMT_OP_READ_CONFIG_INFO,
Marcel Holtmanndbece372014-07-04 18:11:55 +020095 MGMT_OP_SET_EXTERNAL_CONFIG,
Marcel Holtmann9713c172014-07-06 12:11:15 +020096 MGMT_OP_SET_PUBLIC_ADDRESS,
Jakub Pawlowski66ea9422014-12-05 10:55:59 +010097 MGMT_OP_START_SERVICE_DISCOVERY,
Johan Hedberge70bb2e2012-02-13 16:59:33 +020098};
99
100static const u16 mgmt_events[] = {
101 MGMT_EV_CONTROLLER_ERROR,
102 MGMT_EV_INDEX_ADDED,
103 MGMT_EV_INDEX_REMOVED,
104 MGMT_EV_NEW_SETTINGS,
105 MGMT_EV_CLASS_OF_DEV_CHANGED,
106 MGMT_EV_LOCAL_NAME_CHANGED,
107 MGMT_EV_NEW_LINK_KEY,
108 MGMT_EV_NEW_LONG_TERM_KEY,
109 MGMT_EV_DEVICE_CONNECTED,
110 MGMT_EV_DEVICE_DISCONNECTED,
111 MGMT_EV_CONNECT_FAILED,
112 MGMT_EV_PIN_CODE_REQUEST,
113 MGMT_EV_USER_CONFIRM_REQUEST,
114 MGMT_EV_USER_PASSKEY_REQUEST,
115 MGMT_EV_AUTH_FAILED,
116 MGMT_EV_DEVICE_FOUND,
117 MGMT_EV_DISCOVERING,
118 MGMT_EV_DEVICE_BLOCKED,
119 MGMT_EV_DEVICE_UNBLOCKED,
120 MGMT_EV_DEVICE_UNPAIRED,
Johan Hedberg92a25252012-09-06 18:39:26 +0300121 MGMT_EV_PASSKEY_NOTIFY,
Marcel Holtmann1b60ef22014-02-21 21:35:30 -0800122 MGMT_EV_NEW_IRK,
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -0700123 MGMT_EV_NEW_CSRK,
Marcel Holtmann8afef092014-06-29 22:28:34 +0200124 MGMT_EV_DEVICE_ADDED,
125 MGMT_EV_DEVICE_REMOVED,
Andre Guedesffb5a8272014-07-01 18:10:11 -0300126 MGMT_EV_NEW_CONN_PARAM,
Marcel Holtmann0602a8a2014-07-02 21:30:54 +0200127 MGMT_EV_UNCONF_INDEX_ADDED,
Marcel Holtmannedd38962014-07-02 21:30:55 +0200128 MGMT_EV_UNCONF_INDEX_REMOVED,
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200129 MGMT_EV_NEW_CONFIG_OPTIONS,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200130};
131
Marcel Holtmann17b02e62012-03-01 14:32:37 -0800132#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000)
Johan Hedberg7d785252011-12-15 00:47:39 +0200133
Johan Hedbergd25b78e2015-01-27 12:55:52 +0200134#define ZERO_KEY "\x00\x00\x00\x00\x00\x00\x00\x00" \
135 "\x00\x00\x00\x00\x00\x00\x00\x00"
136
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200137struct pending_cmd {
138 struct list_head list;
Johan Hedbergfc2f4b12011-11-09 13:58:56 +0200139 u16 opcode;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200140 int index;
Szymon Jancc68fb7f2011-03-22 13:12:19 +0100141 void *param;
Johan Hedberg323b0b82014-12-05 13:36:01 +0200142 size_t param_len;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200143 struct sock *sk;
Johan Hedberge9a416b2011-02-19 12:05:56 -0300144 void *user_data;
Johan Hedberg9df74652014-12-19 22:26:03 +0200145 int (*cmd_complete)(struct pending_cmd *cmd, u8 status);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200146};
147
Johan Hedbergca69b792011-11-11 18:10:00 +0200148/* HCI to MGMT error code conversion table */
149static u8 mgmt_status_table[] = {
150 MGMT_STATUS_SUCCESS,
151 MGMT_STATUS_UNKNOWN_COMMAND, /* Unknown Command */
152 MGMT_STATUS_NOT_CONNECTED, /* No Connection */
153 MGMT_STATUS_FAILED, /* Hardware Failure */
154 MGMT_STATUS_CONNECT_FAILED, /* Page Timeout */
155 MGMT_STATUS_AUTH_FAILED, /* Authentication Failed */
Johan Hedbergeadd6632014-01-13 17:15:53 +0200156 MGMT_STATUS_AUTH_FAILED, /* PIN or Key Missing */
Johan Hedbergca69b792011-11-11 18:10:00 +0200157 MGMT_STATUS_NO_RESOURCES, /* Memory Full */
158 MGMT_STATUS_TIMEOUT, /* Connection Timeout */
159 MGMT_STATUS_NO_RESOURCES, /* Max Number of Connections */
160 MGMT_STATUS_NO_RESOURCES, /* Max Number of SCO Connections */
161 MGMT_STATUS_ALREADY_CONNECTED, /* ACL Connection Exists */
162 MGMT_STATUS_BUSY, /* Command Disallowed */
163 MGMT_STATUS_NO_RESOURCES, /* Rejected Limited Resources */
164 MGMT_STATUS_REJECTED, /* Rejected Security */
165 MGMT_STATUS_REJECTED, /* Rejected Personal */
166 MGMT_STATUS_TIMEOUT, /* Host Timeout */
167 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Feature */
168 MGMT_STATUS_INVALID_PARAMS, /* Invalid Parameters */
169 MGMT_STATUS_DISCONNECTED, /* OE User Ended Connection */
170 MGMT_STATUS_NO_RESOURCES, /* OE Low Resources */
171 MGMT_STATUS_DISCONNECTED, /* OE Power Off */
172 MGMT_STATUS_DISCONNECTED, /* Connection Terminated */
173 MGMT_STATUS_BUSY, /* Repeated Attempts */
174 MGMT_STATUS_REJECTED, /* Pairing Not Allowed */
175 MGMT_STATUS_FAILED, /* Unknown LMP PDU */
176 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Remote Feature */
177 MGMT_STATUS_REJECTED, /* SCO Offset Rejected */
178 MGMT_STATUS_REJECTED, /* SCO Interval Rejected */
179 MGMT_STATUS_REJECTED, /* Air Mode Rejected */
180 MGMT_STATUS_INVALID_PARAMS, /* Invalid LMP Parameters */
181 MGMT_STATUS_FAILED, /* Unspecified Error */
182 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported LMP Parameter Value */
183 MGMT_STATUS_FAILED, /* Role Change Not Allowed */
184 MGMT_STATUS_TIMEOUT, /* LMP Response Timeout */
185 MGMT_STATUS_FAILED, /* LMP Error Transaction Collision */
186 MGMT_STATUS_FAILED, /* LMP PDU Not Allowed */
187 MGMT_STATUS_REJECTED, /* Encryption Mode Not Accepted */
188 MGMT_STATUS_FAILED, /* Unit Link Key Used */
189 MGMT_STATUS_NOT_SUPPORTED, /* QoS Not Supported */
190 MGMT_STATUS_TIMEOUT, /* Instant Passed */
191 MGMT_STATUS_NOT_SUPPORTED, /* Pairing Not Supported */
192 MGMT_STATUS_FAILED, /* Transaction Collision */
193 MGMT_STATUS_INVALID_PARAMS, /* Unacceptable Parameter */
194 MGMT_STATUS_REJECTED, /* QoS Rejected */
195 MGMT_STATUS_NOT_SUPPORTED, /* Classification Not Supported */
196 MGMT_STATUS_REJECTED, /* Insufficient Security */
197 MGMT_STATUS_INVALID_PARAMS, /* Parameter Out Of Range */
198 MGMT_STATUS_BUSY, /* Role Switch Pending */
199 MGMT_STATUS_FAILED, /* Slot Violation */
200 MGMT_STATUS_FAILED, /* Role Switch Failed */
201 MGMT_STATUS_INVALID_PARAMS, /* EIR Too Large */
202 MGMT_STATUS_NOT_SUPPORTED, /* Simple Pairing Not Supported */
203 MGMT_STATUS_BUSY, /* Host Busy Pairing */
204 MGMT_STATUS_REJECTED, /* Rejected, No Suitable Channel */
205 MGMT_STATUS_BUSY, /* Controller Busy */
206 MGMT_STATUS_INVALID_PARAMS, /* Unsuitable Connection Interval */
207 MGMT_STATUS_TIMEOUT, /* Directed Advertising Timeout */
208 MGMT_STATUS_AUTH_FAILED, /* Terminated Due to MIC Failure */
209 MGMT_STATUS_CONNECT_FAILED, /* Connection Establishment Failed */
210 MGMT_STATUS_CONNECT_FAILED, /* MAC Connection Failed */
211};
212
213static u8 mgmt_status(u8 hci_status)
214{
215 if (hci_status < ARRAY_SIZE(mgmt_status_table))
216 return mgmt_status_table[hci_status];
217
218 return MGMT_STATUS_FAILED;
219}
220
Marcel Holtmann04c60f052014-07-04 19:06:22 +0200221static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 data_len,
222 struct sock *skip_sk)
223{
224 struct sk_buff *skb;
225 struct mgmt_hdr *hdr;
226
227 skb = alloc_skb(sizeof(*hdr) + data_len, GFP_KERNEL);
228 if (!skb)
229 return -ENOMEM;
230
231 hdr = (void *) skb_put(skb, sizeof(*hdr));
232 hdr->opcode = cpu_to_le16(event);
233 if (hdev)
234 hdr->index = cpu_to_le16(hdev->id);
235 else
236 hdr->index = cpu_to_le16(MGMT_INDEX_NONE);
237 hdr->len = cpu_to_le16(data_len);
238
239 if (data)
240 memcpy(skb_put(skb, data_len), data, data_len);
241
242 /* Time stamp */
243 __net_timestamp(skb);
244
245 hci_send_to_control(skb, skip_sk);
246 kfree_skb(skb);
247
248 return 0;
249}
250
Szymon Janc4e51eae2011-02-25 19:05:48 +0100251static int cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200252{
253 struct sk_buff *skb;
254 struct mgmt_hdr *hdr;
255 struct mgmt_ev_cmd_status *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300256 int err;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200257
Szymon Janc34eb5252011-02-28 14:10:08 +0100258 BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200259
Andre Guedes790eff42012-06-07 19:05:46 -0300260 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200261 if (!skb)
262 return -ENOMEM;
263
264 hdr = (void *) skb_put(skb, sizeof(*hdr));
265
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700266 hdr->opcode = cpu_to_le16(MGMT_EV_CMD_STATUS);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100267 hdr->index = cpu_to_le16(index);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200268 hdr->len = cpu_to_le16(sizeof(*ev));
269
270 ev = (void *) skb_put(skb, sizeof(*ev));
271 ev->status = status;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200272 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200273
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300274 err = sock_queue_rcv_skb(sk, skb);
275 if (err < 0)
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200276 kfree_skb(skb);
277
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300278 return err;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200279}
280
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200281static int cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300282 void *rp, size_t rp_len)
Johan Hedberg02d98122010-12-13 21:07:04 +0200283{
284 struct sk_buff *skb;
285 struct mgmt_hdr *hdr;
286 struct mgmt_ev_cmd_complete *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300287 int err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200288
289 BT_DBG("sock %p", sk);
290
Andre Guedes790eff42012-06-07 19:05:46 -0300291 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_KERNEL);
Johan Hedberg02d98122010-12-13 21:07:04 +0200292 if (!skb)
293 return -ENOMEM;
294
295 hdr = (void *) skb_put(skb, sizeof(*hdr));
Johan Hedberga38528f2011-01-22 06:46:43 +0200296
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700297 hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100298 hdr->index = cpu_to_le16(index);
Johan Hedberga38528f2011-01-22 06:46:43 +0200299 hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200300
Johan Hedberga38528f2011-01-22 06:46:43 +0200301 ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200302 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200303 ev->status = status;
Szymon Janc8020c162011-02-28 14:09:50 +0100304
305 if (rp)
306 memcpy(ev->data, rp, rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200307
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300308 err = sock_queue_rcv_skb(sk, skb);
309 if (err < 0)
Johan Hedberg02d98122010-12-13 21:07:04 +0200310 kfree_skb(skb);
311
Marcel Holtmanne5f0e152012-02-22 11:59:01 +0100312 return err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200313}
314
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300315static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
316 u16 data_len)
Johan Hedberga38528f2011-01-22 06:46:43 +0200317{
318 struct mgmt_rp_read_version rp;
319
320 BT_DBG("sock %p", sk);
321
322 rp.version = MGMT_VERSION;
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700323 rp.revision = cpu_to_le16(MGMT_REVISION);
Johan Hedberga38528f2011-01-22 06:46:43 +0200324
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200325 return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300326 sizeof(rp));
Johan Hedberga38528f2011-01-22 06:46:43 +0200327}
328
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300329static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
330 u16 data_len)
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200331{
332 struct mgmt_rp_read_commands *rp;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200333 const u16 num_commands = ARRAY_SIZE(mgmt_commands);
334 const u16 num_events = ARRAY_SIZE(mgmt_events);
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +0200335 __le16 *opcode;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200336 size_t rp_size;
337 int i, err;
338
339 BT_DBG("sock %p", sk);
340
341 rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));
342
343 rp = kmalloc(rp_size, GFP_KERNEL);
344 if (!rp)
345 return -ENOMEM;
346
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700347 rp->num_commands = cpu_to_le16(num_commands);
348 rp->num_events = cpu_to_le16(num_events);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200349
350 for (i = 0, opcode = rp->opcodes; i < num_commands; i++, opcode++)
351 put_unaligned_le16(mgmt_commands[i], opcode);
352
353 for (i = 0; i < num_events; i++, opcode++)
354 put_unaligned_le16(mgmt_events[i], opcode);
355
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200356 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300357 rp_size);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200358 kfree(rp);
359
360 return err;
361}
362
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300363static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
364 u16 data_len)
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200365{
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200366 struct mgmt_rp_read_index_list *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200367 struct hci_dev *d;
Johan Hedberga38528f2011-01-22 06:46:43 +0200368 size_t rp_len;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200369 u16 count;
Johan Hedberg476e44c2012-10-19 20:10:46 +0300370 int err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200371
372 BT_DBG("sock %p", sk);
373
374 read_lock(&hci_dev_list_lock);
375
376 count = 0;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300377 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200378 if (d->dev_type == HCI_BREDR &&
379 !test_bit(HCI_UNCONFIGURED, &d->dev_flags))
Marcel Holtmann1514b892013-10-06 08:25:01 -0700380 count++;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200381 }
382
Johan Hedberga38528f2011-01-22 06:46:43 +0200383 rp_len = sizeof(*rp) + (2 * count);
384 rp = kmalloc(rp_len, GFP_ATOMIC);
385 if (!rp) {
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100386 read_unlock(&hci_dev_list_lock);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200387 return -ENOMEM;
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100388 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200389
Johan Hedberg476e44c2012-10-19 20:10:46 +0300390 count = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200391 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200392 if (test_bit(HCI_SETUP, &d->dev_flags) ||
Marcel Holtmannd603b762014-07-06 12:11:14 +0200393 test_bit(HCI_CONFIG, &d->dev_flags) ||
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200394 test_bit(HCI_USER_CHANNEL, &d->dev_flags))
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200395 continue;
396
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200397 /* Devices marked as raw-only are neither configured
398 * nor unconfigured controllers.
399 */
400 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
Marcel Holtmann0736cfa2013-08-26 21:40:51 -0700401 continue;
402
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200403 if (d->dev_type == HCI_BREDR &&
404 !test_bit(HCI_UNCONFIGURED, &d->dev_flags)) {
Marcel Holtmann1514b892013-10-06 08:25:01 -0700405 rp->index[count++] = cpu_to_le16(d->id);
406 BT_DBG("Added hci%u", d->id);
407 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200408 }
409
Johan Hedberg476e44c2012-10-19 20:10:46 +0300410 rp->num_controllers = cpu_to_le16(count);
411 rp_len = sizeof(*rp) + (2 * count);
412
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200413 read_unlock(&hci_dev_list_lock);
414
Johan Hedbergaee9b2182012-02-18 15:07:59 +0200415 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300416 rp_len);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200417
Johan Hedberga38528f2011-01-22 06:46:43 +0200418 kfree(rp);
419
420 return err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200421}
422
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200423static int read_unconf_index_list(struct sock *sk, struct hci_dev *hdev,
424 void *data, u16 data_len)
425{
426 struct mgmt_rp_read_unconf_index_list *rp;
427 struct hci_dev *d;
428 size_t rp_len;
429 u16 count;
430 int err;
431
432 BT_DBG("sock %p", sk);
433
434 read_lock(&hci_dev_list_lock);
435
436 count = 0;
437 list_for_each_entry(d, &hci_dev_list, list) {
438 if (d->dev_type == HCI_BREDR &&
439 test_bit(HCI_UNCONFIGURED, &d->dev_flags))
440 count++;
441 }
442
443 rp_len = sizeof(*rp) + (2 * count);
444 rp = kmalloc(rp_len, GFP_ATOMIC);
445 if (!rp) {
446 read_unlock(&hci_dev_list_lock);
447 return -ENOMEM;
448 }
449
450 count = 0;
451 list_for_each_entry(d, &hci_dev_list, list) {
452 if (test_bit(HCI_SETUP, &d->dev_flags) ||
Marcel Holtmannd603b762014-07-06 12:11:14 +0200453 test_bit(HCI_CONFIG, &d->dev_flags) ||
Marcel Holtmann73d1df22014-07-02 22:10:52 +0200454 test_bit(HCI_USER_CHANNEL, &d->dev_flags))
455 continue;
456
457 /* Devices marked as raw-only are neither configured
458 * nor unconfigured controllers.
459 */
460 if (test_bit(HCI_QUIRK_RAW_DEVICE, &d->quirks))
461 continue;
462
463 if (d->dev_type == HCI_BREDR &&
464 test_bit(HCI_UNCONFIGURED, &d->dev_flags)) {
465 rp->index[count++] = cpu_to_le16(d->id);
466 BT_DBG("Added hci%u", d->id);
467 }
468 }
469
470 rp->num_controllers = cpu_to_le16(count);
471 rp_len = sizeof(*rp) + (2 * count);
472
473 read_unlock(&hci_dev_list_lock);
474
475 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_UNCONF_INDEX_LIST,
476 0, rp, rp_len);
477
478 kfree(rp);
479
480 return err;
481}
482
Marcel Holtmanndbece372014-07-04 18:11:55 +0200483static bool is_configured(struct hci_dev *hdev)
484{
485 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
486 !test_bit(HCI_EXT_CONFIGURED, &hdev->dev_flags))
487 return false;
488
489 if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
490 !bacmp(&hdev->public_addr, BDADDR_ANY))
491 return false;
492
493 return true;
494}
495
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200496static __le32 get_missing_options(struct hci_dev *hdev)
497{
498 u32 options = 0;
499
Marcel Holtmanndbece372014-07-04 18:11:55 +0200500 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) &&
501 !test_bit(HCI_EXT_CONFIGURED, &hdev->dev_flags))
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200502 options |= MGMT_OPTION_EXTERNAL_CONFIG;
503
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200504 if (test_bit(HCI_QUIRK_INVALID_BDADDR, &hdev->quirks) &&
505 !bacmp(&hdev->public_addr, BDADDR_ANY))
506 options |= MGMT_OPTION_PUBLIC_ADDRESS;
507
508 return cpu_to_le32(options);
509}
510
Marcel Holtmannf4537c02014-07-04 19:06:23 +0200511static int new_options(struct hci_dev *hdev, struct sock *skip)
512{
513 __le32 options = get_missing_options(hdev);
514
515 return mgmt_event(MGMT_EV_NEW_CONFIG_OPTIONS, hdev, &options,
516 sizeof(options), skip);
517}
518
Marcel Holtmanndbece372014-07-04 18:11:55 +0200519static int send_options_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
520{
521 __le32 options = get_missing_options(hdev);
522
523 return cmd_complete(sk, hdev->id, opcode, 0, &options,
524 sizeof(options));
525}
526
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200527static int read_config_info(struct sock *sk, struct hci_dev *hdev,
528 void *data, u16 data_len)
529{
530 struct mgmt_rp_read_config_info rp;
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200531 u32 options = 0;
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200532
533 BT_DBG("sock %p %s", sk, hdev->name);
534
535 hci_dev_lock(hdev);
536
537 memset(&rp, 0, sizeof(rp));
538 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200539
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200540 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
541 options |= MGMT_OPTION_EXTERNAL_CONFIG;
542
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200543 if (hdev->set_bdaddr)
Marcel Holtmann89bc22d2014-07-04 16:54:37 +0200544 options |= MGMT_OPTION_PUBLIC_ADDRESS;
545
546 rp.supported_options = cpu_to_le32(options);
547 rp.missing_options = get_missing_options(hdev);
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200548
549 hci_dev_unlock(hdev);
550
551 return cmd_complete(sk, hdev->id, MGMT_OP_READ_CONFIG_INFO, 0, &rp,
552 sizeof(rp));
553}
554
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200555static u32 get_supported_settings(struct hci_dev *hdev)
Johan Hedberg03811012010-12-08 00:21:06 +0200556{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200557 u32 settings = 0;
Johan Hedberg03811012010-12-08 00:21:06 +0200558
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200559 settings |= MGMT_SETTING_POWERED;
Johan Hedbergb2939472014-07-30 09:22:23 +0300560 settings |= MGMT_SETTING_BONDABLE;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800561 settings |= MGMT_SETTING_DEBUG_KEYS;
Johan Hedberg3742abf2014-07-08 16:07:34 +0300562 settings |= MGMT_SETTING_CONNECTABLE;
563 settings |= MGMT_SETTING_DISCOVERABLE;
Johan Hedberg03811012010-12-08 00:21:06 +0200564
Andre Guedesed3fa312012-07-24 15:03:46 -0300565 if (lmp_bredr_capable(hdev)) {
Johan Hedberg1a47aee2013-03-15 17:07:06 -0500566 if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
567 settings |= MGMT_SETTING_FAST_CONNECTABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200568 settings |= MGMT_SETTING_BREDR;
569 settings |= MGMT_SETTING_LINK_SECURITY;
Marcel Holtmanna82974c2013-10-11 09:48:47 -0700570
571 if (lmp_ssp_capable(hdev)) {
572 settings |= MGMT_SETTING_SSP;
573 settings |= MGMT_SETTING_HS;
574 }
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800575
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -0800576 if (lmp_sc_capable(hdev))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800577 settings |= MGMT_SETTING_SECURE_CONN;
Marcel Holtmann848566b2013-10-01 22:59:22 -0700578 }
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100579
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300580 if (lmp_le_capable(hdev)) {
Marcel Holtmann9d428202012-05-03 07:12:31 +0200581 settings |= MGMT_SETTING_LE;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300582 settings |= MGMT_SETTING_ADVERTISING;
Johan Hedberga3209692014-05-26 11:23:35 +0300583 settings |= MGMT_SETTING_SECURE_CONN;
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200584 settings |= MGMT_SETTING_PRIVACY;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300585 }
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200586
Marcel Holtmanneb1904f2014-07-04 17:23:33 +0200587 if (test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks) ||
588 hdev->set_bdaddr)
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +0200589 settings |= MGMT_SETTING_CONFIGURATION;
590
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200591 return settings;
592}
Johan Hedbergebc99fe2011-01-04 11:54:26 +0200593
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200594static u32 get_current_settings(struct hci_dev *hdev)
595{
596 u32 settings = 0;
Johan Hedbergdc4fe302011-03-16 14:29:36 +0200597
Johan Hedbergf1f0eb02012-02-21 17:15:41 +0200598 if (hdev_is_powered(hdev))
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100599 settings |= MGMT_SETTING_POWERED;
600
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200601 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200602 settings |= MGMT_SETTING_CONNECTABLE;
603
Johan Hedberg1a4d3c42013-03-15 17:07:08 -0500604 if (test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags))
605 settings |= MGMT_SETTING_FAST_CONNECTABLE;
606
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200607 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200608 settings |= MGMT_SETTING_DISCOVERABLE;
609
Johan Hedbergb6ae8452014-07-30 09:22:22 +0300610 if (test_bit(HCI_BONDABLE, &hdev->dev_flags))
Johan Hedbergb2939472014-07-30 09:22:23 +0300611 settings |= MGMT_SETTING_BONDABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200612
Johan Hedberg56f87902013-10-02 13:43:13 +0300613 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200614 settings |= MGMT_SETTING_BREDR;
615
Johan Hedberg06199cf2012-02-22 16:37:11 +0200616 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200617 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200618
Johan Hedberg47990ea2012-02-22 11:58:37 +0200619 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200620 settings |= MGMT_SETTING_LINK_SECURITY;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200621
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200622 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200623 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e62010-12-13 21:07:06 +0200624
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200625 if (test_bit(HCI_HS_ENABLED, &hdev->dev_flags))
626 settings |= MGMT_SETTING_HS;
627
Johan Hedbergf3d3444a2013-10-05 12:01:04 +0200628 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300629 settings |= MGMT_SETTING_ADVERTISING;
630
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800631 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags))
632 settings |= MGMT_SETTING_SECURE_CONN;
633
Johan Hedberg0663b292014-06-24 13:15:50 +0300634 if (test_bit(HCI_KEEP_DEBUG_KEYS, &hdev->dev_flags))
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800635 settings |= MGMT_SETTING_DEBUG_KEYS;
636
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200637 if (test_bit(HCI_PRIVACY, &hdev->dev_flags))
638 settings |= MGMT_SETTING_PRIVACY;
639
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200640 return settings;
Johan Hedbergc542a062011-01-26 13:11:03 +0200641}
642
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300643#define PNP_INFO_SVCLASS_ID 0x1200
644
Johan Hedberg213202e2013-01-27 00:31:33 +0200645static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
646{
647 u8 *ptr = data, *uuids_start = NULL;
648 struct bt_uuid *uuid;
649
650 if (len < 4)
651 return ptr;
652
653 list_for_each_entry(uuid, &hdev->uuids, list) {
654 u16 uuid16;
655
656 if (uuid->size != 16)
657 continue;
658
659 uuid16 = get_unaligned_le16(&uuid->uuid[12]);
660 if (uuid16 < 0x1100)
661 continue;
662
663 if (uuid16 == PNP_INFO_SVCLASS_ID)
664 continue;
665
666 if (!uuids_start) {
667 uuids_start = ptr;
668 uuids_start[0] = 1;
669 uuids_start[1] = EIR_UUID16_ALL;
670 ptr += 2;
671 }
672
673 /* Stop if not enough space to put next UUID */
674 if ((ptr - data) + sizeof(u16) > len) {
675 uuids_start[1] = EIR_UUID16_SOME;
676 break;
677 }
678
679 *ptr++ = (uuid16 & 0x00ff);
680 *ptr++ = (uuid16 & 0xff00) >> 8;
681 uuids_start[0] += sizeof(uuid16);
682 }
683
684 return ptr;
685}
686
Johan Hedbergcdf19632013-01-27 00:31:34 +0200687static u8 *create_uuid32_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
688{
689 u8 *ptr = data, *uuids_start = NULL;
690 struct bt_uuid *uuid;
691
692 if (len < 6)
693 return ptr;
694
695 list_for_each_entry(uuid, &hdev->uuids, list) {
696 if (uuid->size != 32)
697 continue;
698
699 if (!uuids_start) {
700 uuids_start = ptr;
701 uuids_start[0] = 1;
702 uuids_start[1] = EIR_UUID32_ALL;
703 ptr += 2;
704 }
705
706 /* Stop if not enough space to put next UUID */
707 if ((ptr - data) + sizeof(u32) > len) {
708 uuids_start[1] = EIR_UUID32_SOME;
709 break;
710 }
711
712 memcpy(ptr, &uuid->uuid[12], sizeof(u32));
713 ptr += sizeof(u32);
714 uuids_start[0] += sizeof(u32);
715 }
716
717 return ptr;
718}
719
Johan Hedbergc00d5752013-01-27 00:31:35 +0200720static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
721{
722 u8 *ptr = data, *uuids_start = NULL;
723 struct bt_uuid *uuid;
724
725 if (len < 18)
726 return ptr;
727
728 list_for_each_entry(uuid, &hdev->uuids, list) {
729 if (uuid->size != 128)
730 continue;
731
732 if (!uuids_start) {
733 uuids_start = ptr;
734 uuids_start[0] = 1;
735 uuids_start[1] = EIR_UUID128_ALL;
736 ptr += 2;
737 }
738
739 /* Stop if not enough space to put next UUID */
740 if ((ptr - data) + 16 > len) {
741 uuids_start[1] = EIR_UUID128_SOME;
742 break;
743 }
744
745 memcpy(ptr, uuid->uuid, 16);
746 ptr += 16;
747 uuids_start[0] += 16;
748 }
749
750 return ptr;
751}
752
Johan Hedbergeb2a8d22013-10-19 23:38:20 +0300753static struct pending_cmd *mgmt_pending_find(u16 opcode, struct hci_dev *hdev)
754{
755 struct pending_cmd *cmd;
756
757 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
758 if (cmd->opcode == opcode)
759 return cmd;
760 }
761
762 return NULL;
763}
764
Johan Hedberg95868422014-06-28 17:54:07 +0300765static struct pending_cmd *mgmt_pending_find_data(u16 opcode,
766 struct hci_dev *hdev,
767 const void *data)
768{
769 struct pending_cmd *cmd;
770
771 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
772 if (cmd->user_data != data)
773 continue;
774 if (cmd->opcode == opcode)
775 return cmd;
776 }
777
778 return NULL;
779}
780
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700781static u8 create_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
782{
Marcel Holtmann7a5f4992013-10-16 00:16:49 -0700783 u8 ad_len = 0;
784 size_t name_len;
785
786 name_len = strlen(hdev->dev_name);
787 if (name_len > 0) {
788 size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2;
789
790 if (name_len > max_len) {
791 name_len = max_len;
792 ptr[1] = EIR_NAME_SHORT;
793 } else
794 ptr[1] = EIR_NAME_COMPLETE;
795
796 ptr[0] = name_len + 1;
797
798 memcpy(ptr + 2, hdev->dev_name, name_len);
799
800 ad_len += (name_len + 2);
801 ptr += (name_len + 2);
802 }
803
804 return ad_len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700805}
806
807static void update_scan_rsp_data(struct hci_request *req)
808{
809 struct hci_dev *hdev = req->hdev;
810 struct hci_cp_le_set_scan_rsp_data cp;
811 u8 len;
812
Johan Hedberg7751ef12013-10-19 23:38:15 +0300813 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700814 return;
815
816 memset(&cp, 0, sizeof(cp));
817
818 len = create_scan_rsp_data(hdev, cp.data);
819
Johan Hedbergeb438b52013-10-16 15:31:07 +0300820 if (hdev->scan_rsp_data_len == len &&
821 memcmp(cp.data, hdev->scan_rsp_data, len) == 0)
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700822 return;
823
Johan Hedbergeb438b52013-10-16 15:31:07 +0300824 memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
825 hdev->scan_rsp_data_len = len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700826
827 cp.length = len;
828
829 hci_req_add(req, HCI_OP_LE_SET_SCAN_RSP_DATA, sizeof(cp), &cp);
830}
831
Johan Hedberg9a43e252013-10-20 19:00:07 +0300832static u8 get_adv_discov_flags(struct hci_dev *hdev)
833{
834 struct pending_cmd *cmd;
835
836 /* If there's a pending mgmt command the flags will not yet have
837 * their final values, so check for this first.
838 */
839 cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
840 if (cmd) {
841 struct mgmt_mode *cp = cmd->param;
842 if (cp->val == 0x01)
843 return LE_AD_GENERAL;
844 else if (cp->val == 0x02)
845 return LE_AD_LIMITED;
846 } else {
847 if (test_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags))
848 return LE_AD_LIMITED;
849 else if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
850 return LE_AD_GENERAL;
851 }
852
853 return 0;
854}
855
Marcel Holtmann46cad2e2013-10-16 00:16:46 -0700856static u8 create_adv_data(struct hci_dev *hdev, u8 *ptr)
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700857{
858 u8 ad_len = 0, flags = 0;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700859
Johan Hedberg9a43e252013-10-20 19:00:07 +0300860 flags |= get_adv_discov_flags(hdev);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700861
Johan Hedberge8340042014-01-30 11:16:50 -0800862 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700863 flags |= LE_AD_NO_BREDR;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700864
865 if (flags) {
866 BT_DBG("adv flags 0x%02x", flags);
867
868 ptr[0] = 2;
869 ptr[1] = EIR_FLAGS;
870 ptr[2] = flags;
871
872 ad_len += 3;
873 ptr += 3;
874 }
875
876 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID) {
877 ptr[0] = 2;
878 ptr[1] = EIR_TX_POWER;
879 ptr[2] = (u8) hdev->adv_tx_power;
880
881 ad_len += 3;
882 ptr += 3;
883 }
884
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700885 return ad_len;
886}
887
Marcel Holtmann5947f4b2013-10-16 00:16:50 -0700888static void update_adv_data(struct hci_request *req)
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700889{
890 struct hci_dev *hdev = req->hdev;
891 struct hci_cp_le_set_adv_data cp;
892 u8 len;
893
Johan Hedberg10994ce2013-10-19 23:38:16 +0300894 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700895 return;
896
897 memset(&cp, 0, sizeof(cp));
898
Marcel Holtmann46cad2e2013-10-16 00:16:46 -0700899 len = create_adv_data(hdev, cp.data);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700900
901 if (hdev->adv_data_len == len &&
902 memcmp(cp.data, hdev->adv_data, len) == 0)
903 return;
904
905 memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
906 hdev->adv_data_len = len;
907
908 cp.length = len;
909
910 hci_req_add(req, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);
911}
912
Johan Hedbergbc6d2d02014-07-10 12:09:08 +0300913int mgmt_update_adv_data(struct hci_dev *hdev)
914{
915 struct hci_request req;
916
917 hci_req_init(&req, hdev);
918 update_adv_data(&req);
919
920 return hci_req_run(&req, NULL);
921}
922
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300923static void create_eir(struct hci_dev *hdev, u8 *data)
924{
925 u8 *ptr = data;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300926 size_t name_len;
927
928 name_len = strlen(hdev->dev_name);
929
930 if (name_len > 0) {
931 /* EIR Data type */
932 if (name_len > 48) {
933 name_len = 48;
934 ptr[1] = EIR_NAME_SHORT;
935 } else
936 ptr[1] = EIR_NAME_COMPLETE;
937
938 /* EIR Data length */
939 ptr[0] = name_len + 1;
940
941 memcpy(ptr + 2, hdev->dev_name, name_len);
942
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300943 ptr += (name_len + 2);
944 }
945
Johan Hedbergbbaf4442012-11-08 01:22:59 +0100946 if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700947 ptr[0] = 2;
948 ptr[1] = EIR_TX_POWER;
949 ptr[2] = (u8) hdev->inq_tx_power;
950
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700951 ptr += 3;
952 }
953
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700954 if (hdev->devid_source > 0) {
955 ptr[0] = 9;
956 ptr[1] = EIR_DEVICE_ID;
957
958 put_unaligned_le16(hdev->devid_source, ptr + 2);
959 put_unaligned_le16(hdev->devid_vendor, ptr + 4);
960 put_unaligned_le16(hdev->devid_product, ptr + 6);
961 put_unaligned_le16(hdev->devid_version, ptr + 8);
962
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700963 ptr += 10;
964 }
965
Johan Hedberg213202e2013-01-27 00:31:33 +0200966 ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergcdf19632013-01-27 00:31:34 +0200967 ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergc00d5752013-01-27 00:31:35 +0200968 ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300969}
970
Johan Hedberg890ea892013-03-15 17:06:52 -0500971static void update_eir(struct hci_request *req)
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300972{
Johan Hedberg890ea892013-03-15 17:06:52 -0500973 struct hci_dev *hdev = req->hdev;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300974 struct hci_cp_write_eir cp;
975
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200976 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500977 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200978
Johan Hedberg976eb202012-10-24 21:12:01 +0300979 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500980 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300981
Johan Hedberg84bde9d2012-01-25 14:21:06 +0200982 if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500983 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300984
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200985 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500986 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300987
988 memset(&cp, 0, sizeof(cp));
989
990 create_eir(hdev, cp.data);
991
992 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -0500993 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300994
995 memcpy(hdev->eir, cp.data, sizeof(cp.data));
996
Johan Hedberg890ea892013-03-15 17:06:52 -0500997 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300998}
999
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001000static u8 get_service_classes(struct hci_dev *hdev)
1001{
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -03001002 struct bt_uuid *uuid;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001003 u8 val = 0;
1004
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -03001005 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001006 val |= uuid->svc_hint;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001007
1008 return val;
1009}
1010
Johan Hedberg890ea892013-03-15 17:06:52 -05001011static void update_class(struct hci_request *req)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001012{
Johan Hedberg890ea892013-03-15 17:06:52 -05001013 struct hci_dev *hdev = req->hdev;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001014 u8 cod[3];
1015
1016 BT_DBG("%s", hdev->name);
1017
Johan Hedberg504c8dc2012-02-23 13:30:41 +02001018 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05001019 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +02001020
Johan Hedbergf87ea1d2013-10-19 23:38:17 +03001021 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
1022 return;
1023
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001024 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05001025 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001026
1027 cod[0] = hdev->minor_class;
1028 cod[1] = hdev->major_class;
1029 cod[2] = get_service_classes(hdev);
1030
Marcel Holtmann6acd7db2013-10-15 06:33:53 -07001031 if (test_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags))
1032 cod[1] |= 0x20;
1033
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001034 if (memcmp(cod, hdev->dev_class, 3) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -05001035 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001036
Johan Hedberg890ea892013-03-15 17:06:52 -05001037 hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02001038}
1039
Johan Hedberga4858cb2014-02-25 19:56:31 +02001040static bool get_connectable(struct hci_dev *hdev)
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001041{
1042 struct pending_cmd *cmd;
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001043
1044 /* If there's a pending mgmt command the flag will not yet have
1045 * it's final value, so check for this first.
1046 */
1047 cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
1048 if (cmd) {
1049 struct mgmt_mode *cp = cmd->param;
Johan Hedberga4858cb2014-02-25 19:56:31 +02001050 return cp->val;
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001051 }
1052
Johan Hedberga4858cb2014-02-25 19:56:31 +02001053 return test_bit(HCI_CONNECTABLE, &hdev->dev_flags);
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001054}
1055
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001056static void disable_advertising(struct hci_request *req)
1057{
1058 u8 enable = 0x00;
1059
1060 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
1061}
1062
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001063static void enable_advertising(struct hci_request *req)
1064{
1065 struct hci_dev *hdev = req->hdev;
1066 struct hci_cp_le_set_adv_param cp;
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001067 u8 own_addr_type, enable = 0x01;
Johan Hedberga4858cb2014-02-25 19:56:31 +02001068 bool connectable;
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001069
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001070 if (hci_conn_num(hdev, LE_LINK) > 0)
1071 return;
1072
1073 if (test_bit(HCI_LE_ADV, &hdev->dev_flags))
1074 disable_advertising(req);
1075
Johan Hedberg5ce194c2014-07-08 15:07:49 +03001076 /* Clear the HCI_LE_ADV bit temporarily so that the
Johan Hedberg8d972502014-02-28 12:54:14 +02001077 * hci_update_random_address knows that it's safe to go ahead
1078 * and write a new random address. The flag will be set back on
1079 * as soon as the SET_ADV_ENABLE HCI command completes.
1080 */
Johan Hedberg5ce194c2014-07-08 15:07:49 +03001081 clear_bit(HCI_LE_ADV, &hdev->dev_flags);
Johan Hedberg8d972502014-02-28 12:54:14 +02001082
Johan Hedberga4858cb2014-02-25 19:56:31 +02001083 connectable = get_connectable(hdev);
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001084
Johan Hedberga4858cb2014-02-25 19:56:31 +02001085 /* Set require_privacy to true only when non-connectable
1086 * advertising is used. In that case it is fine to use a
1087 * non-resolvable private address.
1088 */
1089 if (hci_update_random_address(req, !connectable, &own_addr_type) < 0)
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001090 return;
1091
Marcel Holtmann41c90c12014-02-23 20:25:55 -08001092 memset(&cp, 0, sizeof(cp));
Georg Lukas628531c2014-07-26 13:59:57 +02001093 cp.min_interval = cpu_to_le16(hdev->le_adv_min_interval);
1094 cp.max_interval = cpu_to_le16(hdev->le_adv_max_interval);
Johan Hedberga4858cb2014-02-25 19:56:31 +02001095 cp.type = connectable ? LE_ADV_IND : LE_ADV_NONCONN_IND;
Johan Hedberg8f2a0602014-02-23 19:42:23 +02001096 cp.own_address_type = own_addr_type;
Johan Hedberg199a2fb2014-02-22 19:06:33 +02001097 cp.channel_map = hdev->le_adv_channel_map;
1098
1099 hci_req_add(req, HCI_OP_LE_SET_ADV_PARAM, sizeof(cp), &cp);
1100
1101 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
1102}
1103
Johan Hedberg7d785252011-12-15 00:47:39 +02001104static void service_cache_off(struct work_struct *work)
1105{
1106 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001107 service_cache.work);
Johan Hedberg890ea892013-03-15 17:06:52 -05001108 struct hci_request req;
Johan Hedberg7d785252011-12-15 00:47:39 +02001109
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02001110 if (!test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +02001111 return;
1112
Johan Hedberg890ea892013-03-15 17:06:52 -05001113 hci_req_init(&req, hdev);
1114
Johan Hedberg7d785252011-12-15 00:47:39 +02001115 hci_dev_lock(hdev);
1116
Johan Hedberg890ea892013-03-15 17:06:52 -05001117 update_eir(&req);
1118 update_class(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02001119
1120 hci_dev_unlock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05001121
1122 hci_req_run(&req, NULL);
Johan Hedberg7d785252011-12-15 00:47:39 +02001123}
1124
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001125static void rpa_expired(struct work_struct *work)
1126{
1127 struct hci_dev *hdev = container_of(work, struct hci_dev,
1128 rpa_expired.work);
1129 struct hci_request req;
1130
1131 BT_DBG("");
1132
1133 set_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
1134
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03001135 if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags))
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001136 return;
1137
1138 /* The generation of a new RPA and programming it into the
1139 * controller happens in the enable_advertising() function.
1140 */
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001141 hci_req_init(&req, hdev);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001142 enable_advertising(&req);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001143 hci_req_run(&req, NULL);
1144}
1145
Johan Hedberg6a919082012-02-28 06:17:26 +02001146static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +02001147{
Johan Hedberg4f87da82012-03-02 19:55:56 +02001148 if (test_and_set_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg6a919082012-02-28 06:17:26 +02001149 return;
1150
Johan Hedberg4f87da82012-03-02 19:55:56 +02001151 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedbergd6bfd592014-02-23 19:42:20 +02001152 INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
Johan Hedberg7d785252011-12-15 00:47:39 +02001153
Johan Hedberg4f87da82012-03-02 19:55:56 +02001154 /* Non-mgmt controlled devices get this bit set
1155 * implicitly so that pairing works for them, however
1156 * for mgmt we require user-space to explicitly enable
1157 * it
1158 */
Johan Hedbergb6ae8452014-07-30 09:22:22 +03001159 clear_bit(HCI_BONDABLE, &hdev->dev_flags);
Johan Hedberg7d785252011-12-15 00:47:39 +02001160}
1161
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02001162static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001163 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +02001164{
1165 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +02001166
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001167 BT_DBG("sock %p %s", sk, hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001168
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001169 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001170
Johan Hedberg03811012010-12-08 00:21:06 +02001171 memset(&rp, 0, sizeof(rp));
1172
Johan Hedberg03811012010-12-08 00:21:06 +02001173 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001174
1175 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02001176 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001177
1178 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
1179 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
1180
1181 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedberg03811012010-12-08 00:21:06 +02001182
1183 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +02001184 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedberg03811012010-12-08 00:21:06 +02001185
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001186 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001187
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001188 return cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001189 sizeof(rp));
Johan Hedberg03811012010-12-08 00:21:06 +02001190}
1191
1192static void mgmt_pending_free(struct pending_cmd *cmd)
1193{
1194 sock_put(cmd->sk);
1195 kfree(cmd->param);
1196 kfree(cmd);
1197}
1198
1199static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001200 struct hci_dev *hdev, void *data,
1201 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001202{
1203 struct pending_cmd *cmd;
1204
Johan Hedbergfca20012014-06-28 17:54:05 +03001205 cmd = kzalloc(sizeof(*cmd), GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02001206 if (!cmd)
1207 return NULL;
1208
1209 cmd->opcode = opcode;
1210 cmd->index = hdev->id;
1211
Johan Hedberg323b0b82014-12-05 13:36:01 +02001212 cmd->param = kmemdup(data, len, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02001213 if (!cmd->param) {
1214 kfree(cmd);
1215 return NULL;
1216 }
1217
Johan Hedberg323b0b82014-12-05 13:36:01 +02001218 cmd->param_len = len;
Johan Hedberg03811012010-12-08 00:21:06 +02001219
1220 cmd->sk = sk;
1221 sock_hold(sk);
1222
1223 list_add(&cmd->list, &hdev->mgmt_pending);
1224
1225 return cmd;
1226}
1227
1228static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001229 void (*cb)(struct pending_cmd *cmd,
1230 void *data),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001231 void *data)
Johan Hedberg03811012010-12-08 00:21:06 +02001232{
Andre Guedesa3d09352013-02-01 11:21:30 -03001233 struct pending_cmd *cmd, *tmp;
Johan Hedberg03811012010-12-08 00:21:06 +02001234
Andre Guedesa3d09352013-02-01 11:21:30 -03001235 list_for_each_entry_safe(cmd, tmp, &hdev->mgmt_pending, list) {
Johan Hedberg03811012010-12-08 00:21:06 +02001236 if (opcode > 0 && cmd->opcode != opcode)
1237 continue;
1238
1239 cb(cmd, data);
1240 }
1241}
1242
Johan Hedberg03811012010-12-08 00:21:06 +02001243static void mgmt_pending_remove(struct pending_cmd *cmd)
1244{
1245 list_del(&cmd->list);
1246 mgmt_pending_free(cmd);
1247}
1248
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001249static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +02001250{
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001251 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +02001252
Johan Hedbergaee9b2182012-02-18 15:07:59 +02001253 return cmd_complete(sk, hdev->id, opcode, 0, &settings,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001254 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +02001255}
1256
Marcel Holtmann1904a852015-01-11 13:50:44 -08001257static void clean_up_hci_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg8b064a32014-02-24 14:52:22 +02001258{
1259 BT_DBG("%s status 0x%02x", hdev->name, status);
1260
Johan Hedberga3172b72014-02-28 09:33:44 +02001261 if (hci_conn_count(hdev) == 0) {
1262 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001263 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02001264 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001265}
1266
Johan Hedberg23a48092014-07-08 16:05:06 +03001267static bool hci_stop_discovery(struct hci_request *req)
Johan Hedberg21a60d32014-06-10 14:05:58 +03001268{
1269 struct hci_dev *hdev = req->hdev;
1270 struct hci_cp_remote_name_req_cancel cp;
1271 struct inquiry_entry *e;
1272
1273 switch (hdev->discovery.state) {
1274 case DISCOVERY_FINDING:
1275 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
1276 hci_req_add(req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
1277 } else {
1278 cancel_delayed_work(&hdev->le_scan_disable);
1279 hci_req_add_le_scan_disable(req);
1280 }
1281
Johan Hedberg23a48092014-07-08 16:05:06 +03001282 return true;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001283
1284 case DISCOVERY_RESOLVING:
1285 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
1286 NAME_PENDING);
1287 if (!e)
Johan Hedberg23a48092014-07-08 16:05:06 +03001288 break;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001289
1290 bacpy(&cp.bdaddr, &e->data.bdaddr);
1291 hci_req_add(req, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp),
1292 &cp);
1293
Johan Hedberg23a48092014-07-08 16:05:06 +03001294 return true;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001295
1296 default:
1297 /* Passive scanning */
Johan Hedberg23a48092014-07-08 16:05:06 +03001298 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags)) {
Johan Hedberg21a60d32014-06-10 14:05:58 +03001299 hci_req_add_le_scan_disable(req);
Johan Hedberg23a48092014-07-08 16:05:06 +03001300 return true;
1301 }
1302
Johan Hedberg21a60d32014-06-10 14:05:58 +03001303 break;
1304 }
Johan Hedberg23a48092014-07-08 16:05:06 +03001305
1306 return false;
Johan Hedberg21a60d32014-06-10 14:05:58 +03001307}
1308
Johan Hedberg8b064a32014-02-24 14:52:22 +02001309static int clean_up_hci_state(struct hci_dev *hdev)
1310{
1311 struct hci_request req;
1312 struct hci_conn *conn;
Johan Hedberg23a48092014-07-08 16:05:06 +03001313 bool discov_stopped;
1314 int err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001315
1316 hci_req_init(&req, hdev);
1317
1318 if (test_bit(HCI_ISCAN, &hdev->flags) ||
1319 test_bit(HCI_PSCAN, &hdev->flags)) {
1320 u8 scan = 0x00;
1321 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1322 }
1323
Johan Hedberg73e082f2014-07-08 15:07:51 +03001324 if (test_bit(HCI_LE_ADV, &hdev->dev_flags))
Johan Hedberg8b064a32014-02-24 14:52:22 +02001325 disable_advertising(&req);
1326
Johan Hedberg23a48092014-07-08 16:05:06 +03001327 discov_stopped = hci_stop_discovery(&req);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001328
1329 list_for_each_entry(conn, &hdev->conn_hash.list, list) {
1330 struct hci_cp_disconnect dc;
Johan Hedbergc9910d02014-02-27 14:35:12 +02001331 struct hci_cp_reject_conn_req rej;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001332
Johan Hedbergc9910d02014-02-27 14:35:12 +02001333 switch (conn->state) {
1334 case BT_CONNECTED:
1335 case BT_CONFIG:
1336 dc.handle = cpu_to_le16(conn->handle);
1337 dc.reason = 0x15; /* Terminated due to Power Off */
1338 hci_req_add(&req, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1339 break;
1340 case BT_CONNECT:
1341 if (conn->type == LE_LINK)
1342 hci_req_add(&req, HCI_OP_LE_CREATE_CONN_CANCEL,
1343 0, NULL);
1344 else if (conn->type == ACL_LINK)
1345 hci_req_add(&req, HCI_OP_CREATE_CONN_CANCEL,
1346 6, &conn->dst);
1347 break;
1348 case BT_CONNECT2:
1349 bacpy(&rej.bdaddr, &conn->dst);
1350 rej.reason = 0x15; /* Terminated due to Power Off */
1351 if (conn->type == ACL_LINK)
1352 hci_req_add(&req, HCI_OP_REJECT_CONN_REQ,
1353 sizeof(rej), &rej);
1354 else if (conn->type == SCO_LINK)
1355 hci_req_add(&req, HCI_OP_REJECT_SYNC_CONN_REQ,
1356 sizeof(rej), &rej);
1357 break;
1358 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001359 }
1360
Johan Hedberg23a48092014-07-08 16:05:06 +03001361 err = hci_req_run(&req, clean_up_hci_complete);
1362 if (!err && discov_stopped)
1363 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
1364
1365 return err;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001366}
1367
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001368static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001369 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001370{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001371 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +02001372 struct pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001373 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02001374
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001375 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001376
Johan Hedberga7e80f22013-01-09 16:05:19 +02001377 if (cp->val != 0x00 && cp->val != 0x01)
1378 return cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1379 MGMT_STATUS_INVALID_PARAMS);
1380
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001381 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001382
Johan Hedberg87b95ba2013-09-25 13:26:06 +03001383 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
1384 err = cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1385 MGMT_STATUS_BUSY);
1386 goto failed;
1387 }
1388
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001389 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) {
1390 cancel_delayed_work(&hdev->power_off);
1391
1392 if (cp->val) {
Johan Hedberga1d70452013-01-09 15:29:40 +02001393 mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
1394 data, len);
1395 err = mgmt_powered(hdev, 1);
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001396 goto failed;
1397 }
1398 }
1399
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001400 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001401 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001402 goto failed;
1403 }
1404
Johan Hedberg03811012010-12-08 00:21:06 +02001405 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1406 if (!cmd) {
1407 err = -ENOMEM;
1408 goto failed;
1409 }
1410
Johan Hedberg8b064a32014-02-24 14:52:22 +02001411 if (cp->val) {
Johan Hedberg19202572013-01-14 22:33:51 +02001412 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001413 err = 0;
1414 } else {
1415 /* Disconnect connections, stop scans, etc */
1416 err = clean_up_hci_state(hdev);
Johan Hedberga3172b72014-02-28 09:33:44 +02001417 if (!err)
1418 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1419 HCI_POWER_OFF_TIMEOUT);
Johan Hedberg03811012010-12-08 00:21:06 +02001420
Johan Hedberg8b064a32014-02-24 14:52:22 +02001421 /* ENODATA means there were no HCI commands queued */
1422 if (err == -ENODATA) {
Johan Hedberga3172b72014-02-28 09:33:44 +02001423 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001424 queue_work(hdev->req_workqueue, &hdev->power_off.work);
1425 err = 0;
1426 }
1427 }
Johan Hedberg03811012010-12-08 00:21:06 +02001428
1429failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001430 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001431 return err;
1432}
1433
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001434static int new_settings(struct hci_dev *hdev, struct sock *skip)
1435{
1436 __le32 ev;
1437
1438 ev = cpu_to_le32(get_current_settings(hdev));
1439
1440 return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip);
1441}
1442
Johan Hedberg91a668b2014-07-09 13:28:26 +03001443int mgmt_new_settings(struct hci_dev *hdev)
1444{
1445 return new_settings(hdev, NULL);
1446}
1447
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001448struct cmd_lookup {
1449 struct sock *sk;
1450 struct hci_dev *hdev;
1451 u8 mgmt_status;
1452};
1453
1454static void settings_rsp(struct pending_cmd *cmd, void *data)
1455{
1456 struct cmd_lookup *match = data;
1457
1458 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
1459
1460 list_del(&cmd->list);
1461
1462 if (match->sk == NULL) {
1463 match->sk = cmd->sk;
1464 sock_hold(match->sk);
1465 }
1466
1467 mgmt_pending_free(cmd);
1468}
1469
1470static void cmd_status_rsp(struct pending_cmd *cmd, void *data)
1471{
1472 u8 *status = data;
1473
1474 cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
1475 mgmt_pending_remove(cmd);
1476}
1477
Johan Hedberg1b9b5ee2014-12-05 13:36:00 +02001478static void cmd_complete_rsp(struct pending_cmd *cmd, void *data)
1479{
1480 if (cmd->cmd_complete) {
1481 u8 *status = data;
1482
1483 cmd->cmd_complete(cmd, *status);
1484 mgmt_pending_remove(cmd);
1485
1486 return;
1487 }
1488
1489 cmd_status_rsp(cmd, data);
1490}
1491
Johan Hedberg9df74652014-12-19 22:26:03 +02001492static int generic_cmd_complete(struct pending_cmd *cmd, u8 status)
Johan Hedbergf5818c22014-12-05 13:36:02 +02001493{
Johan Hedberg9df74652014-12-19 22:26:03 +02001494 return cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
1495 cmd->param, cmd->param_len);
Johan Hedbergf5818c22014-12-05 13:36:02 +02001496}
1497
Johan Hedberg9df74652014-12-19 22:26:03 +02001498static int addr_cmd_complete(struct pending_cmd *cmd, u8 status)
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001499{
Johan Hedberg9df74652014-12-19 22:26:03 +02001500 return cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, cmd->param,
1501 sizeof(struct mgmt_addr_info));
Johan Hedberg7776d1d2014-12-05 13:36:03 +02001502}
1503
Johan Hedberge6fe7982013-10-02 15:45:22 +03001504static u8 mgmt_bredr_support(struct hci_dev *hdev)
1505{
1506 if (!lmp_bredr_capable(hdev))
1507 return MGMT_STATUS_NOT_SUPPORTED;
1508 else if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
1509 return MGMT_STATUS_REJECTED;
1510 else
1511 return MGMT_STATUS_SUCCESS;
1512}
1513
1514static u8 mgmt_le_support(struct hci_dev *hdev)
1515{
1516 if (!lmp_le_capable(hdev))
1517 return MGMT_STATUS_NOT_SUPPORTED;
1518 else if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
1519 return MGMT_STATUS_REJECTED;
1520 else
1521 return MGMT_STATUS_SUCCESS;
1522}
1523
Marcel Holtmann1904a852015-01-11 13:50:44 -08001524static void set_discoverable_complete(struct hci_dev *hdev, u8 status,
1525 u16 opcode)
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001526{
1527 struct pending_cmd *cmd;
1528 struct mgmt_mode *cp;
Marcel Holtmann970ba522013-10-15 06:33:57 -07001529 struct hci_request req;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001530 bool changed;
1531
1532 BT_DBG("status 0x%02x", status);
1533
1534 hci_dev_lock(hdev);
1535
1536 cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
1537 if (!cmd)
1538 goto unlock;
1539
1540 if (status) {
1541 u8 mgmt_err = mgmt_status(status);
1542 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001543 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001544 goto remove_cmd;
1545 }
1546
1547 cp = cmd->param;
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001548 if (cp->val) {
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001549 changed = !test_and_set_bit(HCI_DISCOVERABLE,
1550 &hdev->dev_flags);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001551
1552 if (hdev->discov_timeout > 0) {
1553 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1554 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1555 to);
1556 }
1557 } else {
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001558 changed = test_and_clear_bit(HCI_DISCOVERABLE,
1559 &hdev->dev_flags);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001560 }
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001561
1562 send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1563
1564 if (changed)
1565 new_settings(hdev, cmd->sk);
1566
Marcel Holtmann970ba522013-10-15 06:33:57 -07001567 /* When the discoverable mode gets changed, make sure
1568 * that class of device has the limited discoverable
Johan Hedberg432df052014-08-01 11:13:31 +03001569 * bit correctly set. Also update page scan based on whitelist
1570 * entries.
Marcel Holtmann970ba522013-10-15 06:33:57 -07001571 */
1572 hci_req_init(&req, hdev);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02001573 __hci_update_page_scan(&req);
Marcel Holtmann970ba522013-10-15 06:33:57 -07001574 update_class(&req);
1575 hci_req_run(&req, NULL);
1576
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001577remove_cmd:
1578 mgmt_pending_remove(cmd);
1579
1580unlock:
1581 hci_dev_unlock(hdev);
1582}
1583
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001584static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001585 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001586{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001587 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +02001588 struct pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001589 struct hci_request req;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001590 u16 timeout;
Johan Hedberg9a43e252013-10-20 19:00:07 +03001591 u8 scan;
Johan Hedberg03811012010-12-08 00:21:06 +02001592 int err;
1593
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001594 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001595
Johan Hedberg9a43e252013-10-20 19:00:07 +03001596 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
1597 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedberg33c525c2012-10-24 21:11:58 +03001598 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Johan Hedberg9a43e252013-10-20 19:00:07 +03001599 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001600
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001601 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga7e80f22013-01-09 16:05:19 +02001602 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1603 MGMT_STATUS_INVALID_PARAMS);
1604
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001605 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001606
1607 /* Disabling discoverable requires that no timeout is set,
1608 * and enabling limited discoverable requires a timeout.
1609 */
1610 if ((cp->val == 0x00 && timeout > 0) ||
1611 (cp->val == 0x02 && timeout == 0))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001612 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001613 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001614
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001615 hci_dev_lock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001616
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001617 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001618 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001619 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001620 goto failed;
1621 }
1622
1623 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001624 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001625 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001626 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001627 goto failed;
1628 }
1629
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001630 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001631 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001632 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001633 goto failed;
1634 }
1635
1636 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001637 bool changed = false;
1638
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001639 /* Setting limited discoverable when powered off is
1640 * not a valid operation since it requires a timeout
1641 * and so no need to check HCI_LIMITED_DISCOVERABLE.
1642 */
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001643 if (!!cp->val != test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
1644 change_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1645 changed = true;
1646 }
1647
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001648 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001649 if (err < 0)
1650 goto failed;
1651
1652 if (changed)
1653 err = new_settings(hdev, sk);
1654
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001655 goto failed;
1656 }
1657
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001658 /* If the current mode is the same, then just update the timeout
1659 * value with the new value. And if only the timeout gets updated,
1660 * then no need for any HCI transactions.
1661 */
1662 if (!!cp->val == test_bit(HCI_DISCOVERABLE, &hdev->dev_flags) &&
1663 (cp->val == 0x02) == test_bit(HCI_LIMITED_DISCOVERABLE,
1664 &hdev->dev_flags)) {
Marcel Holtmann36261542013-10-15 08:28:51 -07001665 cancel_delayed_work(&hdev->discov_off);
1666 hdev->discov_timeout = timeout;
Marcel Holtmann955638e2012-02-22 18:21:00 +01001667
Marcel Holtmann36261542013-10-15 08:28:51 -07001668 if (cp->val && hdev->discov_timeout > 0) {
1669 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001670 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
Marcel Holtmann36261542013-10-15 08:28:51 -07001671 to);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001672 }
1673
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001674 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001675 goto failed;
1676 }
1677
1678 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1679 if (!cmd) {
1680 err = -ENOMEM;
1681 goto failed;
1682 }
1683
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001684 /* Cancel any potential discoverable timeout that might be
1685 * still active and store new timeout value. The arming of
1686 * the timeout happens in the complete handler.
1687 */
1688 cancel_delayed_work(&hdev->discov_off);
1689 hdev->discov_timeout = timeout;
1690
Johan Hedbergb456f872013-10-19 23:38:22 +03001691 /* Limited discoverable mode */
1692 if (cp->val == 0x02)
1693 set_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1694 else
1695 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1696
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001697 hci_req_init(&req, hdev);
1698
Johan Hedberg9a43e252013-10-20 19:00:07 +03001699 /* The procedure for LE-only controllers is much simpler - just
1700 * update the advertising data.
1701 */
1702 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
1703 goto update_ad;
1704
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001705 scan = SCAN_PAGE;
1706
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001707 if (cp->val) {
1708 struct hci_cp_write_current_iac_lap hci_cp;
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001709
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001710 if (cp->val == 0x02) {
1711 /* Limited discoverable mode */
Marcel Holtmann33337dc2013-10-23 08:28:01 -07001712 hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001713 hci_cp.iac_lap[0] = 0x00; /* LIAC */
1714 hci_cp.iac_lap[1] = 0x8b;
1715 hci_cp.iac_lap[2] = 0x9e;
1716 hci_cp.iac_lap[3] = 0x33; /* GIAC */
1717 hci_cp.iac_lap[4] = 0x8b;
1718 hci_cp.iac_lap[5] = 0x9e;
1719 } else {
1720 /* General discoverable mode */
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001721 hci_cp.num_iac = 1;
1722 hci_cp.iac_lap[0] = 0x33; /* GIAC */
1723 hci_cp.iac_lap[1] = 0x8b;
1724 hci_cp.iac_lap[2] = 0x9e;
1725 }
1726
1727 hci_req_add(&req, HCI_OP_WRITE_CURRENT_IAC_LAP,
1728 (hci_cp.num_iac * 3) + 1, &hci_cp);
1729
1730 scan |= SCAN_INQUIRY;
1731 } else {
1732 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1733 }
1734
1735 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001736
Johan Hedberg9a43e252013-10-20 19:00:07 +03001737update_ad:
1738 update_adv_data(&req);
1739
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001740 err = hci_req_run(&req, set_discoverable_complete);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001741 if (err < 0)
1742 mgmt_pending_remove(cmd);
1743
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001744failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001745 hci_dev_unlock(hdev);
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001746 return err;
1747}
1748
Johan Hedberg406d7802013-03-15 17:07:09 -05001749static void write_fast_connectable(struct hci_request *req, bool enable)
1750{
Johan Hedbergbd98b992013-03-15 17:07:13 -05001751 struct hci_dev *hdev = req->hdev;
Johan Hedberg406d7802013-03-15 17:07:09 -05001752 struct hci_cp_write_page_scan_activity acp;
1753 u8 type;
1754
Johan Hedberg547003b2013-10-21 16:51:53 +03001755 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
1756 return;
1757
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05001758 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
1759 return;
1760
Johan Hedberg406d7802013-03-15 17:07:09 -05001761 if (enable) {
1762 type = PAGE_SCAN_TYPE_INTERLACED;
1763
1764 /* 160 msec page scan interval */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001765 acp.interval = cpu_to_le16(0x0100);
Johan Hedberg406d7802013-03-15 17:07:09 -05001766 } else {
1767 type = PAGE_SCAN_TYPE_STANDARD; /* default */
1768
1769 /* default 1.28 sec page scan */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001770 acp.interval = cpu_to_le16(0x0800);
Johan Hedberg406d7802013-03-15 17:07:09 -05001771 }
1772
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001773 acp.window = cpu_to_le16(0x0012);
Johan Hedberg406d7802013-03-15 17:07:09 -05001774
Johan Hedbergbd98b992013-03-15 17:07:13 -05001775 if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval ||
1776 __cpu_to_le16(hdev->page_scan_window) != acp.window)
1777 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
1778 sizeof(acp), &acp);
1779
1780 if (hdev->page_scan_type != type)
1781 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
Johan Hedberg406d7802013-03-15 17:07:09 -05001782}
1783
Marcel Holtmann1904a852015-01-11 13:50:44 -08001784static void set_connectable_complete(struct hci_dev *hdev, u8 status,
1785 u16 opcode)
Johan Hedberg2b76f452013-03-15 17:07:04 -05001786{
1787 struct pending_cmd *cmd;
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001788 struct mgmt_mode *cp;
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001789 bool conn_changed, discov_changed;
Johan Hedberg2b76f452013-03-15 17:07:04 -05001790
1791 BT_DBG("status 0x%02x", status);
1792
1793 hci_dev_lock(hdev);
1794
1795 cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
1796 if (!cmd)
1797 goto unlock;
1798
Johan Hedberg37438c12013-10-14 16:20:05 +03001799 if (status) {
1800 u8 mgmt_err = mgmt_status(status);
1801 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1802 goto remove_cmd;
1803 }
1804
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001805 cp = cmd->param;
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001806 if (cp->val) {
1807 conn_changed = !test_and_set_bit(HCI_CONNECTABLE,
1808 &hdev->dev_flags);
1809 discov_changed = false;
1810 } else {
1811 conn_changed = test_and_clear_bit(HCI_CONNECTABLE,
1812 &hdev->dev_flags);
1813 discov_changed = test_and_clear_bit(HCI_DISCOVERABLE,
1814 &hdev->dev_flags);
1815 }
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001816
Johan Hedberg2b76f452013-03-15 17:07:04 -05001817 send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);
1818
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001819 if (conn_changed || discov_changed) {
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001820 new_settings(hdev, cmd->sk);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02001821 hci_update_page_scan(hdev);
Johan Hedbergbc6d2d02014-07-10 12:09:08 +03001822 if (discov_changed)
1823 mgmt_update_adv_data(hdev);
Johan Hedberg2b7be332014-07-07 14:40:22 +03001824 hci_update_background_scan(hdev);
1825 }
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001826
Johan Hedberg37438c12013-10-14 16:20:05 +03001827remove_cmd:
Johan Hedberg2b76f452013-03-15 17:07:04 -05001828 mgmt_pending_remove(cmd);
1829
1830unlock:
1831 hci_dev_unlock(hdev);
1832}
1833
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001834static int set_connectable_update_settings(struct hci_dev *hdev,
1835 struct sock *sk, u8 val)
1836{
1837 bool changed = false;
1838 int err;
1839
1840 if (!!val != test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
1841 changed = true;
1842
1843 if (val) {
1844 set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1845 } else {
1846 clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1847 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1848 }
1849
1850 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
1851 if (err < 0)
1852 return err;
1853
Johan Hedberg562064e2014-07-08 16:35:34 +03001854 if (changed) {
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02001855 hci_update_page_scan(hdev);
Johan Hedberg562064e2014-07-08 16:35:34 +03001856 hci_update_background_scan(hdev);
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001857 return new_settings(hdev, sk);
Johan Hedberg562064e2014-07-08 16:35:34 +03001858 }
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001859
1860 return 0;
1861}
1862
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001863static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001864 u16 len)
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001865{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001866 struct mgmt_mode *cp = data;
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001867 struct pending_cmd *cmd;
Johan Hedberg2b76f452013-03-15 17:07:04 -05001868 struct hci_request req;
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001869 u8 scan;
Johan Hedbergf7b64e62010-12-13 21:07:06 +02001870 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02001871
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001872 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +02001873
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001874 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
1875 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedberg33c525c2012-10-24 21:11:58 +03001876 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001877 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001878
Johan Hedberga7e80f22013-01-09 16:05:19 +02001879 if (cp->val != 0x00 && cp->val != 0x01)
1880 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
1881 MGMT_STATUS_INVALID_PARAMS);
1882
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001883 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001884
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001885 if (!hdev_is_powered(hdev)) {
Johan Hedberge8ba3a12013-10-19 23:38:18 +03001886 err = set_connectable_update_settings(hdev, sk, cp->val);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001887 goto failed;
1888 }
1889
1890 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001891 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001892 err = cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001893 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001894 goto failed;
1895 }
1896
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001897 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
1898 if (!cmd) {
1899 err = -ENOMEM;
1900 goto failed;
1901 }
1902
Johan Hedberg2b76f452013-03-15 17:07:04 -05001903 hci_req_init(&req, hdev);
1904
Johan Hedberg9a43e252013-10-20 19:00:07 +03001905 /* If BR/EDR is not enabled and we disable advertising as a
1906 * by-product of disabling connectable, we need to update the
1907 * advertising flags.
1908 */
1909 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
1910 if (!cp->val) {
1911 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1912 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1913 }
1914 update_adv_data(&req);
1915 } else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg9b742462013-10-14 16:20:03 +03001916 if (cp->val) {
1917 scan = SCAN_PAGE;
1918 } else {
Johan Hedberg3bd27242014-07-28 20:53:58 +03001919 /* If we don't have any whitelist entries just
1920 * disable all scanning. If there are entries
1921 * and we had both page and inquiry scanning
1922 * enabled then fall back to only page scanning.
1923 * Otherwise no changes are needed.
1924 */
1925 if (list_empty(&hdev->whitelist))
1926 scan = SCAN_DISABLED;
1927 else if (test_bit(HCI_ISCAN, &hdev->flags))
1928 scan = SCAN_PAGE;
1929 else
1930 goto no_scan_update;
Johan Hedberg9b742462013-10-14 16:20:03 +03001931
1932 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Marcel Holtmann8d6083f2013-10-14 16:38:45 -07001933 hdev->discov_timeout > 0)
Johan Hedberg9b742462013-10-14 16:20:03 +03001934 cancel_delayed_work(&hdev->discov_off);
1935 }
1936
1937 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1938 }
Johan Hedberg2b76f452013-03-15 17:07:04 -05001939
Johan Hedberg3bd27242014-07-28 20:53:58 +03001940no_scan_update:
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05001941 /* If we're going from non-connectable to connectable or
1942 * vice-versa when fast connectable is enabled ensure that fast
1943 * connectable gets disabled. write_fast_connectable won't do
1944 * anything if the page scan parameters are already what they
1945 * should be.
1946 */
1947 if (cp->val || test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags))
Johan Hedberge36a3762013-03-15 17:07:10 -05001948 write_fast_connectable(&req, false);
1949
Johan Hedberge8b12022014-07-10 10:51:27 +03001950 /* Update the advertising parameters if necessary */
1951 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001952 enable_advertising(&req);
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001953
Johan Hedberg2b76f452013-03-15 17:07:04 -05001954 err = hci_req_run(&req, set_connectable_complete);
Johan Hedberg9b742462013-10-14 16:20:03 +03001955 if (err < 0) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001956 mgmt_pending_remove(cmd);
Johan Hedberg9b742462013-10-14 16:20:03 +03001957 if (err == -ENODATA)
Johan Hedberga81070b2013-10-19 23:38:19 +03001958 err = set_connectable_update_settings(hdev, sk,
1959 cp->val);
Johan Hedberg9b742462013-10-14 16:20:03 +03001960 goto failed;
1961 }
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001962
1963failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001964 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001965 return err;
1966}
1967
Johan Hedbergb2939472014-07-30 09:22:23 +03001968static int set_bondable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001969 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02001970{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001971 struct mgmt_mode *cp = data;
Marcel Holtmann55594352013-10-06 16:11:57 -07001972 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001973 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001974
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001975 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001976
Johan Hedberga7e80f22013-01-09 16:05:19 +02001977 if (cp->val != 0x00 && cp->val != 0x01)
Johan Hedbergb2939472014-07-30 09:22:23 +03001978 return cmd_status(sk, hdev->id, MGMT_OP_SET_BONDABLE,
Johan Hedberga7e80f22013-01-09 16:05:19 +02001979 MGMT_STATUS_INVALID_PARAMS);
1980
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001981 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001982
1983 if (cp->val)
Johan Hedbergb6ae8452014-07-30 09:22:22 +03001984 changed = !test_and_set_bit(HCI_BONDABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001985 else
Johan Hedbergb6ae8452014-07-30 09:22:22 +03001986 changed = test_and_clear_bit(HCI_BONDABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001987
Johan Hedbergb2939472014-07-30 09:22:23 +03001988 err = send_settings_rsp(sk, MGMT_OP_SET_BONDABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001989 if (err < 0)
Marcel Holtmann55594352013-10-06 16:11:57 -07001990 goto unlock;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001991
Marcel Holtmann55594352013-10-06 16:11:57 -07001992 if (changed)
1993 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001994
Marcel Holtmann55594352013-10-06 16:11:57 -07001995unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001996 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001997 return err;
1998}
Johan Hedberg72a734e2010-12-30 00:38:22 +02001999
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002000static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
2001 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002002{
2003 struct mgmt_mode *cp = data;
2004 struct pending_cmd *cmd;
Johan Hedberge6fe7982013-10-02 15:45:22 +03002005 u8 val, status;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002006 int err;
2007
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002008 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002009
Johan Hedberge6fe7982013-10-02 15:45:22 +03002010 status = mgmt_bredr_support(hdev);
2011 if (status)
Johan Hedberg33c525c2012-10-24 21:11:58 +03002012 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03002013 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +03002014
Johan Hedberga7e80f22013-01-09 16:05:19 +02002015 if (cp->val != 0x00 && cp->val != 0x01)
2016 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
2017 MGMT_STATUS_INVALID_PARAMS);
2018
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002019 hci_dev_lock(hdev);
2020
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002021 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02002022 bool changed = false;
2023
2024 if (!!cp->val != test_bit(HCI_LINK_SECURITY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002025 &hdev->dev_flags)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02002026 change_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
2027 changed = true;
2028 }
2029
2030 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
2031 if (err < 0)
2032 goto failed;
2033
2034 if (changed)
2035 err = new_settings(hdev, sk);
2036
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002037 goto failed;
2038 }
2039
2040 if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002041 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002042 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002043 goto failed;
2044 }
2045
2046 val = !!cp->val;
2047
2048 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
2049 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
2050 goto failed;
2051 }
2052
2053 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
2054 if (!cmd) {
2055 err = -ENOMEM;
2056 goto failed;
2057 }
2058
2059 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
2060 if (err < 0) {
2061 mgmt_pending_remove(cmd);
2062 goto failed;
2063 }
2064
2065failed:
2066 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02002067 return err;
2068}
2069
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002070static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002071{
2072 struct mgmt_mode *cp = data;
2073 struct pending_cmd *cmd;
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002074 u8 status;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002075 int err;
2076
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002077 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002078
Marcel Holtmanncdba5282013-10-02 21:31:52 -07002079 status = mgmt_bredr_support(hdev);
2080 if (status)
2081 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
2082
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002083 if (!lmp_ssp_capable(hdev))
2084 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2085 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002086
Johan Hedberga7e80f22013-01-09 16:05:19 +02002087 if (cp->val != 0x00 && cp->val != 0x01)
2088 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2089 MGMT_STATUS_INVALID_PARAMS);
2090
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002091 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02002092
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002093 if (!hdev_is_powered(hdev)) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002094 bool changed;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02002095
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002096 if (cp->val) {
2097 changed = !test_and_set_bit(HCI_SSP_ENABLED,
2098 &hdev->dev_flags);
2099 } else {
2100 changed = test_and_clear_bit(HCI_SSP_ENABLED,
2101 &hdev->dev_flags);
2102 if (!changed)
2103 changed = test_and_clear_bit(HCI_HS_ENABLED,
2104 &hdev->dev_flags);
2105 else
2106 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02002107 }
2108
2109 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
2110 if (err < 0)
2111 goto failed;
2112
2113 if (changed)
2114 err = new_settings(hdev, sk);
2115
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002116 goto failed;
2117 }
2118
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002119 if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev) ||
2120 mgmt_pending_find(MGMT_OP_SET_HS, hdev)) {
Szymon Jancd97dcb62012-03-16 16:02:56 +01002121 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
2122 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002123 goto failed;
2124 }
2125
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002126 if (!!cp->val == test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002127 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
2128 goto failed;
2129 }
2130
2131 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
2132 if (!cmd) {
2133 err = -ENOMEM;
2134 goto failed;
2135 }
2136
Johan Hedberg37699722014-06-24 14:00:27 +03002137 if (!cp->val && test_bit(HCI_USE_DEBUG_KEYS, &hdev->dev_flags))
2138 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
2139 sizeof(cp->val), &cp->val);
2140
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07002141 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002142 if (err < 0) {
2143 mgmt_pending_remove(cmd);
2144 goto failed;
2145 }
2146
2147failed:
2148 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02002149 return err;
2150}
2151
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002152static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002153{
2154 struct mgmt_mode *cp = data;
Marcel Holtmannee392692013-10-01 22:59:23 -07002155 bool changed;
Johan Hedberge6fe7982013-10-02 15:45:22 +03002156 u8 status;
Marcel Holtmannee392692013-10-01 22:59:23 -07002157 int err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002158
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002159 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002160
Johan Hedberge6fe7982013-10-02 15:45:22 +03002161 status = mgmt_bredr_support(hdev);
2162 if (status)
2163 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002164
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07002165 if (!lmp_ssp_capable(hdev))
2166 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2167 MGMT_STATUS_NOT_SUPPORTED);
2168
2169 if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
2170 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2171 MGMT_STATUS_REJECTED);
2172
Johan Hedberga7e80f22013-01-09 16:05:19 +02002173 if (cp->val != 0x00 && cp->val != 0x01)
2174 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2175 MGMT_STATUS_INVALID_PARAMS);
2176
Marcel Holtmannee392692013-10-01 22:59:23 -07002177 hci_dev_lock(hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002178
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002179 if (cp->val) {
Marcel Holtmannee392692013-10-01 22:59:23 -07002180 changed = !test_and_set_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002181 } else {
2182 if (hdev_is_powered(hdev)) {
2183 err = cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
2184 MGMT_STATUS_REJECTED);
2185 goto unlock;
2186 }
2187
Marcel Holtmannee392692013-10-01 22:59:23 -07002188 changed = test_and_clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07002189 }
Marcel Holtmannee392692013-10-01 22:59:23 -07002190
2191 err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
2192 if (err < 0)
2193 goto unlock;
2194
2195 if (changed)
2196 err = new_settings(hdev, sk);
2197
2198unlock:
2199 hci_dev_unlock(hdev);
2200 return err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02002201}
2202
Marcel Holtmann1904a852015-01-11 13:50:44 -08002203static void le_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002204{
2205 struct cmd_lookup match = { NULL, hdev };
2206
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302207 hci_dev_lock(hdev);
2208
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002209 if (status) {
2210 u8 mgmt_err = mgmt_status(status);
2211
2212 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
2213 &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302214 goto unlock;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002215 }
2216
2217 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
2218
2219 new_settings(hdev, match.sk);
2220
2221 if (match.sk)
2222 sock_put(match.sk);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002223
2224 /* Make sure the controller has a good default for
2225 * advertising data. Restrict the update to when LE
2226 * has actually been enabled. During power on, the
2227 * update in powered_update_hci will take care of it.
2228 */
2229 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
2230 struct hci_request req;
2231
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002232 hci_req_init(&req, hdev);
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07002233 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07002234 update_scan_rsp_data(&req);
Johan Hedberg2cf22212014-12-19 22:26:00 +02002235 __hci_update_background_scan(&req);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002236 hci_req_run(&req, NULL);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002237 }
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05302238
2239unlock:
2240 hci_dev_unlock(hdev);
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002241}
2242
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002243static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002244{
2245 struct mgmt_mode *cp = data;
2246 struct hci_cp_write_le_host_supported hci_cp;
2247 struct pending_cmd *cmd;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002248 struct hci_request req;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002249 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002250 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002251
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002252 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002253
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002254 if (!lmp_le_capable(hdev))
2255 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2256 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002257
Johan Hedberga7e80f22013-01-09 16:05:19 +02002258 if (cp->val != 0x00 && cp->val != 0x01)
2259 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2260 MGMT_STATUS_INVALID_PARAMS);
2261
Johan Hedbergc73eee92013-04-19 18:35:21 +03002262 /* LE-only devices do not allow toggling LE on/off */
Johan Hedberg56f87902013-10-02 13:43:13 +03002263 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedbergc73eee92013-04-19 18:35:21 +03002264 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2265 MGMT_STATUS_REJECTED);
2266
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002267 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002268
2269 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02002270 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002271
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002272 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02002273 bool changed = false;
2274
2275 if (val != test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
2276 change_bit(HCI_LE_ENABLED, &hdev->dev_flags);
2277 changed = true;
2278 }
2279
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02002280 if (!val && test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
2281 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03002282 changed = true;
2283 }
2284
Johan Hedberg06199cf2012-02-22 16:37:11 +02002285 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
2286 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08002287 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002288
2289 if (changed)
2290 err = new_settings(hdev, sk);
2291
Johan Hedberg1de028c2012-02-29 19:55:35 -08002292 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002293 }
2294
Johan Hedberg4375f102013-09-25 13:26:10 +03002295 if (mgmt_pending_find(MGMT_OP_SET_LE, hdev) ||
2296 mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002297 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002298 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002299 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002300 }
2301
2302 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
2303 if (!cmd) {
2304 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08002305 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002306 }
2307
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002308 hci_req_init(&req, hdev);
2309
Johan Hedberg06199cf2012-02-22 16:37:11 +02002310 memset(&hci_cp, 0, sizeof(hci_cp));
2311
2312 if (val) {
2313 hci_cp.le = val;
Marcel Holtmann32226e42014-07-24 20:04:16 +02002314 hci_cp.simul = 0x00;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002315 } else {
Johan Hedberg73e082f2014-07-08 15:07:51 +03002316 if (test_bit(HCI_LE_ADV, &hdev->dev_flags))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002317 disable_advertising(&req);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002318 }
2319
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002320 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
2321 &hci_cp);
2322
2323 err = hci_req_run(&req, le_enable_complete);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05302324 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002325 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002326
Johan Hedberg1de028c2012-02-29 19:55:35 -08002327unlock:
2328 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002329 return err;
2330}
2331
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002332/* This is a helper function to test for pending mgmt commands that can
2333 * cause CoD or EIR HCI commands. We can only allow one such pending
2334 * mgmt command at a time since otherwise we cannot easily track what
2335 * the current values are, will be, and based on that calculate if a new
2336 * HCI command needs to be sent and if yes with what value.
2337 */
2338static bool pending_eir_or_class(struct hci_dev *hdev)
2339{
2340 struct pending_cmd *cmd;
2341
2342 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
2343 switch (cmd->opcode) {
2344 case MGMT_OP_ADD_UUID:
2345 case MGMT_OP_REMOVE_UUID:
2346 case MGMT_OP_SET_DEV_CLASS:
2347 case MGMT_OP_SET_POWERED:
2348 return true;
2349 }
2350 }
2351
2352 return false;
2353}
2354
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002355static const u8 bluetooth_base_uuid[] = {
2356 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
2357 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2358};
2359
2360static u8 get_uuid_size(const u8 *uuid)
2361{
2362 u32 val;
2363
2364 if (memcmp(uuid, bluetooth_base_uuid, 12))
2365 return 128;
2366
2367 val = get_unaligned_le32(&uuid[12]);
2368 if (val > 0xffff)
2369 return 32;
2370
2371 return 16;
2372}
2373
Johan Hedberg92da6092013-03-15 17:06:55 -05002374static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
2375{
2376 struct pending_cmd *cmd;
2377
2378 hci_dev_lock(hdev);
2379
2380 cmd = mgmt_pending_find(mgmt_op, hdev);
2381 if (!cmd)
2382 goto unlock;
2383
2384 cmd_complete(cmd->sk, cmd->index, cmd->opcode, mgmt_status(status),
2385 hdev->dev_class, 3);
2386
2387 mgmt_pending_remove(cmd);
2388
2389unlock:
2390 hci_dev_unlock(hdev);
2391}
2392
Marcel Holtmann1904a852015-01-11 13:50:44 -08002393static void add_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002394{
2395 BT_DBG("status 0x%02x", status);
2396
2397 mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
2398}
2399
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002400static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002401{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002402 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02002403 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002404 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002405 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002406 int err;
2407
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002408 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002409
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002410 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002411
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002412 if (pending_eir_or_class(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002413 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002414 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002415 goto failed;
2416 }
2417
Andre Guedes92c4c202012-06-07 19:05:44 -03002418 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002419 if (!uuid) {
2420 err = -ENOMEM;
2421 goto failed;
2422 }
2423
2424 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002425 uuid->svc_hint = cp->svc_hint;
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002426 uuid->size = get_uuid_size(cp->uuid);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002427
Johan Hedbergde66aa62013-01-27 00:31:27 +02002428 list_add_tail(&uuid->list, &hdev->uuids);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002429
Johan Hedberg890ea892013-03-15 17:06:52 -05002430 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002431
Johan Hedberg890ea892013-03-15 17:06:52 -05002432 update_class(&req);
2433 update_eir(&req);
2434
Johan Hedberg92da6092013-03-15 17:06:55 -05002435 err = hci_req_run(&req, add_uuid_complete);
2436 if (err < 0) {
2437 if (err != -ENODATA)
2438 goto failed;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002439
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002440 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002441 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002442 goto failed;
2443 }
2444
2445 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002446 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002447 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002448 goto failed;
2449 }
2450
2451 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002452
2453failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002454 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002455 return err;
2456}
2457
Johan Hedberg24b78d02012-02-23 23:24:30 +02002458static bool enable_service_cache(struct hci_dev *hdev)
2459{
2460 if (!hdev_is_powered(hdev))
2461 return false;
2462
2463 if (!test_and_set_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02002464 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
2465 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002466 return true;
2467 }
2468
2469 return false;
2470}
2471
Marcel Holtmann1904a852015-01-11 13:50:44 -08002472static void remove_uuid_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002473{
2474 BT_DBG("status 0x%02x", status);
2475
2476 mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
2477}
2478
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002479static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002480 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002481{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002482 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02002483 struct pending_cmd *cmd;
Johan Hedberg056341c2013-01-27 00:31:30 +02002484 struct bt_uuid *match, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002485 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 -05002486 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002487 int err, found;
2488
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002489 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002490
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002491 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002492
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002493 if (pending_eir_or_class(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002494 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002495 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002496 goto unlock;
2497 }
2498
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002499 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
Johan Hedberg35f74982014-02-18 17:14:32 +02002500 hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002501
Johan Hedberg24b78d02012-02-23 23:24:30 +02002502 if (enable_service_cache(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002503 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002504 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002505 goto unlock;
2506 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002507
Johan Hedberg9246a862012-02-23 21:33:16 +02002508 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002509 }
2510
2511 found = 0;
2512
Johan Hedberg056341c2013-01-27 00:31:30 +02002513 list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002514 if (memcmp(match->uuid, cp->uuid, 16) != 0)
2515 continue;
2516
2517 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01002518 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002519 found++;
2520 }
2521
2522 if (found == 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002523 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002524 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002525 goto unlock;
2526 }
2527
Johan Hedberg9246a862012-02-23 21:33:16 +02002528update_class:
Johan Hedberg890ea892013-03-15 17:06:52 -05002529 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002530
Johan Hedberg890ea892013-03-15 17:06:52 -05002531 update_class(&req);
2532 update_eir(&req);
2533
Johan Hedberg92da6092013-03-15 17:06:55 -05002534 err = hci_req_run(&req, remove_uuid_complete);
2535 if (err < 0) {
2536 if (err != -ENODATA)
2537 goto unlock;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002538
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002539 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002540 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002541 goto unlock;
2542 }
2543
2544 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002545 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002546 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002547 goto unlock;
2548 }
2549
2550 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002551
2552unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002553 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002554 return err;
2555}
2556
Marcel Holtmann1904a852015-01-11 13:50:44 -08002557static void set_class_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg92da6092013-03-15 17:06:55 -05002558{
2559 BT_DBG("status 0x%02x", status);
2560
2561 mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
2562}
2563
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002564static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002565 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002566{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002567 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02002568 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002569 struct hci_request req;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002570 int err;
2571
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002572 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002573
Marcel Holtmann6203fc92013-10-02 23:37:29 -07002574 if (!lmp_bredr_capable(hdev))
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002575 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2576 MGMT_STATUS_NOT_SUPPORTED);
2577
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002578 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002579
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002580 if (pending_eir_or_class(hdev)) {
2581 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2582 MGMT_STATUS_BUSY);
2583 goto unlock;
2584 }
2585
2586 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
2587 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2588 MGMT_STATUS_INVALID_PARAMS);
2589 goto unlock;
2590 }
2591
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002592 hdev->major_class = cp->major;
2593 hdev->minor_class = cp->minor;
2594
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002595 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002596 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002597 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002598 goto unlock;
2599 }
2600
Johan Hedberg890ea892013-03-15 17:06:52 -05002601 hci_req_init(&req, hdev);
2602
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002603 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02002604 hci_dev_unlock(hdev);
2605 cancel_delayed_work_sync(&hdev->service_cache);
2606 hci_dev_lock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05002607 update_eir(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02002608 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02002609
Johan Hedberg890ea892013-03-15 17:06:52 -05002610 update_class(&req);
2611
Johan Hedberg92da6092013-03-15 17:06:55 -05002612 err = hci_req_run(&req, set_class_complete);
2613 if (err < 0) {
2614 if (err != -ENODATA)
2615 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002616
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002617 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002618 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002619 goto unlock;
2620 }
2621
2622 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002623 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002624 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002625 goto unlock;
2626 }
2627
2628 err = 0;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002629
Johan Hedbergb5235a62012-02-21 14:32:24 +02002630unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002631 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002632 return err;
2633}
2634
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002635static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002636 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002637{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002638 struct mgmt_cp_load_link_keys *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03002639 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
2640 sizeof(struct mgmt_link_key_info));
Szymon Janc4e51eae2011-02-25 19:05:48 +01002641 u16 key_count, expected_len;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002642 bool changed;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002643 int i;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002644
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002645 BT_DBG("request for %s", hdev->name);
2646
2647 if (!lmp_bredr_capable(hdev))
2648 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2649 MGMT_STATUS_NOT_SUPPORTED);
2650
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002651 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03002652 if (key_count > max_key_count) {
2653 BT_ERR("load_link_keys: too big key_count value %u",
2654 key_count);
2655 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2656 MGMT_STATUS_INVALID_PARAMS);
2657 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002658
Johan Hedberg86742e12011-11-07 23:13:38 +02002659 expected_len = sizeof(*cp) + key_count *
2660 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002661 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002662 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02002663 expected_len, len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002664 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002665 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002666 }
2667
Johan Hedberg4ae14302013-01-20 14:27:13 +02002668 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
2669 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2670 MGMT_STATUS_INVALID_PARAMS);
2671
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002672 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002673 key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002674
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002675 for (i = 0; i < key_count; i++) {
2676 struct mgmt_link_key_info *key = &cp->keys[i];
2677
Marcel Holtmann8e991132014-01-10 02:07:25 -08002678 if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002679 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2680 MGMT_STATUS_INVALID_PARAMS);
2681 }
2682
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002683 hci_dev_lock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002684
2685 hci_link_keys_clear(hdev);
2686
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002687 if (cp->debug_keys)
Johan Hedberg0663b292014-06-24 13:15:50 +03002688 changed = !test_and_set_bit(HCI_KEEP_DEBUG_KEYS,
2689 &hdev->dev_flags);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002690 else
Johan Hedberg0663b292014-06-24 13:15:50 +03002691 changed = test_and_clear_bit(HCI_KEEP_DEBUG_KEYS,
2692 &hdev->dev_flags);
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002693
2694 if (changed)
2695 new_settings(hdev, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002696
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002697 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002698 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002699
Johan Hedberg58e92932014-06-24 14:00:26 +03002700 /* Always ignore debug keys and require a new pairing if
2701 * the user wants to use them.
2702 */
2703 if (key->type == HCI_LK_DEBUG_COMBINATION)
2704 continue;
2705
Johan Hedberg7652ff62014-06-24 13:15:49 +03002706 hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
2707 key->type, key->pin_len, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002708 }
2709
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002710 cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02002711
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002712 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002713
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002714 return 0;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002715}
2716
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002717static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002718 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002719{
2720 struct mgmt_ev_device_unpaired ev;
2721
2722 bacpy(&ev.addr.bdaddr, bdaddr);
2723 ev.addr.type = addr_type;
2724
2725 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002726 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002727}
2728
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002729static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002730 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002731{
Johan Hedberg124f6e32012-02-09 13:50:12 +02002732 struct mgmt_cp_unpair_device *cp = data;
2733 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002734 struct hci_cp_disconnect dc;
2735 struct pending_cmd *cmd;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002736 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002737 int err;
2738
Johan Hedberga8a1d192011-11-10 15:54:38 +02002739 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02002740 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2741 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002742
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002743 if (!bdaddr_type_is_valid(cp->addr.type))
2744 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2745 MGMT_STATUS_INVALID_PARAMS,
2746 &rp, sizeof(rp));
2747
Johan Hedberg118da702013-01-20 14:27:20 +02002748 if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
2749 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2750 MGMT_STATUS_INVALID_PARAMS,
2751 &rp, sizeof(rp));
2752
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002753 hci_dev_lock(hdev);
2754
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002755 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002756 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002757 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002758 goto unlock;
2759 }
2760
Johan Hedberge0b2b272014-02-18 17:14:31 +02002761 if (cp->addr.type == BDADDR_BREDR) {
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002762 /* If disconnection is requested, then look up the
2763 * connection. If the remote device is connected, it
2764 * will be later used to terminate the link.
2765 *
2766 * Setting it to NULL explicitly will cause no
2767 * termination of the link.
2768 */
2769 if (cp->disconnect)
2770 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
2771 &cp->addr.bdaddr);
2772 else
2773 conn = NULL;
2774
Johan Hedberg124f6e32012-02-09 13:50:12 +02002775 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
Johan Hedberge0b2b272014-02-18 17:14:31 +02002776 } else {
2777 u8 addr_type;
2778
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002779 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
2780 &cp->addr.bdaddr);
2781 if (conn) {
2782 /* Defer clearing up the connection parameters
2783 * until closing to give a chance of keeping
2784 * them if a repairing happens.
2785 */
2786 set_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
2787
2788 /* If disconnection is not requested, then
2789 * clear the connection variable so that the
2790 * link is not terminated.
2791 */
2792 if (!cp->disconnect)
2793 conn = NULL;
2794 }
2795
Johan Hedberge0b2b272014-02-18 17:14:31 +02002796 if (cp->addr.type == BDADDR_LE_PUBLIC)
2797 addr_type = ADDR_LE_DEV_PUBLIC;
2798 else
2799 addr_type = ADDR_LE_DEV_RANDOM;
2800
Johan Hedberga7ec7332014-02-18 17:14:35 +02002801 hci_remove_irk(hdev, &cp->addr.bdaddr, addr_type);
2802
Johan Hedberge0b2b272014-02-18 17:14:31 +02002803 err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
2804 }
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03002805
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002806 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002807 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002808 MGMT_STATUS_NOT_PAIRED, &rp, sizeof(rp));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002809 goto unlock;
2810 }
2811
Alfonso Acosta89cbb062014-10-11 21:44:47 +00002812 /* If the connection variable is set, then termination of the
2813 * link is requested.
2814 */
Johan Hedberga8a1d192011-11-10 15:54:38 +02002815 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002816 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002817 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002818 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02002819 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002820 }
2821
Johan Hedberg124f6e32012-02-09 13:50:12 +02002822 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002823 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02002824 if (!cmd) {
2825 err = -ENOMEM;
2826 goto unlock;
2827 }
2828
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02002829 cmd->cmd_complete = addr_cmd_complete;
2830
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002831 dc.handle = cpu_to_le16(conn->handle);
Johan Hedberga8a1d192011-11-10 15:54:38 +02002832 dc.reason = 0x13; /* Remote User Terminated Connection */
2833 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
2834 if (err < 0)
2835 mgmt_pending_remove(cmd);
2836
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002837unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002838 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002839 return err;
2840}
2841
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002842static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002843 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02002844{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002845 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg06a63b12013-01-20 14:27:21 +02002846 struct mgmt_rp_disconnect rp;
Johan Hedberg366a0332011-02-19 12:05:55 -03002847 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002848 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002849 int err;
2850
2851 BT_DBG("");
2852
Johan Hedberg06a63b12013-01-20 14:27:21 +02002853 memset(&rp, 0, sizeof(rp));
2854 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2855 rp.addr.type = cp->addr.type;
2856
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002857 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg06a63b12013-01-20 14:27:21 +02002858 return cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2859 MGMT_STATUS_INVALID_PARAMS,
2860 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002861
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002862 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002863
2864 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002865 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2866 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002867 goto failed;
2868 }
2869
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002870 if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002871 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2872 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002873 goto failed;
2874 }
2875
Andre Guedes591f47f2012-04-24 21:02:49 -03002876 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002877 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
2878 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02002879 else
2880 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03002881
Vishal Agarwalf9607272012-06-13 05:32:43 +05302882 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002883 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2884 MGMT_STATUS_NOT_CONNECTED, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002885 goto failed;
2886 }
2887
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002888 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03002889 if (!cmd) {
2890 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002891 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03002892 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02002893
Johan Hedbergf5818c22014-12-05 13:36:02 +02002894 cmd->cmd_complete = generic_cmd_complete;
2895
Johan Hedberge3f2f922014-08-18 20:33:33 +03002896 err = hci_disconnect(conn, HCI_ERROR_REMOTE_USER_TERM);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002897 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03002898 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002899
2900failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002901 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002902 return err;
2903}
2904
Andre Guedes57c14772012-04-24 21:02:50 -03002905static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02002906{
2907 switch (link_type) {
2908 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02002909 switch (addr_type) {
2910 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03002911 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03002912
Johan Hedberg48264f02011-11-09 13:58:58 +02002913 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03002914 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03002915 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02002916 }
Andre Guedes0ed09142012-04-03 08:46:54 -03002917
Johan Hedberg4c659c32011-11-07 23:13:39 +02002918 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03002919 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03002920 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002921 }
2922}
2923
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002924static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
2925 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02002926{
Johan Hedberg2784eb42011-01-21 13:56:35 +02002927 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002928 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02002929 size_t rp_len;
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002930 int err;
2931 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02002932
2933 BT_DBG("");
2934
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002935 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002936
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002937 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002938 err = cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002939 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002940 goto unlock;
2941 }
2942
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002943 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02002944 list_for_each_entry(c, &hdev->conn_hash.list, list) {
2945 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002946 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02002947 }
2948
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002949 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03002950 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02002951 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02002952 err = -ENOMEM;
2953 goto unlock;
2954 }
2955
Johan Hedberg2784eb42011-01-21 13:56:35 +02002956 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002957 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02002958 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
2959 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002960 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03002961 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03002962 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02002963 continue;
2964 i++;
2965 }
2966
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002967 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002968
Johan Hedberg4c659c32011-11-07 23:13:39 +02002969 /* Recalculate length in case of filtered SCO connections, etc */
2970 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02002971
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002972 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002973 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002974
Johan Hedberga38528f2011-01-22 06:46:43 +02002975 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002976
2977unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002978 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002979 return err;
2980}
2981
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002982static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002983 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002984{
2985 struct pending_cmd *cmd;
2986 int err;
2987
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002988 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002989 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002990 if (!cmd)
2991 return -ENOMEM;
2992
Johan Hedbergd8457692012-02-17 14:24:57 +02002993 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002994 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002995 if (err < 0)
2996 mgmt_pending_remove(cmd);
2997
2998 return err;
2999}
3000
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003001static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003002 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02003003{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003004 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003005 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003006 struct hci_cp_pin_code_reply reply;
Johan Hedberg366a0332011-02-19 12:05:55 -03003007 struct pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003008 int err;
3009
3010 BT_DBG("");
3011
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003012 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003013
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003014 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003015 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003016 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003017 goto failed;
3018 }
3019
Johan Hedbergd8457692012-02-17 14:24:57 +02003020 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003021 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003022 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003023 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003024 goto failed;
3025 }
3026
3027 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02003028 struct mgmt_cp_pin_code_neg_reply ncp;
3029
3030 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003031
3032 BT_ERR("PIN code is not 16 bytes long");
3033
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003034 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003035 if (err >= 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003036 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003037 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02003038
3039 goto failed;
3040 }
3041
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03003042 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03003043 if (!cmd) {
3044 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02003045 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03003046 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02003047
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003048 cmd->cmd_complete = addr_cmd_complete;
3049
Johan Hedbergd8457692012-02-17 14:24:57 +02003050 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003051 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02003052 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02003053
3054 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
3055 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03003056 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003057
3058failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003059 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02003060 return err;
3061}
3062
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003063static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
3064 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003065{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003066 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003067
3068 BT_DBG("");
3069
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003070 if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
3071 return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
3072 MGMT_STATUS_INVALID_PARAMS, NULL, 0);
3073
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003074 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003075
3076 hdev->io_capability = cp->io_capability;
3077
3078 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003079 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003080
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003081 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003082
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003083 return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0, NULL,
3084 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02003085}
3086
Gustavo Padovan6039aa732012-05-23 04:04:18 -03003087static struct pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003088{
3089 struct hci_dev *hdev = conn->hdev;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02003090 struct pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003091
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003092 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03003093 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
3094 continue;
3095
Johan Hedberge9a416b2011-02-19 12:05:56 -03003096 if (cmd->user_data != conn)
3097 continue;
3098
3099 return cmd;
3100 }
3101
3102 return NULL;
3103}
3104
Johan Hedberg9df74652014-12-19 22:26:03 +02003105static int pairing_complete(struct pending_cmd *cmd, u8 status)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003106{
3107 struct mgmt_rp_pair_device rp;
3108 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9df74652014-12-19 22:26:03 +02003109 int err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003110
Johan Hedberg61b1a7f2014-03-20 12:54:16 +02003111 bacpy(&rp.addr.bdaddr, &conn->dst);
3112 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003113
Johan Hedberg9df74652014-12-19 22:26:03 +02003114 err = cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, status,
3115 &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003116
3117 /* So we don't get further callbacks for this connection */
3118 conn->connect_cfm_cb = NULL;
3119 conn->security_cfm_cb = NULL;
3120 conn->disconn_cfm_cb = NULL;
3121
David Herrmann76a68ba2013-04-06 20:28:37 +02003122 hci_conn_drop(conn);
Alfonso Acosta89cbb062014-10-11 21:44:47 +00003123
3124 /* The device is paired so there is no need to remove
3125 * its connection parameters anymore.
3126 */
3127 clear_bit(HCI_CONN_PARAM_REMOVAL_PEND, &conn->flags);
Johan Hedberg15013ae2014-12-11 21:45:44 +02003128
3129 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02003130
3131 return err;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003132}
3133
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003134void mgmt_smp_complete(struct hci_conn *conn, bool complete)
3135{
3136 u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
3137 struct pending_cmd *cmd;
3138
3139 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003140 if (cmd) {
Johan Hedberg04ab2742014-12-05 13:36:04 +02003141 cmd->cmd_complete(cmd, status);
Johan Hedberga511b352014-12-11 21:45:45 +02003142 mgmt_pending_remove(cmd);
3143 }
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003144}
3145
Johan Hedberge9a416b2011-02-19 12:05:56 -03003146static void pairing_complete_cb(struct hci_conn *conn, u8 status)
3147{
3148 struct pending_cmd *cmd;
3149
3150 BT_DBG("status %u", status);
3151
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003152 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003153 if (!cmd) {
Johan Hedberg56e5cb82011-11-08 20:40:16 +02003154 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02003155 return;
3156 }
3157
3158 cmd->cmd_complete(cmd, mgmt_status(status));
3159 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003160}
3161
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003162static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303163{
3164 struct pending_cmd *cmd;
3165
3166 BT_DBG("status %u", status);
3167
3168 if (!status)
3169 return;
3170
3171 cmd = find_pairing(conn);
Johan Hedberga511b352014-12-11 21:45:45 +02003172 if (!cmd) {
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303173 BT_DBG("Unable to find a pending command");
Johan Hedberga511b352014-12-11 21:45:45 +02003174 return;
3175 }
3176
3177 cmd->cmd_complete(cmd, mgmt_status(status));
3178 mgmt_pending_remove(cmd);
Vishal Agarwal4c47d732012-06-07 20:27:35 +05303179}
3180
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003181static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003182 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03003183{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003184 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02003185 struct mgmt_rp_pair_device rp;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003186 struct pending_cmd *cmd;
3187 u8 sec_level, auth_type;
3188 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003189 int err;
3190
3191 BT_DBG("");
3192
Szymon Jancf950a30e2013-01-18 12:48:07 +01003193 memset(&rp, 0, sizeof(rp));
3194 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
3195 rp.addr.type = cp->addr.type;
3196
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003197 if (!bdaddr_type_is_valid(cp->addr.type))
3198 return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3199 MGMT_STATUS_INVALID_PARAMS,
3200 &rp, sizeof(rp));
3201
Johan Hedberg4ec86d42014-06-17 15:14:48 +03003202 if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
3203 return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3204 MGMT_STATUS_INVALID_PARAMS,
3205 &rp, sizeof(rp));
3206
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003207 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003208
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003209 if (!hdev_is_powered(hdev)) {
Szymon Jancf950a30e2013-01-18 12:48:07 +01003210 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
3211 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003212 goto unlock;
3213 }
3214
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03003215 sec_level = BT_SECURITY_MEDIUM;
Mikel Astiz6fd6b912014-04-08 14:21:32 +02003216 auth_type = HCI_AT_DEDICATED_BONDING;
Johan Hedberge9a416b2011-02-19 12:05:56 -03003217
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003218 if (cp->addr.type == BDADDR_BREDR) {
Andre Guedes04a6c582014-02-26 20:21:44 -03003219 conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
3220 auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003221 } else {
3222 u8 addr_type;
3223
3224 /* Convert from L2CAP channel address type to HCI address type
3225 */
3226 if (cp->addr.type == BDADDR_LE_PUBLIC)
3227 addr_type = ADDR_LE_DEV_PUBLIC;
3228 else
3229 addr_type = ADDR_LE_DEV_RANDOM;
3230
Marcel Holtmann7c264b12014-06-30 12:34:40 +02003231 /* When pairing a new device, it is expected to remember
3232 * this device for future connections. Adding the connection
3233 * parameter information ahead of time allows tracking
3234 * of the slave preferred values and will speed up any
3235 * further connection establishment.
3236 *
3237 * If connection parameters already exist, then they
3238 * will be kept and this function does nothing.
3239 */
3240 hci_conn_params_add(hdev, &cp->addr.bdaddr, addr_type);
3241
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003242 conn = hci_connect_le(hdev, &cp->addr.bdaddr, addr_type,
Johan Hedberge804d252014-07-16 11:42:28 +03003243 sec_level, HCI_LE_CONN_TIMEOUT,
3244 HCI_ROLE_MASTER);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03003245 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003246
Ville Tervo30e76272011-02-22 16:10:53 -03003247 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02003248 int status;
3249
3250 if (PTR_ERR(conn) == -EBUSY)
3251 status = MGMT_STATUS_BUSY;
3252 else
3253 status = MGMT_STATUS_CONNECT_FAILED;
3254
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003255 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02003256 status, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003257 sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003258 goto unlock;
3259 }
3260
3261 if (conn->connect_cfm_cb) {
David Herrmann76a68ba2013-04-06 20:28:37 +02003262 hci_conn_drop(conn);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003263 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003264 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03003265 goto unlock;
3266 }
3267
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003268 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003269 if (!cmd) {
3270 err = -ENOMEM;
David Herrmann76a68ba2013-04-06 20:28:37 +02003271 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003272 goto unlock;
3273 }
3274
Johan Hedberg04ab2742014-12-05 13:36:04 +02003275 cmd->cmd_complete = pairing_complete;
3276
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003277 /* For LE, just connecting isn't a proof that the pairing finished */
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003278 if (cp->addr.type == BDADDR_BREDR) {
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003279 conn->connect_cfm_cb = pairing_complete_cb;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02003280 conn->security_cfm_cb = pairing_complete_cb;
3281 conn->disconn_cfm_cb = pairing_complete_cb;
3282 } else {
3283 conn->connect_cfm_cb = le_pairing_complete_cb;
3284 conn->security_cfm_cb = le_pairing_complete_cb;
3285 conn->disconn_cfm_cb = le_pairing_complete_cb;
3286 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03003287
Johan Hedberge9a416b2011-02-19 12:05:56 -03003288 conn->io_capability = cp->io_cap;
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03003289 cmd->user_data = hci_conn_get(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003290
Johan Hedberg6f78fd42014-07-30 08:35:48 +03003291 if ((conn->state == BT_CONNECTED || conn->state == BT_CONFIG) &&
Johan Hedberga511b352014-12-11 21:45:45 +02003292 hci_conn_security(conn, sec_level, auth_type, true)) {
3293 cmd->cmd_complete(cmd, 0);
3294 mgmt_pending_remove(cmd);
3295 }
Johan Hedberge9a416b2011-02-19 12:05:56 -03003296
3297 err = 0;
3298
3299unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003300 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03003301 return err;
3302}
3303
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003304static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
3305 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02003306{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003307 struct mgmt_addr_info *addr = data;
Johan Hedberg28424702012-02-02 04:02:29 +02003308 struct pending_cmd *cmd;
3309 struct hci_conn *conn;
3310 int err;
3311
3312 BT_DBG("");
3313
Johan Hedberg28424702012-02-02 04:02:29 +02003314 hci_dev_lock(hdev);
3315
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003316 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003317 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003318 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02003319 goto unlock;
3320 }
3321
Johan Hedberg28424702012-02-02 04:02:29 +02003322 cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
3323 if (!cmd) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003324 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003325 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003326 goto unlock;
3327 }
3328
3329 conn = cmd->user_data;
3330
3331 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003332 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003333 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003334 goto unlock;
3335 }
3336
Johan Hedberga511b352014-12-11 21:45:45 +02003337 cmd->cmd_complete(cmd, MGMT_STATUS_CANCELLED);
3338 mgmt_pending_remove(cmd);
Johan Hedberg28424702012-02-02 04:02:29 +02003339
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003340 err = cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003341 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02003342unlock:
3343 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003344 return err;
3345}
3346
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003347static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Johan Hedberg1707c602013-03-15 17:07:15 -05003348 struct mgmt_addr_info *addr, u16 mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003349 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03003350{
Johan Hedberga5c29682011-02-19 12:05:57 -03003351 struct pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08003352 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003353 int err;
3354
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003355 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02003356
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003357 if (!hdev_is_powered(hdev)) {
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003358 err = cmd_complete(sk, hdev->id, mgmt_op,
3359 MGMT_STATUS_NOT_POWERED, addr,
3360 sizeof(*addr));
Brian Gix0df4c182011-11-16 13:53:13 -08003361 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003362 }
3363
Johan Hedberg1707c602013-03-15 17:07:15 -05003364 if (addr->type == BDADDR_BREDR)
3365 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
Johan Hedberg272d90d2012-02-09 15:26:12 +02003366 else
Johan Hedberg1707c602013-03-15 17:07:15 -05003367 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr);
Brian Gix47c15e22011-11-16 13:53:14 -08003368
Johan Hedberg272d90d2012-02-09 15:26:12 +02003369 if (!conn) {
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003370 err = cmd_complete(sk, hdev->id, mgmt_op,
3371 MGMT_STATUS_NOT_CONNECTED, addr,
3372 sizeof(*addr));
Johan Hedberg272d90d2012-02-09 15:26:12 +02003373 goto done;
3374 }
3375
Johan Hedberg1707c602013-03-15 17:07:15 -05003376 if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
Brian Gix5fe57d92011-12-21 16:12:13 -08003377 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix5fe57d92011-12-21 16:12:13 -08003378 if (!err)
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003379 err = cmd_complete(sk, hdev->id, mgmt_op,
3380 MGMT_STATUS_SUCCESS, addr,
3381 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003382 else
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003383 err = cmd_complete(sk, hdev->id, mgmt_op,
3384 MGMT_STATUS_FAILED, addr,
3385 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003386
Brian Gix47c15e22011-11-16 13:53:14 -08003387 goto done;
3388 }
3389
Johan Hedberg1707c602013-03-15 17:07:15 -05003390 cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
Johan Hedberga5c29682011-02-19 12:05:57 -03003391 if (!cmd) {
3392 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08003393 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003394 }
3395
Johan Hedberg7776d1d2014-12-05 13:36:03 +02003396 cmd->cmd_complete = addr_cmd_complete;
3397
Brian Gix0df4c182011-11-16 13:53:13 -08003398 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08003399 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
3400 struct hci_cp_user_passkey_reply cp;
3401
Johan Hedberg1707c602013-03-15 17:07:15 -05003402 bacpy(&cp.bdaddr, &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003403 cp.passkey = passkey;
3404 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
3405 } else
Johan Hedberg1707c602013-03-15 17:07:15 -05003406 err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
3407 &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003408
Johan Hedberga664b5b2011-02-19 12:06:02 -03003409 if (err < 0)
3410 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003411
Brian Gix0df4c182011-11-16 13:53:13 -08003412done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003413 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003414 return err;
3415}
3416
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303417static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3418 void *data, u16 len)
3419{
3420 struct mgmt_cp_pin_code_neg_reply *cp = data;
3421
3422 BT_DBG("");
3423
Johan Hedberg1707c602013-03-15 17:07:15 -05003424 return user_pairing_resp(sk, hdev, &cp->addr,
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303425 MGMT_OP_PIN_CODE_NEG_REPLY,
3426 HCI_OP_PIN_CODE_NEG_REPLY, 0);
3427}
3428
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003429static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3430 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003431{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003432 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003433
3434 BT_DBG("");
3435
3436 if (len != sizeof(*cp))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003437 return cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003438 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08003439
Johan Hedberg1707c602013-03-15 17:07:15 -05003440 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003441 MGMT_OP_USER_CONFIRM_REPLY,
3442 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003443}
3444
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003445static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003446 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003447{
Johan Hedbergc9c26592011-12-15 00:47:41 +02003448 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003449
3450 BT_DBG("");
3451
Johan Hedberg1707c602013-03-15 17:07:15 -05003452 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003453 MGMT_OP_USER_CONFIRM_NEG_REPLY,
3454 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003455}
3456
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003457static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3458 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003459{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003460 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003461
3462 BT_DBG("");
3463
Johan Hedberg1707c602013-03-15 17:07:15 -05003464 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003465 MGMT_OP_USER_PASSKEY_REPLY,
3466 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08003467}
3468
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003469static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003470 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003471{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003472 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003473
3474 BT_DBG("");
3475
Johan Hedberg1707c602013-03-15 17:07:15 -05003476 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003477 MGMT_OP_USER_PASSKEY_NEG_REPLY,
3478 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08003479}
3480
Johan Hedberg13928972013-03-15 17:07:00 -05003481static void update_name(struct hci_request *req)
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003482{
Johan Hedberg13928972013-03-15 17:07:00 -05003483 struct hci_dev *hdev = req->hdev;
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003484 struct hci_cp_write_local_name cp;
3485
Johan Hedberg13928972013-03-15 17:07:00 -05003486 memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003487
Johan Hedberg890ea892013-03-15 17:06:52 -05003488 hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003489}
3490
Marcel Holtmann1904a852015-01-11 13:50:44 -08003491static void set_name_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg13928972013-03-15 17:07:00 -05003492{
3493 struct mgmt_cp_set_local_name *cp;
3494 struct pending_cmd *cmd;
3495
3496 BT_DBG("status 0x%02x", status);
3497
3498 hci_dev_lock(hdev);
3499
3500 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
3501 if (!cmd)
3502 goto unlock;
3503
3504 cp = cmd->param;
3505
3506 if (status)
3507 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3508 mgmt_status(status));
3509 else
3510 cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3511 cp, sizeof(*cp));
3512
3513 mgmt_pending_remove(cmd);
3514
3515unlock:
3516 hci_dev_unlock(hdev);
3517}
3518
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003519static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003520 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003521{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003522 struct mgmt_cp_set_local_name *cp = data;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003523 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05003524 struct hci_request req;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003525 int err;
3526
3527 BT_DBG("");
3528
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003529 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003530
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003531 /* If the old values are the same as the new ones just return a
3532 * direct command complete event.
3533 */
3534 if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
3535 !memcmp(hdev->short_name, cp->short_name,
3536 sizeof(hdev->short_name))) {
3537 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3538 data, len);
3539 goto failed;
3540 }
3541
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003542 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003543
Johan Hedbergb5235a62012-02-21 14:32:24 +02003544 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003545 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003546
3547 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003548 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003549 if (err < 0)
3550 goto failed;
3551
3552 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003553 sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003554
Johan Hedbergb5235a62012-02-21 14:32:24 +02003555 goto failed;
3556 }
3557
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003558 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003559 if (!cmd) {
3560 err = -ENOMEM;
3561 goto failed;
3562 }
3563
Johan Hedberg13928972013-03-15 17:07:00 -05003564 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3565
Johan Hedberg890ea892013-03-15 17:06:52 -05003566 hci_req_init(&req, hdev);
Johan Hedberg3f985052013-03-15 17:07:02 -05003567
3568 if (lmp_bredr_capable(hdev)) {
3569 update_name(&req);
3570 update_eir(&req);
3571 }
3572
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003573 /* The name is stored in the scan response data and so
3574 * no need to udpate the advertising data here.
3575 */
Johan Hedberg3f985052013-03-15 17:07:02 -05003576 if (lmp_le_capable(hdev))
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003577 update_scan_rsp_data(&req);
Johan Hedberg3f985052013-03-15 17:07:02 -05003578
Johan Hedberg13928972013-03-15 17:07:00 -05003579 err = hci_req_run(&req, set_name_complete);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003580 if (err < 0)
3581 mgmt_pending_remove(cmd);
3582
3583failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003584 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003585 return err;
3586}
3587
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003588static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003589 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01003590{
Szymon Jancc35938b2011-03-22 13:12:21 +01003591 struct pending_cmd *cmd;
3592 int err;
3593
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003594 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01003595
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003596 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003597
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003598 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003599 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003600 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003601 goto unlock;
3602 }
3603
Andre Guedes9a1a1992012-07-24 15:03:48 -03003604 if (!lmp_ssp_capable(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003605 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003606 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003607 goto unlock;
3608 }
3609
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003610 if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003611 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003612 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01003613 goto unlock;
3614 }
3615
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003616 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01003617 if (!cmd) {
3618 err = -ENOMEM;
3619 goto unlock;
3620 }
3621
Johan Hedberg710f11c2014-05-26 11:21:22 +03003622 if (bredr_sc_enabled(hdev))
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08003623 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_EXT_DATA,
3624 0, NULL);
3625 else
3626 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
3627
Szymon Jancc35938b2011-03-22 13:12:21 +01003628 if (err < 0)
3629 mgmt_pending_remove(cmd);
3630
3631unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003632 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003633 return err;
3634}
3635
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003636static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003637 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003638{
Johan Hedberg5d57e792015-01-23 10:10:38 +02003639 struct mgmt_addr_info *addr = data;
Szymon Janc2763eda2011-03-22 13:12:22 +01003640 int err;
3641
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003642 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003643
Johan Hedberg5d57e792015-01-23 10:10:38 +02003644 if (!bdaddr_type_is_valid(addr->type))
3645 return cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3646 MGMT_STATUS_INVALID_PARAMS, addr,
3647 sizeof(*addr));
3648
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003649 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003650
Marcel Holtmannec109112014-01-10 02:07:30 -08003651 if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
3652 struct mgmt_cp_add_remote_oob_data *cp = data;
3653 u8 status;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003654
Johan Hedbergc19a4952014-11-17 20:52:19 +02003655 if (cp->addr.type != BDADDR_BREDR) {
3656 err = cmd_complete(sk, hdev->id,
3657 MGMT_OP_ADD_REMOTE_OOB_DATA,
3658 MGMT_STATUS_INVALID_PARAMS,
3659 &cp->addr, sizeof(cp->addr));
3660 goto unlock;
3661 }
3662
Marcel Holtmannec109112014-01-10 02:07:30 -08003663 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg6928a922014-10-26 20:46:09 +01003664 cp->addr.type, cp->hash,
3665 cp->rand, NULL, NULL);
Marcel Holtmannec109112014-01-10 02:07:30 -08003666 if (err < 0)
3667 status = MGMT_STATUS_FAILED;
3668 else
3669 status = MGMT_STATUS_SUCCESS;
3670
3671 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3672 status, &cp->addr, sizeof(cp->addr));
3673 } else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
3674 struct mgmt_cp_add_remote_oob_ext_data *cp = data;
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08003675 u8 *rand192, *hash192, *rand256, *hash256;
Marcel Holtmannec109112014-01-10 02:07:30 -08003676 u8 status;
3677
Johan Hedberg86df9202014-10-26 20:52:27 +01003678 if (bdaddr_type_is_le(cp->addr.type)) {
Johan Hedbergd25b78e2015-01-27 12:55:52 +02003679 /* Enforce zero-valued 192-bit parameters as
3680 * long as legacy SMP OOB isn't implemented.
3681 */
3682 if (memcmp(cp->rand192, ZERO_KEY, 16) ||
3683 memcmp(cp->hash192, ZERO_KEY, 16)) {
3684 err = cmd_complete(sk, hdev->id,
3685 MGMT_OP_ADD_REMOTE_OOB_DATA,
3686 MGMT_STATUS_INVALID_PARAMS,
3687 addr, sizeof(*addr));
3688 goto unlock;
3689 }
3690
Johan Hedberg86df9202014-10-26 20:52:27 +01003691 rand192 = NULL;
3692 hash192 = NULL;
3693 } else {
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08003694 /* In case one of the P-192 values is set to zero,
3695 * then just disable OOB data for P-192.
3696 */
3697 if (!memcmp(cp->rand192, ZERO_KEY, 16) ||
3698 !memcmp(cp->hash192, ZERO_KEY, 16)) {
3699 rand192 = NULL;
3700 hash192 = NULL;
3701 } else {
3702 rand192 = cp->rand192;
3703 hash192 = cp->hash192;
3704 }
3705 }
3706
3707 /* In case one of the P-256 values is set to zero, then just
3708 * disable OOB data for P-256.
3709 */
3710 if (!memcmp(cp->rand256, ZERO_KEY, 16) ||
3711 !memcmp(cp->hash256, ZERO_KEY, 16)) {
3712 rand256 = NULL;
3713 hash256 = NULL;
3714 } else {
3715 rand256 = cp->rand256;
3716 hash256 = cp->hash256;
Johan Hedberg86df9202014-10-26 20:52:27 +01003717 }
3718
Johan Hedberg81328d52014-10-26 20:33:47 +01003719 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
Johan Hedberg86df9202014-10-26 20:52:27 +01003720 cp->addr.type, hash192, rand192,
Marcel Holtmann41bcfd52015-01-31 00:37:02 -08003721 hash256, rand256);
Marcel Holtmannec109112014-01-10 02:07:30 -08003722 if (err < 0)
3723 status = MGMT_STATUS_FAILED;
3724 else
3725 status = MGMT_STATUS_SUCCESS;
3726
3727 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3728 status, &cp->addr, sizeof(cp->addr));
3729 } else {
3730 BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
3731 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3732 MGMT_STATUS_INVALID_PARAMS);
3733 }
Szymon Janc2763eda2011-03-22 13:12:22 +01003734
Johan Hedbergc19a4952014-11-17 20:52:19 +02003735unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003736 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003737 return err;
3738}
3739
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003740static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003741 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003742{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003743 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003744 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01003745 int err;
3746
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003747 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003748
Johan Hedbergc19a4952014-11-17 20:52:19 +02003749 if (cp->addr.type != BDADDR_BREDR)
3750 return cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
3751 MGMT_STATUS_INVALID_PARAMS,
3752 &cp->addr, sizeof(cp->addr));
3753
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003754 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003755
Johan Hedbergeedbd582014-11-15 09:34:23 +02003756 if (!bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
3757 hci_remote_oob_data_clear(hdev);
3758 status = MGMT_STATUS_SUCCESS;
3759 goto done;
3760 }
3761
Johan Hedberg6928a922014-10-26 20:46:09 +01003762 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr, cp->addr.type);
Szymon Janc2763eda2011-03-22 13:12:22 +01003763 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003764 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01003765 else
Szymon Janca6785be2012-12-13 15:11:21 +01003766 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003767
Johan Hedbergeedbd582014-11-15 09:34:23 +02003768done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003769 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003770 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01003771
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003772 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003773 return err;
3774}
3775
Marcel Holtmann80190442014-12-04 11:36:36 +01003776static bool trigger_discovery(struct hci_request *req, u8 *status)
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003777{
Marcel Holtmann80190442014-12-04 11:36:36 +01003778 struct hci_dev *hdev = req->hdev;
3779 struct hci_cp_le_set_scan_param param_cp;
3780 struct hci_cp_le_set_scan_enable enable_cp;
3781 struct hci_cp_inquiry inq_cp;
3782 /* General inquiry access code (GIAC) */
3783 u8 lap[3] = { 0x33, 0x8b, 0x9e };
3784 u8 own_addr_type;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003785 int err;
3786
Marcel Holtmann80190442014-12-04 11:36:36 +01003787 switch (hdev->discovery.type) {
3788 case DISCOV_TYPE_BREDR:
3789 *status = mgmt_bredr_support(hdev);
3790 if (*status)
3791 return false;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003792
Marcel Holtmann80190442014-12-04 11:36:36 +01003793 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
3794 *status = MGMT_STATUS_BUSY;
3795 return false;
3796 }
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003797
Marcel Holtmann80190442014-12-04 11:36:36 +01003798 hci_inquiry_cache_flush(hdev);
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003799
Marcel Holtmann80190442014-12-04 11:36:36 +01003800 memset(&inq_cp, 0, sizeof(inq_cp));
3801 memcpy(&inq_cp.lap, lap, sizeof(inq_cp.lap));
3802 inq_cp.length = DISCOV_BREDR_INQUIRY_LEN;
3803 hci_req_add(req, HCI_OP_INQUIRY, sizeof(inq_cp), &inq_cp);
3804 break;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003805
Marcel Holtmann80190442014-12-04 11:36:36 +01003806 case DISCOV_TYPE_LE:
3807 case DISCOV_TYPE_INTERLEAVED:
3808 *status = mgmt_le_support(hdev);
3809 if (*status)
3810 return false;
3811
3812 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
3813 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
3814 *status = MGMT_STATUS_NOT_SUPPORTED;
3815 return false;
3816 }
3817
3818 if (test_bit(HCI_LE_ADV, &hdev->dev_flags)) {
3819 /* Don't let discovery abort an outgoing
3820 * connection attempt that's using directed
3821 * advertising.
3822 */
3823 if (hci_conn_hash_lookup_state(hdev, LE_LINK,
3824 BT_CONNECT)) {
3825 *status = MGMT_STATUS_REJECTED;
3826 return false;
3827 }
3828
3829 disable_advertising(req);
3830 }
3831
3832 /* If controller is scanning, it means the background scanning
3833 * is running. Thus, we should temporarily stop it in order to
3834 * set the discovery scanning parameters.
3835 */
3836 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags))
3837 hci_req_add_le_scan_disable(req);
3838
3839 memset(&param_cp, 0, sizeof(param_cp));
3840
3841 /* All active scans will be done with either a resolvable
3842 * private address (when privacy feature has been enabled)
Marcel Holtmann9437d2e2014-12-07 20:13:17 +01003843 * or non-resolvable private address.
Marcel Holtmann80190442014-12-04 11:36:36 +01003844 */
3845 err = hci_update_random_address(req, true, &own_addr_type);
3846 if (err < 0) {
3847 *status = MGMT_STATUS_FAILED;
3848 return false;
3849 }
3850
3851 param_cp.type = LE_SCAN_ACTIVE;
3852 param_cp.interval = cpu_to_le16(DISCOV_LE_SCAN_INT);
3853 param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
3854 param_cp.own_address_type = own_addr_type;
3855 hci_req_add(req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
3856 &param_cp);
3857
3858 memset(&enable_cp, 0, sizeof(enable_cp));
3859 enable_cp.enable = LE_SCAN_ENABLE;
3860 enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
3861 hci_req_add(req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
3862 &enable_cp);
3863 break;
3864
3865 default:
3866 *status = MGMT_STATUS_INVALID_PARAMS;
3867 return false;
3868 }
3869
3870 return true;
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003871}
3872
Marcel Holtmann1904a852015-01-11 13:50:44 -08003873static void start_discovery_complete(struct hci_dev *hdev, u8 status,
3874 u16 opcode)
Andre Guedes7c307722013-04-30 15:29:28 -03003875{
Marcel Holtmann11e6e252014-12-04 11:36:35 +01003876 struct pending_cmd *cmd;
3877 unsigned long timeout;
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01003878
Andre Guedes7c307722013-04-30 15:29:28 -03003879 BT_DBG("status %d", status);
3880
Marcel Holtmann11e6e252014-12-04 11:36:35 +01003881 hci_dev_lock(hdev);
3882
3883 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01003884 if (!cmd)
3885 cmd = mgmt_pending_find(MGMT_OP_START_SERVICE_DISCOVERY, hdev);
3886
Marcel Holtmann11e6e252014-12-04 11:36:35 +01003887 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02003888 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01003889 mgmt_pending_remove(cmd);
Andre Guedes7c307722013-04-30 15:29:28 -03003890 }
3891
Marcel Holtmann11e6e252014-12-04 11:36:35 +01003892 if (status) {
3893 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3894 goto unlock;
3895 }
3896
Andre Guedes7c307722013-04-30 15:29:28 -03003897 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
Andre Guedes7c307722013-04-30 15:29:28 -03003898
3899 switch (hdev->discovery.type) {
3900 case DISCOV_TYPE_LE:
Lukasz Rymanowski3d5a76f2014-03-27 20:55:21 +01003901 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
Andre Guedes7c307722013-04-30 15:29:28 -03003902 break;
Andre Guedes7c307722013-04-30 15:29:28 -03003903 case DISCOV_TYPE_INTERLEAVED:
Lukasz Rymanowskib9a7a612014-03-27 20:55:20 +01003904 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
Andre Guedes7c307722013-04-30 15:29:28 -03003905 break;
Andre Guedes7c307722013-04-30 15:29:28 -03003906 case DISCOV_TYPE_BREDR:
Marcel Holtmann11e6e252014-12-04 11:36:35 +01003907 timeout = 0;
Andre Guedes7c307722013-04-30 15:29:28 -03003908 break;
Andre Guedes7c307722013-04-30 15:29:28 -03003909 default:
3910 BT_ERR("Invalid discovery type %d", hdev->discovery.type);
Marcel Holtmann11e6e252014-12-04 11:36:35 +01003911 timeout = 0;
3912 break;
Andre Guedes7c307722013-04-30 15:29:28 -03003913 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01003914
Marcel Holtmann11e6e252014-12-04 11:36:35 +01003915 if (timeout)
3916 queue_delayed_work(hdev->workqueue,
3917 &hdev->le_scan_disable, timeout);
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01003918
Marcel Holtmann11e6e252014-12-04 11:36:35 +01003919unlock:
3920 hci_dev_unlock(hdev);
Andre Guedes7c307722013-04-30 15:29:28 -03003921}
3922
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003923static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003924 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04003925{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003926 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04003927 struct pending_cmd *cmd;
Andre Guedes7c307722013-04-30 15:29:28 -03003928 struct hci_request req;
Marcel Holtmann80190442014-12-04 11:36:36 +01003929 u8 status;
Johan Hedberg14a53662011-04-27 10:29:56 -04003930 int err;
3931
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003932 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04003933
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003934 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003935
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003936 if (!hdev_is_powered(hdev)) {
Szymon Janca736abc2014-11-03 14:20:56 +01003937 err = cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3938 MGMT_STATUS_NOT_POWERED,
3939 &cp->type, sizeof(cp->type));
Johan Hedbergbd2d1332011-11-07 23:13:37 +02003940 goto failed;
3941 }
3942
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01003943 if (hdev->discovery.state != DISCOVERY_STOPPED ||
3944 test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags)) {
Szymon Janca736abc2014-11-03 14:20:56 +01003945 err = cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3946 MGMT_STATUS_BUSY, &cp->type,
3947 sizeof(cp->type));
Andre Guedes642be6c2012-03-21 00:03:37 -03003948 goto failed;
3949 }
3950
Johan Hedberg2922a942014-12-05 13:36:06 +02003951 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04003952 if (!cmd) {
3953 err = -ENOMEM;
3954 goto failed;
3955 }
3956
Johan Hedberg2922a942014-12-05 13:36:06 +02003957 cmd->cmd_complete = generic_cmd_complete;
3958
Marcel Holtmann22078802014-12-05 11:45:22 +01003959 /* Clear the discovery filter first to free any previously
3960 * allocated memory for the UUID list.
3961 */
3962 hci_discovery_filter_clear(hdev);
3963
Andre Guedes4aab14e2012-02-17 20:39:36 -03003964 hdev->discovery.type = cp->type;
Marcel Holtmannda25cf62014-12-05 13:03:35 +01003965 hdev->discovery.report_invalid_rssi = false;
Andre Guedes4aab14e2012-02-17 20:39:36 -03003966
Andre Guedes7c307722013-04-30 15:29:28 -03003967 hci_req_init(&req, hdev);
3968
Marcel Holtmann80190442014-12-04 11:36:36 +01003969 if (!trigger_discovery(&req, &status)) {
Szymon Janca736abc2014-11-03 14:20:56 +01003970 err = cmd_complete(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Marcel Holtmann80190442014-12-04 11:36:36 +01003971 status, &cp->type, sizeof(cp->type));
Johan Hedberg04106752013-01-10 14:54:09 +02003972 mgmt_pending_remove(cmd);
3973 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03003974 }
Andre Guedes3fd24152012-02-03 17:48:01 -03003975
Andre Guedes7c307722013-04-30 15:29:28 -03003976 err = hci_req_run(&req, start_discovery_complete);
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01003977 if (err < 0) {
Johan Hedberg14a53662011-04-27 10:29:56 -04003978 mgmt_pending_remove(cmd);
Marcel Holtmannf5a969f2014-12-04 11:36:34 +01003979 goto failed;
3980 }
3981
3982 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04003983
3984failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003985 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003986 return err;
3987}
3988
Johan Hedberg9df74652014-12-19 22:26:03 +02003989static int service_discovery_cmd_complete(struct pending_cmd *cmd, u8 status)
Andre Guedes1183fdc2013-04-30 15:29:35 -03003990{
Johan Hedberg9df74652014-12-19 22:26:03 +02003991 return cmd_complete(cmd->sk, cmd->index, cmd->opcode, status,
3992 cmd->param, 1);
Johan Hedberg2922a942014-12-05 13:36:06 +02003993}
3994
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01003995static int start_service_discovery(struct sock *sk, struct hci_dev *hdev,
3996 void *data, u16 len)
3997{
3998 struct mgmt_cp_start_service_discovery *cp = data;
Andre Guedes1183fdc2013-04-30 15:29:35 -03003999 struct pending_cmd *cmd;
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004000 struct hci_request req;
4001 const u16 max_uuid_count = ((U16_MAX - sizeof(*cp)) / 16);
4002 u16 uuid_count, expected_len;
4003 u8 status;
Andre Guedes1183fdc2013-04-30 15:29:35 -03004004 int err;
4005
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004006 BT_DBG("%s", hdev->name);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004007
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004008 hci_dev_lock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004009
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004010 if (!hdev_is_powered(hdev)) {
4011 err = cmd_complete(sk, hdev->id,
4012 MGMT_OP_START_SERVICE_DISCOVERY,
4013 MGMT_STATUS_NOT_POWERED,
4014 &cp->type, sizeof(cp->type));
4015 goto failed;
4016 }
4017
4018 if (hdev->discovery.state != DISCOVERY_STOPPED ||
4019 test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags)) {
4020 err = cmd_complete(sk, hdev->id,
4021 MGMT_OP_START_SERVICE_DISCOVERY,
4022 MGMT_STATUS_BUSY, &cp->type,
4023 sizeof(cp->type));
4024 goto failed;
4025 }
4026
4027 uuid_count = __le16_to_cpu(cp->uuid_count);
4028 if (uuid_count > max_uuid_count) {
4029 BT_ERR("service_discovery: too big uuid_count value %u",
4030 uuid_count);
4031 err = cmd_complete(sk, hdev->id,
4032 MGMT_OP_START_SERVICE_DISCOVERY,
4033 MGMT_STATUS_INVALID_PARAMS, &cp->type,
4034 sizeof(cp->type));
4035 goto failed;
4036 }
4037
4038 expected_len = sizeof(*cp) + uuid_count * 16;
4039 if (expected_len != len) {
4040 BT_ERR("service_discovery: expected %u bytes, got %u bytes",
4041 expected_len, len);
4042 err = cmd_complete(sk, hdev->id,
4043 MGMT_OP_START_SERVICE_DISCOVERY,
4044 MGMT_STATUS_INVALID_PARAMS, &cp->type,
4045 sizeof(cp->type));
4046 goto failed;
4047 }
4048
4049 cmd = mgmt_pending_add(sk, MGMT_OP_START_SERVICE_DISCOVERY,
Johan Hedberg2922a942014-12-05 13:36:06 +02004050 hdev, data, len);
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004051 if (!cmd) {
4052 err = -ENOMEM;
4053 goto failed;
4054 }
4055
Johan Hedberg2922a942014-12-05 13:36:06 +02004056 cmd->cmd_complete = service_discovery_cmd_complete;
4057
Marcel Holtmann22078802014-12-05 11:45:22 +01004058 /* Clear the discovery filter first to free any previously
4059 * allocated memory for the UUID list.
4060 */
4061 hci_discovery_filter_clear(hdev);
4062
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01004063 hdev->discovery.type = cp->type;
4064 hdev->discovery.rssi = cp->rssi;
4065 hdev->discovery.uuid_count = uuid_count;
4066
4067 if (uuid_count > 0) {
4068 hdev->discovery.uuids = kmemdup(cp->uuids, uuid_count * 16,
4069 GFP_KERNEL);
4070 if (!hdev->discovery.uuids) {
4071 err = cmd_complete(sk, hdev->id,
4072 MGMT_OP_START_SERVICE_DISCOVERY,
4073 MGMT_STATUS_FAILED,
4074 &cp->type, sizeof(cp->type));
4075 mgmt_pending_remove(cmd);
4076 goto failed;
4077 }
4078 }
4079
4080 hci_req_init(&req, hdev);
4081
4082 if (!trigger_discovery(&req, &status)) {
4083 err = cmd_complete(sk, hdev->id,
4084 MGMT_OP_START_SERVICE_DISCOVERY,
4085 status, &cp->type, sizeof(cp->type));
4086 mgmt_pending_remove(cmd);
4087 goto failed;
4088 }
4089
4090 err = hci_req_run(&req, start_discovery_complete);
4091 if (err < 0) {
4092 mgmt_pending_remove(cmd);
4093 goto failed;
4094 }
4095
4096 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
4097
4098failed:
4099 hci_dev_unlock(hdev);
Andre Guedes1183fdc2013-04-30 15:29:35 -03004100 return err;
4101}
4102
Marcel Holtmann1904a852015-01-11 13:50:44 -08004103static void stop_discovery_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Andre Guedes0e05bba2013-04-30 15:29:33 -03004104{
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004105 struct pending_cmd *cmd;
4106
Andre Guedes0e05bba2013-04-30 15:29:33 -03004107 BT_DBG("status %d", status);
4108
4109 hci_dev_lock(hdev);
4110
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004111 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
4112 if (cmd) {
Johan Hedberg2922a942014-12-05 13:36:06 +02004113 cmd->cmd_complete(cmd, mgmt_status(status));
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004114 mgmt_pending_remove(cmd);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004115 }
4116
Marcel Holtmann11e6e252014-12-04 11:36:35 +01004117 if (!status)
4118 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004119
Andre Guedes0e05bba2013-04-30 15:29:33 -03004120 hci_dev_unlock(hdev);
4121}
4122
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004123static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004124 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04004125{
Johan Hedbergd9306502012-02-20 23:25:18 +02004126 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04004127 struct pending_cmd *cmd;
Andre Guedes0e05bba2013-04-30 15:29:33 -03004128 struct hci_request req;
Johan Hedberg14a53662011-04-27 10:29:56 -04004129 int err;
4130
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004131 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04004132
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004133 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004134
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004135 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004136 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004137 MGMT_STATUS_REJECTED, &mgmt_cp->type,
4138 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02004139 goto unlock;
4140 }
4141
4142 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004143 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004144 MGMT_STATUS_INVALID_PARAMS, &mgmt_cp->type,
4145 sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004146 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02004147 }
4148
Johan Hedberg2922a942014-12-05 13:36:06 +02004149 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, data, len);
Johan Hedberg14a53662011-04-27 10:29:56 -04004150 if (!cmd) {
4151 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004152 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04004153 }
4154
Johan Hedberg2922a942014-12-05 13:36:06 +02004155 cmd->cmd_complete = generic_cmd_complete;
4156
Andre Guedes0e05bba2013-04-30 15:29:33 -03004157 hci_req_init(&req, hdev);
4158
Johan Hedberg21a60d32014-06-10 14:05:58 +03004159 hci_stop_discovery(&req);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004160
Johan Hedberg21a60d32014-06-10 14:05:58 +03004161 err = hci_req_run(&req, stop_discovery_complete);
4162 if (!err) {
4163 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Andre Guedes0e05bba2013-04-30 15:29:33 -03004164 goto unlock;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004165 }
4166
Johan Hedberg21a60d32014-06-10 14:05:58 +03004167 mgmt_pending_remove(cmd);
4168
4169 /* If no HCI commands were sent we're done */
4170 if (err == -ENODATA) {
4171 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
4172 &mgmt_cp->type, sizeof(mgmt_cp->type));
4173 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
4174 }
Johan Hedberg14a53662011-04-27 10:29:56 -04004175
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004176unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004177 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04004178 return err;
4179}
4180
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004181static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004182 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02004183{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004184 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02004185 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02004186 int err;
4187
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004188 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004189
Johan Hedberg561aafb2012-01-04 13:31:59 +02004190 hci_dev_lock(hdev);
4191
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004192 if (!hci_discovery_active(hdev)) {
Lukasz Rymanowskid3a25412014-02-27 16:47:28 +01004193 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
4194 MGMT_STATUS_FAILED, &cp->addr,
4195 sizeof(cp->addr));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02004196 goto failed;
4197 }
4198
Johan Hedberga198e7b2012-02-17 14:27:06 +02004199 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004200 if (!e) {
Lukasz Rymanowskid3a25412014-02-27 16:47:28 +01004201 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
4202 MGMT_STATUS_INVALID_PARAMS, &cp->addr,
4203 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02004204 goto failed;
4205 }
4206
4207 if (cp->name_known) {
4208 e->name_state = NAME_KNOWN;
4209 list_del(&e->list);
4210 } else {
4211 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02004212 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004213 }
4214
Johan Hedberge3846622013-01-09 15:29:33 +02004215 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0, &cp->addr,
4216 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02004217
4218failed:
4219 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02004220 return err;
4221}
4222
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004223static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004224 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03004225{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004226 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004227 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03004228 int err;
4229
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004230 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03004231
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004232 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02004233 return cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
4234 MGMT_STATUS_INVALID_PARAMS,
4235 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004236
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004237 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004238
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004239 err = hci_bdaddr_list_add(&hdev->blacklist, &cp->addr.bdaddr,
4240 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004241 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004242 status = MGMT_STATUS_FAILED;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004243 goto done;
4244 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004245
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004246 mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &cp->addr, sizeof(cp->addr),
4247 sk);
4248 status = MGMT_STATUS_SUCCESS;
4249
4250done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004251 err = cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004252 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03004253
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004254 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03004255
4256 return err;
4257}
4258
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004259static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004260 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03004261{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004262 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004263 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03004264 int err;
4265
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004266 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03004267
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004268 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02004269 return cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
4270 MGMT_STATUS_INVALID_PARAMS,
4271 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02004272
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004273 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03004274
Johan Hedbergdcc36c12014-07-09 12:59:13 +03004275 err = hci_bdaddr_list_del(&hdev->blacklist, &cp->addr.bdaddr,
4276 cp->addr.type);
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004277 if (err < 0) {
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004278 status = MGMT_STATUS_INVALID_PARAMS;
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004279 goto done;
4280 }
Johan Hedbergf0eeea82012-02-19 12:58:54 +02004281
Johan Hedberg2a8357f2014-07-01 22:09:47 +03004282 mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &cp->addr, sizeof(cp->addr),
4283 sk);
4284 status = MGMT_STATUS_SUCCESS;
4285
4286done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004287 err = cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004288 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03004289
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03004290 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03004291
4292 return err;
4293}
4294
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004295static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
4296 u16 len)
4297{
4298 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05004299 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004300 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01004301 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004302
4303 BT_DBG("%s", hdev->name);
4304
Szymon Jancc72d4b82012-03-16 16:02:57 +01004305 source = __le16_to_cpu(cp->source);
4306
4307 if (source > 0x0002)
4308 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
4309 MGMT_STATUS_INVALID_PARAMS);
4310
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004311 hci_dev_lock(hdev);
4312
Szymon Jancc72d4b82012-03-16 16:02:57 +01004313 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004314 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
4315 hdev->devid_product = __le16_to_cpu(cp->product);
4316 hdev->devid_version = __le16_to_cpu(cp->version);
4317
4318 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0, NULL, 0);
4319
Johan Hedberg890ea892013-03-15 17:06:52 -05004320 hci_req_init(&req, hdev);
4321 update_eir(&req);
4322 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004323
4324 hci_dev_unlock(hdev);
4325
4326 return err;
4327}
4328
Marcel Holtmann1904a852015-01-11 13:50:44 -08004329static void set_advertising_complete(struct hci_dev *hdev, u8 status,
4330 u16 opcode)
Johan Hedberg4375f102013-09-25 13:26:10 +03004331{
4332 struct cmd_lookup match = { NULL, hdev };
4333
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304334 hci_dev_lock(hdev);
4335
Johan Hedberg4375f102013-09-25 13:26:10 +03004336 if (status) {
4337 u8 mgmt_err = mgmt_status(status);
4338
4339 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
4340 cmd_status_rsp, &mgmt_err);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304341 goto unlock;
Johan Hedberg4375f102013-09-25 13:26:10 +03004342 }
4343
Johan Hedbergc93bd152014-07-08 15:07:48 +03004344 if (test_bit(HCI_LE_ADV, &hdev->dev_flags))
4345 set_bit(HCI_ADVERTISING, &hdev->dev_flags);
4346 else
4347 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
4348
Johan Hedberg4375f102013-09-25 13:26:10 +03004349 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
4350 &match);
4351
4352 new_settings(hdev, match.sk);
4353
4354 if (match.sk)
4355 sock_put(match.sk);
Jaganath Kanakkassery3ad67582014-12-11 11:43:12 +05304356
4357unlock:
4358 hci_dev_unlock(hdev);
Johan Hedberg4375f102013-09-25 13:26:10 +03004359}
4360
Marcel Holtmann21b51872013-10-10 09:47:53 -07004361static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
4362 u16 len)
Johan Hedberg4375f102013-09-25 13:26:10 +03004363{
4364 struct mgmt_mode *cp = data;
4365 struct pending_cmd *cmd;
4366 struct hci_request req;
Johan Hedberge6fe7982013-10-02 15:45:22 +03004367 u8 val, enabled, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03004368 int err;
4369
4370 BT_DBG("request for %s", hdev->name);
4371
Johan Hedberge6fe7982013-10-02 15:45:22 +03004372 status = mgmt_le_support(hdev);
4373 if (status)
Johan Hedberg4375f102013-09-25 13:26:10 +03004374 return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
Johan Hedberge6fe7982013-10-02 15:45:22 +03004375 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03004376
4377 if (cp->val != 0x00 && cp->val != 0x01)
4378 return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4379 MGMT_STATUS_INVALID_PARAMS);
4380
4381 hci_dev_lock(hdev);
4382
4383 val = !!cp->val;
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02004384 enabled = test_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03004385
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02004386 /* The following conditions are ones which mean that we should
4387 * not do any HCI communication but directly send a mgmt
4388 * response to user space (after toggling the flag if
4389 * necessary).
4390 */
4391 if (!hdev_is_powered(hdev) || val == enabled ||
Johan Hedberge8bb6b92014-07-08 15:07:53 +03004392 hci_conn_num(hdev, LE_LINK) > 0 ||
4393 (test_bit(HCI_LE_SCAN, &hdev->dev_flags) &&
4394 hdev->le_scan_type == LE_SCAN_ACTIVE)) {
Johan Hedberg4375f102013-09-25 13:26:10 +03004395 bool changed = false;
4396
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02004397 if (val != test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
4398 change_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03004399 changed = true;
4400 }
4401
4402 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
4403 if (err < 0)
4404 goto unlock;
4405
4406 if (changed)
4407 err = new_settings(hdev, sk);
4408
4409 goto unlock;
4410 }
4411
4412 if (mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
4413 mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
4414 err = cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
4415 MGMT_STATUS_BUSY);
4416 goto unlock;
4417 }
4418
4419 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
4420 if (!cmd) {
4421 err = -ENOMEM;
4422 goto unlock;
4423 }
4424
4425 hci_req_init(&req, hdev);
4426
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07004427 if (val)
4428 enable_advertising(&req);
4429 else
4430 disable_advertising(&req);
Johan Hedberg4375f102013-09-25 13:26:10 +03004431
4432 err = hci_req_run(&req, set_advertising_complete);
4433 if (err < 0)
4434 mgmt_pending_remove(cmd);
4435
4436unlock:
4437 hci_dev_unlock(hdev);
4438 return err;
4439}
4440
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004441static int set_static_address(struct sock *sk, struct hci_dev *hdev,
4442 void *data, u16 len)
4443{
4444 struct mgmt_cp_set_static_address *cp = data;
4445 int err;
4446
4447 BT_DBG("%s", hdev->name);
4448
Marcel Holtmann62af4442013-10-02 22:10:32 -07004449 if (!lmp_le_capable(hdev))
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004450 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann62af4442013-10-02 22:10:32 -07004451 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004452
4453 if (hdev_is_powered(hdev))
4454 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
4455 MGMT_STATUS_REJECTED);
4456
4457 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
4458 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
4459 return cmd_status(sk, hdev->id,
4460 MGMT_OP_SET_STATIC_ADDRESS,
4461 MGMT_STATUS_INVALID_PARAMS);
4462
4463 /* Two most significant bits shall be set */
4464 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
4465 return cmd_status(sk, hdev->id,
4466 MGMT_OP_SET_STATIC_ADDRESS,
4467 MGMT_STATUS_INVALID_PARAMS);
4468 }
4469
4470 hci_dev_lock(hdev);
4471
4472 bacpy(&hdev->static_addr, &cp->bdaddr);
4473
4474 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS, 0, NULL, 0);
4475
4476 hci_dev_unlock(hdev);
4477
4478 return err;
4479}
4480
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004481static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
4482 void *data, u16 len)
4483{
4484 struct mgmt_cp_set_scan_params *cp = data;
4485 __u16 interval, window;
4486 int err;
4487
4488 BT_DBG("%s", hdev->name);
4489
4490 if (!lmp_le_capable(hdev))
4491 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4492 MGMT_STATUS_NOT_SUPPORTED);
4493
4494 interval = __le16_to_cpu(cp->interval);
4495
4496 if (interval < 0x0004 || interval > 0x4000)
4497 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4498 MGMT_STATUS_INVALID_PARAMS);
4499
4500 window = __le16_to_cpu(cp->window);
4501
4502 if (window < 0x0004 || window > 0x4000)
4503 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4504 MGMT_STATUS_INVALID_PARAMS);
4505
Marcel Holtmann899e1072013-10-14 09:55:32 -07004506 if (window > interval)
4507 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
4508 MGMT_STATUS_INVALID_PARAMS);
4509
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004510 hci_dev_lock(hdev);
4511
4512 hdev->le_scan_interval = interval;
4513 hdev->le_scan_window = window;
4514
4515 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0, NULL, 0);
4516
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03004517 /* If background scan is running, restart it so new parameters are
4518 * loaded.
4519 */
4520 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags) &&
4521 hdev->discovery.state == DISCOVERY_STOPPED) {
4522 struct hci_request req;
4523
4524 hci_req_init(&req, hdev);
4525
4526 hci_req_add_le_scan_disable(&req);
4527 hci_req_add_le_passive_scan(&req);
4528
4529 hci_req_run(&req, NULL);
4530 }
4531
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004532 hci_dev_unlock(hdev);
4533
4534 return err;
4535}
4536
Marcel Holtmann1904a852015-01-11 13:50:44 -08004537static void fast_connectable_complete(struct hci_dev *hdev, u8 status,
4538 u16 opcode)
Johan Hedberg33e38b32013-03-15 17:07:05 -05004539{
4540 struct pending_cmd *cmd;
4541
4542 BT_DBG("status 0x%02x", status);
4543
4544 hci_dev_lock(hdev);
4545
4546 cmd = mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4547 if (!cmd)
4548 goto unlock;
4549
4550 if (status) {
4551 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4552 mgmt_status(status));
4553 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004554 struct mgmt_mode *cp = cmd->param;
4555
4556 if (cp->val)
4557 set_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4558 else
4559 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4560
Johan Hedberg33e38b32013-03-15 17:07:05 -05004561 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4562 new_settings(hdev, cmd->sk);
4563 }
4564
4565 mgmt_pending_remove(cmd);
4566
4567unlock:
4568 hci_dev_unlock(hdev);
4569}
4570
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004571static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004572 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03004573{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004574 struct mgmt_mode *cp = data;
Johan Hedberg33e38b32013-03-15 17:07:05 -05004575 struct pending_cmd *cmd;
4576 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03004577 int err;
4578
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004579 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004580
Johan Hedberg56f87902013-10-02 13:43:13 +03004581 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags) ||
4582 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberg33c525c2012-10-24 21:11:58 +03004583 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4584 MGMT_STATUS_NOT_SUPPORTED);
4585
Johan Hedberga7e80f22013-01-09 16:05:19 +02004586 if (cp->val != 0x00 && cp->val != 0x01)
4587 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4588 MGMT_STATUS_INVALID_PARAMS);
4589
Johan Hedberg5400c042012-02-21 16:40:33 +02004590 if (!hdev_is_powered(hdev))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004591 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004592 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5400c042012-02-21 16:40:33 +02004593
4594 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004595 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004596 MGMT_STATUS_REJECTED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004597
4598 hci_dev_lock(hdev);
4599
Johan Hedberg05cbf292013-03-15 17:07:07 -05004600 if (mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
4601 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4602 MGMT_STATUS_BUSY);
4603 goto unlock;
4604 }
4605
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004606 if (!!cp->val == test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags)) {
4607 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
4608 hdev);
4609 goto unlock;
4610 }
4611
Johan Hedberg33e38b32013-03-15 17:07:05 -05004612 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
4613 data, len);
4614 if (!cmd) {
4615 err = -ENOMEM;
4616 goto unlock;
4617 }
4618
4619 hci_req_init(&req, hdev);
4620
Johan Hedberg406d7802013-03-15 17:07:09 -05004621 write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004622
4623 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004624 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004625 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004626 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004627 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004628 }
4629
Johan Hedberg33e38b32013-03-15 17:07:05 -05004630unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03004631 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004632
Antti Julkuf6422ec2011-06-22 13:11:56 +03004633 return err;
4634}
4635
Marcel Holtmann1904a852015-01-11 13:50:44 -08004636static void set_bredr_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg0663ca22013-10-02 13:43:14 +03004637{
4638 struct pending_cmd *cmd;
4639
4640 BT_DBG("status 0x%02x", status);
4641
4642 hci_dev_lock(hdev);
4643
4644 cmd = mgmt_pending_find(MGMT_OP_SET_BREDR, hdev);
4645 if (!cmd)
4646 goto unlock;
4647
4648 if (status) {
4649 u8 mgmt_err = mgmt_status(status);
4650
4651 /* We need to restore the flag if related HCI commands
4652 * failed.
4653 */
4654 clear_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4655
4656 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
4657 } else {
4658 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
4659 new_settings(hdev, cmd->sk);
4660 }
4661
4662 mgmt_pending_remove(cmd);
4663
4664unlock:
4665 hci_dev_unlock(hdev);
4666}
4667
4668static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
4669{
4670 struct mgmt_mode *cp = data;
4671 struct pending_cmd *cmd;
4672 struct hci_request req;
4673 int err;
4674
4675 BT_DBG("request for %s", hdev->name);
4676
4677 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
4678 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4679 MGMT_STATUS_NOT_SUPPORTED);
4680
4681 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
4682 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4683 MGMT_STATUS_REJECTED);
4684
4685 if (cp->val != 0x00 && cp->val != 0x01)
4686 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4687 MGMT_STATUS_INVALID_PARAMS);
4688
4689 hci_dev_lock(hdev);
4690
4691 if (cp->val == test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
4692 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
4693 goto unlock;
4694 }
4695
4696 if (!hdev_is_powered(hdev)) {
4697 if (!cp->val) {
Johan Hedberg0663ca22013-10-02 13:43:14 +03004698 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
4699 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
4700 clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
4701 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4702 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
4703 }
4704
4705 change_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4706
4707 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
4708 if (err < 0)
4709 goto unlock;
4710
4711 err = new_settings(hdev, sk);
4712 goto unlock;
4713 }
4714
4715 /* Reject disabling when powered on */
4716 if (!cp->val) {
4717 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4718 MGMT_STATUS_REJECTED);
4719 goto unlock;
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08004720 } else {
4721 /* When configuring a dual-mode controller to operate
4722 * with LE only and using a static address, then switching
4723 * BR/EDR back on is not allowed.
4724 *
4725 * Dual-mode controllers shall operate with the public
4726 * address as its identity address for BR/EDR and LE. So
4727 * reject the attempt to create an invalid configuration.
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08004728 *
4729 * The same restrictions applies when secure connections
4730 * has been enabled. For BR/EDR this is a controller feature
4731 * while for LE it is a host stack feature. This means that
4732 * switching BR/EDR back on when secure connections has been
4733 * enabled is not a supported transaction.
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08004734 */
4735 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags) &&
Marcel Holtmann3a5486e2015-01-22 11:15:21 -08004736 (bacmp(&hdev->static_addr, BDADDR_ANY) ||
4737 test_bit(HCI_SC_ENABLED, &hdev->dev_flags))) {
Marcel Holtmann111e4bc2015-01-14 14:40:42 -08004738 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4739 MGMT_STATUS_REJECTED);
4740 goto unlock;
4741 }
Johan Hedberg0663ca22013-10-02 13:43:14 +03004742 }
4743
4744 if (mgmt_pending_find(MGMT_OP_SET_BREDR, hdev)) {
4745 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4746 MGMT_STATUS_BUSY);
4747 goto unlock;
4748 }
4749
4750 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
4751 if (!cmd) {
4752 err = -ENOMEM;
4753 goto unlock;
4754 }
4755
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07004756 /* We need to flip the bit already here so that update_adv_data
Johan Hedberg0663ca22013-10-02 13:43:14 +03004757 * generates the correct flags.
4758 */
4759 set_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4760
4761 hci_req_init(&req, hdev);
Johan Hedbergaa8af462013-10-14 21:15:26 +03004762
Johan Hedberg432df052014-08-01 11:13:31 +03004763 write_fast_connectable(&req, false);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02004764 __hci_update_page_scan(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03004765
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07004766 /* Since only the advertising data flags will change, there
4767 * is no need to update the scan response data.
4768 */
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07004769 update_adv_data(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03004770
Johan Hedberg0663ca22013-10-02 13:43:14 +03004771 err = hci_req_run(&req, set_bredr_complete);
4772 if (err < 0)
4773 mgmt_pending_remove(cmd);
4774
4775unlock:
4776 hci_dev_unlock(hdev);
4777 return err;
4778}
4779
Johan Hedberga1443f52015-01-23 15:42:46 +02004780static void sc_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
4781{
4782 struct pending_cmd *cmd;
4783 struct mgmt_mode *cp;
4784
4785 BT_DBG("%s status %u", hdev->name, status);
4786
4787 hci_dev_lock(hdev);
4788
4789 cmd = mgmt_pending_find(MGMT_OP_SET_SECURE_CONN, hdev);
4790 if (!cmd)
4791 goto unlock;
4792
4793 if (status) {
4794 cmd_status(cmd->sk, cmd->index, cmd->opcode,
4795 mgmt_status(status));
4796 goto remove;
4797 }
4798
4799 cp = cmd->param;
4800
4801 switch (cp->val) {
4802 case 0x00:
4803 clear_bit(HCI_SC_ENABLED, &hdev->dev_flags);
4804 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4805 break;
4806 case 0x01:
4807 set_bit(HCI_SC_ENABLED, &hdev->dev_flags);
4808 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4809 break;
4810 case 0x02:
4811 set_bit(HCI_SC_ENABLED, &hdev->dev_flags);
4812 set_bit(HCI_SC_ONLY, &hdev->dev_flags);
4813 break;
4814 }
4815
4816 send_settings_rsp(cmd->sk, MGMT_OP_SET_SECURE_CONN, hdev);
4817 new_settings(hdev, cmd->sk);
4818
4819remove:
4820 mgmt_pending_remove(cmd);
4821unlock:
4822 hci_dev_unlock(hdev);
4823}
4824
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004825static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
4826 void *data, u16 len)
4827{
4828 struct mgmt_mode *cp = data;
4829 struct pending_cmd *cmd;
Johan Hedberga1443f52015-01-23 15:42:46 +02004830 struct hci_request req;
Johan Hedberga3209692014-05-26 11:23:35 +03004831 u8 val;
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004832 int err;
4833
4834 BT_DBG("request for %s", hdev->name);
4835
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08004836 if (!lmp_sc_capable(hdev) &&
4837 !test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004838 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4839 MGMT_STATUS_NOT_SUPPORTED);
4840
Marcel Holtmanned93ec62015-01-22 11:15:22 -08004841 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags) &&
Johan Hedberg59200282015-01-28 19:56:00 +02004842 lmp_sc_capable(hdev) &&
Marcel Holtmanned93ec62015-01-22 11:15:22 -08004843 !test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
4844 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4845 MGMT_STATUS_REJECTED);
4846
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004847 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004848 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4849 MGMT_STATUS_INVALID_PARAMS);
4850
4851 hci_dev_lock(hdev);
4852
Marcel Holtmann05b3c3e2014-12-31 14:43:18 -08004853 if (!hdev_is_powered(hdev) || !lmp_sc_capable(hdev) ||
Johan Hedberga3209692014-05-26 11:23:35 +03004854 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004855 bool changed;
4856
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004857 if (cp->val) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004858 changed = !test_and_set_bit(HCI_SC_ENABLED,
4859 &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004860 if (cp->val == 0x02)
4861 set_bit(HCI_SC_ONLY, &hdev->dev_flags);
4862 else
4863 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4864 } else {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004865 changed = test_and_clear_bit(HCI_SC_ENABLED,
4866 &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004867 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4868 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004869
4870 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
4871 if (err < 0)
4872 goto failed;
4873
4874 if (changed)
4875 err = new_settings(hdev, sk);
4876
4877 goto failed;
4878 }
4879
4880 if (mgmt_pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
4881 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4882 MGMT_STATUS_BUSY);
4883 goto failed;
4884 }
4885
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004886 val = !!cp->val;
4887
4888 if (val == test_bit(HCI_SC_ENABLED, &hdev->dev_flags) &&
4889 (cp->val == 0x02) == test_bit(HCI_SC_ONLY, &hdev->dev_flags)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004890 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
4891 goto failed;
4892 }
4893
4894 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
4895 if (!cmd) {
4896 err = -ENOMEM;
4897 goto failed;
4898 }
4899
Johan Hedberga1443f52015-01-23 15:42:46 +02004900 hci_req_init(&req, hdev);
4901 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
4902 err = hci_req_run(&req, sc_enable_complete);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004903 if (err < 0) {
4904 mgmt_pending_remove(cmd);
4905 goto failed;
4906 }
4907
4908failed:
4909 hci_dev_unlock(hdev);
4910 return err;
4911}
4912
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004913static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
4914 void *data, u16 len)
4915{
4916 struct mgmt_mode *cp = data;
Johan Hedbergb97109792014-06-24 14:00:28 +03004917 bool changed, use_changed;
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004918 int err;
4919
4920 BT_DBG("request for %s", hdev->name);
4921
Johan Hedbergb97109792014-06-24 14:00:28 +03004922 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004923 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
4924 MGMT_STATUS_INVALID_PARAMS);
4925
4926 hci_dev_lock(hdev);
4927
4928 if (cp->val)
Johan Hedberg0663b292014-06-24 13:15:50 +03004929 changed = !test_and_set_bit(HCI_KEEP_DEBUG_KEYS,
4930 &hdev->dev_flags);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004931 else
Johan Hedberg0663b292014-06-24 13:15:50 +03004932 changed = test_and_clear_bit(HCI_KEEP_DEBUG_KEYS,
4933 &hdev->dev_flags);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004934
Johan Hedbergb97109792014-06-24 14:00:28 +03004935 if (cp->val == 0x02)
4936 use_changed = !test_and_set_bit(HCI_USE_DEBUG_KEYS,
4937 &hdev->dev_flags);
4938 else
4939 use_changed = test_and_clear_bit(HCI_USE_DEBUG_KEYS,
4940 &hdev->dev_flags);
4941
4942 if (hdev_is_powered(hdev) && use_changed &&
4943 test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
4944 u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
4945 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
4946 sizeof(mode), &mode);
4947 }
4948
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004949 err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
4950 if (err < 0)
4951 goto unlock;
4952
4953 if (changed)
4954 err = new_settings(hdev, sk);
4955
4956unlock:
4957 hci_dev_unlock(hdev);
4958 return err;
4959}
4960
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004961static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
4962 u16 len)
4963{
4964 struct mgmt_cp_set_privacy *cp = cp_data;
4965 bool changed;
4966 int err;
4967
4968 BT_DBG("request for %s", hdev->name);
4969
4970 if (!lmp_le_capable(hdev))
4971 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4972 MGMT_STATUS_NOT_SUPPORTED);
4973
4974 if (cp->privacy != 0x00 && cp->privacy != 0x01)
4975 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4976 MGMT_STATUS_INVALID_PARAMS);
4977
4978 if (hdev_is_powered(hdev))
4979 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4980 MGMT_STATUS_REJECTED);
4981
4982 hci_dev_lock(hdev);
4983
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02004984 /* If user space supports this command it is also expected to
4985 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
4986 */
4987 set_bit(HCI_RPA_RESOLVING, &hdev->dev_flags);
4988
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004989 if (cp->privacy) {
4990 changed = !test_and_set_bit(HCI_PRIVACY, &hdev->dev_flags);
4991 memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
4992 set_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
4993 } else {
4994 changed = test_and_clear_bit(HCI_PRIVACY, &hdev->dev_flags);
4995 memset(hdev->irk, 0, sizeof(hdev->irk));
4996 clear_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
4997 }
4998
4999 err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
5000 if (err < 0)
5001 goto unlock;
5002
5003 if (changed)
5004 err = new_settings(hdev, sk);
5005
5006unlock:
5007 hci_dev_unlock(hdev);
5008 return err;
5009}
5010
Johan Hedberg41edf162014-02-18 10:19:35 +02005011static bool irk_is_valid(struct mgmt_irk_info *irk)
5012{
5013 switch (irk->addr.type) {
5014 case BDADDR_LE_PUBLIC:
5015 return true;
5016
5017 case BDADDR_LE_RANDOM:
5018 /* Two most significant bits shall be set */
5019 if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
5020 return false;
5021 return true;
5022 }
5023
5024 return false;
5025}
5026
5027static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
5028 u16 len)
5029{
5030 struct mgmt_cp_load_irks *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005031 const u16 max_irk_count = ((U16_MAX - sizeof(*cp)) /
5032 sizeof(struct mgmt_irk_info));
Johan Hedberg41edf162014-02-18 10:19:35 +02005033 u16 irk_count, expected_len;
5034 int i, err;
5035
5036 BT_DBG("request for %s", hdev->name);
5037
5038 if (!lmp_le_capable(hdev))
5039 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5040 MGMT_STATUS_NOT_SUPPORTED);
5041
5042 irk_count = __le16_to_cpu(cp->irk_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005043 if (irk_count > max_irk_count) {
5044 BT_ERR("load_irks: too big irk_count value %u", irk_count);
5045 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5046 MGMT_STATUS_INVALID_PARAMS);
5047 }
Johan Hedberg41edf162014-02-18 10:19:35 +02005048
5049 expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
5050 if (expected_len != len) {
5051 BT_ERR("load_irks: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02005052 expected_len, len);
Johan Hedberg41edf162014-02-18 10:19:35 +02005053 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
5054 MGMT_STATUS_INVALID_PARAMS);
5055 }
5056
5057 BT_DBG("%s irk_count %u", hdev->name, irk_count);
5058
5059 for (i = 0; i < irk_count; i++) {
5060 struct mgmt_irk_info *key = &cp->irks[i];
5061
5062 if (!irk_is_valid(key))
5063 return cmd_status(sk, hdev->id,
5064 MGMT_OP_LOAD_IRKS,
5065 MGMT_STATUS_INVALID_PARAMS);
5066 }
5067
5068 hci_dev_lock(hdev);
5069
5070 hci_smp_irks_clear(hdev);
5071
5072 for (i = 0; i < irk_count; i++) {
5073 struct mgmt_irk_info *irk = &cp->irks[i];
5074 u8 addr_type;
5075
5076 if (irk->addr.type == BDADDR_LE_PUBLIC)
5077 addr_type = ADDR_LE_DEV_PUBLIC;
5078 else
5079 addr_type = ADDR_LE_DEV_RANDOM;
5080
5081 hci_add_irk(hdev, &irk->addr.bdaddr, addr_type, irk->val,
5082 BDADDR_ANY);
5083 }
5084
5085 set_bit(HCI_RPA_RESOLVING, &hdev->dev_flags);
5086
5087 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
5088
5089 hci_dev_unlock(hdev);
5090
5091 return err;
5092}
5093
Johan Hedberg3f706b72013-01-20 14:27:16 +02005094static bool ltk_is_valid(struct mgmt_ltk_info *key)
5095{
5096 if (key->master != 0x00 && key->master != 0x01)
5097 return false;
Marcel Holtmann490cb0b2014-02-16 12:59:05 -08005098
5099 switch (key->addr.type) {
5100 case BDADDR_LE_PUBLIC:
5101 return true;
5102
5103 case BDADDR_LE_RANDOM:
5104 /* Two most significant bits shall be set */
5105 if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
5106 return false;
5107 return true;
5108 }
5109
5110 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02005111}
5112
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005113static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005114 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005115{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005116 struct mgmt_cp_load_long_term_keys *cp = cp_data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005117 const u16 max_key_count = ((U16_MAX - sizeof(*cp)) /
5118 sizeof(struct mgmt_ltk_info));
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005119 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005120 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005121
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07005122 BT_DBG("request for %s", hdev->name);
5123
5124 if (!lmp_le_capable(hdev))
5125 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5126 MGMT_STATUS_NOT_SUPPORTED);
5127
Marcel Holtmann1f350c82012-03-12 20:31:08 -07005128 key_count = __le16_to_cpu(cp->key_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005129 if (key_count > max_key_count) {
5130 BT_ERR("load_ltks: too big key_count value %u", key_count);
5131 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
5132 MGMT_STATUS_INVALID_PARAMS);
5133 }
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005134
5135 expected_len = sizeof(*cp) + key_count *
5136 sizeof(struct mgmt_ltk_info);
5137 if (expected_len != len) {
5138 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02005139 expected_len, len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005140 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
Johan Hedberge57e6192013-01-20 14:27:14 +02005141 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005142 }
5143
Johan Hedbergbdb6d972012-02-28 06:13:32 +02005144 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005145
Johan Hedberg54ad6d82013-01-20 14:27:15 +02005146 for (i = 0; i < key_count; i++) {
5147 struct mgmt_ltk_info *key = &cp->keys[i];
5148
Johan Hedberg3f706b72013-01-20 14:27:16 +02005149 if (!ltk_is_valid(key))
Johan Hedberg54ad6d82013-01-20 14:27:15 +02005150 return cmd_status(sk, hdev->id,
5151 MGMT_OP_LOAD_LONG_TERM_KEYS,
5152 MGMT_STATUS_INVALID_PARAMS);
5153 }
5154
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005155 hci_dev_lock(hdev);
5156
5157 hci_smp_ltks_clear(hdev);
5158
5159 for (i = 0; i < key_count; i++) {
5160 struct mgmt_ltk_info *key = &cp->keys[i];
Johan Hedbergd7b25452014-05-23 13:19:53 +03005161 u8 type, addr_type, authenticated;
Marcel Holtmann79d95a12013-10-13 03:57:38 -07005162
5163 if (key->addr.type == BDADDR_LE_PUBLIC)
5164 addr_type = ADDR_LE_DEV_PUBLIC;
5165 else
5166 addr_type = ADDR_LE_DEV_RANDOM;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005167
Johan Hedberg61b43352014-05-29 19:36:53 +03005168 switch (key->type) {
5169 case MGMT_LTK_UNAUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03005170 authenticated = 0x00;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005171 type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
Johan Hedberg61b43352014-05-29 19:36:53 +03005172 break;
5173 case MGMT_LTK_AUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03005174 authenticated = 0x01;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005175 type = key->master ? SMP_LTK : SMP_LTK_SLAVE;
Johan Hedberg61b43352014-05-29 19:36:53 +03005176 break;
Johan Hedberg23fb8de2014-05-23 13:15:37 +03005177 case MGMT_LTK_P256_UNAUTH:
5178 authenticated = 0x00;
5179 type = SMP_LTK_P256;
5180 break;
5181 case MGMT_LTK_P256_AUTH:
5182 authenticated = 0x01;
5183 type = SMP_LTK_P256;
5184 break;
5185 case MGMT_LTK_P256_DEBUG:
5186 authenticated = 0x00;
5187 type = SMP_LTK_P256_DEBUG;
Johan Hedberg61b43352014-05-29 19:36:53 +03005188 default:
5189 continue;
5190 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03005191
Johan Hedberg35d70272014-02-19 14:57:47 +02005192 hci_add_ltk(hdev, &key->addr.bdaddr, addr_type, type,
Johan Hedbergd7b25452014-05-23 13:19:53 +03005193 authenticated, key->val, key->enc_size, key->ediv,
Johan Hedberg35d70272014-02-19 14:57:47 +02005194 key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005195 }
5196
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005197 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
5198 NULL, 0);
5199
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005200 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005201
Johan Hedberg715a5bf2013-01-09 15:29:34 +02005202 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005203}
5204
Johan Hedberg9df74652014-12-19 22:26:03 +02005205static int conn_info_cmd_complete(struct pending_cmd *cmd, u8 status)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005206{
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005207 struct hci_conn *conn = cmd->user_data;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005208 struct mgmt_rp_get_conn_info rp;
Johan Hedberg9df74652014-12-19 22:26:03 +02005209 int err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005210
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005211 memcpy(&rp.addr, cmd->param, sizeof(rp.addr));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005212
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005213 if (status == MGMT_STATUS_SUCCESS) {
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005214 rp.rssi = conn->rssi;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005215 rp.tx_power = conn->tx_power;
5216 rp.max_tx_power = conn->max_tx_power;
5217 } else {
5218 rp.rssi = HCI_RSSI_INVALID;
5219 rp.tx_power = HCI_TX_POWER_INVALID;
5220 rp.max_tx_power = HCI_TX_POWER_INVALID;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005221 }
5222
Johan Hedberg9df74652014-12-19 22:26:03 +02005223 err = cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO, status,
5224 &rp, sizeof(rp));
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005225
5226 hci_conn_drop(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005227 hci_conn_put(conn);
Johan Hedberg9df74652014-12-19 22:26:03 +02005228
5229 return err;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005230}
5231
Marcel Holtmann1904a852015-01-11 13:50:44 -08005232static void conn_info_refresh_complete(struct hci_dev *hdev, u8 hci_status,
5233 u16 opcode)
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005234{
5235 struct hci_cp_read_rssi *cp;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005236 struct pending_cmd *cmd;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005237 struct hci_conn *conn;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005238 u16 handle;
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005239 u8 status;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005240
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005241 BT_DBG("status 0x%02x", hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005242
5243 hci_dev_lock(hdev);
5244
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005245 /* Commands sent in request are either Read RSSI or Read Transmit Power
5246 * Level so we check which one was last sent to retrieve connection
5247 * handle. Both commands have handle as first parameter so it's safe to
5248 * cast data on the same command struct.
5249 *
5250 * First command sent is always Read RSSI and we fail only if it fails.
5251 * In other case we simply override error to indicate success as we
5252 * already remembered if TX power value is actually valid.
5253 */
5254 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI);
5255 if (!cp) {
5256 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005257 status = MGMT_STATUS_SUCCESS;
5258 } else {
5259 status = mgmt_status(hci_status);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005260 }
5261
5262 if (!cp) {
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005263 BT_ERR("invalid sent_cmd in conn_info response");
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005264 goto unlock;
5265 }
5266
5267 handle = __le16_to_cpu(cp->handle);
5268 conn = hci_conn_hash_lookup_handle(hdev, handle);
5269 if (!conn) {
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005270 BT_ERR("unknown handle (%d) in conn_info response", handle);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005271 goto unlock;
5272 }
5273
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005274 cmd = mgmt_pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn);
5275 if (!cmd)
5276 goto unlock;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005277
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005278 cmd->cmd_complete(cmd, status);
5279 mgmt_pending_remove(cmd);
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005280
5281unlock:
5282 hci_dev_unlock(hdev);
5283}
5284
5285static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data,
5286 u16 len)
5287{
5288 struct mgmt_cp_get_conn_info *cp = data;
5289 struct mgmt_rp_get_conn_info rp;
5290 struct hci_conn *conn;
5291 unsigned long conn_info_age;
5292 int err = 0;
5293
5294 BT_DBG("%s", hdev->name);
5295
5296 memset(&rp, 0, sizeof(rp));
5297 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5298 rp.addr.type = cp->addr.type;
5299
5300 if (!bdaddr_type_is_valid(cp->addr.type))
5301 return cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5302 MGMT_STATUS_INVALID_PARAMS,
5303 &rp, sizeof(rp));
5304
5305 hci_dev_lock(hdev);
5306
5307 if (!hdev_is_powered(hdev)) {
5308 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5309 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
5310 goto unlock;
5311 }
5312
5313 if (cp->addr.type == BDADDR_BREDR)
5314 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
5315 &cp->addr.bdaddr);
5316 else
5317 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
5318
5319 if (!conn || conn->state != BT_CONNECTED) {
5320 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5321 MGMT_STATUS_NOT_CONNECTED, &rp, sizeof(rp));
5322 goto unlock;
5323 }
5324
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005325 if (mgmt_pending_find_data(MGMT_OP_GET_CONN_INFO, hdev, conn)) {
5326 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5327 MGMT_STATUS_BUSY, &rp, sizeof(rp));
5328 goto unlock;
5329 }
5330
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005331 /* To avoid client trying to guess when to poll again for information we
5332 * calculate conn info age as random value between min/max set in hdev.
5333 */
5334 conn_info_age = hdev->conn_info_min_age +
5335 prandom_u32_max(hdev->conn_info_max_age -
5336 hdev->conn_info_min_age);
5337
5338 /* Query controller to refresh cached values if they are too old or were
5339 * never read.
5340 */
Andrzej Kaczmarekf4e2dd52014-05-16 16:48:57 +02005341 if (time_after(jiffies, conn->conn_info_timestamp +
5342 msecs_to_jiffies(conn_info_age)) ||
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005343 !conn->conn_info_timestamp) {
5344 struct hci_request req;
5345 struct hci_cp_read_tx_power req_txp_cp;
5346 struct hci_cp_read_rssi req_rssi_cp;
5347 struct pending_cmd *cmd;
5348
5349 hci_req_init(&req, hdev);
5350 req_rssi_cp.handle = cpu_to_le16(conn->handle);
5351 hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp),
5352 &req_rssi_cp);
5353
Andrzej Kaczmarekf7faab02014-05-14 13:43:04 +02005354 /* For LE links TX power does not change thus we don't need to
5355 * query for it once value is known.
5356 */
5357 if (!bdaddr_type_is_le(cp->addr.type) ||
5358 conn->tx_power == HCI_TX_POWER_INVALID) {
5359 req_txp_cp.handle = cpu_to_le16(conn->handle);
5360 req_txp_cp.type = 0x00;
5361 hci_req_add(&req, HCI_OP_READ_TX_POWER,
5362 sizeof(req_txp_cp), &req_txp_cp);
5363 }
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005364
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02005365 /* Max TX power needs to be read only once per connection */
5366 if (conn->max_tx_power == HCI_TX_POWER_INVALID) {
5367 req_txp_cp.handle = cpu_to_le16(conn->handle);
5368 req_txp_cp.type = 0x01;
5369 hci_req_add(&req, HCI_OP_READ_TX_POWER,
5370 sizeof(req_txp_cp), &req_txp_cp);
5371 }
5372
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005373 err = hci_req_run(&req, conn_info_refresh_complete);
5374 if (err < 0)
5375 goto unlock;
5376
5377 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CONN_INFO, hdev,
5378 data, len);
5379 if (!cmd) {
5380 err = -ENOMEM;
5381 goto unlock;
5382 }
5383
5384 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005385 cmd->user_data = hci_conn_get(conn);
Johan Hedberg9981bdb2014-12-05 13:42:57 +02005386 cmd->cmd_complete = conn_info_cmd_complete;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005387
5388 conn->conn_info_timestamp = jiffies;
5389 } else {
5390 /* Cache is valid, just reply with values cached in hci_conn */
5391 rp.rssi = conn->rssi;
5392 rp.tx_power = conn->tx_power;
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02005393 rp.max_tx_power = conn->max_tx_power;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02005394
5395 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
5396 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
5397 }
5398
5399unlock:
5400 hci_dev_unlock(hdev);
5401 return err;
5402}
5403
Johan Hedberg9df74652014-12-19 22:26:03 +02005404static int clock_info_cmd_complete(struct pending_cmd *cmd, u8 status)
Johan Hedberg69487372014-12-05 13:36:07 +02005405{
5406 struct hci_conn *conn = cmd->user_data;
5407 struct mgmt_rp_get_clock_info rp;
5408 struct hci_dev *hdev;
Johan Hedberg9df74652014-12-19 22:26:03 +02005409 int err;
Johan Hedberg69487372014-12-05 13:36:07 +02005410
5411 memset(&rp, 0, sizeof(rp));
5412 memcpy(&rp.addr, &cmd->param, sizeof(rp.addr));
5413
5414 if (status)
5415 goto complete;
5416
5417 hdev = hci_dev_get(cmd->index);
5418 if (hdev) {
5419 rp.local_clock = cpu_to_le32(hdev->clock);
5420 hci_dev_put(hdev);
5421 }
5422
5423 if (conn) {
5424 rp.piconet_clock = cpu_to_le32(conn->clock);
5425 rp.accuracy = cpu_to_le16(conn->clock_accuracy);
5426 }
5427
5428complete:
Johan Hedberg9df74652014-12-19 22:26:03 +02005429 err = cmd_complete(cmd->sk, cmd->index, cmd->opcode, status, &rp,
5430 sizeof(rp));
Johan Hedberg69487372014-12-05 13:36:07 +02005431
5432 if (conn) {
5433 hci_conn_drop(conn);
5434 hci_conn_put(conn);
5435 }
Johan Hedberg9df74652014-12-19 22:26:03 +02005436
5437 return err;
Johan Hedberg69487372014-12-05 13:36:07 +02005438}
5439
Marcel Holtmann1904a852015-01-11 13:50:44 -08005440static void get_clock_info_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg95868422014-06-28 17:54:07 +03005441{
Johan Hedberg95868422014-06-28 17:54:07 +03005442 struct hci_cp_read_clock *hci_cp;
5443 struct pending_cmd *cmd;
5444 struct hci_conn *conn;
5445
5446 BT_DBG("%s status %u", hdev->name, status);
5447
5448 hci_dev_lock(hdev);
5449
5450 hci_cp = hci_sent_cmd_data(hdev, HCI_OP_READ_CLOCK);
5451 if (!hci_cp)
5452 goto unlock;
5453
5454 if (hci_cp->which) {
5455 u16 handle = __le16_to_cpu(hci_cp->handle);
5456 conn = hci_conn_hash_lookup_handle(hdev, handle);
5457 } else {
5458 conn = NULL;
5459 }
5460
5461 cmd = mgmt_pending_find_data(MGMT_OP_GET_CLOCK_INFO, hdev, conn);
5462 if (!cmd)
5463 goto unlock;
5464
Johan Hedberg69487372014-12-05 13:36:07 +02005465 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberg95868422014-06-28 17:54:07 +03005466 mgmt_pending_remove(cmd);
Johan Hedberg95868422014-06-28 17:54:07 +03005467
5468unlock:
5469 hci_dev_unlock(hdev);
5470}
5471
5472static int get_clock_info(struct sock *sk, struct hci_dev *hdev, void *data,
5473 u16 len)
5474{
5475 struct mgmt_cp_get_clock_info *cp = data;
5476 struct mgmt_rp_get_clock_info rp;
5477 struct hci_cp_read_clock hci_cp;
5478 struct pending_cmd *cmd;
5479 struct hci_request req;
5480 struct hci_conn *conn;
5481 int err;
5482
5483 BT_DBG("%s", hdev->name);
5484
5485 memset(&rp, 0, sizeof(rp));
5486 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5487 rp.addr.type = cp->addr.type;
5488
5489 if (cp->addr.type != BDADDR_BREDR)
5490 return cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
5491 MGMT_STATUS_INVALID_PARAMS,
5492 &rp, sizeof(rp));
5493
5494 hci_dev_lock(hdev);
5495
5496 if (!hdev_is_powered(hdev)) {
5497 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CLOCK_INFO,
5498 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
5499 goto unlock;
5500 }
5501
5502 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
5503 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
5504 &cp->addr.bdaddr);
5505 if (!conn || conn->state != BT_CONNECTED) {
5506 err = cmd_complete(sk, hdev->id,
5507 MGMT_OP_GET_CLOCK_INFO,
5508 MGMT_STATUS_NOT_CONNECTED,
5509 &rp, sizeof(rp));
5510 goto unlock;
5511 }
5512 } else {
5513 conn = NULL;
5514 }
5515
5516 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CLOCK_INFO, hdev, data, len);
5517 if (!cmd) {
5518 err = -ENOMEM;
5519 goto unlock;
5520 }
5521
Johan Hedberg69487372014-12-05 13:36:07 +02005522 cmd->cmd_complete = clock_info_cmd_complete;
5523
Johan Hedberg95868422014-06-28 17:54:07 +03005524 hci_req_init(&req, hdev);
5525
5526 memset(&hci_cp, 0, sizeof(hci_cp));
5527 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
5528
5529 if (conn) {
5530 hci_conn_hold(conn);
Johan Hedbergf8aaf9b2014-08-17 23:28:57 +03005531 cmd->user_data = hci_conn_get(conn);
Johan Hedberg95868422014-06-28 17:54:07 +03005532
5533 hci_cp.handle = cpu_to_le16(conn->handle);
5534 hci_cp.which = 0x01; /* Piconet clock */
5535 hci_req_add(&req, HCI_OP_READ_CLOCK, sizeof(hci_cp), &hci_cp);
5536 }
5537
5538 err = hci_req_run(&req, get_clock_info_complete);
5539 if (err < 0)
5540 mgmt_pending_remove(cmd);
5541
5542unlock:
5543 hci_dev_unlock(hdev);
5544 return err;
5545}
5546
Johan Hedberg5a154e62014-12-19 22:26:02 +02005547static bool is_connected(struct hci_dev *hdev, bdaddr_t *addr, u8 type)
5548{
5549 struct hci_conn *conn;
5550
5551 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, addr);
5552 if (!conn)
5553 return false;
5554
5555 if (conn->dst_type != type)
5556 return false;
5557
5558 if (conn->state != BT_CONNECTED)
5559 return false;
5560
5561 return true;
5562}
5563
5564/* This function requires the caller holds hdev->lock */
5565static int hci_conn_params_set(struct hci_request *req, bdaddr_t *addr,
5566 u8 addr_type, u8 auto_connect)
5567{
5568 struct hci_dev *hdev = req->hdev;
5569 struct hci_conn_params *params;
5570
5571 params = hci_conn_params_add(hdev, addr, addr_type);
5572 if (!params)
5573 return -EIO;
5574
5575 if (params->auto_connect == auto_connect)
5576 return 0;
5577
5578 list_del_init(&params->action);
5579
5580 switch (auto_connect) {
5581 case HCI_AUTO_CONN_DISABLED:
5582 case HCI_AUTO_CONN_LINK_LOSS:
5583 __hci_update_background_scan(req);
5584 break;
5585 case HCI_AUTO_CONN_REPORT:
5586 list_add(&params->action, &hdev->pend_le_reports);
5587 __hci_update_background_scan(req);
5588 break;
5589 case HCI_AUTO_CONN_DIRECT:
5590 case HCI_AUTO_CONN_ALWAYS:
5591 if (!is_connected(hdev, addr, addr_type)) {
5592 list_add(&params->action, &hdev->pend_le_conns);
5593 __hci_update_background_scan(req);
5594 }
5595 break;
5596 }
5597
5598 params->auto_connect = auto_connect;
5599
5600 BT_DBG("addr %pMR (type %u) auto_connect %u", addr, addr_type,
5601 auto_connect);
5602
5603 return 0;
5604}
5605
Marcel Holtmann8afef092014-06-29 22:28:34 +02005606static void device_added(struct sock *sk, struct hci_dev *hdev,
5607 bdaddr_t *bdaddr, u8 type, u8 action)
5608{
5609 struct mgmt_ev_device_added ev;
5610
5611 bacpy(&ev.addr.bdaddr, bdaddr);
5612 ev.addr.type = type;
5613 ev.action = action;
5614
5615 mgmt_event(MGMT_EV_DEVICE_ADDED, hdev, &ev, sizeof(ev), sk);
5616}
5617
Marcel Holtmann1904a852015-01-11 13:50:44 -08005618static void add_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg5a154e62014-12-19 22:26:02 +02005619{
5620 struct pending_cmd *cmd;
5621
5622 BT_DBG("status 0x%02x", status);
5623
5624 hci_dev_lock(hdev);
5625
5626 cmd = mgmt_pending_find(MGMT_OP_ADD_DEVICE, hdev);
5627 if (!cmd)
5628 goto unlock;
5629
5630 cmd->cmd_complete(cmd, mgmt_status(status));
5631 mgmt_pending_remove(cmd);
5632
5633unlock:
5634 hci_dev_unlock(hdev);
5635}
5636
Marcel Holtmann2faade52014-06-29 19:44:03 +02005637static int add_device(struct sock *sk, struct hci_dev *hdev,
5638 void *data, u16 len)
5639{
5640 struct mgmt_cp_add_device *cp = data;
Johan Hedberg5a154e62014-12-19 22:26:02 +02005641 struct pending_cmd *cmd;
5642 struct hci_request req;
Marcel Holtmann2faade52014-06-29 19:44:03 +02005643 u8 auto_conn, addr_type;
5644 int err;
5645
5646 BT_DBG("%s", hdev->name);
5647
Johan Hedberg66593582014-07-09 12:59:14 +03005648 if (!bdaddr_type_is_valid(cp->addr.type) ||
Marcel Holtmann2faade52014-06-29 19:44:03 +02005649 !bacmp(&cp->addr.bdaddr, BDADDR_ANY))
5650 return cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
5651 MGMT_STATUS_INVALID_PARAMS,
5652 &cp->addr, sizeof(cp->addr));
5653
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02005654 if (cp->action != 0x00 && cp->action != 0x01 && cp->action != 0x02)
Marcel Holtmann2faade52014-06-29 19:44:03 +02005655 return cmd_complete(sk, hdev->id, MGMT_OP_ADD_DEVICE,
5656 MGMT_STATUS_INVALID_PARAMS,
5657 &cp->addr, sizeof(cp->addr));
5658
Johan Hedberg5a154e62014-12-19 22:26:02 +02005659 hci_req_init(&req, hdev);
5660
Marcel Holtmann2faade52014-06-29 19:44:03 +02005661 hci_dev_lock(hdev);
5662
Johan Hedberg5a154e62014-12-19 22:26:02 +02005663 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_DEVICE, hdev, data, len);
5664 if (!cmd) {
5665 err = -ENOMEM;
5666 goto unlock;
5667 }
5668
5669 cmd->cmd_complete = addr_cmd_complete;
5670
Johan Hedberg66593582014-07-09 12:59:14 +03005671 if (cp->addr.type == BDADDR_BREDR) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02005672 /* Only incoming connections action is supported for now */
Johan Hedberg66593582014-07-09 12:59:14 +03005673 if (cp->action != 0x01) {
Johan Hedberg9df74652014-12-19 22:26:03 +02005674 err = cmd->cmd_complete(cmd,
5675 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg5a154e62014-12-19 22:26:02 +02005676 mgmt_pending_remove(cmd);
Johan Hedberg66593582014-07-09 12:59:14 +03005677 goto unlock;
5678 }
5679
5680 err = hci_bdaddr_list_add(&hdev->whitelist, &cp->addr.bdaddr,
5681 cp->addr.type);
5682 if (err)
5683 goto unlock;
Johan Hedberga3974072014-07-09 12:59:15 +03005684
Johan Hedberg5a154e62014-12-19 22:26:02 +02005685 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03005686
Johan Hedberg66593582014-07-09 12:59:14 +03005687 goto added;
5688 }
5689
Marcel Holtmann2faade52014-06-29 19:44:03 +02005690 if (cp->addr.type == BDADDR_LE_PUBLIC)
5691 addr_type = ADDR_LE_DEV_PUBLIC;
5692 else
5693 addr_type = ADDR_LE_DEV_RANDOM;
5694
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02005695 if (cp->action == 0x02)
Marcel Holtmann2faade52014-06-29 19:44:03 +02005696 auto_conn = HCI_AUTO_CONN_ALWAYS;
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02005697 else if (cp->action == 0x01)
5698 auto_conn = HCI_AUTO_CONN_DIRECT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02005699 else
Johan Hedberga3451d22014-07-02 17:37:27 +03005700 auto_conn = HCI_AUTO_CONN_REPORT;
Marcel Holtmann2faade52014-06-29 19:44:03 +02005701
Marcel Holtmannbf5b3c82014-06-30 12:34:39 +02005702 /* If the connection parameters don't exist for this device,
5703 * they will be created and configured with defaults.
5704 */
Johan Hedberg5a154e62014-12-19 22:26:02 +02005705 if (hci_conn_params_set(&req, &cp->addr.bdaddr, addr_type,
Marcel Holtmannd06b50c2014-07-01 12:11:06 +02005706 auto_conn) < 0) {
Johan Hedberg9df74652014-12-19 22:26:03 +02005707 err = cmd->cmd_complete(cmd, MGMT_STATUS_FAILED);
Johan Hedberg5a154e62014-12-19 22:26:02 +02005708 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02005709 goto unlock;
5710 }
5711
Johan Hedberg66593582014-07-09 12:59:14 +03005712added:
Marcel Holtmann8afef092014-06-29 22:28:34 +02005713 device_added(sk, hdev, &cp->addr.bdaddr, cp->addr.type, cp->action);
5714
Johan Hedberg5a154e62014-12-19 22:26:02 +02005715 err = hci_req_run(&req, add_device_complete);
5716 if (err < 0) {
5717 /* ENODATA means no HCI commands were needed (e.g. if
5718 * the adapter is powered off).
5719 */
Johan Hedberg9df74652014-12-19 22:26:03 +02005720 if (err == -ENODATA)
5721 err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
Johan Hedberg5a154e62014-12-19 22:26:02 +02005722 mgmt_pending_remove(cmd);
5723 }
Marcel Holtmann2faade52014-06-29 19:44:03 +02005724
5725unlock:
5726 hci_dev_unlock(hdev);
5727 return err;
5728}
5729
Marcel Holtmann8afef092014-06-29 22:28:34 +02005730static void device_removed(struct sock *sk, struct hci_dev *hdev,
5731 bdaddr_t *bdaddr, u8 type)
5732{
5733 struct mgmt_ev_device_removed ev;
5734
5735 bacpy(&ev.addr.bdaddr, bdaddr);
5736 ev.addr.type = type;
5737
5738 mgmt_event(MGMT_EV_DEVICE_REMOVED, hdev, &ev, sizeof(ev), sk);
5739}
5740
Marcel Holtmann1904a852015-01-11 13:50:44 -08005741static void remove_device_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005742{
5743 struct pending_cmd *cmd;
5744
5745 BT_DBG("status 0x%02x", status);
5746
5747 hci_dev_lock(hdev);
5748
5749 cmd = mgmt_pending_find(MGMT_OP_REMOVE_DEVICE, hdev);
5750 if (!cmd)
5751 goto unlock;
5752
5753 cmd->cmd_complete(cmd, mgmt_status(status));
5754 mgmt_pending_remove(cmd);
5755
5756unlock:
5757 hci_dev_unlock(hdev);
5758}
5759
Marcel Holtmann2faade52014-06-29 19:44:03 +02005760static int remove_device(struct sock *sk, struct hci_dev *hdev,
5761 void *data, u16 len)
5762{
5763 struct mgmt_cp_remove_device *cp = data;
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005764 struct pending_cmd *cmd;
5765 struct hci_request req;
Marcel Holtmann2faade52014-06-29 19:44:03 +02005766 int err;
5767
5768 BT_DBG("%s", hdev->name);
5769
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005770 hci_req_init(&req, hdev);
5771
Marcel Holtmann2faade52014-06-29 19:44:03 +02005772 hci_dev_lock(hdev);
5773
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005774 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_DEVICE, hdev, data, len);
5775 if (!cmd) {
5776 err = -ENOMEM;
5777 goto unlock;
5778 }
5779
5780 cmd->cmd_complete = addr_cmd_complete;
5781
Marcel Holtmann2faade52014-06-29 19:44:03 +02005782 if (bacmp(&cp->addr.bdaddr, BDADDR_ANY)) {
Johan Hedbergc71593d2014-07-02 17:37:28 +03005783 struct hci_conn_params *params;
Marcel Holtmann2faade52014-06-29 19:44:03 +02005784 u8 addr_type;
5785
Johan Hedberg66593582014-07-09 12:59:14 +03005786 if (!bdaddr_type_is_valid(cp->addr.type)) {
Johan Hedberg9df74652014-12-19 22:26:03 +02005787 err = cmd->cmd_complete(cmd,
5788 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005789 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02005790 goto unlock;
5791 }
5792
Johan Hedberg66593582014-07-09 12:59:14 +03005793 if (cp->addr.type == BDADDR_BREDR) {
5794 err = hci_bdaddr_list_del(&hdev->whitelist,
5795 &cp->addr.bdaddr,
5796 cp->addr.type);
5797 if (err) {
Johan Hedberg9df74652014-12-19 22:26:03 +02005798 err = cmd->cmd_complete(cmd,
5799 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005800 mgmt_pending_remove(cmd);
Johan Hedberg66593582014-07-09 12:59:14 +03005801 goto unlock;
5802 }
5803
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005804 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03005805
Johan Hedberg66593582014-07-09 12:59:14 +03005806 device_removed(sk, hdev, &cp->addr.bdaddr,
5807 cp->addr.type);
5808 goto complete;
5809 }
5810
Marcel Holtmann2faade52014-06-29 19:44:03 +02005811 if (cp->addr.type == BDADDR_LE_PUBLIC)
5812 addr_type = ADDR_LE_DEV_PUBLIC;
5813 else
5814 addr_type = ADDR_LE_DEV_RANDOM;
5815
Johan Hedbergc71593d2014-07-02 17:37:28 +03005816 params = hci_conn_params_lookup(hdev, &cp->addr.bdaddr,
5817 addr_type);
5818 if (!params) {
Johan Hedberg9df74652014-12-19 22:26:03 +02005819 err = cmd->cmd_complete(cmd,
5820 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005821 mgmt_pending_remove(cmd);
Johan Hedbergc71593d2014-07-02 17:37:28 +03005822 goto unlock;
5823 }
5824
5825 if (params->auto_connect == HCI_AUTO_CONN_DISABLED) {
Johan Hedberg9df74652014-12-19 22:26:03 +02005826 err = cmd->cmd_complete(cmd,
5827 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005828 mgmt_pending_remove(cmd);
Johan Hedbergc71593d2014-07-02 17:37:28 +03005829 goto unlock;
5830 }
5831
Johan Hedbergd1dbf122014-07-04 16:17:23 +03005832 list_del(&params->action);
Johan Hedbergc71593d2014-07-02 17:37:28 +03005833 list_del(&params->list);
5834 kfree(params);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005835 __hci_update_background_scan(&req);
Marcel Holtmann8afef092014-06-29 22:28:34 +02005836
5837 device_removed(sk, hdev, &cp->addr.bdaddr, cp->addr.type);
Marcel Holtmann2faade52014-06-29 19:44:03 +02005838 } else {
Johan Hedberg19de0822014-07-06 13:06:51 +03005839 struct hci_conn_params *p, *tmp;
Johan Hedberg66593582014-07-09 12:59:14 +03005840 struct bdaddr_list *b, *btmp;
Johan Hedberg19de0822014-07-06 13:06:51 +03005841
Marcel Holtmann2faade52014-06-29 19:44:03 +02005842 if (cp->addr.type) {
Johan Hedberg9df74652014-12-19 22:26:03 +02005843 err = cmd->cmd_complete(cmd,
5844 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005845 mgmt_pending_remove(cmd);
Marcel Holtmann2faade52014-06-29 19:44:03 +02005846 goto unlock;
5847 }
5848
Johan Hedberg66593582014-07-09 12:59:14 +03005849 list_for_each_entry_safe(b, btmp, &hdev->whitelist, list) {
5850 device_removed(sk, hdev, &b->bdaddr, b->bdaddr_type);
5851 list_del(&b->list);
5852 kfree(b);
5853 }
5854
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005855 __hci_update_page_scan(&req);
Johan Hedberga3974072014-07-09 12:59:15 +03005856
Johan Hedberg19de0822014-07-06 13:06:51 +03005857 list_for_each_entry_safe(p, tmp, &hdev->le_conn_params, list) {
5858 if (p->auto_connect == HCI_AUTO_CONN_DISABLED)
5859 continue;
5860 device_removed(sk, hdev, &p->addr, p->addr_type);
5861 list_del(&p->action);
5862 list_del(&p->list);
5863 kfree(p);
5864 }
5865
5866 BT_DBG("All LE connection parameters were removed");
5867
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005868 __hci_update_background_scan(&req);
Marcel Holtmann2faade52014-06-29 19:44:03 +02005869 }
5870
Johan Hedberg66593582014-07-09 12:59:14 +03005871complete:
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005872 err = hci_req_run(&req, remove_device_complete);
5873 if (err < 0) {
5874 /* ENODATA means no HCI commands were needed (e.g. if
5875 * the adapter is powered off).
5876 */
Johan Hedberg9df74652014-12-19 22:26:03 +02005877 if (err == -ENODATA)
5878 err = cmd->cmd_complete(cmd, MGMT_STATUS_SUCCESS);
Johan Hedberg51ef3eb2014-12-19 22:26:01 +02005879 mgmt_pending_remove(cmd);
5880 }
Marcel Holtmann2faade52014-06-29 19:44:03 +02005881
5882unlock:
5883 hci_dev_unlock(hdev);
5884 return err;
5885}
5886
Johan Hedberga26f3dc2014-07-02 17:37:29 +03005887static int load_conn_param(struct sock *sk, struct hci_dev *hdev, void *data,
5888 u16 len)
5889{
5890 struct mgmt_cp_load_conn_param *cp = data;
Johan Hedbergba1d6932014-07-03 13:52:27 +03005891 const u16 max_param_count = ((U16_MAX - sizeof(*cp)) /
5892 sizeof(struct mgmt_conn_param));
Johan Hedberga26f3dc2014-07-02 17:37:29 +03005893 u16 param_count, expected_len;
5894 int i;
5895
5896 if (!lmp_le_capable(hdev))
5897 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
5898 MGMT_STATUS_NOT_SUPPORTED);
5899
5900 param_count = __le16_to_cpu(cp->param_count);
Johan Hedbergba1d6932014-07-03 13:52:27 +03005901 if (param_count > max_param_count) {
5902 BT_ERR("load_conn_param: too big param_count value %u",
5903 param_count);
5904 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
5905 MGMT_STATUS_INVALID_PARAMS);
5906 }
Johan Hedberga26f3dc2014-07-02 17:37:29 +03005907
5908 expected_len = sizeof(*cp) + param_count *
5909 sizeof(struct mgmt_conn_param);
5910 if (expected_len != len) {
5911 BT_ERR("load_conn_param: expected %u bytes, got %u bytes",
5912 expected_len, len);
5913 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM,
5914 MGMT_STATUS_INVALID_PARAMS);
5915 }
5916
5917 BT_DBG("%s param_count %u", hdev->name, param_count);
5918
5919 hci_dev_lock(hdev);
5920
5921 hci_conn_params_clear_disabled(hdev);
5922
5923 for (i = 0; i < param_count; i++) {
5924 struct mgmt_conn_param *param = &cp->params[i];
5925 struct hci_conn_params *hci_param;
5926 u16 min, max, latency, timeout;
5927 u8 addr_type;
5928
5929 BT_DBG("Adding %pMR (type %u)", &param->addr.bdaddr,
5930 param->addr.type);
5931
5932 if (param->addr.type == BDADDR_LE_PUBLIC) {
5933 addr_type = ADDR_LE_DEV_PUBLIC;
5934 } else if (param->addr.type == BDADDR_LE_RANDOM) {
5935 addr_type = ADDR_LE_DEV_RANDOM;
5936 } else {
5937 BT_ERR("Ignoring invalid connection parameters");
5938 continue;
5939 }
5940
5941 min = le16_to_cpu(param->min_interval);
5942 max = le16_to_cpu(param->max_interval);
5943 latency = le16_to_cpu(param->latency);
5944 timeout = le16_to_cpu(param->timeout);
5945
5946 BT_DBG("min 0x%04x max 0x%04x latency 0x%04x timeout 0x%04x",
5947 min, max, latency, timeout);
5948
5949 if (hci_check_conn_params(min, max, latency, timeout) < 0) {
5950 BT_ERR("Ignoring invalid connection parameters");
5951 continue;
5952 }
5953
5954 hci_param = hci_conn_params_add(hdev, &param->addr.bdaddr,
5955 addr_type);
5956 if (!hci_param) {
5957 BT_ERR("Failed to add connection parameters");
5958 continue;
5959 }
5960
5961 hci_param->conn_min_interval = min;
5962 hci_param->conn_max_interval = max;
5963 hci_param->conn_latency = latency;
5964 hci_param->supervision_timeout = timeout;
5965 }
5966
5967 hci_dev_unlock(hdev);
5968
5969 return cmd_complete(sk, hdev->id, MGMT_OP_LOAD_CONN_PARAM, 0, NULL, 0);
5970}
5971
Marcel Holtmanndbece372014-07-04 18:11:55 +02005972static int set_external_config(struct sock *sk, struct hci_dev *hdev,
5973 void *data, u16 len)
5974{
5975 struct mgmt_cp_set_external_config *cp = data;
5976 bool changed;
5977 int err;
5978
5979 BT_DBG("%s", hdev->name);
5980
5981 if (hdev_is_powered(hdev))
5982 return cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
5983 MGMT_STATUS_REJECTED);
5984
5985 if (cp->config != 0x00 && cp->config != 0x01)
5986 return cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
5987 MGMT_STATUS_INVALID_PARAMS);
5988
5989 if (!test_bit(HCI_QUIRK_EXTERNAL_CONFIG, &hdev->quirks))
5990 return cmd_status(sk, hdev->id, MGMT_OP_SET_EXTERNAL_CONFIG,
5991 MGMT_STATUS_NOT_SUPPORTED);
5992
5993 hci_dev_lock(hdev);
5994
5995 if (cp->config)
5996 changed = !test_and_set_bit(HCI_EXT_CONFIGURED,
5997 &hdev->dev_flags);
5998 else
5999 changed = test_and_clear_bit(HCI_EXT_CONFIGURED,
6000 &hdev->dev_flags);
6001
6002 err = send_options_rsp(sk, MGMT_OP_SET_EXTERNAL_CONFIG, hdev);
6003 if (err < 0)
6004 goto unlock;
6005
6006 if (!changed)
6007 goto unlock;
6008
Marcel Holtmannf4537c02014-07-04 19:06:23 +02006009 err = new_options(hdev, sk);
6010
Marcel Holtmanndbece372014-07-04 18:11:55 +02006011 if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags) == is_configured(hdev)) {
6012 mgmt_index_removed(hdev);
Marcel Holtmannd603b762014-07-06 12:11:14 +02006013
6014 if (test_and_change_bit(HCI_UNCONFIGURED, &hdev->dev_flags)) {
6015 set_bit(HCI_CONFIG, &hdev->dev_flags);
6016 set_bit(HCI_AUTO_OFF, &hdev->dev_flags);
6017
6018 queue_work(hdev->req_workqueue, &hdev->power_on);
6019 } else {
Marcel Holtmann5ea234d2014-07-06 12:11:16 +02006020 set_bit(HCI_RAW, &hdev->flags);
Marcel Holtmannd603b762014-07-06 12:11:14 +02006021 mgmt_index_added(hdev);
6022 }
Marcel Holtmanndbece372014-07-04 18:11:55 +02006023 }
6024
6025unlock:
6026 hci_dev_unlock(hdev);
6027 return err;
6028}
6029
Marcel Holtmann9713c172014-07-06 12:11:15 +02006030static int set_public_address(struct sock *sk, struct hci_dev *hdev,
6031 void *data, u16 len)
6032{
6033 struct mgmt_cp_set_public_address *cp = data;
6034 bool changed;
6035 int err;
6036
6037 BT_DBG("%s", hdev->name);
6038
6039 if (hdev_is_powered(hdev))
6040 return cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6041 MGMT_STATUS_REJECTED);
6042
6043 if (!bacmp(&cp->bdaddr, BDADDR_ANY))
6044 return cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6045 MGMT_STATUS_INVALID_PARAMS);
6046
6047 if (!hdev->set_bdaddr)
6048 return cmd_status(sk, hdev->id, MGMT_OP_SET_PUBLIC_ADDRESS,
6049 MGMT_STATUS_NOT_SUPPORTED);
6050
6051 hci_dev_lock(hdev);
6052
6053 changed = !!bacmp(&hdev->public_addr, &cp->bdaddr);
6054 bacpy(&hdev->public_addr, &cp->bdaddr);
6055
6056 err = send_options_rsp(sk, MGMT_OP_SET_PUBLIC_ADDRESS, hdev);
6057 if (err < 0)
6058 goto unlock;
6059
6060 if (!changed)
6061 goto unlock;
6062
6063 if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags))
6064 err = new_options(hdev, sk);
6065
6066 if (is_configured(hdev)) {
6067 mgmt_index_removed(hdev);
6068
6069 clear_bit(HCI_UNCONFIGURED, &hdev->dev_flags);
6070
6071 set_bit(HCI_CONFIG, &hdev->dev_flags);
6072 set_bit(HCI_AUTO_OFF, &hdev->dev_flags);
6073
6074 queue_work(hdev->req_workqueue, &hdev->power_on);
6075 }
6076
6077unlock:
6078 hci_dev_unlock(hdev);
6079 return err;
6080}
6081
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02006082static const struct mgmt_handler {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006083 int (*func) (struct sock *sk, struct hci_dev *hdev, void *data,
6084 u16 data_len);
Johan Hedbergbe22b542012-03-01 22:24:41 +02006085 bool var_len;
6086 size_t data_len;
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02006087} mgmt_handlers[] = {
6088 { NULL }, /* 0x0000 (no command) */
Johan Hedbergbe22b542012-03-01 22:24:41 +02006089 { read_version, false, MGMT_READ_VERSION_SIZE },
6090 { read_commands, false, MGMT_READ_COMMANDS_SIZE },
6091 { read_index_list, false, MGMT_READ_INDEX_LIST_SIZE },
6092 { read_controller_info, false, MGMT_READ_INFO_SIZE },
6093 { set_powered, false, MGMT_SETTING_SIZE },
6094 { set_discoverable, false, MGMT_SET_DISCOVERABLE_SIZE },
6095 { set_connectable, false, MGMT_SETTING_SIZE },
6096 { set_fast_connectable, false, MGMT_SETTING_SIZE },
Johan Hedbergb2939472014-07-30 09:22:23 +03006097 { set_bondable, false, MGMT_SETTING_SIZE },
Johan Hedbergbe22b542012-03-01 22:24:41 +02006098 { set_link_security, false, MGMT_SETTING_SIZE },
6099 { set_ssp, false, MGMT_SETTING_SIZE },
6100 { set_hs, false, MGMT_SETTING_SIZE },
6101 { set_le, false, MGMT_SETTING_SIZE },
6102 { set_dev_class, false, MGMT_SET_DEV_CLASS_SIZE },
6103 { set_local_name, false, MGMT_SET_LOCAL_NAME_SIZE },
6104 { add_uuid, false, MGMT_ADD_UUID_SIZE },
6105 { remove_uuid, false, MGMT_REMOVE_UUID_SIZE },
6106 { load_link_keys, true, MGMT_LOAD_LINK_KEYS_SIZE },
6107 { load_long_term_keys, true, MGMT_LOAD_LONG_TERM_KEYS_SIZE },
6108 { disconnect, false, MGMT_DISCONNECT_SIZE },
6109 { get_connections, false, MGMT_GET_CONNECTIONS_SIZE },
6110 { pin_code_reply, false, MGMT_PIN_CODE_REPLY_SIZE },
6111 { pin_code_neg_reply, false, MGMT_PIN_CODE_NEG_REPLY_SIZE },
6112 { set_io_capability, false, MGMT_SET_IO_CAPABILITY_SIZE },
6113 { pair_device, false, MGMT_PAIR_DEVICE_SIZE },
6114 { cancel_pair_device, false, MGMT_CANCEL_PAIR_DEVICE_SIZE },
6115 { unpair_device, false, MGMT_UNPAIR_DEVICE_SIZE },
6116 { user_confirm_reply, false, MGMT_USER_CONFIRM_REPLY_SIZE },
6117 { user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
6118 { user_passkey_reply, false, MGMT_USER_PASSKEY_REPLY_SIZE },
6119 { user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
6120 { read_local_oob_data, false, MGMT_READ_LOCAL_OOB_DATA_SIZE },
Marcel Holtmannec109112014-01-10 02:07:30 -08006121 { add_remote_oob_data, true, MGMT_ADD_REMOTE_OOB_DATA_SIZE },
Johan Hedbergbe22b542012-03-01 22:24:41 +02006122 { remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
6123 { start_discovery, false, MGMT_START_DISCOVERY_SIZE },
6124 { stop_discovery, false, MGMT_STOP_DISCOVERY_SIZE },
6125 { confirm_name, false, MGMT_CONFIRM_NAME_SIZE },
6126 { block_device, false, MGMT_BLOCK_DEVICE_SIZE },
6127 { unblock_device, false, MGMT_UNBLOCK_DEVICE_SIZE },
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07006128 { set_device_id, false, MGMT_SET_DEVICE_ID_SIZE },
Johan Hedberg4375f102013-09-25 13:26:10 +03006129 { set_advertising, false, MGMT_SETTING_SIZE },
Johan Hedberg0663ca22013-10-02 13:43:14 +03006130 { set_bredr, false, MGMT_SETTING_SIZE },
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07006131 { set_static_address, false, MGMT_SET_STATIC_ADDRESS_SIZE },
Marcel Holtmann14b49b92013-10-11 08:23:20 -07006132 { set_scan_params, false, MGMT_SET_SCAN_PARAMS_SIZE },
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08006133 { set_secure_conn, false, MGMT_SETTING_SIZE },
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08006134 { set_debug_keys, false, MGMT_SETTING_SIZE },
Johan Hedberg62b04cd2014-02-23 19:42:27 +02006135 { set_privacy, false, MGMT_SET_PRIVACY_SIZE },
Johan Hedberg41edf162014-02-18 10:19:35 +02006136 { load_irks, true, MGMT_LOAD_IRKS_SIZE },
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02006137 { get_conn_info, false, MGMT_GET_CONN_INFO_SIZE },
Johan Hedberg95868422014-06-28 17:54:07 +03006138 { get_clock_info, false, MGMT_GET_CLOCK_INFO_SIZE },
Marcel Holtmann2faade52014-06-29 19:44:03 +02006139 { add_device, false, MGMT_ADD_DEVICE_SIZE },
6140 { remove_device, false, MGMT_REMOVE_DEVICE_SIZE },
Marcel Holtmann73d1df22014-07-02 22:10:52 +02006141 { load_conn_param, true, MGMT_LOAD_CONN_PARAM_SIZE },
6142 { read_unconf_index_list, false, MGMT_READ_UNCONF_INDEX_LIST_SIZE },
Marcel Holtmann9fc3bfb2014-07-04 00:46:56 +02006143 { read_config_info, false, MGMT_READ_CONFIG_INFO_SIZE },
Marcel Holtmanndbece372014-07-04 18:11:55 +02006144 { set_external_config, false, MGMT_SET_EXTERNAL_CONFIG_SIZE },
Marcel Holtmann9713c172014-07-06 12:11:15 +02006145 { set_public_address, false, MGMT_SET_PUBLIC_ADDRESS_SIZE },
Jakub Pawlowski66ea9422014-12-05 10:55:59 +01006146 { start_service_discovery,true, MGMT_START_SERVICE_DISCOVERY_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02006147};
6148
Johan Hedberg03811012010-12-08 00:21:06 +02006149int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
6150{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03006151 void *buf;
6152 u8 *cp;
Johan Hedberg03811012010-12-08 00:21:06 +02006153 struct mgmt_hdr *hdr;
Szymon Janc4e51eae2011-02-25 19:05:48 +01006154 u16 opcode, index, len;
Johan Hedbergbdb6d972012-02-28 06:13:32 +02006155 struct hci_dev *hdev = NULL;
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02006156 const struct mgmt_handler *handler;
Johan Hedberg03811012010-12-08 00:21:06 +02006157 int err;
6158
6159 BT_DBG("got %zu bytes", msglen);
6160
6161 if (msglen < sizeof(*hdr))
6162 return -EINVAL;
6163
Gustavo F. Padovane63a15e2011-04-04 18:56:53 -03006164 buf = kmalloc(msglen, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02006165 if (!buf)
6166 return -ENOMEM;
6167
Al Viro6ce8e9c2014-04-06 21:25:44 -04006168 if (memcpy_from_msg(buf, msg, msglen)) {
Johan Hedberg03811012010-12-08 00:21:06 +02006169 err = -EFAULT;
6170 goto done;
6171 }
6172
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03006173 hdr = buf;
Marcel Holtmann1f350c82012-03-12 20:31:08 -07006174 opcode = __le16_to_cpu(hdr->opcode);
6175 index = __le16_to_cpu(hdr->index);
6176 len = __le16_to_cpu(hdr->len);
Johan Hedberg03811012010-12-08 00:21:06 +02006177
6178 if (len != msglen - sizeof(*hdr)) {
6179 err = -EINVAL;
6180 goto done;
6181 }
6182
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02006183 if (index != MGMT_INDEX_NONE) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02006184 hdev = hci_dev_get(index);
6185 if (!hdev) {
6186 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006187 MGMT_STATUS_INVALID_INDEX);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02006188 goto done;
6189 }
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07006190
Johan Hedbergcebf4cf2013-10-10 18:06:04 +02006191 if (test_bit(HCI_SETUP, &hdev->dev_flags) ||
Marcel Holtmannd603b762014-07-06 12:11:14 +02006192 test_bit(HCI_CONFIG, &hdev->dev_flags) ||
Marcel Holtmann4a964402014-07-02 19:10:33 +02006193 test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07006194 err = cmd_status(sk, index, opcode,
6195 MGMT_STATUS_INVALID_INDEX);
6196 goto done;
6197 }
Marcel Holtmann42a9bc142014-07-04 16:54:40 +02006198
6199 if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags) &&
Marcel Holtmanndbece372014-07-04 18:11:55 +02006200 opcode != MGMT_OP_READ_CONFIG_INFO &&
Marcel Holtmann9713c172014-07-06 12:11:15 +02006201 opcode != MGMT_OP_SET_EXTERNAL_CONFIG &&
6202 opcode != MGMT_OP_SET_PUBLIC_ADDRESS) {
Marcel Holtmann42a9bc142014-07-04 16:54:40 +02006203 err = cmd_status(sk, index, opcode,
6204 MGMT_STATUS_INVALID_INDEX);
6205 goto done;
6206 }
Johan Hedbergbdb6d972012-02-28 06:13:32 +02006207 }
6208
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02006209 if (opcode >= ARRAY_SIZE(mgmt_handlers) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03006210 mgmt_handlers[opcode].func == NULL) {
Johan Hedberg03811012010-12-08 00:21:06 +02006211 BT_DBG("Unknown op %u", opcode);
Johan Hedbergca69b792011-11-11 18:10:00 +02006212 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006213 MGMT_STATUS_UNKNOWN_COMMAND);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02006214 goto done;
Johan Hedberg03811012010-12-08 00:21:06 +02006215 }
6216
Marcel Holtmann73d1df22014-07-02 22:10:52 +02006217 if (hdev && (opcode <= MGMT_OP_READ_INDEX_LIST ||
6218 opcode == MGMT_OP_READ_UNCONF_INDEX_LIST)) {
6219 err = cmd_status(sk, index, opcode,
6220 MGMT_STATUS_INVALID_INDEX);
6221 goto done;
6222 }
6223
6224 if (!hdev && (opcode > MGMT_OP_READ_INDEX_LIST &&
6225 opcode != MGMT_OP_READ_UNCONF_INDEX_LIST)) {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02006226 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006227 MGMT_STATUS_INVALID_INDEX);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02006228 goto done;
6229 }
6230
Johan Hedbergbe22b542012-03-01 22:24:41 +02006231 handler = &mgmt_handlers[opcode];
6232
6233 if ((handler->var_len && len < handler->data_len) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03006234 (!handler->var_len && len != handler->data_len)) {
Johan Hedbergbe22b542012-03-01 22:24:41 +02006235 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006236 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergbe22b542012-03-01 22:24:41 +02006237 goto done;
6238 }
6239
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02006240 if (hdev)
6241 mgmt_init_hdev(sk, hdev);
6242
6243 cp = buf + sizeof(*hdr);
6244
Johan Hedbergbe22b542012-03-01 22:24:41 +02006245 err = handler->func(sk, hdev, cp, len);
Johan Hedberge41d8b42010-12-13 21:07:03 +02006246 if (err < 0)
6247 goto done;
6248
Johan Hedberg03811012010-12-08 00:21:06 +02006249 err = msglen;
6250
6251done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02006252 if (hdev)
6253 hci_dev_put(hdev);
6254
Johan Hedberg03811012010-12-08 00:21:06 +02006255 kfree(buf);
6256 return err;
6257}
Johan Hedbergc71e97b2010-12-13 21:07:07 +02006258
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07006259void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02006260{
Marcel Holtmann1514b892013-10-06 08:25:01 -07006261 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07006262 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03006263
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02006264 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
6265 return;
6266
6267 if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags))
6268 mgmt_event(MGMT_EV_UNCONF_INDEX_ADDED, hdev, NULL, 0, NULL);
6269 else
6270 mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02006271}
6272
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07006273void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02006274{
Johan Hedberg5f159032012-03-02 03:13:19 +02006275 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02006276
Marcel Holtmann1514b892013-10-06 08:25:01 -07006277 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07006278 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03006279
Marcel Holtmann0602a8a2014-07-02 21:30:54 +02006280 if (test_bit(HCI_QUIRK_RAW_DEVICE, &hdev->quirks))
6281 return;
6282
Johan Hedberg1b9b5ee2014-12-05 13:36:00 +02006283 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02006284
Marcel Holtmannedd38962014-07-02 21:30:55 +02006285 if (test_bit(HCI_UNCONFIGURED, &hdev->dev_flags))
6286 mgmt_event(MGMT_EV_UNCONF_INDEX_REMOVED, hdev, NULL, 0, NULL);
6287 else
6288 mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02006289}
6290
Andre Guedes6046dc32014-02-26 20:21:51 -03006291/* This function requires the caller holds hdev->lock */
Johan Hedberg2cf22212014-12-19 22:26:00 +02006292static void restart_le_actions(struct hci_request *req)
Andre Guedes6046dc32014-02-26 20:21:51 -03006293{
Johan Hedberg2cf22212014-12-19 22:26:00 +02006294 struct hci_dev *hdev = req->hdev;
Andre Guedes6046dc32014-02-26 20:21:51 -03006295 struct hci_conn_params *p;
6296
6297 list_for_each_entry(p, &hdev->le_conn_params, list) {
Johan Hedbergd7347f32014-07-04 12:37:23 +03006298 /* Needed for AUTO_OFF case where might not "really"
6299 * have been powered off.
6300 */
6301 list_del_init(&p->action);
6302
6303 switch (p->auto_connect) {
Marcel Holtmann4b9e7e72014-07-23 21:55:23 +02006304 case HCI_AUTO_CONN_DIRECT:
Johan Hedbergd7347f32014-07-04 12:37:23 +03006305 case HCI_AUTO_CONN_ALWAYS:
6306 list_add(&p->action, &hdev->pend_le_conns);
6307 break;
6308 case HCI_AUTO_CONN_REPORT:
6309 list_add(&p->action, &hdev->pend_le_reports);
6310 break;
6311 default:
6312 break;
Marcel Holtmannc83ed192014-07-01 19:28:24 +02006313 }
Andre Guedes6046dc32014-02-26 20:21:51 -03006314 }
Marcel Holtmannc83ed192014-07-01 19:28:24 +02006315
Johan Hedberg2cf22212014-12-19 22:26:00 +02006316 __hci_update_background_scan(req);
Andre Guedes6046dc32014-02-26 20:21:51 -03006317}
6318
Marcel Holtmann1904a852015-01-11 13:50:44 -08006319static void powered_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Johan Hedberg229ab392013-03-15 17:06:53 -05006320{
6321 struct cmd_lookup match = { NULL, hdev };
6322
6323 BT_DBG("status 0x%02x", status);
6324
Marcel Holtmann162a3ba2015-01-14 15:43:11 -08006325 if (!status) {
6326 /* Register the available SMP channels (BR/EDR and LE) only
6327 * when successfully powering on the controller. This late
6328 * registration is required so that LE SMP can clearly
6329 * decide if the public address or static address is used.
6330 */
6331 smp_register(hdev);
6332 }
6333
Johan Hedberg229ab392013-03-15 17:06:53 -05006334 hci_dev_lock(hdev);
6335
6336 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
6337
6338 new_settings(hdev, match.sk);
6339
6340 hci_dev_unlock(hdev);
6341
6342 if (match.sk)
6343 sock_put(match.sk);
6344}
6345
Johan Hedberg70da6242013-03-15 17:06:51 -05006346static int powered_update_hci(struct hci_dev *hdev)
6347{
Johan Hedberg890ea892013-03-15 17:06:52 -05006348 struct hci_request req;
Johan Hedberg70da6242013-03-15 17:06:51 -05006349 u8 link_sec;
6350
Johan Hedberg890ea892013-03-15 17:06:52 -05006351 hci_req_init(&req, hdev);
6352
Johan Hedberg70da6242013-03-15 17:06:51 -05006353 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) &&
6354 !lmp_host_ssp_capable(hdev)) {
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08006355 u8 mode = 0x01;
Johan Hedberg70da6242013-03-15 17:06:51 -05006356
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08006357 hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, sizeof(mode), &mode);
Johan Hedberg70da6242013-03-15 17:06:51 -05006358
Marcel Holtmann574ea3c2015-01-22 11:15:20 -08006359 if (bredr_sc_enabled(hdev) && !lmp_host_sc_capable(hdev)) {
6360 u8 support = 0x01;
6361
6362 hci_req_add(&req, HCI_OP_WRITE_SC_SUPPORT,
6363 sizeof(support), &support);
6364 }
Johan Hedbergec6f99b2014-12-12 13:30:11 +02006365 }
6366
Johan Hedbergc73eee92013-04-19 18:35:21 +03006367 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
6368 lmp_bredr_capable(hdev)) {
Johan Hedberg70da6242013-03-15 17:06:51 -05006369 struct hci_cp_write_le_host_supported cp;
6370
Marcel Holtmann32226e42014-07-24 20:04:16 +02006371 cp.le = 0x01;
6372 cp.simul = 0x00;
Johan Hedberg70da6242013-03-15 17:06:51 -05006373
6374 /* Check first if we already have the right
6375 * host state (host features set)
6376 */
6377 if (cp.le != lmp_host_le_capable(hdev) ||
6378 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05006379 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
6380 sizeof(cp), &cp);
Johan Hedberg70da6242013-03-15 17:06:51 -05006381 }
6382
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07006383 if (lmp_le_capable(hdev)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07006384 /* Make sure the controller has a good default for
6385 * advertising data. This also applies to the case
6386 * where BR/EDR was toggled during the AUTO_OFF phase.
6387 */
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07006388 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07006389 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07006390 update_scan_rsp_data(&req);
6391 }
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07006392
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07006393 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
6394 enable_advertising(&req);
Johan Hedberg2cf22212014-12-19 22:26:00 +02006395
6396 restart_le_actions(&req);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03006397 }
6398
Johan Hedberg70da6242013-03-15 17:06:51 -05006399 link_sec = test_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
6400 if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05006401 hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
6402 sizeof(link_sec), &link_sec);
Johan Hedberg70da6242013-03-15 17:06:51 -05006403
6404 if (lmp_bredr_capable(hdev)) {
Johan Hedberg432df052014-08-01 11:13:31 +03006405 write_fast_connectable(&req, false);
Johan Hedberg1d2dc5b2014-12-19 13:40:19 +02006406 __hci_update_page_scan(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05006407 update_class(&req);
Johan Hedberg13928972013-03-15 17:07:00 -05006408 update_name(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05006409 update_eir(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05006410 }
6411
Johan Hedberg229ab392013-03-15 17:06:53 -05006412 return hci_req_run(&req, powered_complete);
Johan Hedberg70da6242013-03-15 17:06:51 -05006413}
6414
Johan Hedberg744cf192011-11-08 20:40:14 +02006415int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02006416{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02006417 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg98459042014-12-12 11:15:21 +02006418 u8 status, zero_cod[] = { 0, 0, 0 };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02006419 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02006420
Johan Hedberg5e5282b2012-02-21 16:01:30 +02006421 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
6422 return 0;
6423
Johan Hedberg5e5282b2012-02-21 16:01:30 +02006424 if (powered) {
Johan Hedberg229ab392013-03-15 17:06:53 -05006425 if (powered_update_hci(hdev) == 0)
6426 return 0;
Johan Hedbergfe038882013-01-16 16:15:34 +02006427
Johan Hedberg229ab392013-03-15 17:06:53 -05006428 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
6429 &match);
6430 goto new_settings;
Johan Hedbergb24752f2011-11-03 14:40:33 +02006431 }
6432
Johan Hedberg229ab392013-03-15 17:06:53 -05006433 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
Johan Hedberg98459042014-12-12 11:15:21 +02006434
6435 /* If the power off is because of hdev unregistration let
6436 * use the appropriate INVALID_INDEX status. Otherwise use
6437 * NOT_POWERED. We cover both scenarios here since later in
6438 * mgmt_index_removed() any hci_conn callbacks will have already
6439 * been triggered, potentially causing misleading DISCONNECTED
6440 * status responses.
6441 */
6442 if (test_bit(HCI_UNREGISTER, &hdev->dev_flags))
6443 status = MGMT_STATUS_INVALID_INDEX;
6444 else
6445 status = MGMT_STATUS_NOT_POWERED;
6446
6447 mgmt_pending_foreach(0, hdev, cmd_complete_rsp, &status);
Johan Hedberg229ab392013-03-15 17:06:53 -05006448
6449 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
6450 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
6451 zero_cod, sizeof(zero_cod), NULL);
6452
6453new_settings:
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02006454 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02006455
6456 if (match.sk)
6457 sock_put(match.sk);
6458
Johan Hedberg7bb895d2012-02-17 01:20:00 +02006459 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02006460}
Johan Hedberg73f22f62010-12-29 16:00:25 +02006461
Marcel Holtmann3eec7052013-10-06 23:55:46 -07006462void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03006463{
6464 struct pending_cmd *cmd;
6465 u8 status;
6466
6467 cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
6468 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07006469 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03006470
6471 if (err == -ERFKILL)
6472 status = MGMT_STATUS_RFKILLED;
6473 else
6474 status = MGMT_STATUS_FAILED;
6475
Marcel Holtmann3eec7052013-10-06 23:55:46 -07006476 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03006477
6478 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03006479}
6480
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07006481void mgmt_discoverable_timeout(struct hci_dev *hdev)
6482{
6483 struct hci_request req;
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07006484
6485 hci_dev_lock(hdev);
6486
6487 /* When discoverable timeout triggers, then just make sure
6488 * the limited discoverable flag is cleared. Even in the case
6489 * of a timeout triggered from general discoverable, it is
6490 * safe to unconditionally clear the flag.
6491 */
6492 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg9a43e252013-10-20 19:00:07 +03006493 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07006494
6495 hci_req_init(&req, hdev);
Johan Hedberg4b580612013-10-19 23:38:21 +03006496 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
6497 u8 scan = SCAN_PAGE;
6498 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
6499 sizeof(scan), &scan);
6500 }
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07006501 update_class(&req);
Johan Hedberg9a43e252013-10-20 19:00:07 +03006502 update_adv_data(&req);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07006503 hci_req_run(&req, NULL);
6504
6505 hdev->discov_timeout = 0;
6506
Johan Hedberg9a43e252013-10-20 19:00:07 +03006507 new_settings(hdev, NULL);
6508
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07006509 hci_dev_unlock(hdev);
6510}
6511
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07006512void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
6513 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02006514{
Johan Hedberg86742e12011-11-07 23:13:38 +02006515 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02006516
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03006517 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02006518
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03006519 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02006520 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03006521 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03006522 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03006523 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03006524 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02006525
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07006526 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02006527}
Johan Hedbergf7520542011-01-20 12:34:39 +02006528
Johan Hedbergd7b25452014-05-23 13:19:53 +03006529static u8 mgmt_ltk_type(struct smp_ltk *ltk)
6530{
Johan Hedberg23fb8de2014-05-23 13:15:37 +03006531 switch (ltk->type) {
6532 case SMP_LTK:
6533 case SMP_LTK_SLAVE:
6534 if (ltk->authenticated)
6535 return MGMT_LTK_AUTHENTICATED;
6536 return MGMT_LTK_UNAUTHENTICATED;
6537 case SMP_LTK_P256:
6538 if (ltk->authenticated)
6539 return MGMT_LTK_P256_AUTH;
6540 return MGMT_LTK_P256_UNAUTH;
6541 case SMP_LTK_P256_DEBUG:
6542 return MGMT_LTK_P256_DEBUG;
6543 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03006544
6545 return MGMT_LTK_UNAUTHENTICATED;
6546}
6547
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07006548void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006549{
6550 struct mgmt_ev_new_long_term_key ev;
6551
6552 memset(&ev, 0, sizeof(ev));
6553
Marcel Holtmann5192d302014-02-19 17:11:58 -08006554 /* Devices using resolvable or non-resolvable random addresses
6555 * without providing an indentity resolving key don't require
6556 * to store long term keys. Their addresses will change the
6557 * next time around.
6558 *
6559 * Only when a remote device provides an identity address
6560 * make sure the long term key is stored. If the remote
6561 * identity is known, the long term keys are internally
6562 * mapped to the identity address. So allow static random
6563 * and public addresses here.
6564 */
Johan Hedbergba74b662014-02-19 14:57:45 +02006565 if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
6566 (key->bdaddr.b[5] & 0xc0) != 0xc0)
6567 ev.store_hint = 0x00;
6568 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07006569 ev.store_hint = persistent;
Johan Hedbergba74b662014-02-19 14:57:45 +02006570
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006571 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03006572 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Johan Hedbergd7b25452014-05-23 13:19:53 +03006573 ev.key.type = mgmt_ltk_type(key);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006574 ev.key.enc_size = key->enc_size;
6575 ev.key.ediv = key->ediv;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08006576 ev.key.rand = key->rand;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006577
Johan Hedberg2ceba532014-06-16 19:25:16 +03006578 if (key->type == SMP_LTK)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006579 ev.key.master = 1;
6580
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006581 memcpy(ev.key.val, key->val, sizeof(key->val));
6582
Marcel Holtmann083368f2013-10-15 14:26:29 -07006583 mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03006584}
6585
Johan Hedberg95fbac82014-02-19 15:18:31 +02006586void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk)
6587{
6588 struct mgmt_ev_new_irk ev;
6589
6590 memset(&ev, 0, sizeof(ev));
6591
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08006592 /* For identity resolving keys from devices that are already
6593 * using a public address or static random address, do not
6594 * ask for storing this key. The identity resolving key really
6595 * is only mandatory for devices using resovlable random
6596 * addresses.
6597 *
6598 * Storing all identity resolving keys has the downside that
6599 * they will be also loaded on next boot of they system. More
6600 * identity resolving keys, means more time during scanning is
6601 * needed to actually resolve these addresses.
6602 */
6603 if (bacmp(&irk->rpa, BDADDR_ANY))
6604 ev.store_hint = 0x01;
6605 else
6606 ev.store_hint = 0x00;
6607
Johan Hedberg95fbac82014-02-19 15:18:31 +02006608 bacpy(&ev.rpa, &irk->rpa);
6609 bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
6610 ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
6611 memcpy(ev.irk.val, irk->val, sizeof(irk->val));
6612
6613 mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
6614}
6615
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07006616void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
6617 bool persistent)
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07006618{
6619 struct mgmt_ev_new_csrk ev;
6620
6621 memset(&ev, 0, sizeof(ev));
6622
6623 /* Devices using resolvable or non-resolvable random addresses
6624 * without providing an indentity resolving key don't require
6625 * to store signature resolving keys. Their addresses will change
6626 * the next time around.
6627 *
6628 * Only when a remote device provides an identity address
6629 * make sure the signature resolving key is stored. So allow
6630 * static random and public addresses here.
6631 */
6632 if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
6633 (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
6634 ev.store_hint = 0x00;
6635 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07006636 ev.store_hint = persistent;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07006637
6638 bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
6639 ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
6640 ev.key.master = csrk->master;
6641 memcpy(ev.key.val, csrk->val, sizeof(csrk->val));
6642
6643 mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
6644}
6645
Andre Guedesffb5a8272014-07-01 18:10:11 -03006646void mgmt_new_conn_param(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedbergf4869e22014-07-02 17:37:32 +03006647 u8 bdaddr_type, u8 store_hint, u16 min_interval,
6648 u16 max_interval, u16 latency, u16 timeout)
Andre Guedesffb5a8272014-07-01 18:10:11 -03006649{
6650 struct mgmt_ev_new_conn_param ev;
6651
Johan Hedbergc103aea2014-07-02 17:37:34 +03006652 if (!hci_is_identity_address(bdaddr, bdaddr_type))
6653 return;
6654
Andre Guedesffb5a8272014-07-01 18:10:11 -03006655 memset(&ev, 0, sizeof(ev));
6656 bacpy(&ev.addr.bdaddr, bdaddr);
6657 ev.addr.type = link_to_bdaddr(LE_LINK, bdaddr_type);
Johan Hedbergf4869e22014-07-02 17:37:32 +03006658 ev.store_hint = store_hint;
Andre Guedesffb5a8272014-07-01 18:10:11 -03006659 ev.min_interval = cpu_to_le16(min_interval);
6660 ev.max_interval = cpu_to_le16(max_interval);
6661 ev.latency = cpu_to_le16(latency);
6662 ev.timeout = cpu_to_le16(timeout);
6663
6664 mgmt_event(MGMT_EV_NEW_CONN_PARAM, hdev, &ev, sizeof(ev), NULL);
6665}
6666
Marcel Holtmann94933992013-10-15 10:26:39 -07006667static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
6668 u8 data_len)
6669{
6670 eir[eir_len++] = sizeof(type) + data_len;
6671 eir[eir_len++] = type;
6672 memcpy(&eir[eir_len], data, data_len);
6673 eir_len += data_len;
6674
6675 return eir_len;
6676}
6677
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00006678void mgmt_device_connected(struct hci_dev *hdev, struct hci_conn *conn,
6679 u32 flags, u8 *name, u8 name_len)
Johan Hedbergf7520542011-01-20 12:34:39 +02006680{
Johan Hedbergb644ba32012-01-17 21:48:47 +02006681 char buf[512];
6682 struct mgmt_ev_device_connected *ev = (void *) buf;
6683 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02006684
Alfonso Acosta48ec92f2014-10-07 08:44:10 +00006685 bacpy(&ev->addr.bdaddr, &conn->dst);
6686 ev->addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02006687
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02006688 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02006689
Alfonso Acostafd45ada2014-10-07 08:44:11 +00006690 /* We must ensure that the EIR Data fields are ordered and
6691 * unique. Keep it simple for now and avoid the problem by not
6692 * adding any BR/EDR data to the LE adv.
6693 */
6694 if (conn->le_adv_data_len > 0) {
6695 memcpy(&ev->eir[eir_len],
6696 conn->le_adv_data, conn->le_adv_data_len);
6697 eir_len = conn->le_adv_data_len;
6698 } else {
6699 if (name_len > 0)
6700 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
6701 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02006702
Alfonso Acostaddbea5c2014-10-07 08:44:12 +00006703 if (memcmp(conn->dev_class, "\0\0\0", 3) != 0)
Alfonso Acostafd45ada2014-10-07 08:44:11 +00006704 eir_len = eir_append_data(ev->eir, eir_len,
6705 EIR_CLASS_OF_DEV,
6706 conn->dev_class, 3);
6707 }
Johan Hedbergb644ba32012-01-17 21:48:47 +02006708
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02006709 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02006710
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07006711 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
6712 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02006713}
6714
Johan Hedberg8962ee72011-01-20 12:40:27 +02006715static void disconnect_rsp(struct pending_cmd *cmd, void *data)
6716{
Johan Hedberg8962ee72011-01-20 12:40:27 +02006717 struct sock **sk = data;
Johan Hedberg8962ee72011-01-20 12:40:27 +02006718
Johan Hedbergf5818c22014-12-05 13:36:02 +02006719 cmd->cmd_complete(cmd, 0);
Johan Hedberg8962ee72011-01-20 12:40:27 +02006720
6721 *sk = cmd->sk;
6722 sock_hold(*sk);
6723
Johan Hedberga664b5b2011-02-19 12:06:02 -03006724 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02006725}
6726
Johan Hedberg124f6e32012-02-09 13:50:12 +02006727static void unpair_device_rsp(struct pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02006728{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02006729 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02006730 struct mgmt_cp_unpair_device *cp = cmd->param;
Johan Hedberga8a1d192011-11-10 15:54:38 +02006731
Johan Hedbergb1078ad2012-02-09 17:21:16 +02006732 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
6733
Johan Hedbergd8b7b1e2014-12-05 13:36:05 +02006734 cmd->cmd_complete(cmd, 0);
Johan Hedberga8a1d192011-11-10 15:54:38 +02006735 mgmt_pending_remove(cmd);
6736}
6737
Johan Hedberg84c61d92014-08-01 11:13:30 +03006738bool mgmt_powering_down(struct hci_dev *hdev)
6739{
6740 struct pending_cmd *cmd;
6741 struct mgmt_mode *cp;
6742
6743 cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
6744 if (!cmd)
6745 return false;
6746
6747 cp = cmd->param;
6748 if (!cp->val)
6749 return true;
6750
6751 return false;
6752}
6753
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07006754void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02006755 u8 link_type, u8 addr_type, u8 reason,
6756 bool mgmt_connected)
Johan Hedbergf7520542011-01-20 12:34:39 +02006757{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02006758 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8962ee72011-01-20 12:40:27 +02006759 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02006760
Johan Hedberg84c61d92014-08-01 11:13:30 +03006761 /* The connection is still in hci_conn_hash so test for 1
6762 * instead of 0 to know if this is the last one.
6763 */
6764 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
6765 cancel_delayed_work(&hdev->power_off);
6766 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberg8b064a32014-02-24 14:52:22 +02006767 }
6768
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02006769 if (!mgmt_connected)
6770 return;
6771
Andre Guedes57eb7762013-10-30 19:01:41 -03006772 if (link_type != ACL_LINK && link_type != LE_LINK)
6773 return;
6774
Johan Hedberg744cf192011-11-08 20:40:14 +02006775 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02006776
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02006777 bacpy(&ev.addr.bdaddr, bdaddr);
6778 ev.addr.type = link_to_bdaddr(link_type, addr_type);
6779 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02006780
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07006781 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02006782
6783 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01006784 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02006785
Johan Hedberg124f6e32012-02-09 13:50:12 +02006786 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006787 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02006788}
6789
Marcel Holtmann78929242013-10-06 23:55:47 -07006790void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
6791 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02006792{
Andre Guedes3655bba2013-10-30 19:01:40 -03006793 u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
6794 struct mgmt_cp_disconnect *cp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02006795 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02006796
Jefferson Delfes36a75f12012-09-18 13:36:54 -04006797 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
6798 hdev);
6799
Johan Hedberg2e58ef32011-11-08 20:40:15 +02006800 cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02006801 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07006802 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02006803
Andre Guedes3655bba2013-10-30 19:01:40 -03006804 cp = cmd->param;
6805
6806 if (bacmp(bdaddr, &cp->addr.bdaddr))
6807 return;
6808
6809 if (cp->addr.type != bdaddr_type)
6810 return;
6811
Johan Hedbergf5818c22014-12-05 13:36:02 +02006812 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03006813 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02006814}
Johan Hedberg17d5c042011-01-22 06:09:08 +02006815
Marcel Holtmann445608d2013-10-06 23:55:48 -07006816void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
6817 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02006818{
6819 struct mgmt_ev_connect_failed ev;
Johan Hedbergc9910d02014-02-27 14:35:12 +02006820
Johan Hedberg84c61d92014-08-01 11:13:30 +03006821 /* The connection is still in hci_conn_hash so test for 1
6822 * instead of 0 to know if this is the last one.
6823 */
6824 if (mgmt_powering_down(hdev) && hci_conn_count(hdev) == 1) {
6825 cancel_delayed_work(&hdev->power_off);
6826 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedbergc9910d02014-02-27 14:35:12 +02006827 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02006828
Johan Hedberg4c659c32011-11-07 23:13:39 +02006829 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03006830 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02006831 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02006832
Marcel Holtmann445608d2013-10-06 23:55:48 -07006833 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02006834}
Johan Hedberg980e1a52011-01-22 06:10:07 +02006835
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07006836void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02006837{
6838 struct mgmt_ev_pin_code_request ev;
6839
Johan Hedbergd8457692012-02-17 14:24:57 +02006840 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03006841 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02006842 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02006843
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07006844 mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02006845}
6846
Marcel Holtmanne669cf82013-10-15 14:26:21 -07006847void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
6848 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02006849{
6850 struct pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02006851
Johan Hedberg2e58ef32011-11-08 20:40:15 +02006852 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02006853 if (!cmd)
Marcel Holtmanne669cf82013-10-15 14:26:21 -07006854 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02006855
Johan Hedberg7776d1d2014-12-05 13:36:03 +02006856 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03006857 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02006858}
6859
Marcel Holtmann3eb38522013-10-15 14:26:22 -07006860void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
6861 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02006862{
6863 struct pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02006864
Johan Hedberg2e58ef32011-11-08 20:40:15 +02006865 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02006866 if (!cmd)
Marcel Holtmann3eb38522013-10-15 14:26:22 -07006867 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02006868
Johan Hedberg7776d1d2014-12-05 13:36:03 +02006869 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03006870 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02006871}
Johan Hedberga5c29682011-02-19 12:05:57 -03006872
Johan Hedberg744cf192011-11-08 20:40:14 +02006873int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg39adbff2014-03-20 08:18:14 +02006874 u8 link_type, u8 addr_type, u32 value,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006875 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03006876{
6877 struct mgmt_ev_user_confirm_request ev;
6878
Johan Hedberg744cf192011-11-08 20:40:14 +02006879 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03006880
Johan Hedberg272d90d2012-02-09 15:26:12 +02006881 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03006882 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07006883 ev.confirm_hint = confirm_hint;
Johan Hedberg39adbff2014-03-20 08:18:14 +02006884 ev.value = cpu_to_le32(value);
Johan Hedberga5c29682011-02-19 12:05:57 -03006885
Johan Hedberg744cf192011-11-08 20:40:14 +02006886 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006887 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03006888}
6889
Johan Hedberg272d90d2012-02-09 15:26:12 +02006890int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03006891 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08006892{
6893 struct mgmt_ev_user_passkey_request ev;
6894
6895 BT_DBG("%s", hdev->name);
6896
Johan Hedberg272d90d2012-02-09 15:26:12 +02006897 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03006898 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08006899
6900 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006901 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08006902}
6903
Brian Gix0df4c182011-11-16 13:53:13 -08006904static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03006905 u8 link_type, u8 addr_type, u8 status,
6906 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03006907{
6908 struct pending_cmd *cmd;
Johan Hedberga5c29682011-02-19 12:05:57 -03006909
Johan Hedberg2e58ef32011-11-08 20:40:15 +02006910 cmd = mgmt_pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03006911 if (!cmd)
6912 return -ENOENT;
6913
Johan Hedberg7776d1d2014-12-05 13:36:03 +02006914 cmd->cmd_complete(cmd, mgmt_status(status));
Johan Hedberga664b5b2011-02-19 12:06:02 -03006915 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03006916
Johan Hedberg7776d1d2014-12-05 13:36:03 +02006917 return 0;
Johan Hedberga5c29682011-02-19 12:05:57 -03006918}
6919
Johan Hedberg744cf192011-11-08 20:40:14 +02006920int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006921 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03006922{
Johan Hedberg272d90d2012-02-09 15:26:12 +02006923 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006924 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03006925}
6926
Johan Hedberg272d90d2012-02-09 15:26:12 +02006927int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006928 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03006929{
Johan Hedberg272d90d2012-02-09 15:26:12 +02006930 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03006931 status,
6932 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03006933}
Johan Hedberg2a611692011-02-19 12:06:00 -03006934
Brian Gix604086b2011-11-23 08:28:33 -08006935int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006936 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08006937{
Johan Hedberg272d90d2012-02-09 15:26:12 +02006938 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006939 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08006940}
6941
Johan Hedberg272d90d2012-02-09 15:26:12 +02006942int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006943 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08006944{
Johan Hedberg272d90d2012-02-09 15:26:12 +02006945 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03006946 status,
6947 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08006948}
6949
Johan Hedberg92a25252012-09-06 18:39:26 +03006950int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
6951 u8 link_type, u8 addr_type, u32 passkey,
6952 u8 entered)
6953{
6954 struct mgmt_ev_passkey_notify ev;
6955
6956 BT_DBG("%s", hdev->name);
6957
6958 bacpy(&ev.addr.bdaddr, bdaddr);
6959 ev.addr.type = link_to_bdaddr(link_type, addr_type);
6960 ev.passkey = __cpu_to_le32(passkey);
6961 ev.entered = entered;
6962
6963 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
6964}
6965
Johan Hedberge1e930f2014-09-08 17:09:49 -07006966void mgmt_auth_failed(struct hci_conn *conn, u8 hci_status)
Johan Hedberg2a611692011-02-19 12:06:00 -03006967{
6968 struct mgmt_ev_auth_failed ev;
Johan Hedberge1e930f2014-09-08 17:09:49 -07006969 struct pending_cmd *cmd;
6970 u8 status = mgmt_status(hci_status);
Johan Hedberg2a611692011-02-19 12:06:00 -03006971
Johan Hedberge1e930f2014-09-08 17:09:49 -07006972 bacpy(&ev.addr.bdaddr, &conn->dst);
6973 ev.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
6974 ev.status = status;
Johan Hedberg2a611692011-02-19 12:06:00 -03006975
Johan Hedberge1e930f2014-09-08 17:09:49 -07006976 cmd = find_pairing(conn);
6977
6978 mgmt_event(MGMT_EV_AUTH_FAILED, conn->hdev, &ev, sizeof(ev),
6979 cmd ? cmd->sk : NULL);
6980
Johan Hedberga511b352014-12-11 21:45:45 +02006981 if (cmd) {
6982 cmd->cmd_complete(cmd, status);
6983 mgmt_pending_remove(cmd);
6984 }
Johan Hedberg2a611692011-02-19 12:06:00 -03006985}
Johan Hedbergb312b1612011-03-16 14:29:37 +02006986
Marcel Holtmann464996a2013-10-15 14:26:24 -07006987void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02006988{
6989 struct cmd_lookup match = { NULL, hdev };
Marcel Holtmann464996a2013-10-15 14:26:24 -07006990 bool changed;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02006991
6992 if (status) {
6993 u8 mgmt_err = mgmt_status(status);
6994 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006995 cmd_status_rsp, &mgmt_err);
Marcel Holtmann464996a2013-10-15 14:26:24 -07006996 return;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02006997 }
6998
Marcel Holtmann464996a2013-10-15 14:26:24 -07006999 if (test_bit(HCI_AUTH, &hdev->flags))
7000 changed = !test_and_set_bit(HCI_LINK_SECURITY,
7001 &hdev->dev_flags);
7002 else
7003 changed = test_and_clear_bit(HCI_LINK_SECURITY,
7004 &hdev->dev_flags);
Johan Hedberg47990ea2012-02-22 11:58:37 +02007005
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007006 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007007 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007008
Johan Hedberg47990ea2012-02-22 11:58:37 +02007009 if (changed)
Marcel Holtmann464996a2013-10-15 14:26:24 -07007010 new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007011
7012 if (match.sk)
7013 sock_put(match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02007014}
7015
Johan Hedberg890ea892013-03-15 17:06:52 -05007016static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02007017{
Johan Hedberg890ea892013-03-15 17:06:52 -05007018 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02007019 struct hci_cp_write_eir cp;
7020
Johan Hedberg976eb202012-10-24 21:12:01 +03007021 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05007022 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02007023
Johan Hedbergc80da272012-02-22 15:38:48 +02007024 memset(hdev->eir, 0, sizeof(hdev->eir));
7025
Johan Hedbergcacaf522012-02-21 00:52:42 +02007026 memset(&cp, 0, sizeof(cp));
7027
Johan Hedberg890ea892013-03-15 17:06:52 -05007028 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02007029}
7030
Marcel Holtmann3e248562013-10-15 14:26:25 -07007031void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007032{
7033 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05007034 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007035 bool changed = false;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007036
7037 if (status) {
7038 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007039
7040 if (enable && test_and_clear_bit(HCI_SSP_ENABLED,
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07007041 &hdev->dev_flags)) {
7042 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmann3e248562013-10-15 14:26:25 -07007043 new_settings(hdev, NULL);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07007044 }
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007045
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007046 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
7047 &mgmt_err);
Marcel Holtmann3e248562013-10-15 14:26:25 -07007048 return;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007049 }
7050
7051 if (enable) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07007052 changed = !test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007053 } else {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07007054 changed = test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
7055 if (!changed)
7056 changed = test_and_clear_bit(HCI_HS_ENABLED,
7057 &hdev->dev_flags);
7058 else
7059 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007060 }
7061
7062 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
7063
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02007064 if (changed)
Marcel Holtmann3e248562013-10-15 14:26:25 -07007065 new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007066
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02007067 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007068 sock_put(match.sk);
7069
Johan Hedberg890ea892013-03-15 17:06:52 -05007070 hci_req_init(&req, hdev);
7071
Johan Hedberg37699722014-06-24 14:00:27 +03007072 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
7073 if (test_bit(HCI_USE_DEBUG_KEYS, &hdev->dev_flags))
7074 hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
7075 sizeof(enable), &enable);
Johan Hedberg890ea892013-03-15 17:06:52 -05007076 update_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03007077 } else {
Johan Hedberg890ea892013-03-15 17:06:52 -05007078 clear_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03007079 }
Johan Hedberg890ea892013-03-15 17:06:52 -05007080
7081 hci_req_run(&req, NULL);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02007082}
7083
Johan Hedberg92da6092013-03-15 17:06:55 -05007084static void sk_lookup(struct pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02007085{
7086 struct cmd_lookup *match = data;
7087
Johan Hedberg90e70452012-02-23 23:09:40 +02007088 if (match->sk == NULL) {
7089 match->sk = cmd->sk;
7090 sock_hold(match->sk);
7091 }
Johan Hedberg90e70452012-02-23 23:09:40 +02007092}
7093
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07007094void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
7095 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01007096{
Johan Hedberg90e70452012-02-23 23:09:40 +02007097 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01007098
Johan Hedberg92da6092013-03-15 17:06:55 -05007099 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
7100 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
7101 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02007102
7103 if (!status)
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07007104 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class, 3,
7105 NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02007106
7107 if (match.sk)
7108 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01007109}
7110
Marcel Holtmann7667da32013-10-15 14:26:27 -07007111void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02007112{
Johan Hedbergb312b1612011-03-16 14:29:37 +02007113 struct mgmt_cp_set_local_name ev;
Johan Hedberg13928972013-03-15 17:07:00 -05007114 struct pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02007115
Johan Hedberg13928972013-03-15 17:07:00 -05007116 if (status)
Marcel Holtmann7667da32013-10-15 14:26:27 -07007117 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02007118
7119 memset(&ev, 0, sizeof(ev));
7120 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02007121 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02007122
Johan Hedberg2e58ef32011-11-08 20:40:15 +02007123 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05007124 if (!cmd) {
7125 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02007126
Johan Hedberg13928972013-03-15 17:07:00 -05007127 /* If this is a HCI command related to powering on the
7128 * HCI dev don't send any mgmt signals.
7129 */
7130 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
Marcel Holtmann7667da32013-10-15 14:26:27 -07007131 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02007132 }
7133
Marcel Holtmann7667da32013-10-15 14:26:27 -07007134 mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
7135 cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02007136}
Szymon Jancc35938b2011-03-22 13:12:21 +01007137
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08007138void mgmt_read_local_oob_data_complete(struct hci_dev *hdev, u8 *hash192,
Johan Hedberg38da1702014-11-17 20:52:20 +02007139 u8 *rand192, u8 *hash256, u8 *rand256,
7140 u8 status)
Szymon Jancc35938b2011-03-22 13:12:21 +01007141{
7142 struct pending_cmd *cmd;
Szymon Jancc35938b2011-03-22 13:12:21 +01007143
Johan Hedberg744cf192011-11-08 20:40:14 +02007144 BT_DBG("%s status %u", hdev->name, status);
Szymon Jancc35938b2011-03-22 13:12:21 +01007145
Johan Hedberg2e58ef32011-11-08 20:40:15 +02007146 cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01007147 if (!cmd)
Marcel Holtmann3edaf092013-10-15 14:26:28 -07007148 return;
Szymon Jancc35938b2011-03-22 13:12:21 +01007149
7150 if (status) {
Marcel Holtmann3edaf092013-10-15 14:26:28 -07007151 cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
7152 mgmt_status(status));
Szymon Jancc35938b2011-03-22 13:12:21 +01007153 } else {
Johan Hedberg710f11c2014-05-26 11:21:22 +03007154 if (bredr_sc_enabled(hdev) && hash256 && rand256) {
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08007155 struct mgmt_rp_read_local_oob_ext_data rp;
Szymon Jancc35938b2011-03-22 13:12:21 +01007156
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08007157 memcpy(rp.hash192, hash192, sizeof(rp.hash192));
Johan Hedberg38da1702014-11-17 20:52:20 +02007158 memcpy(rp.rand192, rand192, sizeof(rp.rand192));
Szymon Jancc35938b2011-03-22 13:12:21 +01007159
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08007160 memcpy(rp.hash256, hash256, sizeof(rp.hash256));
Johan Hedberg38da1702014-11-17 20:52:20 +02007161 memcpy(rp.rand256, rand256, sizeof(rp.rand256));
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08007162
7163 cmd_complete(cmd->sk, hdev->id,
7164 MGMT_OP_READ_LOCAL_OOB_DATA, 0,
7165 &rp, sizeof(rp));
7166 } else {
7167 struct mgmt_rp_read_local_oob_data rp;
7168
7169 memcpy(rp.hash, hash192, sizeof(rp.hash));
Johan Hedberg38da1702014-11-17 20:52:20 +02007170 memcpy(rp.rand, rand192, sizeof(rp.rand));
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08007171
7172 cmd_complete(cmd->sk, hdev->id,
7173 MGMT_OP_READ_LOCAL_OOB_DATA, 0,
7174 &rp, sizeof(rp));
7175 }
Szymon Jancc35938b2011-03-22 13:12:21 +01007176 }
7177
7178 mgmt_pending_remove(cmd);
Szymon Jancc35938b2011-03-22 13:12:21 +01007179}
Johan Hedberge17acd42011-03-30 23:57:16 +03007180
Jakub Pawlowski799ce932014-12-05 10:55:58 +01007181static inline bool has_uuid(u8 *uuid, u16 uuid_count, u8 (*uuids)[16])
7182{
7183 int i;
7184
7185 for (i = 0; i < uuid_count; i++) {
7186 if (!memcmp(uuid, uuids[i], 16))
7187 return true;
7188 }
7189
7190 return false;
7191}
7192
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007193static bool eir_has_uuids(u8 *eir, u16 eir_len, u16 uuid_count, u8 (*uuids)[16])
7194{
Jakub Pawlowski799ce932014-12-05 10:55:58 +01007195 u16 parsed = 0;
7196
7197 while (parsed < eir_len) {
7198 u8 field_len = eir[0];
7199 u8 uuid[16];
7200 int i;
7201
7202 if (field_len == 0)
7203 break;
7204
7205 if (eir_len - parsed < field_len + 1)
7206 break;
7207
7208 switch (eir[1]) {
7209 case EIR_UUID16_ALL:
7210 case EIR_UUID16_SOME:
7211 for (i = 0; i + 3 <= field_len; i += 2) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02007212 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01007213 uuid[13] = eir[i + 3];
7214 uuid[12] = eir[i + 2];
7215 if (has_uuid(uuid, uuid_count, uuids))
7216 return true;
7217 }
7218 break;
7219 case EIR_UUID32_ALL:
7220 case EIR_UUID32_SOME:
7221 for (i = 0; i + 5 <= field_len; i += 4) {
Johan Hedberg189f6ad2014-12-05 13:40:01 +02007222 memcpy(uuid, bluetooth_base_uuid, 16);
Jakub Pawlowski799ce932014-12-05 10:55:58 +01007223 uuid[15] = eir[i + 5];
7224 uuid[14] = eir[i + 4];
7225 uuid[13] = eir[i + 3];
7226 uuid[12] = eir[i + 2];
7227 if (has_uuid(uuid, uuid_count, uuids))
7228 return true;
7229 }
7230 break;
7231 case EIR_UUID128_ALL:
7232 case EIR_UUID128_SOME:
7233 for (i = 0; i + 17 <= field_len; i += 16) {
7234 memcpy(uuid, eir + i + 2, 16);
7235 if (has_uuid(uuid, uuid_count, uuids))
7236 return true;
7237 }
7238 break;
7239 }
7240
7241 parsed += field_len + 1;
7242 eir += field_len + 1;
7243 }
7244
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007245 return false;
7246}
7247
Marcel Holtmann901801b2013-10-06 23:55:51 -07007248void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Marcel Holtmannaf589252014-07-01 14:11:20 +02007249 u8 addr_type, u8 *dev_class, s8 rssi, u32 flags,
7250 u8 *eir, u16 eir_len, u8 *scan_rsp, u8 scan_rsp_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03007251{
Johan Hedberge319d2e2012-01-15 19:51:59 +02007252 char buf[512];
7253 struct mgmt_ev_device_found *ev = (void *) buf;
Johan Hedberg1dc06092012-01-15 21:01:23 +02007254 size_t ev_size;
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007255 bool match;
Johan Hedberge17acd42011-03-30 23:57:16 +03007256
Johan Hedberg75ce2082014-07-02 22:42:01 +03007257 /* Don't send events for a non-kernel initiated discovery. With
7258 * LE one exception is if we have pend_le_reports > 0 in which
7259 * case we're doing passive scanning and want these events.
7260 */
7261 if (!hci_discovery_active(hdev)) {
7262 if (link_type == ACL_LINK)
7263 return;
Johan Hedberg66f84552014-07-04 12:37:18 +03007264 if (link_type == LE_LINK && list_empty(&hdev->pend_le_reports))
Johan Hedberg75ce2082014-07-02 22:42:01 +03007265 return;
7266 }
Andre Guedes12602d02013-04-30 15:29:40 -03007267
Marcel Holtmannbda157a2014-12-05 10:55:56 +01007268 /* When using service discovery with a RSSI threshold, then check
7269 * if such a RSSI threshold is specified. If a RSSI threshold has
7270 * been specified, then all results with a RSSI smaller than the
7271 * RSSI threshold will be dropped.
Marcel Holtmannefb25132014-12-05 13:03:34 +01007272 *
7273 * For BR/EDR devices (pre 1.2) providing no RSSI during inquiry,
7274 * the results are also dropped.
Marcel Holtmannbda157a2014-12-05 10:55:56 +01007275 */
7276 if (hdev->discovery.rssi != HCI_RSSI_INVALID &&
Marcel Holtmannefb25132014-12-05 13:03:34 +01007277 (rssi < hdev->discovery.rssi || rssi == HCI_RSSI_INVALID))
Marcel Holtmannbda157a2014-12-05 10:55:56 +01007278 return;
7279
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02007280 /* Make sure that the buffer is big enough. The 5 extra bytes
7281 * are for the potential CoD field.
7282 */
7283 if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07007284 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03007285
Johan Hedberg1dc06092012-01-15 21:01:23 +02007286 memset(buf, 0, sizeof(buf));
7287
Marcel Holtmannda25cf62014-12-05 13:03:35 +01007288 /* In case of device discovery with BR/EDR devices (pre 1.2), the
7289 * RSSI value was reported as 0 when not available. This behavior
7290 * is kept when using device discovery. This is required for full
7291 * backwards compatibility with the API.
7292 *
7293 * However when using service discovery, the value 127 will be
7294 * returned when the RSSI is not available.
7295 */
Szymon Janc91200e92015-01-22 16:57:05 +01007296 if (rssi == HCI_RSSI_INVALID && !hdev->discovery.report_invalid_rssi &&
7297 link_type == ACL_LINK)
Marcel Holtmannefb25132014-12-05 13:03:34 +01007298 rssi = 0;
7299
Johan Hedberg841c5642014-07-07 12:45:54 +03007300 bacpy(&ev->addr.bdaddr, bdaddr);
7301 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberge319d2e2012-01-15 19:51:59 +02007302 ev->rssi = rssi;
Marcel Holtmannaf589252014-07-01 14:11:20 +02007303 ev->flags = cpu_to_le32(flags);
Johan Hedberge17acd42011-03-30 23:57:16 +03007304
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007305 if (eir_len > 0) {
7306 /* When using service discovery and a list of UUID is
7307 * provided, results with no matching UUID should be
7308 * dropped. In case there is a match the result is
7309 * kept and checking possible scan response data
7310 * will be skipped.
7311 */
Marcel Holtmannea8ae252014-12-17 18:18:08 +01007312 if (hdev->discovery.uuid_count > 0)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007313 match = eir_has_uuids(eir, eir_len,
7314 hdev->discovery.uuid_count,
7315 hdev->discovery.uuids);
Marcel Holtmannea8ae252014-12-17 18:18:08 +01007316 else
7317 match = true;
7318
7319 if (!match && !scan_rsp_len)
7320 return;
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007321
7322 /* Copy EIR or advertising data into event */
Johan Hedberge319d2e2012-01-15 19:51:59 +02007323 memcpy(ev->eir, eir, eir_len);
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007324 } else {
7325 /* When using service discovery and a list of UUID is
7326 * provided, results with empty EIR or advertising data
7327 * should be dropped since they do not match any UUID.
7328 */
Marcel Holtmannea8ae252014-12-17 18:18:08 +01007329 if (hdev->discovery.uuid_count > 0 && !scan_rsp_len)
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007330 return;
Marcel Holtmannea8ae252014-12-17 18:18:08 +01007331
7332 match = false;
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007333 }
Johan Hedberge17acd42011-03-30 23:57:16 +03007334
Johan Hedberg1dc06092012-01-15 21:01:23 +02007335 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
7336 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007337 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02007338
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007339 if (scan_rsp_len > 0) {
7340 /* When using service discovery and a list of UUID is
7341 * provided, results with no matching UUID should be
7342 * dropped if there is no previous match from the
7343 * advertising data.
7344 */
7345 if (hdev->discovery.uuid_count > 0) {
7346 if (!match && !eir_has_uuids(scan_rsp, scan_rsp_len,
7347 hdev->discovery.uuid_count,
7348 hdev->discovery.uuids))
7349 return;
7350 }
7351
7352 /* Append scan response data to event */
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02007353 memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);
Marcel Holtmannb487b9c2014-12-05 10:55:57 +01007354 } else {
7355 /* When using service discovery and a list of UUID is
7356 * provided, results with empty scan response and no
7357 * previous matched advertising data should be dropped.
7358 */
7359 if (hdev->discovery.uuid_count > 0 && !match)
7360 return;
7361 }
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02007362
7363 ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
7364 ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
Andre Guedesf8523592011-09-09 18:56:26 -03007365
Marcel Holtmann901801b2013-10-06 23:55:51 -07007366 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03007367}
Johan Hedberga88a9652011-03-30 13:18:12 +03007368
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07007369void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
7370 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03007371{
Johan Hedbergb644ba32012-01-17 21:48:47 +02007372 struct mgmt_ev_device_found *ev;
7373 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
7374 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03007375
Johan Hedbergb644ba32012-01-17 21:48:47 +02007376 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03007377
Johan Hedbergb644ba32012-01-17 21:48:47 +02007378 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03007379
Johan Hedbergb644ba32012-01-17 21:48:47 +02007380 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03007381 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007382 ev->rssi = rssi;
7383
7384 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03007385 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007386
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02007387 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02007388
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07007389 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03007390}
Johan Hedberg314b2382011-04-27 10:29:57 -04007391
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07007392void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04007393{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02007394 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02007395
Andre Guedes343fb142011-11-22 17:14:19 -03007396 BT_DBG("%s discovering %u", hdev->name, discovering);
7397
Johan Hedbergf963e8e2012-02-20 23:30:44 +02007398 memset(&ev, 0, sizeof(ev));
7399 ev.type = hdev->discovery.type;
7400 ev.discovering = discovering;
7401
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07007402 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04007403}
Antti Julku5e762442011-08-25 16:48:02 +03007404
Marcel Holtmann1904a852015-01-11 13:50:44 -08007405static void adv_enable_complete(struct hci_dev *hdev, u8 status, u16 opcode)
Marcel Holtmann5976e602013-10-06 04:08:14 -07007406{
7407 BT_DBG("%s status %u", hdev->name, status);
Marcel Holtmann5976e602013-10-06 04:08:14 -07007408}
7409
7410void mgmt_reenable_advertising(struct hci_dev *hdev)
7411{
7412 struct hci_request req;
7413
Marcel Holtmann5976e602013-10-06 04:08:14 -07007414 if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags))
7415 return;
7416
7417 hci_req_init(&req, hdev);
7418 enable_advertising(&req);
Johan Hedberg0ec5ae82014-07-08 15:07:50 +03007419 hci_req_run(&req, adv_enable_complete);
Marcel Holtmann5976e602013-10-06 04:08:14 -07007420}