blob: d42c07d2a817882620cfcc49721e3d07d0f831d4 [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
35#include "smp.h"
Johan Hedberg03811012010-12-08 00:21:06 +020036
Johan Hedberg2da9c552012-02-17 14:39:28 +020037#define MGMT_VERSION 1
Marcel Holtmann730f0912014-06-28 12:36:10 +020038#define MGMT_REVISION 7
Johan Hedberg02d98122010-12-13 21:07:04 +020039
Johan Hedberge70bb2e2012-02-13 16:59:33 +020040static const u16 mgmt_commands[] = {
41 MGMT_OP_READ_INDEX_LIST,
42 MGMT_OP_READ_INFO,
43 MGMT_OP_SET_POWERED,
44 MGMT_OP_SET_DISCOVERABLE,
45 MGMT_OP_SET_CONNECTABLE,
46 MGMT_OP_SET_FAST_CONNECTABLE,
47 MGMT_OP_SET_PAIRABLE,
48 MGMT_OP_SET_LINK_SECURITY,
49 MGMT_OP_SET_SSP,
50 MGMT_OP_SET_HS,
51 MGMT_OP_SET_LE,
52 MGMT_OP_SET_DEV_CLASS,
53 MGMT_OP_SET_LOCAL_NAME,
54 MGMT_OP_ADD_UUID,
55 MGMT_OP_REMOVE_UUID,
56 MGMT_OP_LOAD_LINK_KEYS,
57 MGMT_OP_LOAD_LONG_TERM_KEYS,
58 MGMT_OP_DISCONNECT,
59 MGMT_OP_GET_CONNECTIONS,
60 MGMT_OP_PIN_CODE_REPLY,
61 MGMT_OP_PIN_CODE_NEG_REPLY,
62 MGMT_OP_SET_IO_CAPABILITY,
63 MGMT_OP_PAIR_DEVICE,
64 MGMT_OP_CANCEL_PAIR_DEVICE,
65 MGMT_OP_UNPAIR_DEVICE,
66 MGMT_OP_USER_CONFIRM_REPLY,
67 MGMT_OP_USER_CONFIRM_NEG_REPLY,
68 MGMT_OP_USER_PASSKEY_REPLY,
69 MGMT_OP_USER_PASSKEY_NEG_REPLY,
70 MGMT_OP_READ_LOCAL_OOB_DATA,
71 MGMT_OP_ADD_REMOTE_OOB_DATA,
72 MGMT_OP_REMOVE_REMOTE_OOB_DATA,
73 MGMT_OP_START_DISCOVERY,
74 MGMT_OP_STOP_DISCOVERY,
75 MGMT_OP_CONFIRM_NAME,
76 MGMT_OP_BLOCK_DEVICE,
77 MGMT_OP_UNBLOCK_DEVICE,
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -070078 MGMT_OP_SET_DEVICE_ID,
Johan Hedberg4375f102013-09-25 13:26:10 +030079 MGMT_OP_SET_ADVERTISING,
Johan Hedberg0663ca22013-10-02 13:43:14 +030080 MGMT_OP_SET_BREDR,
Marcel Holtmannd13eafc2013-10-02 04:41:30 -070081 MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann7f72134e2013-10-11 14:44:58 -070082 MGMT_OP_SET_SCAN_PARAMS,
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -080083 MGMT_OP_SET_SECURE_CONN,
Marcel Holtmann4e39ac82014-01-31 11:55:22 -080084 MGMT_OP_SET_DEBUG_KEYS,
Johan Hedberg62b04cd2014-02-23 19:42:27 +020085 MGMT_OP_SET_PRIVACY,
Johan Hedberg41edf162014-02-18 10:19:35 +020086 MGMT_OP_LOAD_IRKS,
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +020087 MGMT_OP_GET_CONN_INFO,
Johan Hedberge70bb2e2012-02-13 16:59:33 +020088};
89
90static const u16 mgmt_events[] = {
91 MGMT_EV_CONTROLLER_ERROR,
92 MGMT_EV_INDEX_ADDED,
93 MGMT_EV_INDEX_REMOVED,
94 MGMT_EV_NEW_SETTINGS,
95 MGMT_EV_CLASS_OF_DEV_CHANGED,
96 MGMT_EV_LOCAL_NAME_CHANGED,
97 MGMT_EV_NEW_LINK_KEY,
98 MGMT_EV_NEW_LONG_TERM_KEY,
99 MGMT_EV_DEVICE_CONNECTED,
100 MGMT_EV_DEVICE_DISCONNECTED,
101 MGMT_EV_CONNECT_FAILED,
102 MGMT_EV_PIN_CODE_REQUEST,
103 MGMT_EV_USER_CONFIRM_REQUEST,
104 MGMT_EV_USER_PASSKEY_REQUEST,
105 MGMT_EV_AUTH_FAILED,
106 MGMT_EV_DEVICE_FOUND,
107 MGMT_EV_DISCOVERING,
108 MGMT_EV_DEVICE_BLOCKED,
109 MGMT_EV_DEVICE_UNBLOCKED,
110 MGMT_EV_DEVICE_UNPAIRED,
Johan Hedberg92a25252012-09-06 18:39:26 +0300111 MGMT_EV_PASSKEY_NOTIFY,
Marcel Holtmann1b60ef22014-02-21 21:35:30 -0800112 MGMT_EV_NEW_IRK,
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -0700113 MGMT_EV_NEW_CSRK,
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200114};
115
Marcel Holtmann17b02e62012-03-01 14:32:37 -0800116#define CACHE_TIMEOUT msecs_to_jiffies(2 * 1000)
Johan Hedberg7d785252011-12-15 00:47:39 +0200117
Johan Hedberg4b34ee782012-02-21 14:13:02 +0200118#define hdev_is_powered(hdev) (test_bit(HCI_UP, &hdev->flags) && \
119 !test_bit(HCI_AUTO_OFF, &hdev->dev_flags))
120
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200121struct pending_cmd {
122 struct list_head list;
Johan Hedbergfc2f4b12011-11-09 13:58:56 +0200123 u16 opcode;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200124 int index;
Szymon Jancc68fb7f2011-03-22 13:12:19 +0100125 void *param;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200126 struct sock *sk;
Johan Hedberge9a416b2011-02-19 12:05:56 -0300127 void *user_data;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +0200128};
129
Johan Hedbergca69b792011-11-11 18:10:00 +0200130/* HCI to MGMT error code conversion table */
131static u8 mgmt_status_table[] = {
132 MGMT_STATUS_SUCCESS,
133 MGMT_STATUS_UNKNOWN_COMMAND, /* Unknown Command */
134 MGMT_STATUS_NOT_CONNECTED, /* No Connection */
135 MGMT_STATUS_FAILED, /* Hardware Failure */
136 MGMT_STATUS_CONNECT_FAILED, /* Page Timeout */
137 MGMT_STATUS_AUTH_FAILED, /* Authentication Failed */
Johan Hedbergeadd6632014-01-13 17:15:53 +0200138 MGMT_STATUS_AUTH_FAILED, /* PIN or Key Missing */
Johan Hedbergca69b792011-11-11 18:10:00 +0200139 MGMT_STATUS_NO_RESOURCES, /* Memory Full */
140 MGMT_STATUS_TIMEOUT, /* Connection Timeout */
141 MGMT_STATUS_NO_RESOURCES, /* Max Number of Connections */
142 MGMT_STATUS_NO_RESOURCES, /* Max Number of SCO Connections */
143 MGMT_STATUS_ALREADY_CONNECTED, /* ACL Connection Exists */
144 MGMT_STATUS_BUSY, /* Command Disallowed */
145 MGMT_STATUS_NO_RESOURCES, /* Rejected Limited Resources */
146 MGMT_STATUS_REJECTED, /* Rejected Security */
147 MGMT_STATUS_REJECTED, /* Rejected Personal */
148 MGMT_STATUS_TIMEOUT, /* Host Timeout */
149 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Feature */
150 MGMT_STATUS_INVALID_PARAMS, /* Invalid Parameters */
151 MGMT_STATUS_DISCONNECTED, /* OE User Ended Connection */
152 MGMT_STATUS_NO_RESOURCES, /* OE Low Resources */
153 MGMT_STATUS_DISCONNECTED, /* OE Power Off */
154 MGMT_STATUS_DISCONNECTED, /* Connection Terminated */
155 MGMT_STATUS_BUSY, /* Repeated Attempts */
156 MGMT_STATUS_REJECTED, /* Pairing Not Allowed */
157 MGMT_STATUS_FAILED, /* Unknown LMP PDU */
158 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported Remote Feature */
159 MGMT_STATUS_REJECTED, /* SCO Offset Rejected */
160 MGMT_STATUS_REJECTED, /* SCO Interval Rejected */
161 MGMT_STATUS_REJECTED, /* Air Mode Rejected */
162 MGMT_STATUS_INVALID_PARAMS, /* Invalid LMP Parameters */
163 MGMT_STATUS_FAILED, /* Unspecified Error */
164 MGMT_STATUS_NOT_SUPPORTED, /* Unsupported LMP Parameter Value */
165 MGMT_STATUS_FAILED, /* Role Change Not Allowed */
166 MGMT_STATUS_TIMEOUT, /* LMP Response Timeout */
167 MGMT_STATUS_FAILED, /* LMP Error Transaction Collision */
168 MGMT_STATUS_FAILED, /* LMP PDU Not Allowed */
169 MGMT_STATUS_REJECTED, /* Encryption Mode Not Accepted */
170 MGMT_STATUS_FAILED, /* Unit Link Key Used */
171 MGMT_STATUS_NOT_SUPPORTED, /* QoS Not Supported */
172 MGMT_STATUS_TIMEOUT, /* Instant Passed */
173 MGMT_STATUS_NOT_SUPPORTED, /* Pairing Not Supported */
174 MGMT_STATUS_FAILED, /* Transaction Collision */
175 MGMT_STATUS_INVALID_PARAMS, /* Unacceptable Parameter */
176 MGMT_STATUS_REJECTED, /* QoS Rejected */
177 MGMT_STATUS_NOT_SUPPORTED, /* Classification Not Supported */
178 MGMT_STATUS_REJECTED, /* Insufficient Security */
179 MGMT_STATUS_INVALID_PARAMS, /* Parameter Out Of Range */
180 MGMT_STATUS_BUSY, /* Role Switch Pending */
181 MGMT_STATUS_FAILED, /* Slot Violation */
182 MGMT_STATUS_FAILED, /* Role Switch Failed */
183 MGMT_STATUS_INVALID_PARAMS, /* EIR Too Large */
184 MGMT_STATUS_NOT_SUPPORTED, /* Simple Pairing Not Supported */
185 MGMT_STATUS_BUSY, /* Host Busy Pairing */
186 MGMT_STATUS_REJECTED, /* Rejected, No Suitable Channel */
187 MGMT_STATUS_BUSY, /* Controller Busy */
188 MGMT_STATUS_INVALID_PARAMS, /* Unsuitable Connection Interval */
189 MGMT_STATUS_TIMEOUT, /* Directed Advertising Timeout */
190 MGMT_STATUS_AUTH_FAILED, /* Terminated Due to MIC Failure */
191 MGMT_STATUS_CONNECT_FAILED, /* Connection Establishment Failed */
192 MGMT_STATUS_CONNECT_FAILED, /* MAC Connection Failed */
193};
194
195static u8 mgmt_status(u8 hci_status)
196{
197 if (hci_status < ARRAY_SIZE(mgmt_status_table))
198 return mgmt_status_table[hci_status];
199
200 return MGMT_STATUS_FAILED;
201}
202
Szymon Janc4e51eae2011-02-25 19:05:48 +0100203static int cmd_status(struct sock *sk, u16 index, u16 cmd, u8 status)
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200204{
205 struct sk_buff *skb;
206 struct mgmt_hdr *hdr;
207 struct mgmt_ev_cmd_status *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300208 int err;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200209
Szymon Janc34eb5252011-02-28 14:10:08 +0100210 BT_DBG("sock %p, index %u, cmd %u, status %u", sk, index, cmd, status);
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200211
Andre Guedes790eff42012-06-07 19:05:46 -0300212 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev), GFP_KERNEL);
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200213 if (!skb)
214 return -ENOMEM;
215
216 hdr = (void *) skb_put(skb, sizeof(*hdr));
217
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700218 hdr->opcode = cpu_to_le16(MGMT_EV_CMD_STATUS);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100219 hdr->index = cpu_to_le16(index);
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200220 hdr->len = cpu_to_le16(sizeof(*ev));
221
222 ev = (void *) skb_put(skb, sizeof(*ev));
223 ev->status = status;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200224 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200225
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300226 err = sock_queue_rcv_skb(sk, skb);
227 if (err < 0)
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200228 kfree_skb(skb);
229
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300230 return err;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200231}
232
Johan Hedbergaee9b212012-02-18 15:07:59 +0200233static int cmd_complete(struct sock *sk, u16 index, u16 cmd, u8 status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300234 void *rp, size_t rp_len)
Johan Hedberg02d98122010-12-13 21:07:04 +0200235{
236 struct sk_buff *skb;
237 struct mgmt_hdr *hdr;
238 struct mgmt_ev_cmd_complete *ev;
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300239 int err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200240
241 BT_DBG("sock %p", sk);
242
Andre Guedes790eff42012-06-07 19:05:46 -0300243 skb = alloc_skb(sizeof(*hdr) + sizeof(*ev) + rp_len, GFP_KERNEL);
Johan Hedberg02d98122010-12-13 21:07:04 +0200244 if (!skb)
245 return -ENOMEM;
246
247 hdr = (void *) skb_put(skb, sizeof(*hdr));
Johan Hedberga38528f2011-01-22 06:46:43 +0200248
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700249 hdr->opcode = cpu_to_le16(MGMT_EV_CMD_COMPLETE);
Szymon Janc4e51eae2011-02-25 19:05:48 +0100250 hdr->index = cpu_to_le16(index);
Johan Hedberga38528f2011-01-22 06:46:43 +0200251 hdr->len = cpu_to_le16(sizeof(*ev) + rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200252
Johan Hedberga38528f2011-01-22 06:46:43 +0200253 ev = (void *) skb_put(skb, sizeof(*ev) + rp_len);
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200254 ev->opcode = cpu_to_le16(cmd);
Johan Hedbergaee9b212012-02-18 15:07:59 +0200255 ev->status = status;
Szymon Janc8020c162011-02-28 14:09:50 +0100256
257 if (rp)
258 memcpy(ev->data, rp, rp_len);
Johan Hedberg02d98122010-12-13 21:07:04 +0200259
Gustavo F. Padovan56b7d132011-10-14 19:20:01 -0300260 err = sock_queue_rcv_skb(sk, skb);
261 if (err < 0)
Johan Hedberg02d98122010-12-13 21:07:04 +0200262 kfree_skb(skb);
263
Marcel Holtmanne5f0e152012-02-22 11:59:01 +0100264 return err;
Johan Hedberg02d98122010-12-13 21:07:04 +0200265}
266
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300267static int read_version(struct sock *sk, struct hci_dev *hdev, void *data,
268 u16 data_len)
Johan Hedberga38528f2011-01-22 06:46:43 +0200269{
270 struct mgmt_rp_read_version rp;
271
272 BT_DBG("sock %p", sk);
273
274 rp.version = MGMT_VERSION;
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700275 rp.revision = cpu_to_le16(MGMT_REVISION);
Johan Hedberga38528f2011-01-22 06:46:43 +0200276
Johan Hedbergaee9b212012-02-18 15:07:59 +0200277 return cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_VERSION, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300278 sizeof(rp));
Johan Hedberga38528f2011-01-22 06:46:43 +0200279}
280
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300281static int read_commands(struct sock *sk, struct hci_dev *hdev, void *data,
282 u16 data_len)
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200283{
284 struct mgmt_rp_read_commands *rp;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200285 const u16 num_commands = ARRAY_SIZE(mgmt_commands);
286 const u16 num_events = ARRAY_SIZE(mgmt_events);
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +0200287 __le16 *opcode;
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200288 size_t rp_size;
289 int i, err;
290
291 BT_DBG("sock %p", sk);
292
293 rp_size = sizeof(*rp) + ((num_commands + num_events) * sizeof(u16));
294
295 rp = kmalloc(rp_size, GFP_KERNEL);
296 if (!rp)
297 return -ENOMEM;
298
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700299 rp->num_commands = cpu_to_le16(num_commands);
300 rp->num_events = cpu_to_le16(num_events);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200301
302 for (i = 0, opcode = rp->opcodes; i < num_commands; i++, opcode++)
303 put_unaligned_le16(mgmt_commands[i], opcode);
304
305 for (i = 0; i < num_events; i++, opcode++)
306 put_unaligned_le16(mgmt_events[i], opcode);
307
Johan Hedbergaee9b212012-02-18 15:07:59 +0200308 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_COMMANDS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300309 rp_size);
Johan Hedberge70bb2e2012-02-13 16:59:33 +0200310 kfree(rp);
311
312 return err;
313}
314
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300315static int read_index_list(struct sock *sk, struct hci_dev *hdev, void *data,
316 u16 data_len)
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200317{
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200318 struct mgmt_rp_read_index_list *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200319 struct hci_dev *d;
Johan Hedberga38528f2011-01-22 06:46:43 +0200320 size_t rp_len;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200321 u16 count;
Johan Hedberg476e44c2012-10-19 20:10:46 +0300322 int err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200323
324 BT_DBG("sock %p", sk);
325
326 read_lock(&hci_dev_list_lock);
327
328 count = 0;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +0300329 list_for_each_entry(d, &hci_dev_list, list) {
Marcel Holtmann1514b892013-10-06 08:25:01 -0700330 if (d->dev_type == HCI_BREDR)
331 count++;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200332 }
333
Johan Hedberga38528f2011-01-22 06:46:43 +0200334 rp_len = sizeof(*rp) + (2 * count);
335 rp = kmalloc(rp_len, GFP_ATOMIC);
336 if (!rp) {
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100337 read_unlock(&hci_dev_list_lock);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200338 return -ENOMEM;
Jesper Juhlb2c60d42011-01-14 00:18:49 +0100339 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200340
Johan Hedberg476e44c2012-10-19 20:10:46 +0300341 count = 0;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +0200342 list_for_each_entry(d, &hci_dev_list, list) {
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200343 if (test_bit(HCI_SETUP, &d->dev_flags))
Johan Hedbergab81cbf2010-12-15 13:53:18 +0200344 continue;
345
Marcel Holtmann0736cfa2013-08-26 21:40:51 -0700346 if (test_bit(HCI_USER_CHANNEL, &d->dev_flags))
347 continue;
348
Marcel Holtmann1514b892013-10-06 08:25:01 -0700349 if (d->dev_type == HCI_BREDR) {
350 rp->index[count++] = cpu_to_le16(d->id);
351 BT_DBG("Added hci%u", d->id);
352 }
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200353 }
354
Johan Hedberg476e44c2012-10-19 20:10:46 +0300355 rp->num_controllers = cpu_to_le16(count);
356 rp_len = sizeof(*rp) + (2 * count);
357
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200358 read_unlock(&hci_dev_list_lock);
359
Johan Hedbergaee9b212012-02-18 15:07:59 +0200360 err = cmd_complete(sk, MGMT_INDEX_NONE, MGMT_OP_READ_INDEX_LIST, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300361 rp_len);
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200362
Johan Hedberga38528f2011-01-22 06:46:43 +0200363 kfree(rp);
364
365 return err;
Johan Hedbergfaba42e2010-12-13 21:07:05 +0200366}
367
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200368static u32 get_supported_settings(struct hci_dev *hdev)
Johan Hedberg03811012010-12-08 00:21:06 +0200369{
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200370 u32 settings = 0;
Johan Hedberg03811012010-12-08 00:21:06 +0200371
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200372 settings |= MGMT_SETTING_POWERED;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200373 settings |= MGMT_SETTING_PAIRABLE;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800374 settings |= MGMT_SETTING_DEBUG_KEYS;
Johan Hedberg03811012010-12-08 00:21:06 +0200375
Andre Guedesed3fa312012-07-24 15:03:46 -0300376 if (lmp_bredr_capable(hdev)) {
Johan Hedberg33c525c2012-10-24 21:11:58 +0300377 settings |= MGMT_SETTING_CONNECTABLE;
Johan Hedberg1a47aee2013-03-15 17:07:06 -0500378 if (hdev->hci_ver >= BLUETOOTH_VER_1_2)
379 settings |= MGMT_SETTING_FAST_CONNECTABLE;
Johan Hedberg33c525c2012-10-24 21:11:58 +0300380 settings |= MGMT_SETTING_DISCOVERABLE;
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200381 settings |= MGMT_SETTING_BREDR;
382 settings |= MGMT_SETTING_LINK_SECURITY;
Marcel Holtmanna82974c2013-10-11 09:48:47 -0700383
384 if (lmp_ssp_capable(hdev)) {
385 settings |= MGMT_SETTING_SSP;
386 settings |= MGMT_SETTING_HS;
387 }
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800388
Marcel Holtmann5afeac12014-01-10 02:07:27 -0800389 if (lmp_sc_capable(hdev) ||
Marcel Holtmann111902f2014-06-21 04:53:17 +0200390 test_bit(HCI_FORCE_SC, &hdev->dbg_flags))
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800391 settings |= MGMT_SETTING_SECURE_CONN;
Marcel Holtmann848566b2013-10-01 22:59:22 -0700392 }
Marcel Holtmannd7b7e792012-02-20 21:47:49 +0100393
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300394 if (lmp_le_capable(hdev)) {
Marcel Holtmann9d428202012-05-03 07:12:31 +0200395 settings |= MGMT_SETTING_LE;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300396 settings |= MGMT_SETTING_ADVERTISING;
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200397 settings |= MGMT_SETTING_PRIVACY;
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300398 }
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200399
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200400 return settings;
401}
Johan Hedbergebc99fe2011-01-04 11:54:26 +0200402
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200403static u32 get_current_settings(struct hci_dev *hdev)
404{
405 u32 settings = 0;
Johan Hedbergdc4fe302011-03-16 14:29:36 +0200406
Johan Hedbergf1f0eb02012-02-21 17:15:41 +0200407 if (hdev_is_powered(hdev))
Marcel Holtmannf0d4b782012-02-21 12:14:25 +0100408 settings |= MGMT_SETTING_POWERED;
409
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200410 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200411 settings |= MGMT_SETTING_CONNECTABLE;
412
Johan Hedberg1a4d3c42013-03-15 17:07:08 -0500413 if (test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags))
414 settings |= MGMT_SETTING_FAST_CONNECTABLE;
415
Johan Hedberg5e5282b2012-02-21 16:01:30 +0200416 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200417 settings |= MGMT_SETTING_DISCOVERABLE;
418
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200419 if (test_bit(HCI_PAIRABLE, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200420 settings |= MGMT_SETTING_PAIRABLE;
421
Johan Hedberg56f87902013-10-02 13:43:13 +0300422 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200423 settings |= MGMT_SETTING_BREDR;
424
Johan Hedberg06199cf2012-02-22 16:37:11 +0200425 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200426 settings |= MGMT_SETTING_LE;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200427
Johan Hedberg47990ea2012-02-22 11:58:37 +0200428 if (test_bit(HCI_LINK_SECURITY, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200429 settings |= MGMT_SETTING_LINK_SECURITY;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200430
Johan Hedberg84bde9d6c2012-01-25 14:21:06 +0200431 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200432 settings |= MGMT_SETTING_SSP;
Johan Hedbergf7b64e692010-12-13 21:07:06 +0200433
Johan Hedberg6d80dfd2012-02-20 23:50:38 +0200434 if (test_bit(HCI_HS_ENABLED, &hdev->dev_flags))
435 settings |= MGMT_SETTING_HS;
436
Johan Hedbergf3d3444a2013-10-05 12:01:04 +0200437 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
Johan Hedbergeeca6f82013-09-25 13:26:09 +0300438 settings |= MGMT_SETTING_ADVERTISING;
439
Marcel Holtmanne98d2ce2014-01-10 02:07:22 -0800440 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags))
441 settings |= MGMT_SETTING_SECURE_CONN;
442
Johan Hedberg0663b292014-06-24 13:15:50 +0300443 if (test_bit(HCI_KEEP_DEBUG_KEYS, &hdev->dev_flags))
Marcel Holtmannb1de97d2014-01-31 11:55:21 -0800444 settings |= MGMT_SETTING_DEBUG_KEYS;
445
Johan Hedberg0f4bd942014-02-22 19:06:35 +0200446 if (test_bit(HCI_PRIVACY, &hdev->dev_flags))
447 settings |= MGMT_SETTING_PRIVACY;
448
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200449 return settings;
Johan Hedbergc542a062011-01-26 13:11:03 +0200450}
451
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300452#define PNP_INFO_SVCLASS_ID 0x1200
453
Johan Hedberg213202e2013-01-27 00:31:33 +0200454static u8 *create_uuid16_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
455{
456 u8 *ptr = data, *uuids_start = NULL;
457 struct bt_uuid *uuid;
458
459 if (len < 4)
460 return ptr;
461
462 list_for_each_entry(uuid, &hdev->uuids, list) {
463 u16 uuid16;
464
465 if (uuid->size != 16)
466 continue;
467
468 uuid16 = get_unaligned_le16(&uuid->uuid[12]);
469 if (uuid16 < 0x1100)
470 continue;
471
472 if (uuid16 == PNP_INFO_SVCLASS_ID)
473 continue;
474
475 if (!uuids_start) {
476 uuids_start = ptr;
477 uuids_start[0] = 1;
478 uuids_start[1] = EIR_UUID16_ALL;
479 ptr += 2;
480 }
481
482 /* Stop if not enough space to put next UUID */
483 if ((ptr - data) + sizeof(u16) > len) {
484 uuids_start[1] = EIR_UUID16_SOME;
485 break;
486 }
487
488 *ptr++ = (uuid16 & 0x00ff);
489 *ptr++ = (uuid16 & 0xff00) >> 8;
490 uuids_start[0] += sizeof(uuid16);
491 }
492
493 return ptr;
494}
495
Johan Hedbergcdf19632013-01-27 00:31:34 +0200496static u8 *create_uuid32_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
497{
498 u8 *ptr = data, *uuids_start = NULL;
499 struct bt_uuid *uuid;
500
501 if (len < 6)
502 return ptr;
503
504 list_for_each_entry(uuid, &hdev->uuids, list) {
505 if (uuid->size != 32)
506 continue;
507
508 if (!uuids_start) {
509 uuids_start = ptr;
510 uuids_start[0] = 1;
511 uuids_start[1] = EIR_UUID32_ALL;
512 ptr += 2;
513 }
514
515 /* Stop if not enough space to put next UUID */
516 if ((ptr - data) + sizeof(u32) > len) {
517 uuids_start[1] = EIR_UUID32_SOME;
518 break;
519 }
520
521 memcpy(ptr, &uuid->uuid[12], sizeof(u32));
522 ptr += sizeof(u32);
523 uuids_start[0] += sizeof(u32);
524 }
525
526 return ptr;
527}
528
Johan Hedbergc00d5752013-01-27 00:31:35 +0200529static u8 *create_uuid128_list(struct hci_dev *hdev, u8 *data, ptrdiff_t len)
530{
531 u8 *ptr = data, *uuids_start = NULL;
532 struct bt_uuid *uuid;
533
534 if (len < 18)
535 return ptr;
536
537 list_for_each_entry(uuid, &hdev->uuids, list) {
538 if (uuid->size != 128)
539 continue;
540
541 if (!uuids_start) {
542 uuids_start = ptr;
543 uuids_start[0] = 1;
544 uuids_start[1] = EIR_UUID128_ALL;
545 ptr += 2;
546 }
547
548 /* Stop if not enough space to put next UUID */
549 if ((ptr - data) + 16 > len) {
550 uuids_start[1] = EIR_UUID128_SOME;
551 break;
552 }
553
554 memcpy(ptr, uuid->uuid, 16);
555 ptr += 16;
556 uuids_start[0] += 16;
557 }
558
559 return ptr;
560}
561
Johan Hedbergeb2a8d22013-10-19 23:38:20 +0300562static struct pending_cmd *mgmt_pending_find(u16 opcode, struct hci_dev *hdev)
563{
564 struct pending_cmd *cmd;
565
566 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
567 if (cmd->opcode == opcode)
568 return cmd;
569 }
570
571 return NULL;
572}
573
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700574static u8 create_scan_rsp_data(struct hci_dev *hdev, u8 *ptr)
575{
Marcel Holtmann7a5f4992013-10-16 00:16:49 -0700576 u8 ad_len = 0;
577 size_t name_len;
578
579 name_len = strlen(hdev->dev_name);
580 if (name_len > 0) {
581 size_t max_len = HCI_MAX_AD_LENGTH - ad_len - 2;
582
583 if (name_len > max_len) {
584 name_len = max_len;
585 ptr[1] = EIR_NAME_SHORT;
586 } else
587 ptr[1] = EIR_NAME_COMPLETE;
588
589 ptr[0] = name_len + 1;
590
591 memcpy(ptr + 2, hdev->dev_name, name_len);
592
593 ad_len += (name_len + 2);
594 ptr += (name_len + 2);
595 }
596
597 return ad_len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700598}
599
600static void update_scan_rsp_data(struct hci_request *req)
601{
602 struct hci_dev *hdev = req->hdev;
603 struct hci_cp_le_set_scan_rsp_data cp;
604 u8 len;
605
Johan Hedberg7751ef12013-10-19 23:38:15 +0300606 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700607 return;
608
609 memset(&cp, 0, sizeof(cp));
610
611 len = create_scan_rsp_data(hdev, cp.data);
612
Johan Hedbergeb438b52013-10-16 15:31:07 +0300613 if (hdev->scan_rsp_data_len == len &&
614 memcmp(cp.data, hdev->scan_rsp_data, len) == 0)
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700615 return;
616
Johan Hedbergeb438b52013-10-16 15:31:07 +0300617 memcpy(hdev->scan_rsp_data, cp.data, sizeof(cp.data));
618 hdev->scan_rsp_data_len = len;
Marcel Holtmannf14d8f62013-10-16 00:16:48 -0700619
620 cp.length = len;
621
622 hci_req_add(req, HCI_OP_LE_SET_SCAN_RSP_DATA, sizeof(cp), &cp);
623}
624
Johan Hedberg9a43e252013-10-20 19:00:07 +0300625static u8 get_adv_discov_flags(struct hci_dev *hdev)
626{
627 struct pending_cmd *cmd;
628
629 /* If there's a pending mgmt command the flags will not yet have
630 * their final values, so check for this first.
631 */
632 cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
633 if (cmd) {
634 struct mgmt_mode *cp = cmd->param;
635 if (cp->val == 0x01)
636 return LE_AD_GENERAL;
637 else if (cp->val == 0x02)
638 return LE_AD_LIMITED;
639 } else {
640 if (test_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags))
641 return LE_AD_LIMITED;
642 else if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
643 return LE_AD_GENERAL;
644 }
645
646 return 0;
647}
648
Marcel Holtmann46cad2e2013-10-16 00:16:46 -0700649static u8 create_adv_data(struct hci_dev *hdev, u8 *ptr)
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700650{
651 u8 ad_len = 0, flags = 0;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700652
Johan Hedberg9a43e252013-10-20 19:00:07 +0300653 flags |= get_adv_discov_flags(hdev);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700654
Johan Hedberge8340042014-01-30 11:16:50 -0800655 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700656 flags |= LE_AD_NO_BREDR;
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700657
658 if (flags) {
659 BT_DBG("adv flags 0x%02x", flags);
660
661 ptr[0] = 2;
662 ptr[1] = EIR_FLAGS;
663 ptr[2] = flags;
664
665 ad_len += 3;
666 ptr += 3;
667 }
668
669 if (hdev->adv_tx_power != HCI_TX_POWER_INVALID) {
670 ptr[0] = 2;
671 ptr[1] = EIR_TX_POWER;
672 ptr[2] = (u8) hdev->adv_tx_power;
673
674 ad_len += 3;
675 ptr += 3;
676 }
677
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700678 return ad_len;
679}
680
Marcel Holtmann5947f4b2013-10-16 00:16:50 -0700681static void update_adv_data(struct hci_request *req)
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700682{
683 struct hci_dev *hdev = req->hdev;
684 struct hci_cp_le_set_adv_data cp;
685 u8 len;
686
Johan Hedberg10994ce2013-10-19 23:38:16 +0300687 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700688 return;
689
690 memset(&cp, 0, sizeof(cp));
691
Marcel Holtmann46cad2e2013-10-16 00:16:46 -0700692 len = create_adv_data(hdev, cp.data);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -0700693
694 if (hdev->adv_data_len == len &&
695 memcmp(cp.data, hdev->adv_data, len) == 0)
696 return;
697
698 memcpy(hdev->adv_data, cp.data, sizeof(cp.data));
699 hdev->adv_data_len = len;
700
701 cp.length = len;
702
703 hci_req_add(req, HCI_OP_LE_SET_ADV_DATA, sizeof(cp), &cp);
704}
705
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300706static void create_eir(struct hci_dev *hdev, u8 *data)
707{
708 u8 *ptr = data;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300709 size_t name_len;
710
711 name_len = strlen(hdev->dev_name);
712
713 if (name_len > 0) {
714 /* EIR Data type */
715 if (name_len > 48) {
716 name_len = 48;
717 ptr[1] = EIR_NAME_SHORT;
718 } else
719 ptr[1] = EIR_NAME_COMPLETE;
720
721 /* EIR Data length */
722 ptr[0] = name_len + 1;
723
724 memcpy(ptr + 2, hdev->dev_name, name_len);
725
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300726 ptr += (name_len + 2);
727 }
728
Johan Hedbergbbaf4442012-11-08 01:22:59 +0100729 if (hdev->inq_tx_power != HCI_TX_POWER_INVALID) {
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700730 ptr[0] = 2;
731 ptr[1] = EIR_TX_POWER;
732 ptr[2] = (u8) hdev->inq_tx_power;
733
Marcel Holtmann91c4e9b2012-03-11 19:27:21 -0700734 ptr += 3;
735 }
736
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700737 if (hdev->devid_source > 0) {
738 ptr[0] = 9;
739 ptr[1] = EIR_DEVICE_ID;
740
741 put_unaligned_le16(hdev->devid_source, ptr + 2);
742 put_unaligned_le16(hdev->devid_vendor, ptr + 4);
743 put_unaligned_le16(hdev->devid_product, ptr + 6);
744 put_unaligned_le16(hdev->devid_version, ptr + 8);
745
Marcel Holtmann2b9be132012-03-11 19:32:12 -0700746 ptr += 10;
747 }
748
Johan Hedberg213202e2013-01-27 00:31:33 +0200749 ptr = create_uuid16_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergcdf19632013-01-27 00:31:34 +0200750 ptr = create_uuid32_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedbergc00d5752013-01-27 00:31:35 +0200751 ptr = create_uuid128_list(hdev, ptr, HCI_MAX_EIR_LENGTH - (ptr - data));
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300752}
753
Johan Hedberg890ea892013-03-15 17:06:52 -0500754static void update_eir(struct hci_request *req)
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300755{
Johan Hedberg890ea892013-03-15 17:06:52 -0500756 struct hci_dev *hdev = req->hdev;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300757 struct hci_cp_write_eir cp;
758
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200759 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500760 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200761
Johan Hedberg976eb202012-10-24 21:12:01 +0300762 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500763 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300764
Johan Hedberg84bde9d6c2012-01-25 14:21:06 +0200765 if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500766 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300767
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200768 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500769 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300770
771 memset(&cp, 0, sizeof(cp));
772
773 create_eir(hdev, cp.data);
774
775 if (memcmp(cp.data, hdev->eir, sizeof(cp.data)) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -0500776 return;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300777
778 memcpy(hdev->eir, cp.data, sizeof(cp.data));
779
Johan Hedberg890ea892013-03-15 17:06:52 -0500780 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedberg80a1e1d2011-03-28 14:07:23 +0300781}
782
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200783static u8 get_service_classes(struct hci_dev *hdev)
784{
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300785 struct bt_uuid *uuid;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200786 u8 val = 0;
787
Gustavo F. Padovan12dc0742011-10-14 19:32:56 -0300788 list_for_each_entry(uuid, &hdev->uuids, list)
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200789 val |= uuid->svc_hint;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200790
791 return val;
792}
793
Johan Hedberg890ea892013-03-15 17:06:52 -0500794static void update_class(struct hci_request *req)
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200795{
Johan Hedberg890ea892013-03-15 17:06:52 -0500796 struct hci_dev *hdev = req->hdev;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200797 u8 cod[3];
798
799 BT_DBG("%s", hdev->name);
800
Johan Hedberg504c8dc2012-02-23 13:30:41 +0200801 if (!hdev_is_powered(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -0500802 return;
Johan Hedberg7770c4a2012-02-22 22:06:38 +0200803
Johan Hedbergf87ea1d2013-10-19 23:38:17 +0300804 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
805 return;
806
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200807 if (test_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg890ea892013-03-15 17:06:52 -0500808 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200809
810 cod[0] = hdev->minor_class;
811 cod[1] = hdev->major_class;
812 cod[2] = get_service_classes(hdev);
813
Marcel Holtmann6acd7db2013-10-15 06:33:53 -0700814 if (test_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags))
815 cod[1] |= 0x20;
816
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200817 if (memcmp(cod, hdev->dev_class, 3) == 0)
Johan Hedberg890ea892013-03-15 17:06:52 -0500818 return;
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200819
Johan Hedberg890ea892013-03-15 17:06:52 -0500820 hci_req_add(req, HCI_OP_WRITE_CLASS_OF_DEV, sizeof(cod), cod);
Johan Hedberg1aff6f02011-01-13 21:56:52 +0200821}
822
Johan Hedberga4858cb2014-02-25 19:56:31 +0200823static bool get_connectable(struct hci_dev *hdev)
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200824{
825 struct pending_cmd *cmd;
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200826
827 /* If there's a pending mgmt command the flag will not yet have
828 * it's final value, so check for this first.
829 */
830 cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
831 if (cmd) {
832 struct mgmt_mode *cp = cmd->param;
Johan Hedberga4858cb2014-02-25 19:56:31 +0200833 return cp->val;
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200834 }
835
Johan Hedberga4858cb2014-02-25 19:56:31 +0200836 return test_bit(HCI_CONNECTABLE, &hdev->dev_flags);
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200837}
838
839static void enable_advertising(struct hci_request *req)
840{
841 struct hci_dev *hdev = req->hdev;
842 struct hci_cp_le_set_adv_param cp;
Johan Hedberg8f2a0602014-02-23 19:42:23 +0200843 u8 own_addr_type, enable = 0x01;
Johan Hedberga4858cb2014-02-25 19:56:31 +0200844 bool connectable;
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200845
Johan Hedberg8d972502014-02-28 12:54:14 +0200846 /* Clear the HCI_ADVERTISING bit temporarily so that the
847 * hci_update_random_address knows that it's safe to go ahead
848 * and write a new random address. The flag will be set back on
849 * as soon as the SET_ADV_ENABLE HCI command completes.
850 */
851 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
852
Johan Hedberga4858cb2014-02-25 19:56:31 +0200853 connectable = get_connectable(hdev);
Johan Hedberg8f2a0602014-02-23 19:42:23 +0200854
Johan Hedberga4858cb2014-02-25 19:56:31 +0200855 /* Set require_privacy to true only when non-connectable
856 * advertising is used. In that case it is fine to use a
857 * non-resolvable private address.
858 */
859 if (hci_update_random_address(req, !connectable, &own_addr_type) < 0)
Johan Hedberg8f2a0602014-02-23 19:42:23 +0200860 return;
861
Marcel Holtmann41c90c12014-02-23 20:25:55 -0800862 memset(&cp, 0, sizeof(cp));
Joe Perchesdcf4adb2014-03-12 10:52:35 -0700863 cp.min_interval = cpu_to_le16(0x0800);
864 cp.max_interval = cpu_to_le16(0x0800);
Johan Hedberga4858cb2014-02-25 19:56:31 +0200865 cp.type = connectable ? LE_ADV_IND : LE_ADV_NONCONN_IND;
Johan Hedberg8f2a0602014-02-23 19:42:23 +0200866 cp.own_address_type = own_addr_type;
Johan Hedberg199a2fb2014-02-22 19:06:33 +0200867 cp.channel_map = hdev->le_adv_channel_map;
868
869 hci_req_add(req, HCI_OP_LE_SET_ADV_PARAM, sizeof(cp), &cp);
870
871 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
872}
873
874static void disable_advertising(struct hci_request *req)
875{
876 u8 enable = 0x00;
877
878 hci_req_add(req, HCI_OP_LE_SET_ADV_ENABLE, sizeof(enable), &enable);
879}
880
Johan Hedberg7d785252011-12-15 00:47:39 +0200881static void service_cache_off(struct work_struct *work)
882{
883 struct hci_dev *hdev = container_of(work, struct hci_dev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300884 service_cache.work);
Johan Hedberg890ea892013-03-15 17:06:52 -0500885 struct hci_request req;
Johan Hedberg7d785252011-12-15 00:47:39 +0200886
Johan Hedberga8b2d5c2012-01-08 23:11:15 +0200887 if (!test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags))
Johan Hedberg7d785252011-12-15 00:47:39 +0200888 return;
889
Johan Hedberg890ea892013-03-15 17:06:52 -0500890 hci_req_init(&req, hdev);
891
Johan Hedberg7d785252011-12-15 00:47:39 +0200892 hci_dev_lock(hdev);
893
Johan Hedberg890ea892013-03-15 17:06:52 -0500894 update_eir(&req);
895 update_class(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +0200896
897 hci_dev_unlock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -0500898
899 hci_req_run(&req, NULL);
Johan Hedberg7d785252011-12-15 00:47:39 +0200900}
901
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200902static void rpa_expired(struct work_struct *work)
903{
904 struct hci_dev *hdev = container_of(work, struct hci_dev,
905 rpa_expired.work);
906 struct hci_request req;
907
908 BT_DBG("");
909
910 set_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
911
912 if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags) ||
913 hci_conn_num(hdev, LE_LINK) > 0)
914 return;
915
916 /* The generation of a new RPA and programming it into the
917 * controller happens in the enable_advertising() function.
918 */
919
920 hci_req_init(&req, hdev);
921
922 disable_advertising(&req);
923 enable_advertising(&req);
924
925 hci_req_run(&req, NULL);
926}
927
Johan Hedberg6a919082012-02-28 06:17:26 +0200928static void mgmt_init_hdev(struct sock *sk, struct hci_dev *hdev)
Johan Hedberg7d785252011-12-15 00:47:39 +0200929{
Johan Hedberg4f87da82012-03-02 19:55:56 +0200930 if (test_and_set_bit(HCI_MGMT, &hdev->dev_flags))
Johan Hedberg6a919082012-02-28 06:17:26 +0200931 return;
932
Johan Hedberg4f87da82012-03-02 19:55:56 +0200933 INIT_DELAYED_WORK(&hdev->service_cache, service_cache_off);
Johan Hedbergd6bfd592014-02-23 19:42:20 +0200934 INIT_DELAYED_WORK(&hdev->rpa_expired, rpa_expired);
Johan Hedberg7d785252011-12-15 00:47:39 +0200935
Johan Hedberg4f87da82012-03-02 19:55:56 +0200936 /* Non-mgmt controlled devices get this bit set
937 * implicitly so that pairing works for them, however
938 * for mgmt we require user-space to explicitly enable
939 * it
940 */
941 clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedberg7d785252011-12-15 00:47:39 +0200942}
943
Johan Hedberg0f4e68c2012-02-28 17:18:30 +0200944static int read_controller_info(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300945 void *data, u16 data_len)
Johan Hedberg03811012010-12-08 00:21:06 +0200946{
947 struct mgmt_rp_read_info rp;
Johan Hedberg03811012010-12-08 00:21:06 +0200948
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200949 BT_DBG("sock %p %s", sk, hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +0200950
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300951 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200952
Johan Hedberg03811012010-12-08 00:21:06 +0200953 memset(&rp, 0, sizeof(rp));
954
Johan Hedberg03811012010-12-08 00:21:06 +0200955 bacpy(&rp.bdaddr, &hdev->bdaddr);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200956
957 rp.version = hdev->hci_ver;
Marcel Holtmanneb55ef02012-03-14 18:08:46 +0200958 rp.manufacturer = cpu_to_le16(hdev->manufacturer);
Johan Hedberg69ab39e2011-12-15 00:47:35 +0200959
960 rp.supported_settings = cpu_to_le32(get_supported_settings(hdev));
961 rp.current_settings = cpu_to_le32(get_current_settings(hdev));
962
963 memcpy(rp.dev_class, hdev->dev_class, 3);
Johan Hedberg03811012010-12-08 00:21:06 +0200964
965 memcpy(rp.name, hdev->dev_name, sizeof(hdev->dev_name));
Johan Hedberg27fcc362012-02-22 21:46:22 +0200966 memcpy(rp.short_name, hdev->short_name, sizeof(hdev->short_name));
Johan Hedberg03811012010-12-08 00:21:06 +0200967
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -0300968 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +0200969
Johan Hedbergbdb6d972012-02-28 06:13:32 +0200970 return cmd_complete(sk, hdev->id, MGMT_OP_READ_INFO, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300971 sizeof(rp));
Johan Hedberg03811012010-12-08 00:21:06 +0200972}
973
974static void mgmt_pending_free(struct pending_cmd *cmd)
975{
976 sock_put(cmd->sk);
977 kfree(cmd->param);
978 kfree(cmd);
979}
980
981static struct pending_cmd *mgmt_pending_add(struct sock *sk, u16 opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -0300982 struct hci_dev *hdev, void *data,
983 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +0200984{
985 struct pending_cmd *cmd;
986
Andre Guedes12b94562012-06-07 19:05:45 -0300987 cmd = kmalloc(sizeof(*cmd), GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200988 if (!cmd)
989 return NULL;
990
991 cmd->opcode = opcode;
992 cmd->index = hdev->id;
993
Andre Guedes12b94562012-06-07 19:05:45 -0300994 cmd->param = kmalloc(len, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +0200995 if (!cmd->param) {
996 kfree(cmd);
997 return NULL;
998 }
999
1000 if (data)
1001 memcpy(cmd->param, data, len);
1002
1003 cmd->sk = sk;
1004 sock_hold(sk);
1005
1006 list_add(&cmd->list, &hdev->mgmt_pending);
1007
1008 return cmd;
1009}
1010
1011static void mgmt_pending_foreach(u16 opcode, struct hci_dev *hdev,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03001012 void (*cb)(struct pending_cmd *cmd,
1013 void *data),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001014 void *data)
Johan Hedberg03811012010-12-08 00:21:06 +02001015{
Andre Guedesa3d09352013-02-01 11:21:30 -03001016 struct pending_cmd *cmd, *tmp;
Johan Hedberg03811012010-12-08 00:21:06 +02001017
Andre Guedesa3d09352013-02-01 11:21:30 -03001018 list_for_each_entry_safe(cmd, tmp, &hdev->mgmt_pending, list) {
Johan Hedberg03811012010-12-08 00:21:06 +02001019 if (opcode > 0 && cmd->opcode != opcode)
1020 continue;
1021
1022 cb(cmd, data);
1023 }
1024}
1025
Johan Hedberg03811012010-12-08 00:21:06 +02001026static void mgmt_pending_remove(struct pending_cmd *cmd)
1027{
1028 list_del(&cmd->list);
1029 mgmt_pending_free(cmd);
1030}
1031
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001032static int send_settings_rsp(struct sock *sk, u16 opcode, struct hci_dev *hdev)
Johan Hedberg86805702011-11-11 16:18:52 +02001033{
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001034 __le32 settings = cpu_to_le32(get_current_settings(hdev));
Johan Hedberg86805702011-11-11 16:18:52 +02001035
Johan Hedbergaee9b212012-02-18 15:07:59 +02001036 return cmd_complete(sk, hdev->id, opcode, 0, &settings,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001037 sizeof(settings));
Johan Hedberg86805702011-11-11 16:18:52 +02001038}
1039
Johan Hedberg8b064a32014-02-24 14:52:22 +02001040static void clean_up_hci_complete(struct hci_dev *hdev, u8 status)
1041{
1042 BT_DBG("%s status 0x%02x", hdev->name, status);
1043
Johan Hedberga3172b72014-02-28 09:33:44 +02001044 if (hci_conn_count(hdev) == 0) {
1045 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001046 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02001047 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001048}
1049
Johan Hedberg21a60d32014-06-10 14:05:58 +03001050static void hci_stop_discovery(struct hci_request *req)
1051{
1052 struct hci_dev *hdev = req->hdev;
1053 struct hci_cp_remote_name_req_cancel cp;
1054 struct inquiry_entry *e;
1055
1056 switch (hdev->discovery.state) {
1057 case DISCOVERY_FINDING:
1058 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
1059 hci_req_add(req, HCI_OP_INQUIRY_CANCEL, 0, NULL);
1060 } else {
1061 cancel_delayed_work(&hdev->le_scan_disable);
1062 hci_req_add_le_scan_disable(req);
1063 }
1064
1065 break;
1066
1067 case DISCOVERY_RESOLVING:
1068 e = hci_inquiry_cache_lookup_resolve(hdev, BDADDR_ANY,
1069 NAME_PENDING);
1070 if (!e)
1071 return;
1072
1073 bacpy(&cp.bdaddr, &e->data.bdaddr);
1074 hci_req_add(req, HCI_OP_REMOTE_NAME_REQ_CANCEL, sizeof(cp),
1075 &cp);
1076
1077 break;
1078
1079 default:
1080 /* Passive scanning */
1081 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags))
1082 hci_req_add_le_scan_disable(req);
1083 break;
1084 }
1085}
1086
Johan Hedberg8b064a32014-02-24 14:52:22 +02001087static int clean_up_hci_state(struct hci_dev *hdev)
1088{
1089 struct hci_request req;
1090 struct hci_conn *conn;
1091
1092 hci_req_init(&req, hdev);
1093
1094 if (test_bit(HCI_ISCAN, &hdev->flags) ||
1095 test_bit(HCI_PSCAN, &hdev->flags)) {
1096 u8 scan = 0x00;
1097 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1098 }
1099
1100 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
1101 disable_advertising(&req);
1102
Johan Hedbergf8680f12014-06-10 14:05:59 +03001103 hci_stop_discovery(&req);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001104
1105 list_for_each_entry(conn, &hdev->conn_hash.list, list) {
1106 struct hci_cp_disconnect dc;
Johan Hedbergc9910d02014-02-27 14:35:12 +02001107 struct hci_cp_reject_conn_req rej;
Johan Hedberg8b064a32014-02-24 14:52:22 +02001108
Johan Hedbergc9910d02014-02-27 14:35:12 +02001109 switch (conn->state) {
1110 case BT_CONNECTED:
1111 case BT_CONFIG:
1112 dc.handle = cpu_to_le16(conn->handle);
1113 dc.reason = 0x15; /* Terminated due to Power Off */
1114 hci_req_add(&req, HCI_OP_DISCONNECT, sizeof(dc), &dc);
1115 break;
1116 case BT_CONNECT:
1117 if (conn->type == LE_LINK)
1118 hci_req_add(&req, HCI_OP_LE_CREATE_CONN_CANCEL,
1119 0, NULL);
1120 else if (conn->type == ACL_LINK)
1121 hci_req_add(&req, HCI_OP_CREATE_CONN_CANCEL,
1122 6, &conn->dst);
1123 break;
1124 case BT_CONNECT2:
1125 bacpy(&rej.bdaddr, &conn->dst);
1126 rej.reason = 0x15; /* Terminated due to Power Off */
1127 if (conn->type == ACL_LINK)
1128 hci_req_add(&req, HCI_OP_REJECT_CONN_REQ,
1129 sizeof(rej), &rej);
1130 else if (conn->type == SCO_LINK)
1131 hci_req_add(&req, HCI_OP_REJECT_SYNC_CONN_REQ,
1132 sizeof(rej), &rej);
1133 break;
1134 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02001135 }
1136
1137 return hci_req_run(&req, clean_up_hci_complete);
1138}
1139
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001140static int set_powered(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001141 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001142{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001143 struct mgmt_mode *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +02001144 struct pending_cmd *cmd;
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001145 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02001146
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001147 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001148
Johan Hedberga7e80f22013-01-09 16:05:19 +02001149 if (cp->val != 0x00 && cp->val != 0x01)
1150 return cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1151 MGMT_STATUS_INVALID_PARAMS);
1152
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001153 hci_dev_lock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001154
Johan Hedberg87b95ba2013-09-25 13:26:06 +03001155 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev)) {
1156 err = cmd_status(sk, hdev->id, MGMT_OP_SET_POWERED,
1157 MGMT_STATUS_BUSY);
1158 goto failed;
1159 }
1160
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001161 if (test_and_clear_bit(HCI_AUTO_OFF, &hdev->dev_flags)) {
1162 cancel_delayed_work(&hdev->power_off);
1163
1164 if (cp->val) {
Johan Hedberga1d70452013-01-09 15:29:40 +02001165 mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev,
1166 data, len);
1167 err = mgmt_powered(hdev, 1);
Marcel Holtmannf0d4b782012-02-21 12:14:25 +01001168 goto failed;
1169 }
1170 }
1171
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001172 if (!!cp->val == hdev_is_powered(hdev)) {
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001173 err = send_settings_rsp(sk, MGMT_OP_SET_POWERED, hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001174 goto failed;
1175 }
1176
Johan Hedberg03811012010-12-08 00:21:06 +02001177 cmd = mgmt_pending_add(sk, MGMT_OP_SET_POWERED, hdev, data, len);
1178 if (!cmd) {
1179 err = -ENOMEM;
1180 goto failed;
1181 }
1182
Johan Hedberg8b064a32014-02-24 14:52:22 +02001183 if (cp->val) {
Johan Hedberg19202572013-01-14 22:33:51 +02001184 queue_work(hdev->req_workqueue, &hdev->power_on);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001185 err = 0;
1186 } else {
1187 /* Disconnect connections, stop scans, etc */
1188 err = clean_up_hci_state(hdev);
Johan Hedberga3172b72014-02-28 09:33:44 +02001189 if (!err)
1190 queue_delayed_work(hdev->req_workqueue, &hdev->power_off,
1191 HCI_POWER_OFF_TIMEOUT);
Johan Hedberg03811012010-12-08 00:21:06 +02001192
Johan Hedberg8b064a32014-02-24 14:52:22 +02001193 /* ENODATA means there were no HCI commands queued */
1194 if (err == -ENODATA) {
Johan Hedberga3172b72014-02-28 09:33:44 +02001195 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02001196 queue_work(hdev->req_workqueue, &hdev->power_off.work);
1197 err = 0;
1198 }
1199 }
Johan Hedberg03811012010-12-08 00:21:06 +02001200
1201failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001202 hci_dev_unlock(hdev);
Johan Hedberg03811012010-12-08 00:21:06 +02001203 return err;
1204}
1205
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001206static int mgmt_event(u16 event, struct hci_dev *hdev, void *data, u16 data_len,
1207 struct sock *skip_sk)
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001208{
1209 struct sk_buff *skb;
1210 struct mgmt_hdr *hdr;
1211
Andre Guedes790eff42012-06-07 19:05:46 -03001212 skb = alloc_skb(sizeof(*hdr) + data_len, GFP_KERNEL);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001213 if (!skb)
1214 return -ENOMEM;
1215
1216 hdr = (void *) skb_put(skb, sizeof(*hdr));
1217 hdr->opcode = cpu_to_le16(event);
1218 if (hdev)
1219 hdr->index = cpu_to_le16(hdev->id);
1220 else
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001221 hdr->index = cpu_to_le16(MGMT_INDEX_NONE);
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001222 hdr->len = cpu_to_le16(data_len);
1223
1224 if (data)
1225 memcpy(skb_put(skb, data_len), data, data_len);
1226
Marcel Holtmann97e0bde2012-02-22 13:49:28 +01001227 /* Time stamp */
1228 __net_timestamp(skb);
1229
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02001230 hci_send_to_control(skb, skip_sk);
1231 kfree_skb(skb);
1232
1233 return 0;
1234}
1235
1236static int new_settings(struct hci_dev *hdev, struct sock *skip)
1237{
1238 __le32 ev;
1239
1240 ev = cpu_to_le32(get_current_settings(hdev));
1241
1242 return mgmt_event(MGMT_EV_NEW_SETTINGS, hdev, &ev, sizeof(ev), skip);
1243}
1244
Johan Hedbergbd99abd2013-09-25 13:26:07 +03001245struct cmd_lookup {
1246 struct sock *sk;
1247 struct hci_dev *hdev;
1248 u8 mgmt_status;
1249};
1250
1251static void settings_rsp(struct pending_cmd *cmd, void *data)
1252{
1253 struct cmd_lookup *match = data;
1254
1255 send_settings_rsp(cmd->sk, cmd->opcode, match->hdev);
1256
1257 list_del(&cmd->list);
1258
1259 if (match->sk == NULL) {
1260 match->sk = cmd->sk;
1261 sock_hold(match->sk);
1262 }
1263
1264 mgmt_pending_free(cmd);
1265}
1266
1267static void cmd_status_rsp(struct pending_cmd *cmd, void *data)
1268{
1269 u8 *status = data;
1270
1271 cmd_status(cmd->sk, cmd->index, cmd->opcode, *status);
1272 mgmt_pending_remove(cmd);
1273}
1274
Johan Hedberge6fe7982013-10-02 15:45:22 +03001275static u8 mgmt_bredr_support(struct hci_dev *hdev)
1276{
1277 if (!lmp_bredr_capable(hdev))
1278 return MGMT_STATUS_NOT_SUPPORTED;
1279 else if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
1280 return MGMT_STATUS_REJECTED;
1281 else
1282 return MGMT_STATUS_SUCCESS;
1283}
1284
1285static u8 mgmt_le_support(struct hci_dev *hdev)
1286{
1287 if (!lmp_le_capable(hdev))
1288 return MGMT_STATUS_NOT_SUPPORTED;
1289 else if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
1290 return MGMT_STATUS_REJECTED;
1291 else
1292 return MGMT_STATUS_SUCCESS;
1293}
1294
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001295static void set_discoverable_complete(struct hci_dev *hdev, u8 status)
1296{
1297 struct pending_cmd *cmd;
1298 struct mgmt_mode *cp;
Marcel Holtmann970ba522013-10-15 06:33:57 -07001299 struct hci_request req;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001300 bool changed;
1301
1302 BT_DBG("status 0x%02x", status);
1303
1304 hci_dev_lock(hdev);
1305
1306 cmd = mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev);
1307 if (!cmd)
1308 goto unlock;
1309
1310 if (status) {
1311 u8 mgmt_err = mgmt_status(status);
1312 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001313 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001314 goto remove_cmd;
1315 }
1316
1317 cp = cmd->param;
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001318 if (cp->val) {
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001319 changed = !test_and_set_bit(HCI_DISCOVERABLE,
1320 &hdev->dev_flags);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001321
1322 if (hdev->discov_timeout > 0) {
1323 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
1324 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
1325 to);
1326 }
1327 } else {
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001328 changed = test_and_clear_bit(HCI_DISCOVERABLE,
1329 &hdev->dev_flags);
Marcel Holtmannd4462a02013-10-15 08:11:02 -07001330 }
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001331
1332 send_settings_rsp(cmd->sk, MGMT_OP_SET_DISCOVERABLE, hdev);
1333
1334 if (changed)
1335 new_settings(hdev, cmd->sk);
1336
Marcel Holtmann970ba522013-10-15 06:33:57 -07001337 /* When the discoverable mode gets changed, make sure
1338 * that class of device has the limited discoverable
1339 * bit correctly set.
1340 */
1341 hci_req_init(&req, hdev);
1342 update_class(&req);
1343 hci_req_run(&req, NULL);
1344
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001345remove_cmd:
1346 mgmt_pending_remove(cmd);
1347
1348unlock:
1349 hci_dev_unlock(hdev);
1350}
1351
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001352static int set_discoverable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001353 u16 len)
Johan Hedberg03811012010-12-08 00:21:06 +02001354{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001355 struct mgmt_cp_set_discoverable *cp = data;
Johan Hedberg03811012010-12-08 00:21:06 +02001356 struct pending_cmd *cmd;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001357 struct hci_request req;
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001358 u16 timeout;
Johan Hedberg9a43e252013-10-20 19:00:07 +03001359 u8 scan;
Johan Hedberg03811012010-12-08 00:21:06 +02001360 int err;
1361
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001362 BT_DBG("request for %s", hdev->name);
Johan Hedberg03811012010-12-08 00:21:06 +02001363
Johan Hedberg9a43e252013-10-20 19:00:07 +03001364 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
1365 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedberg33c525c2012-10-24 21:11:58 +03001366 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Johan Hedberg9a43e252013-10-20 19:00:07 +03001367 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001368
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001369 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Johan Hedberga7e80f22013-01-09 16:05:19 +02001370 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
1371 MGMT_STATUS_INVALID_PARAMS);
1372
Marcel Holtmann1f350c82012-03-12 20:31:08 -07001373 timeout = __le16_to_cpu(cp->timeout);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001374
1375 /* Disabling discoverable requires that no timeout is set,
1376 * and enabling limited discoverable requires a timeout.
1377 */
1378 if ((cp->val == 0x00 && timeout > 0) ||
1379 (cp->val == 0x02 && timeout == 0))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001380 return cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001381 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001382
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001383 hci_dev_lock(hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001384
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001385 if (!hdev_is_powered(hdev) && timeout > 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001386 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001387 MGMT_STATUS_NOT_POWERED);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001388 goto failed;
1389 }
1390
1391 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001392 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001393 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001394 MGMT_STATUS_BUSY);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001395 goto failed;
1396 }
1397
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001398 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001399 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DISCOVERABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001400 MGMT_STATUS_REJECTED);
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001401 goto failed;
1402 }
1403
1404 if (!hdev_is_powered(hdev)) {
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001405 bool changed = false;
1406
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001407 /* Setting limited discoverable when powered off is
1408 * not a valid operation since it requires a timeout
1409 * and so no need to check HCI_LIMITED_DISCOVERABLE.
1410 */
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001411 if (!!cp->val != test_bit(HCI_DISCOVERABLE, &hdev->dev_flags)) {
1412 change_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1413 changed = true;
1414 }
1415
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001416 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedberg0224d2f2012-02-21 19:40:05 +02001417 if (err < 0)
1418 goto failed;
1419
1420 if (changed)
1421 err = new_settings(hdev, sk);
1422
Johan Hedberg5e5282b2012-02-21 16:01:30 +02001423 goto failed;
1424 }
1425
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001426 /* If the current mode is the same, then just update the timeout
1427 * value with the new value. And if only the timeout gets updated,
1428 * then no need for any HCI transactions.
1429 */
1430 if (!!cp->val == test_bit(HCI_DISCOVERABLE, &hdev->dev_flags) &&
1431 (cp->val == 0x02) == test_bit(HCI_LIMITED_DISCOVERABLE,
1432 &hdev->dev_flags)) {
Marcel Holtmann36261542013-10-15 08:28:51 -07001433 cancel_delayed_work(&hdev->discov_off);
1434 hdev->discov_timeout = timeout;
Marcel Holtmann955638e2012-02-22 18:21:00 +01001435
Marcel Holtmann36261542013-10-15 08:28:51 -07001436 if (cp->val && hdev->discov_timeout > 0) {
1437 int to = msecs_to_jiffies(hdev->discov_timeout * 1000);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001438 queue_delayed_work(hdev->workqueue, &hdev->discov_off,
Marcel Holtmann36261542013-10-15 08:28:51 -07001439 to);
Marcel Holtmann955638e2012-02-22 18:21:00 +01001440 }
1441
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001442 err = send_settings_rsp(sk, MGMT_OP_SET_DISCOVERABLE, hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001443 goto failed;
1444 }
1445
1446 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DISCOVERABLE, hdev, data, len);
1447 if (!cmd) {
1448 err = -ENOMEM;
1449 goto failed;
1450 }
1451
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001452 /* Cancel any potential discoverable timeout that might be
1453 * still active and store new timeout value. The arming of
1454 * the timeout happens in the complete handler.
1455 */
1456 cancel_delayed_work(&hdev->discov_off);
1457 hdev->discov_timeout = timeout;
1458
Johan Hedbergb456f872013-10-19 23:38:22 +03001459 /* Limited discoverable mode */
1460 if (cp->val == 0x02)
1461 set_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1462 else
1463 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1464
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001465 hci_req_init(&req, hdev);
1466
Johan Hedberg9a43e252013-10-20 19:00:07 +03001467 /* The procedure for LE-only controllers is much simpler - just
1468 * update the advertising data.
1469 */
1470 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
1471 goto update_ad;
1472
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001473 scan = SCAN_PAGE;
1474
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001475 if (cp->val) {
1476 struct hci_cp_write_current_iac_lap hci_cp;
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001477
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001478 if (cp->val == 0x02) {
1479 /* Limited discoverable mode */
Marcel Holtmann33337dc2013-10-23 08:28:01 -07001480 hci_cp.num_iac = min_t(u8, hdev->num_iac, 2);
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001481 hci_cp.iac_lap[0] = 0x00; /* LIAC */
1482 hci_cp.iac_lap[1] = 0x8b;
1483 hci_cp.iac_lap[2] = 0x9e;
1484 hci_cp.iac_lap[3] = 0x33; /* GIAC */
1485 hci_cp.iac_lap[4] = 0x8b;
1486 hci_cp.iac_lap[5] = 0x9e;
1487 } else {
1488 /* General discoverable mode */
Marcel Holtmann310a3d42013-10-15 09:13:39 -07001489 hci_cp.num_iac = 1;
1490 hci_cp.iac_lap[0] = 0x33; /* GIAC */
1491 hci_cp.iac_lap[1] = 0x8b;
1492 hci_cp.iac_lap[2] = 0x9e;
1493 }
1494
1495 hci_req_add(&req, HCI_OP_WRITE_CURRENT_IAC_LAP,
1496 (hci_cp.num_iac * 3) + 1, &hci_cp);
1497
1498 scan |= SCAN_INQUIRY;
1499 } else {
1500 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1501 }
1502
1503 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, sizeof(scan), &scan);
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001504
Johan Hedberg9a43e252013-10-20 19:00:07 +03001505update_ad:
1506 update_adv_data(&req);
1507
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03001508 err = hci_req_run(&req, set_discoverable_complete);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001509 if (err < 0)
1510 mgmt_pending_remove(cmd);
1511
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001512failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001513 hci_dev_unlock(hdev);
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001514 return err;
1515}
1516
Johan Hedberg406d7802013-03-15 17:07:09 -05001517static void write_fast_connectable(struct hci_request *req, bool enable)
1518{
Johan Hedbergbd98b992013-03-15 17:07:13 -05001519 struct hci_dev *hdev = req->hdev;
Johan Hedberg406d7802013-03-15 17:07:09 -05001520 struct hci_cp_write_page_scan_activity acp;
1521 u8 type;
1522
Johan Hedberg547003b2013-10-21 16:51:53 +03001523 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
1524 return;
1525
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05001526 if (hdev->hci_ver < BLUETOOTH_VER_1_2)
1527 return;
1528
Johan Hedberg406d7802013-03-15 17:07:09 -05001529 if (enable) {
1530 type = PAGE_SCAN_TYPE_INTERLACED;
1531
1532 /* 160 msec page scan interval */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001533 acp.interval = cpu_to_le16(0x0100);
Johan Hedberg406d7802013-03-15 17:07:09 -05001534 } else {
1535 type = PAGE_SCAN_TYPE_STANDARD; /* default */
1536
1537 /* default 1.28 sec page scan */
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001538 acp.interval = cpu_to_le16(0x0800);
Johan Hedberg406d7802013-03-15 17:07:09 -05001539 }
1540
Joe Perchesdcf4adb2014-03-12 10:52:35 -07001541 acp.window = cpu_to_le16(0x0012);
Johan Hedberg406d7802013-03-15 17:07:09 -05001542
Johan Hedbergbd98b992013-03-15 17:07:13 -05001543 if (__cpu_to_le16(hdev->page_scan_interval) != acp.interval ||
1544 __cpu_to_le16(hdev->page_scan_window) != acp.window)
1545 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_ACTIVITY,
1546 sizeof(acp), &acp);
1547
1548 if (hdev->page_scan_type != type)
1549 hci_req_add(req, HCI_OP_WRITE_PAGE_SCAN_TYPE, 1, &type);
Johan Hedberg406d7802013-03-15 17:07:09 -05001550}
1551
Johan Hedberg2b76f452013-03-15 17:07:04 -05001552static void set_connectable_complete(struct hci_dev *hdev, u8 status)
1553{
1554 struct pending_cmd *cmd;
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001555 struct mgmt_mode *cp;
1556 bool changed;
Johan Hedberg2b76f452013-03-15 17:07:04 -05001557
1558 BT_DBG("status 0x%02x", status);
1559
1560 hci_dev_lock(hdev);
1561
1562 cmd = mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev);
1563 if (!cmd)
1564 goto unlock;
1565
Johan Hedberg37438c12013-10-14 16:20:05 +03001566 if (status) {
1567 u8 mgmt_err = mgmt_status(status);
1568 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
1569 goto remove_cmd;
1570 }
1571
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001572 cp = cmd->param;
1573 if (cp->val)
1574 changed = !test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1575 else
1576 changed = test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1577
Johan Hedberg2b76f452013-03-15 17:07:04 -05001578 send_settings_rsp(cmd->sk, MGMT_OP_SET_CONNECTABLE, hdev);
1579
Johan Hedbergd7b856f2013-10-14 16:20:04 +03001580 if (changed)
1581 new_settings(hdev, cmd->sk);
1582
Johan Hedberg37438c12013-10-14 16:20:05 +03001583remove_cmd:
Johan Hedberg2b76f452013-03-15 17:07:04 -05001584 mgmt_pending_remove(cmd);
1585
1586unlock:
1587 hci_dev_unlock(hdev);
1588}
1589
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03001590static int set_connectable_update_settings(struct hci_dev *hdev,
1591 struct sock *sk, u8 val)
1592{
1593 bool changed = false;
1594 int err;
1595
1596 if (!!val != test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
1597 changed = true;
1598
1599 if (val) {
1600 set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1601 } else {
1602 clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
1603 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1604 }
1605
1606 err = send_settings_rsp(sk, MGMT_OP_SET_CONNECTABLE, hdev);
1607 if (err < 0)
1608 return err;
1609
1610 if (changed)
1611 return new_settings(hdev, sk);
1612
1613 return 0;
1614}
1615
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001616static int set_connectable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001617 u16 len)
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001618{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001619 struct mgmt_mode *cp = data;
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001620 struct pending_cmd *cmd;
Johan Hedberg2b76f452013-03-15 17:07:04 -05001621 struct hci_request req;
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001622 u8 scan;
Johan Hedbergf7b64e692010-12-13 21:07:06 +02001623 int err;
Johan Hedberg03811012010-12-08 00:21:06 +02001624
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001625 BT_DBG("request for %s", hdev->name);
Johan Hedberge41d8b42010-12-13 21:07:03 +02001626
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001627 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
1628 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedberg33c525c2012-10-24 21:11:58 +03001629 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001630 MGMT_STATUS_REJECTED);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001631
Johan Hedberga7e80f22013-01-09 16:05:19 +02001632 if (cp->val != 0x00 && cp->val != 0x01)
1633 return cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
1634 MGMT_STATUS_INVALID_PARAMS);
1635
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001636 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001637
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001638 if (!hdev_is_powered(hdev)) {
Johan Hedberge8ba3a1f2013-10-19 23:38:18 +03001639 err = set_connectable_update_settings(hdev, sk, cp->val);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001640 goto failed;
1641 }
1642
1643 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001644 mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001645 err = cmd_status(sk, hdev->id, MGMT_OP_SET_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001646 MGMT_STATUS_BUSY);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001647 goto failed;
1648 }
1649
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001650 cmd = mgmt_pending_add(sk, MGMT_OP_SET_CONNECTABLE, hdev, data, len);
1651 if (!cmd) {
1652 err = -ENOMEM;
1653 goto failed;
1654 }
1655
Johan Hedberg2b76f452013-03-15 17:07:04 -05001656 hci_req_init(&req, hdev);
1657
Johan Hedberg9a43e252013-10-20 19:00:07 +03001658 /* If BR/EDR is not enabled and we disable advertising as a
1659 * by-product of disabling connectable, we need to update the
1660 * advertising flags.
1661 */
1662 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
1663 if (!cp->val) {
1664 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
1665 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
1666 }
1667 update_adv_data(&req);
1668 } else if (cp->val != test_bit(HCI_PSCAN, &hdev->flags)) {
Johan Hedberg9b742462013-10-14 16:20:03 +03001669 if (cp->val) {
1670 scan = SCAN_PAGE;
1671 } else {
1672 scan = 0;
1673
1674 if (test_bit(HCI_ISCAN, &hdev->flags) &&
Marcel Holtmann8d6083f2013-10-14 16:38:45 -07001675 hdev->discov_timeout > 0)
Johan Hedberg9b742462013-10-14 16:20:03 +03001676 cancel_delayed_work(&hdev->discov_off);
1677 }
1678
1679 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
1680 }
Johan Hedberg2b76f452013-03-15 17:07:04 -05001681
Johan Hedberg4c01f8b2013-03-15 17:07:14 -05001682 /* If we're going from non-connectable to connectable or
1683 * vice-versa when fast connectable is enabled ensure that fast
1684 * connectable gets disabled. write_fast_connectable won't do
1685 * anything if the page scan parameters are already what they
1686 * should be.
1687 */
1688 if (cp->val || test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags))
Johan Hedberge36a3762013-03-15 17:07:10 -05001689 write_fast_connectable(&req, false);
1690
Johan Hedberg1987fdc2013-10-14 21:15:24 +03001691 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags) &&
1692 hci_conn_num(hdev, LE_LINK) == 0) {
1693 disable_advertising(&req);
1694 enable_advertising(&req);
1695 }
1696
Johan Hedberg2b76f452013-03-15 17:07:04 -05001697 err = hci_req_run(&req, set_connectable_complete);
Johan Hedberg9b742462013-10-14 16:20:03 +03001698 if (err < 0) {
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001699 mgmt_pending_remove(cmd);
Johan Hedberg9b742462013-10-14 16:20:03 +03001700 if (err == -ENODATA)
Johan Hedberga81070b2013-10-19 23:38:19 +03001701 err = set_connectable_update_settings(hdev, sk,
1702 cp->val);
Johan Hedberg9b742462013-10-14 16:20:03 +03001703 goto failed;
1704 }
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001705
1706failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001707 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001708 return err;
1709}
1710
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001711static int set_pairable(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001712 u16 len)
Johan Hedberg73f22f62010-12-29 16:00:25 +02001713{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03001714 struct mgmt_mode *cp = data;
Marcel Holtmann55594352013-10-06 16:11:57 -07001715 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02001716 int err;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001717
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001718 BT_DBG("request for %s", hdev->name);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001719
Johan Hedberga7e80f22013-01-09 16:05:19 +02001720 if (cp->val != 0x00 && cp->val != 0x01)
1721 return cmd_status(sk, hdev->id, MGMT_OP_SET_PAIRABLE,
1722 MGMT_STATUS_INVALID_PARAMS);
1723
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001724 hci_dev_lock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001725
1726 if (cp->val)
Marcel Holtmann55594352013-10-06 16:11:57 -07001727 changed = !test_and_set_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001728 else
Marcel Holtmann55594352013-10-06 16:11:57 -07001729 changed = test_and_clear_bit(HCI_PAIRABLE, &hdev->dev_flags);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001730
Johan Hedberg69ab39e2011-12-15 00:47:35 +02001731 err = send_settings_rsp(sk, MGMT_OP_SET_PAIRABLE, hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001732 if (err < 0)
Marcel Holtmann55594352013-10-06 16:11:57 -07001733 goto unlock;
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001734
Marcel Holtmann55594352013-10-06 16:11:57 -07001735 if (changed)
1736 err = new_settings(hdev, sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001737
Marcel Holtmann55594352013-10-06 16:11:57 -07001738unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03001739 hci_dev_unlock(hdev);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02001740 return err;
1741}
Johan Hedberg72a734e2010-12-30 00:38:22 +02001742
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001743static int set_link_security(struct sock *sk, struct hci_dev *hdev, void *data,
1744 u16 len)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001745{
1746 struct mgmt_mode *cp = data;
1747 struct pending_cmd *cmd;
Johan Hedberge6fe7982013-10-02 15:45:22 +03001748 u8 val, status;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001749 int err;
1750
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001751 BT_DBG("request for %s", hdev->name);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001752
Johan Hedberge6fe7982013-10-02 15:45:22 +03001753 status = mgmt_bredr_support(hdev);
1754 if (status)
Johan Hedberg33c525c2012-10-24 21:11:58 +03001755 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03001756 status);
Johan Hedberg33c525c2012-10-24 21:11:58 +03001757
Johan Hedberga7e80f22013-01-09 16:05:19 +02001758 if (cp->val != 0x00 && cp->val != 0x01)
1759 return cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
1760 MGMT_STATUS_INVALID_PARAMS);
1761
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001762 hci_dev_lock(hdev);
1763
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001764 if (!hdev_is_powered(hdev)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001765 bool changed = false;
1766
1767 if (!!cp->val != test_bit(HCI_LINK_SECURITY,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03001768 &hdev->dev_flags)) {
Johan Hedberg47990ea2012-02-22 11:58:37 +02001769 change_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
1770 changed = true;
1771 }
1772
1773 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1774 if (err < 0)
1775 goto failed;
1776
1777 if (changed)
1778 err = new_settings(hdev, sk);
1779
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001780 goto failed;
1781 }
1782
1783 if (mgmt_pending_find(MGMT_OP_SET_LINK_SECURITY, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001784 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LINK_SECURITY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03001785 MGMT_STATUS_BUSY);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001786 goto failed;
1787 }
1788
1789 val = !!cp->val;
1790
1791 if (test_bit(HCI_AUTH, &hdev->flags) == val) {
1792 err = send_settings_rsp(sk, MGMT_OP_SET_LINK_SECURITY, hdev);
1793 goto failed;
1794 }
1795
1796 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LINK_SECURITY, hdev, data, len);
1797 if (!cmd) {
1798 err = -ENOMEM;
1799 goto failed;
1800 }
1801
1802 err = hci_send_cmd(hdev, HCI_OP_WRITE_AUTH_ENABLE, sizeof(val), &val);
1803 if (err < 0) {
1804 mgmt_pending_remove(cmd);
1805 goto failed;
1806 }
1807
1808failed:
1809 hci_dev_unlock(hdev);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02001810 return err;
1811}
1812
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001813static int set_ssp(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001814{
1815 struct mgmt_mode *cp = data;
1816 struct pending_cmd *cmd;
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07001817 u8 status;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001818 int err;
1819
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001820 BT_DBG("request for %s", hdev->name);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001821
Marcel Holtmanncdba5282013-10-02 21:31:52 -07001822 status = mgmt_bredr_support(hdev);
1823 if (status)
1824 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP, status);
1825
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001826 if (!lmp_ssp_capable(hdev))
1827 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1828 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001829
Johan Hedberga7e80f22013-01-09 16:05:19 +02001830 if (cp->val != 0x00 && cp->val != 0x01)
1831 return cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1832 MGMT_STATUS_INVALID_PARAMS);
1833
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001834 hci_dev_lock(hdev);
Johan Hedberg6c8f12c2012-02-22 16:35:26 +02001835
Johan Hedberg4b34ee782012-02-21 14:13:02 +02001836 if (!hdev_is_powered(hdev)) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001837 bool changed;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001838
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001839 if (cp->val) {
1840 changed = !test_and_set_bit(HCI_SSP_ENABLED,
1841 &hdev->dev_flags);
1842 } else {
1843 changed = test_and_clear_bit(HCI_SSP_ENABLED,
1844 &hdev->dev_flags);
1845 if (!changed)
1846 changed = test_and_clear_bit(HCI_HS_ENABLED,
1847 &hdev->dev_flags);
1848 else
1849 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02001850 }
1851
1852 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1853 if (err < 0)
1854 goto failed;
1855
1856 if (changed)
1857 err = new_settings(hdev, sk);
1858
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001859 goto failed;
1860 }
1861
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001862 if (mgmt_pending_find(MGMT_OP_SET_SSP, hdev) ||
1863 mgmt_pending_find(MGMT_OP_SET_HS, hdev)) {
Szymon Jancd97dcb62012-03-16 16:02:56 +01001864 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SSP,
1865 MGMT_STATUS_BUSY);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001866 goto failed;
1867 }
1868
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07001869 if (!!cp->val == test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001870 err = send_settings_rsp(sk, MGMT_OP_SET_SSP, hdev);
1871 goto failed;
1872 }
1873
1874 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SSP, hdev, data, len);
1875 if (!cmd) {
1876 err = -ENOMEM;
1877 goto failed;
1878 }
1879
Johan Hedberg37699722014-06-24 14:00:27 +03001880 if (!cp->val && test_bit(HCI_USE_DEBUG_KEYS, &hdev->dev_flags))
1881 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
1882 sizeof(cp->val), &cp->val);
1883
Marcel Holtmann72ef0c12013-10-10 03:08:10 -07001884 err = hci_send_cmd(hdev, HCI_OP_WRITE_SSP_MODE, 1, &cp->val);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001885 if (err < 0) {
1886 mgmt_pending_remove(cmd);
1887 goto failed;
1888 }
1889
1890failed:
1891 hci_dev_unlock(hdev);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02001892 return err;
1893}
1894
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001895static int set_hs(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001896{
1897 struct mgmt_mode *cp = data;
Marcel Holtmannee392692013-10-01 22:59:23 -07001898 bool changed;
Johan Hedberge6fe7982013-10-02 15:45:22 +03001899 u8 status;
Marcel Holtmannee392692013-10-01 22:59:23 -07001900 int err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001901
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001902 BT_DBG("request for %s", hdev->name);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001903
Johan Hedberge6fe7982013-10-02 15:45:22 +03001904 status = mgmt_bredr_support(hdev);
1905 if (status)
1906 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS, status);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001907
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07001908 if (!lmp_ssp_capable(hdev))
1909 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1910 MGMT_STATUS_NOT_SUPPORTED);
1911
1912 if (!test_bit(HCI_SSP_ENABLED, &hdev->dev_flags))
1913 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1914 MGMT_STATUS_REJECTED);
1915
Johan Hedberga7e80f22013-01-09 16:05:19 +02001916 if (cp->val != 0x00 && cp->val != 0x01)
1917 return cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1918 MGMT_STATUS_INVALID_PARAMS);
1919
Marcel Holtmannee392692013-10-01 22:59:23 -07001920 hci_dev_lock(hdev);
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001921
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001922 if (cp->val) {
Marcel Holtmannee392692013-10-01 22:59:23 -07001923 changed = !test_and_set_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001924 } else {
1925 if (hdev_is_powered(hdev)) {
1926 err = cmd_status(sk, hdev->id, MGMT_OP_SET_HS,
1927 MGMT_STATUS_REJECTED);
1928 goto unlock;
1929 }
1930
Marcel Holtmannee392692013-10-01 22:59:23 -07001931 changed = test_and_clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmanna0cdf9602013-10-02 00:27:02 -07001932 }
Marcel Holtmannee392692013-10-01 22:59:23 -07001933
1934 err = send_settings_rsp(sk, MGMT_OP_SET_HS, hdev);
1935 if (err < 0)
1936 goto unlock;
1937
1938 if (changed)
1939 err = new_settings(hdev, sk);
1940
1941unlock:
1942 hci_dev_unlock(hdev);
1943 return err;
Johan Hedberg6d80dfd2012-02-20 23:50:38 +02001944}
1945
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001946static void le_enable_complete(struct hci_dev *hdev, u8 status)
1947{
1948 struct cmd_lookup match = { NULL, hdev };
1949
1950 if (status) {
1951 u8 mgmt_err = mgmt_status(status);
1952
1953 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, cmd_status_rsp,
1954 &mgmt_err);
1955 return;
1956 }
1957
1958 mgmt_pending_foreach(MGMT_OP_SET_LE, hdev, settings_rsp, &match);
1959
1960 new_settings(hdev, match.sk);
1961
1962 if (match.sk)
1963 sock_put(match.sk);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001964
1965 /* Make sure the controller has a good default for
1966 * advertising data. Restrict the update to when LE
1967 * has actually been enabled. During power on, the
1968 * update in powered_update_hci will take care of it.
1969 */
1970 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
1971 struct hci_request req;
1972
1973 hci_dev_lock(hdev);
1974
1975 hci_req_init(&req, hdev);
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07001976 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07001977 update_scan_rsp_data(&req);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07001978 hci_req_run(&req, NULL);
1979
1980 hci_dev_unlock(hdev);
1981 }
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001982}
1983
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001984static int set_le(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg06199cf2012-02-22 16:37:11 +02001985{
1986 struct mgmt_mode *cp = data;
1987 struct hci_cp_write_le_host_supported hci_cp;
1988 struct pending_cmd *cmd;
Johan Hedberg416a4ae2013-09-25 13:26:08 +03001989 struct hci_request req;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001990 int err;
Johan Hedberg0b60eba2012-02-28 00:57:24 +02001991 u8 val, enabled;
Johan Hedberg06199cf2012-02-22 16:37:11 +02001992
Johan Hedbergbdb6d972012-02-28 06:13:32 +02001993 BT_DBG("request for %s", hdev->name);
Johan Hedberg06199cf2012-02-22 16:37:11 +02001994
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02001995 if (!lmp_le_capable(hdev))
1996 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
1997 MGMT_STATUS_NOT_SUPPORTED);
Johan Hedberg1de028c2012-02-29 19:55:35 -08001998
Johan Hedberga7e80f22013-01-09 16:05:19 +02001999 if (cp->val != 0x00 && cp->val != 0x01)
2000 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2001 MGMT_STATUS_INVALID_PARAMS);
2002
Johan Hedbergc73eee92013-04-19 18:35:21 +03002003 /* LE-only devices do not allow toggling LE on/off */
Johan Hedberg56f87902013-10-02 13:43:13 +03002004 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
Johan Hedbergc73eee92013-04-19 18:35:21 +03002005 return cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
2006 MGMT_STATUS_REJECTED);
2007
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002008 hci_dev_lock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002009
2010 val = !!cp->val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02002011 enabled = lmp_host_le_capable(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002012
Johan Hedberg0b60eba2012-02-28 00:57:24 +02002013 if (!hdev_is_powered(hdev) || val == enabled) {
Johan Hedberg06199cf2012-02-22 16:37:11 +02002014 bool changed = false;
2015
2016 if (val != test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
2017 change_bit(HCI_LE_ENABLED, &hdev->dev_flags);
2018 changed = true;
2019 }
2020
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02002021 if (!val && test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
2022 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03002023 changed = true;
2024 }
2025
Johan Hedberg06199cf2012-02-22 16:37:11 +02002026 err = send_settings_rsp(sk, MGMT_OP_SET_LE, hdev);
2027 if (err < 0)
Johan Hedberg1de028c2012-02-29 19:55:35 -08002028 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002029
2030 if (changed)
2031 err = new_settings(hdev, sk);
2032
Johan Hedberg1de028c2012-02-29 19:55:35 -08002033 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002034 }
2035
Johan Hedberg4375f102013-09-25 13:26:10 +03002036 if (mgmt_pending_find(MGMT_OP_SET_LE, hdev) ||
2037 mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002038 err = cmd_status(sk, hdev->id, MGMT_OP_SET_LE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002039 MGMT_STATUS_BUSY);
Johan Hedberg1de028c2012-02-29 19:55:35 -08002040 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002041 }
2042
2043 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LE, hdev, data, len);
2044 if (!cmd) {
2045 err = -ENOMEM;
Johan Hedberg1de028c2012-02-29 19:55:35 -08002046 goto unlock;
Johan Hedberg06199cf2012-02-22 16:37:11 +02002047 }
2048
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002049 hci_req_init(&req, hdev);
2050
Johan Hedberg06199cf2012-02-22 16:37:11 +02002051 memset(&hci_cp, 0, sizeof(hci_cp));
2052
2053 if (val) {
2054 hci_cp.le = val;
Gustavo Padovanffa88e02012-11-23 16:50:51 -02002055 hci_cp.simul = lmp_le_br_capable(hdev);
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07002056 } else {
2057 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
2058 disable_advertising(&req);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002059 }
2060
Johan Hedberg416a4ae2013-09-25 13:26:08 +03002061 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED, sizeof(hci_cp),
2062 &hci_cp);
2063
2064 err = hci_req_run(&req, le_enable_complete);
Syam Sidhardhan0c01bc42012-04-12 20:33:21 +05302065 if (err < 0)
Johan Hedberg06199cf2012-02-22 16:37:11 +02002066 mgmt_pending_remove(cmd);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002067
Johan Hedberg1de028c2012-02-29 19:55:35 -08002068unlock:
2069 hci_dev_unlock(hdev);
Johan Hedberg06199cf2012-02-22 16:37:11 +02002070 return err;
2071}
2072
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002073/* This is a helper function to test for pending mgmt commands that can
2074 * cause CoD or EIR HCI commands. We can only allow one such pending
2075 * mgmt command at a time since otherwise we cannot easily track what
2076 * the current values are, will be, and based on that calculate if a new
2077 * HCI command needs to be sent and if yes with what value.
2078 */
2079static bool pending_eir_or_class(struct hci_dev *hdev)
2080{
2081 struct pending_cmd *cmd;
2082
2083 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
2084 switch (cmd->opcode) {
2085 case MGMT_OP_ADD_UUID:
2086 case MGMT_OP_REMOVE_UUID:
2087 case MGMT_OP_SET_DEV_CLASS:
2088 case MGMT_OP_SET_POWERED:
2089 return true;
2090 }
2091 }
2092
2093 return false;
2094}
2095
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002096static const u8 bluetooth_base_uuid[] = {
2097 0xfb, 0x34, 0x9b, 0x5f, 0x80, 0x00, 0x00, 0x80,
2098 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
2099};
2100
2101static u8 get_uuid_size(const u8 *uuid)
2102{
2103 u32 val;
2104
2105 if (memcmp(uuid, bluetooth_base_uuid, 12))
2106 return 128;
2107
2108 val = get_unaligned_le32(&uuid[12]);
2109 if (val > 0xffff)
2110 return 32;
2111
2112 return 16;
2113}
2114
Johan Hedberg92da6092013-03-15 17:06:55 -05002115static void mgmt_class_complete(struct hci_dev *hdev, u16 mgmt_op, u8 status)
2116{
2117 struct pending_cmd *cmd;
2118
2119 hci_dev_lock(hdev);
2120
2121 cmd = mgmt_pending_find(mgmt_op, hdev);
2122 if (!cmd)
2123 goto unlock;
2124
2125 cmd_complete(cmd->sk, cmd->index, cmd->opcode, mgmt_status(status),
2126 hdev->dev_class, 3);
2127
2128 mgmt_pending_remove(cmd);
2129
2130unlock:
2131 hci_dev_unlock(hdev);
2132}
2133
2134static void add_uuid_complete(struct hci_dev *hdev, u8 status)
2135{
2136 BT_DBG("status 0x%02x", status);
2137
2138 mgmt_class_complete(hdev, MGMT_OP_ADD_UUID, status);
2139}
2140
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002141static int add_uuid(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002142{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002143 struct mgmt_cp_add_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02002144 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002145 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002146 struct bt_uuid *uuid;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002147 int err;
2148
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002149 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002150
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002151 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002152
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002153 if (pending_eir_or_class(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002154 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002155 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002156 goto failed;
2157 }
2158
Andre Guedes92c4c202012-06-07 19:05:44 -03002159 uuid = kmalloc(sizeof(*uuid), GFP_KERNEL);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002160 if (!uuid) {
2161 err = -ENOMEM;
2162 goto failed;
2163 }
2164
2165 memcpy(uuid->uuid, cp->uuid, 16);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002166 uuid->svc_hint = cp->svc_hint;
Johan Hedberg83be8ec2013-01-27 00:31:29 +02002167 uuid->size = get_uuid_size(cp->uuid);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002168
Johan Hedbergde66aa62013-01-27 00:31:27 +02002169 list_add_tail(&uuid->list, &hdev->uuids);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002170
Johan Hedberg890ea892013-03-15 17:06:52 -05002171 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002172
Johan Hedberg890ea892013-03-15 17:06:52 -05002173 update_class(&req);
2174 update_eir(&req);
2175
Johan Hedberg92da6092013-03-15 17:06:55 -05002176 err = hci_req_run(&req, add_uuid_complete);
2177 if (err < 0) {
2178 if (err != -ENODATA)
2179 goto failed;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002180
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002181 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002182 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002183 goto failed;
2184 }
2185
2186 cmd = mgmt_pending_add(sk, MGMT_OP_ADD_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002187 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002188 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002189 goto failed;
2190 }
2191
2192 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002193
2194failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002195 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002196 return err;
2197}
2198
Johan Hedberg24b78d02012-02-23 23:24:30 +02002199static bool enable_service_cache(struct hci_dev *hdev)
2200{
2201 if (!hdev_is_powered(hdev))
2202 return false;
2203
2204 if (!test_and_set_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg46818ed2013-01-14 22:33:52 +02002205 queue_delayed_work(hdev->workqueue, &hdev->service_cache,
2206 CACHE_TIMEOUT);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002207 return true;
2208 }
2209
2210 return false;
2211}
2212
Johan Hedberg92da6092013-03-15 17:06:55 -05002213static void remove_uuid_complete(struct hci_dev *hdev, u8 status)
2214{
2215 BT_DBG("status 0x%02x", status);
2216
2217 mgmt_class_complete(hdev, MGMT_OP_REMOVE_UUID, status);
2218}
2219
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002220static int remove_uuid(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002221 u16 len)
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002222{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002223 struct mgmt_cp_remove_uuid *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02002224 struct pending_cmd *cmd;
Johan Hedberg056341c2013-01-27 00:31:30 +02002225 struct bt_uuid *match, *tmp;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002226 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 -05002227 struct hci_request req;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002228 int err, found;
2229
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002230 BT_DBG("request for %s", hdev->name);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002231
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002232 hci_dev_lock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002233
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002234 if (pending_eir_or_class(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002235 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002236 MGMT_STATUS_BUSY);
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02002237 goto unlock;
2238 }
2239
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002240 if (memcmp(cp->uuid, bt_uuid_any, 16) == 0) {
Johan Hedberg35f74982014-02-18 17:14:32 +02002241 hci_uuids_clear(hdev);
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002242
Johan Hedberg24b78d02012-02-23 23:24:30 +02002243 if (enable_service_cache(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002244 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002245 0, hdev->dev_class, 3);
Johan Hedberg24b78d02012-02-23 23:24:30 +02002246 goto unlock;
2247 }
Johan Hedberg4004b6d2012-02-23 21:30:12 +02002248
Johan Hedberg9246a862012-02-23 21:33:16 +02002249 goto update_class;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002250 }
2251
2252 found = 0;
2253
Johan Hedberg056341c2013-01-27 00:31:30 +02002254 list_for_each_entry_safe(match, tmp, &hdev->uuids, list) {
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002255 if (memcmp(match->uuid, cp->uuid, 16) != 0)
2256 continue;
2257
2258 list_del(&match->list);
Johan Hedberg482049f2012-11-08 10:25:26 +01002259 kfree(match);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002260 found++;
2261 }
2262
2263 if (found == 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002264 err = cmd_status(sk, hdev->id, MGMT_OP_REMOVE_UUID,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002265 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002266 goto unlock;
2267 }
2268
Johan Hedberg9246a862012-02-23 21:33:16 +02002269update_class:
Johan Hedberg890ea892013-03-15 17:06:52 -05002270 hci_req_init(&req, hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002271
Johan Hedberg890ea892013-03-15 17:06:52 -05002272 update_class(&req);
2273 update_eir(&req);
2274
Johan Hedberg92da6092013-03-15 17:06:55 -05002275 err = hci_req_run(&req, remove_uuid_complete);
2276 if (err < 0) {
2277 if (err != -ENODATA)
2278 goto unlock;
Johan Hedberg80a1e1d2011-03-28 14:07:23 +03002279
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002280 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_UUID, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002281 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002282 goto unlock;
2283 }
2284
2285 cmd = mgmt_pending_add(sk, MGMT_OP_REMOVE_UUID, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002286 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002287 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002288 goto unlock;
2289 }
2290
2291 err = 0;
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002292
2293unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002294 hci_dev_unlock(hdev);
Johan Hedberg2aeb9a12011-01-04 12:08:51 +02002295 return err;
2296}
2297
Johan Hedberg92da6092013-03-15 17:06:55 -05002298static void set_class_complete(struct hci_dev *hdev, u8 status)
2299{
2300 BT_DBG("status 0x%02x", status);
2301
2302 mgmt_class_complete(hdev, MGMT_OP_SET_DEV_CLASS, status);
2303}
2304
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002305static int set_dev_class(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002306 u16 len)
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002307{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002308 struct mgmt_cp_set_dev_class *cp = data;
Johan Hedberg90e70452012-02-23 23:09:40 +02002309 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05002310 struct hci_request req;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002311 int err;
2312
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002313 BT_DBG("request for %s", hdev->name);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002314
Marcel Holtmann6203fc92013-10-02 23:37:29 -07002315 if (!lmp_bredr_capable(hdev))
Johan Hedberg13ecd8b2013-01-09 15:29:38 +02002316 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2317 MGMT_STATUS_NOT_SUPPORTED);
2318
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002319 hci_dev_lock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002320
Johan Hedberg0cab9c82013-03-15 17:06:54 -05002321 if (pending_eir_or_class(hdev)) {
2322 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2323 MGMT_STATUS_BUSY);
2324 goto unlock;
2325 }
2326
2327 if ((cp->minor & 0x03) != 0 || (cp->major & 0xe0) != 0) {
2328 err = cmd_status(sk, hdev->id, MGMT_OP_SET_DEV_CLASS,
2329 MGMT_STATUS_INVALID_PARAMS);
2330 goto unlock;
2331 }
2332
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002333 hdev->major_class = cp->major;
2334 hdev->minor_class = cp->minor;
2335
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002336 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002337 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002338 hdev->dev_class, 3);
Johan Hedberg932f5ff2012-02-22 22:11:32 +02002339 goto unlock;
2340 }
2341
Johan Hedberg890ea892013-03-15 17:06:52 -05002342 hci_req_init(&req, hdev);
2343
Johan Hedberga8b2d5c2012-01-08 23:11:15 +02002344 if (test_and_clear_bit(HCI_SERVICE_CACHE, &hdev->dev_flags)) {
Johan Hedberg7d785252011-12-15 00:47:39 +02002345 hci_dev_unlock(hdev);
2346 cancel_delayed_work_sync(&hdev->service_cache);
2347 hci_dev_lock(hdev);
Johan Hedberg890ea892013-03-15 17:06:52 -05002348 update_eir(&req);
Johan Hedberg7d785252011-12-15 00:47:39 +02002349 }
Johan Hedberg14c0b602011-12-15 00:47:37 +02002350
Johan Hedberg890ea892013-03-15 17:06:52 -05002351 update_class(&req);
2352
Johan Hedberg92da6092013-03-15 17:06:55 -05002353 err = hci_req_run(&req, set_class_complete);
2354 if (err < 0) {
2355 if (err != -ENODATA)
2356 goto unlock;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002357
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002358 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEV_CLASS, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002359 hdev->dev_class, 3);
Johan Hedberg90e70452012-02-23 23:09:40 +02002360 goto unlock;
2361 }
2362
2363 cmd = mgmt_pending_add(sk, MGMT_OP_SET_DEV_CLASS, hdev, data, len);
Johan Hedberg890ea892013-03-15 17:06:52 -05002364 if (!cmd) {
Johan Hedberg90e70452012-02-23 23:09:40 +02002365 err = -ENOMEM;
Johan Hedberg890ea892013-03-15 17:06:52 -05002366 goto unlock;
2367 }
2368
2369 err = 0;
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002370
Johan Hedbergb5235a62012-02-21 14:32:24 +02002371unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002372 hci_dev_unlock(hdev);
Johan Hedberg1aff6f02011-01-13 21:56:52 +02002373 return err;
2374}
2375
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002376static int load_link_keys(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002377 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002378{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002379 struct mgmt_cp_load_link_keys *cp = data;
Szymon Janc4e51eae2011-02-25 19:05:48 +01002380 u16 key_count, expected_len;
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002381 bool changed;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002382 int i;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002383
Marcel Holtmann9060d5c2013-10-02 21:16:07 -07002384 BT_DBG("request for %s", hdev->name);
2385
2386 if (!lmp_bredr_capable(hdev))
2387 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2388 MGMT_STATUS_NOT_SUPPORTED);
2389
Marcel Holtmann1f350c82012-03-12 20:31:08 -07002390 key_count = __le16_to_cpu(cp->key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002391
Johan Hedberg86742e12011-11-07 23:13:38 +02002392 expected_len = sizeof(*cp) + key_count *
2393 sizeof(struct mgmt_link_key_info);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002394 if (expected_len != len) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002395 BT_ERR("load_link_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02002396 expected_len, len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002397 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002398 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002399 }
2400
Johan Hedberg4ae14302013-01-20 14:27:13 +02002401 if (cp->debug_keys != 0x00 && cp->debug_keys != 0x01)
2402 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2403 MGMT_STATUS_INVALID_PARAMS);
2404
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002405 BT_DBG("%s debug_keys %u key_count %u", hdev->name, cp->debug_keys,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002406 key_count);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002407
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002408 for (i = 0; i < key_count; i++) {
2409 struct mgmt_link_key_info *key = &cp->keys[i];
2410
Marcel Holtmann8e991132014-01-10 02:07:25 -08002411 if (key->addr.type != BDADDR_BREDR || key->type > 0x08)
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002412 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS,
2413 MGMT_STATUS_INVALID_PARAMS);
2414 }
2415
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002416 hci_dev_lock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002417
2418 hci_link_keys_clear(hdev);
2419
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002420 if (cp->debug_keys)
Johan Hedberg0663b292014-06-24 13:15:50 +03002421 changed = !test_and_set_bit(HCI_KEEP_DEBUG_KEYS,
2422 &hdev->dev_flags);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002423 else
Johan Hedberg0663b292014-06-24 13:15:50 +03002424 changed = test_and_clear_bit(HCI_KEEP_DEBUG_KEYS,
2425 &hdev->dev_flags);
Marcel Holtmannb1de97d2014-01-31 11:55:21 -08002426
2427 if (changed)
2428 new_settings(hdev, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002429
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002430 for (i = 0; i < key_count; i++) {
Johan Hedberg86742e12011-11-07 23:13:38 +02002431 struct mgmt_link_key_info *key = &cp->keys[i];
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002432
Johan Hedberg58e92932014-06-24 14:00:26 +03002433 /* Always ignore debug keys and require a new pairing if
2434 * the user wants to use them.
2435 */
2436 if (key->type == HCI_LK_DEBUG_COMBINATION)
2437 continue;
2438
Johan Hedberg7652ff62014-06-24 13:15:49 +03002439 hci_add_link_key(hdev, NULL, &key->addr.bdaddr, key->val,
2440 key->type, key->pin_len, NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002441 }
2442
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002443 cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LINK_KEYS, 0, NULL, 0);
Johan Hedberg0e5f8752011-11-11 16:18:54 +02002444
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002445 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002446
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03002447 return 0;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002448}
2449
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002450static int device_unpaired(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002451 u8 addr_type, struct sock *skip_sk)
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002452{
2453 struct mgmt_ev_device_unpaired ev;
2454
2455 bacpy(&ev.addr.bdaddr, bdaddr);
2456 ev.addr.type = addr_type;
2457
2458 return mgmt_event(MGMT_EV_DEVICE_UNPAIRED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002459 skip_sk);
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002460}
2461
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002462static int unpair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002463 u16 len)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002464{
Johan Hedberg124f6e32012-02-09 13:50:12 +02002465 struct mgmt_cp_unpair_device *cp = data;
2466 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002467 struct hci_cp_disconnect dc;
2468 struct pending_cmd *cmd;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002469 struct hci_conn *conn;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002470 int err;
2471
Johan Hedberga8a1d192011-11-10 15:54:38 +02002472 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02002473 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2474 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02002475
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002476 if (!bdaddr_type_is_valid(cp->addr.type))
2477 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2478 MGMT_STATUS_INVALID_PARAMS,
2479 &rp, sizeof(rp));
2480
Johan Hedberg118da702013-01-20 14:27:20 +02002481 if (cp->disconnect != 0x00 && cp->disconnect != 0x01)
2482 return cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
2483 MGMT_STATUS_INVALID_PARAMS,
2484 &rp, sizeof(rp));
2485
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002486 hci_dev_lock(hdev);
2487
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002488 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002489 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002490 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002491 goto unlock;
2492 }
2493
Johan Hedberge0b2b272014-02-18 17:14:31 +02002494 if (cp->addr.type == BDADDR_BREDR) {
Johan Hedberg124f6e32012-02-09 13:50:12 +02002495 err = hci_remove_link_key(hdev, &cp->addr.bdaddr);
Johan Hedberge0b2b272014-02-18 17:14:31 +02002496 } else {
2497 u8 addr_type;
2498
2499 if (cp->addr.type == BDADDR_LE_PUBLIC)
2500 addr_type = ADDR_LE_DEV_PUBLIC;
2501 else
2502 addr_type = ADDR_LE_DEV_RANDOM;
2503
Johan Hedberga7ec7332014-02-18 17:14:35 +02002504 hci_remove_irk(hdev, &cp->addr.bdaddr, addr_type);
2505
Andre Guedesa9b0a042014-02-26 20:21:52 -03002506 hci_conn_params_del(hdev, &cp->addr.bdaddr, addr_type);
2507
Johan Hedberge0b2b272014-02-18 17:14:31 +02002508 err = hci_remove_ltk(hdev, &cp->addr.bdaddr, addr_type);
2509 }
Vinicius Costa Gomesb0dbfb42012-02-02 21:08:03 -03002510
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002511 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002512 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002513 MGMT_STATUS_NOT_PAIRED, &rp, sizeof(rp));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002514 goto unlock;
2515 }
2516
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002517 if (cp->disconnect) {
Andre Guedes591f47f2012-04-24 21:02:49 -03002518 if (cp->addr.type == BDADDR_BREDR)
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002519 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002520 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002521 else
2522 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002523 &cp->addr.bdaddr);
Johan Hedberg86a8cfc2012-02-22 22:53:34 +02002524 } else {
2525 conn = NULL;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002526 }
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002527
Johan Hedberga8a1d192011-11-10 15:54:38 +02002528 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002529 err = cmd_complete(sk, hdev->id, MGMT_OP_UNPAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002530 &rp, sizeof(rp));
Johan Hedbergb1078ad2012-02-09 17:21:16 +02002531 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, sk);
Johan Hedberga8a1d192011-11-10 15:54:38 +02002532 goto unlock;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002533 }
2534
Johan Hedberg124f6e32012-02-09 13:50:12 +02002535 cmd = mgmt_pending_add(sk, MGMT_OP_UNPAIR_DEVICE, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002536 sizeof(*cp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02002537 if (!cmd) {
2538 err = -ENOMEM;
2539 goto unlock;
2540 }
2541
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002542 dc.handle = cpu_to_le16(conn->handle);
Johan Hedberga8a1d192011-11-10 15:54:38 +02002543 dc.reason = 0x13; /* Remote User Terminated Connection */
2544 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
2545 if (err < 0)
2546 mgmt_pending_remove(cmd);
2547
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002548unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002549 hci_dev_unlock(hdev);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02002550 return err;
2551}
2552
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002553static int disconnect(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002554 u16 len)
Johan Hedberg8962ee72011-01-20 12:40:27 +02002555{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002556 struct mgmt_cp_disconnect *cp = data;
Johan Hedberg06a63b12013-01-20 14:27:21 +02002557 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002558 struct hci_cp_disconnect dc;
Johan Hedberg366a0332011-02-19 12:05:55 -03002559 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002560 struct hci_conn *conn;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002561 int err;
2562
2563 BT_DBG("");
2564
Johan Hedberg06a63b12013-01-20 14:27:21 +02002565 memset(&rp, 0, sizeof(rp));
2566 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2567 rp.addr.type = cp->addr.type;
2568
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002569 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg06a63b12013-01-20 14:27:21 +02002570 return cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2571 MGMT_STATUS_INVALID_PARAMS,
2572 &rp, sizeof(rp));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002573
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002574 hci_dev_lock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002575
2576 if (!test_bit(HCI_UP, &hdev->flags)) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002577 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2578 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002579 goto failed;
2580 }
2581
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002582 if (mgmt_pending_find(MGMT_OP_DISCONNECT, hdev)) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002583 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2584 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002585 goto failed;
2586 }
2587
Andre Guedes591f47f2012-04-24 21:02:49 -03002588 if (cp->addr.type == BDADDR_BREDR)
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03002589 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
2590 &cp->addr.bdaddr);
Johan Hedberg88c3df12012-02-09 14:27:38 +02002591 else
2592 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
Vinicius Costa Gomes365227e2011-05-06 18:41:44 -03002593
Vishal Agarwalf9607272012-06-13 05:32:43 +05302594 if (!conn || conn->state == BT_OPEN || conn->state == BT_CLOSED) {
Johan Hedberg06a63b12013-01-20 14:27:21 +02002595 err = cmd_complete(sk, hdev->id, MGMT_OP_DISCONNECT,
2596 MGMT_STATUS_NOT_CONNECTED, &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02002597 goto failed;
2598 }
2599
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002600 cmd = mgmt_pending_add(sk, MGMT_OP_DISCONNECT, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03002601 if (!cmd) {
2602 err = -ENOMEM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002603 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03002604 }
Johan Hedberg8962ee72011-01-20 12:40:27 +02002605
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002606 dc.handle = cpu_to_le16(conn->handle);
Andre Guedes3701f942012-06-11 18:41:12 -03002607 dc.reason = HCI_ERROR_REMOTE_USER_TERM;
Johan Hedberg8962ee72011-01-20 12:40:27 +02002608
2609 err = hci_send_cmd(hdev, HCI_OP_DISCONNECT, sizeof(dc), &dc);
2610 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03002611 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002612
2613failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002614 hci_dev_unlock(hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02002615 return err;
2616}
2617
Andre Guedes57c14772012-04-24 21:02:50 -03002618static u8 link_to_bdaddr(u8 link_type, u8 addr_type)
Johan Hedberg4c659c32011-11-07 23:13:39 +02002619{
2620 switch (link_type) {
2621 case LE_LINK:
Johan Hedberg48264f02011-11-09 13:58:58 +02002622 switch (addr_type) {
2623 case ADDR_LE_DEV_PUBLIC:
Andre Guedes591f47f2012-04-24 21:02:49 -03002624 return BDADDR_LE_PUBLIC;
Andre Guedes0ed09142012-04-03 08:46:54 -03002625
Johan Hedberg48264f02011-11-09 13:58:58 +02002626 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03002627 /* Fallback to LE Random address type */
Andre Guedes591f47f2012-04-24 21:02:49 -03002628 return BDADDR_LE_RANDOM;
Johan Hedberg48264f02011-11-09 13:58:58 +02002629 }
Andre Guedes0ed09142012-04-03 08:46:54 -03002630
Johan Hedberg4c659c32011-11-07 23:13:39 +02002631 default:
Andre Guedes0ed09142012-04-03 08:46:54 -03002632 /* Fallback to BR/EDR type */
Andre Guedes591f47f2012-04-24 21:02:49 -03002633 return BDADDR_BREDR;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002634 }
2635}
2636
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002637static int get_connections(struct sock *sk, struct hci_dev *hdev, void *data,
2638 u16 data_len)
Johan Hedberg2784eb42011-01-21 13:56:35 +02002639{
Johan Hedberg2784eb42011-01-21 13:56:35 +02002640 struct mgmt_rp_get_connections *rp;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002641 struct hci_conn *c;
Johan Hedberga38528f2011-01-22 06:46:43 +02002642 size_t rp_len;
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002643 int err;
2644 u16 i;
Johan Hedberg2784eb42011-01-21 13:56:35 +02002645
2646 BT_DBG("");
2647
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002648 hci_dev_lock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002649
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002650 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002651 err = cmd_status(sk, hdev->id, MGMT_OP_GET_CONNECTIONS,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002652 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002653 goto unlock;
2654 }
2655
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002656 i = 0;
Johan Hedbergb644ba32012-01-17 21:48:47 +02002657 list_for_each_entry(c, &hdev->conn_hash.list, list) {
2658 if (test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002659 i++;
Johan Hedberg2784eb42011-01-21 13:56:35 +02002660 }
2661
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002662 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Andre Guedes92c4c202012-06-07 19:05:44 -03002663 rp = kmalloc(rp_len, GFP_KERNEL);
Johan Hedberga38528f2011-01-22 06:46:43 +02002664 if (!rp) {
Johan Hedberg2784eb42011-01-21 13:56:35 +02002665 err = -ENOMEM;
2666 goto unlock;
2667 }
2668
Johan Hedberg2784eb42011-01-21 13:56:35 +02002669 i = 0;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002670 list_for_each_entry(c, &hdev->conn_hash.list, list) {
Johan Hedbergb644ba32012-01-17 21:48:47 +02002671 if (!test_bit(HCI_CONN_MGMT_CONNECTED, &c->flags))
2672 continue;
Johan Hedberg4c659c32011-11-07 23:13:39 +02002673 bacpy(&rp->addr[i].bdaddr, &c->dst);
Andre Guedes57c14772012-04-24 21:02:50 -03002674 rp->addr[i].type = link_to_bdaddr(c->type, c->dst_type);
Andre Guedes0ed09142012-04-03 08:46:54 -03002675 if (c->type == SCO_LINK || c->type == ESCO_LINK)
Johan Hedberg4c659c32011-11-07 23:13:39 +02002676 continue;
2677 i++;
2678 }
2679
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02002680 rp->conn_count = cpu_to_le16(i);
Johan Hedberg60fc5fb62012-02-23 09:52:28 +02002681
Johan Hedberg4c659c32011-11-07 23:13:39 +02002682 /* Recalculate length in case of filtered SCO connections, etc */
2683 rp_len = sizeof(*rp) + (i * sizeof(struct mgmt_addr_info));
Johan Hedberg2784eb42011-01-21 13:56:35 +02002684
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002685 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONNECTIONS, 0, rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002686 rp_len);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002687
Johan Hedberga38528f2011-01-22 06:46:43 +02002688 kfree(rp);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002689
2690unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002691 hci_dev_unlock(hdev);
Johan Hedberg2784eb42011-01-21 13:56:35 +02002692 return err;
2693}
2694
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002695static int send_pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002696 struct mgmt_cp_pin_code_neg_reply *cp)
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002697{
2698 struct pending_cmd *cmd;
2699 int err;
2700
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002701 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_NEG_REPLY, hdev, cp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002702 sizeof(*cp));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002703 if (!cmd)
2704 return -ENOMEM;
2705
Johan Hedbergd8457692012-02-17 14:24:57 +02002706 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_NEG_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002707 sizeof(cp->addr.bdaddr), &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002708 if (err < 0)
2709 mgmt_pending_remove(cmd);
2710
2711 return err;
2712}
2713
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002714static int pin_code_reply(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002715 u16 len)
Johan Hedberg980e1a52011-01-22 06:10:07 +02002716{
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002717 struct hci_conn *conn;
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002718 struct mgmt_cp_pin_code_reply *cp = data;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002719 struct hci_cp_pin_code_reply reply;
Johan Hedberg366a0332011-02-19 12:05:55 -03002720 struct pending_cmd *cmd;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002721 int err;
2722
2723 BT_DBG("");
2724
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002725 hci_dev_lock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002726
Johan Hedberg4b34ee782012-02-21 14:13:02 +02002727 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002728 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002729 MGMT_STATUS_NOT_POWERED);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002730 goto failed;
2731 }
2732
Johan Hedbergd8457692012-02-17 14:24:57 +02002733 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &cp->addr.bdaddr);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002734 if (!conn) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002735 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002736 MGMT_STATUS_NOT_CONNECTED);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002737 goto failed;
2738 }
2739
2740 if (conn->pending_sec_level == BT_SECURITY_HIGH && cp->pin_len != 16) {
Johan Hedbergd8457692012-02-17 14:24:57 +02002741 struct mgmt_cp_pin_code_neg_reply ncp;
2742
2743 memcpy(&ncp.addr, &cp->addr, sizeof(ncp.addr));
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002744
2745 BT_ERR("PIN code is not 16 bytes long");
2746
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002747 err = send_pin_code_neg_reply(sk, hdev, &ncp);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002748 if (err >= 0)
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002749 err = cmd_status(sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002750 MGMT_STATUS_INVALID_PARAMS);
Waldemar Rymarkiewicz96d97a62011-06-01 17:28:48 +02002751
2752 goto failed;
2753 }
2754
Gustavo F. Padovan00abfe42012-03-01 00:37:10 -03002755 cmd = mgmt_pending_add(sk, MGMT_OP_PIN_CODE_REPLY, hdev, data, len);
Johan Hedberg366a0332011-02-19 12:05:55 -03002756 if (!cmd) {
2757 err = -ENOMEM;
Johan Hedberg980e1a52011-01-22 06:10:07 +02002758 goto failed;
Johan Hedberg366a0332011-02-19 12:05:55 -03002759 }
Johan Hedberg980e1a52011-01-22 06:10:07 +02002760
Johan Hedbergd8457692012-02-17 14:24:57 +02002761 bacpy(&reply.bdaddr, &cp->addr.bdaddr);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002762 reply.pin_len = cp->pin_len;
Waldemar Rymarkiewicz24718ca2011-06-01 17:28:47 +02002763 memcpy(reply.pin_code, cp->pin_code, sizeof(reply.pin_code));
Johan Hedberg980e1a52011-01-22 06:10:07 +02002764
2765 err = hci_send_cmd(hdev, HCI_OP_PIN_CODE_REPLY, sizeof(reply), &reply);
2766 if (err < 0)
Johan Hedberga664b5b2011-02-19 12:06:02 -03002767 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002768
2769failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002770 hci_dev_unlock(hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02002771 return err;
2772}
2773
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002774static int set_io_capability(struct sock *sk, struct hci_dev *hdev, void *data,
2775 u16 len)
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002776{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002777 struct mgmt_cp_set_io_capability *cp = data;
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002778
2779 BT_DBG("");
2780
Johan Hedberg4ec86d42014-06-17 15:14:48 +03002781 if (cp->io_capability > SMP_IO_KEYBOARD_DISPLAY)
2782 return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY,
2783 MGMT_STATUS_INVALID_PARAMS, NULL, 0);
2784
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002785 hci_dev_lock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002786
2787 hdev->io_capability = cp->io_capability;
2788
2789 BT_DBG("%s IO capability set to 0x%02x", hdev->name,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002790 hdev->io_capability);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002791
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002792 hci_dev_unlock(hdev);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002793
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002794 return cmd_complete(sk, hdev->id, MGMT_OP_SET_IO_CAPABILITY, 0, NULL,
2795 0);
Johan Hedberg17fa4b92011-01-25 13:28:33 +02002796}
2797
Gustavo Padovan6039aa72012-05-23 04:04:18 -03002798static struct pending_cmd *find_pairing(struct hci_conn *conn)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002799{
2800 struct hci_dev *hdev = conn->hdev;
Luiz Augusto von Dentz8035ded2011-11-01 10:58:56 +02002801 struct pending_cmd *cmd;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002802
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002803 list_for_each_entry(cmd, &hdev->mgmt_pending, list) {
Johan Hedberge9a416b2011-02-19 12:05:56 -03002804 if (cmd->opcode != MGMT_OP_PAIR_DEVICE)
2805 continue;
2806
Johan Hedberge9a416b2011-02-19 12:05:56 -03002807 if (cmd->user_data != conn)
2808 continue;
2809
2810 return cmd;
2811 }
2812
2813 return NULL;
2814}
2815
2816static void pairing_complete(struct pending_cmd *cmd, u8 status)
2817{
2818 struct mgmt_rp_pair_device rp;
2819 struct hci_conn *conn = cmd->user_data;
2820
Johan Hedberg61b1a7f2014-03-20 12:54:16 +02002821 bacpy(&rp.addr.bdaddr, &conn->dst);
2822 rp.addr.type = link_to_bdaddr(conn->type, conn->dst_type);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002823
Johan Hedbergaee9b212012-02-18 15:07:59 +02002824 cmd_complete(cmd->sk, cmd->index, MGMT_OP_PAIR_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002825 &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002826
2827 /* So we don't get further callbacks for this connection */
2828 conn->connect_cfm_cb = NULL;
2829 conn->security_cfm_cb = NULL;
2830 conn->disconn_cfm_cb = NULL;
2831
David Herrmann76a68ba2013-04-06 20:28:37 +02002832 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002833
Johan Hedberga664b5b2011-02-19 12:06:02 -03002834 mgmt_pending_remove(cmd);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002835}
2836
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002837void mgmt_smp_complete(struct hci_conn *conn, bool complete)
2838{
2839 u8 status = complete ? MGMT_STATUS_SUCCESS : MGMT_STATUS_FAILED;
2840 struct pending_cmd *cmd;
2841
2842 cmd = find_pairing(conn);
2843 if (cmd)
2844 pairing_complete(cmd, status);
2845}
2846
Johan Hedberge9a416b2011-02-19 12:05:56 -03002847static void pairing_complete_cb(struct hci_conn *conn, u8 status)
2848{
2849 struct pending_cmd *cmd;
2850
2851 BT_DBG("status %u", status);
2852
Johan Hedberg56e5cb82011-11-08 20:40:16 +02002853 cmd = find_pairing(conn);
2854 if (!cmd)
2855 BT_DBG("Unable to find a pending command");
2856 else
Johan Hedberge2113262012-02-18 15:20:03 +02002857 pairing_complete(cmd, mgmt_status(status));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002858}
2859
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002860static void le_pairing_complete_cb(struct hci_conn *conn, u8 status)
Vishal Agarwal4c47d732012-06-07 20:27:35 +05302861{
2862 struct pending_cmd *cmd;
2863
2864 BT_DBG("status %u", status);
2865
2866 if (!status)
2867 return;
2868
2869 cmd = find_pairing(conn);
2870 if (!cmd)
2871 BT_DBG("Unable to find a pending command");
2872 else
2873 pairing_complete(cmd, mgmt_status(status));
2874}
2875
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002876static int pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002877 u16 len)
Johan Hedberge9a416b2011-02-19 12:05:56 -03002878{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03002879 struct mgmt_cp_pair_device *cp = data;
Johan Hedberg1425acb2011-11-11 00:07:35 +02002880 struct mgmt_rp_pair_device rp;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002881 struct pending_cmd *cmd;
2882 u8 sec_level, auth_type;
2883 struct hci_conn *conn;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002884 int err;
2885
2886 BT_DBG("");
2887
Szymon Jancf950a30e2013-01-18 12:48:07 +01002888 memset(&rp, 0, sizeof(rp));
2889 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
2890 rp.addr.type = cp->addr.type;
2891
Johan Hedberg4ee71b22013-01-20 14:27:19 +02002892 if (!bdaddr_type_is_valid(cp->addr.type))
2893 return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2894 MGMT_STATUS_INVALID_PARAMS,
2895 &rp, sizeof(rp));
2896
Johan Hedberg4ec86d42014-06-17 15:14:48 +03002897 if (cp->io_cap > SMP_IO_KEYBOARD_DISPLAY)
2898 return cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2899 MGMT_STATUS_INVALID_PARAMS,
2900 &rp, sizeof(rp));
2901
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002902 hci_dev_lock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002903
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002904 if (!hdev_is_powered(hdev)) {
Szymon Jancf950a30e2013-01-18 12:48:07 +01002905 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
2906 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002907 goto unlock;
2908 }
2909
Vinicius Costa Gomesc908df32011-09-02 14:51:22 -03002910 sec_level = BT_SECURITY_MEDIUM;
Mikel Astiz6fd6b912014-04-08 14:21:32 +02002911 auth_type = HCI_AT_DEDICATED_BONDING;
Johan Hedberge9a416b2011-02-19 12:05:56 -03002912
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002913 if (cp->addr.type == BDADDR_BREDR) {
Andre Guedes04a6c582014-02-26 20:21:44 -03002914 conn = hci_connect_acl(hdev, &cp->addr.bdaddr, sec_level,
2915 auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002916 } else {
2917 u8 addr_type;
2918
2919 /* Convert from L2CAP channel address type to HCI address type
2920 */
2921 if (cp->addr.type == BDADDR_LE_PUBLIC)
2922 addr_type = ADDR_LE_DEV_PUBLIC;
2923 else
2924 addr_type = ADDR_LE_DEV_RANDOM;
2925
2926 conn = hci_connect_le(hdev, &cp->addr.bdaddr, addr_type,
Andre Guedes04a6c582014-02-26 20:21:44 -03002927 sec_level, auth_type);
Andre Guedes6f77d8c2014-02-26 20:21:45 -03002928 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002929
Ville Tervo30e76272011-02-22 16:10:53 -03002930 if (IS_ERR(conn)) {
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002931 int status;
2932
2933 if (PTR_ERR(conn) == -EBUSY)
2934 status = MGMT_STATUS_BUSY;
2935 else
2936 status = MGMT_STATUS_CONNECT_FAILED;
2937
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002938 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Andrzej Kaczmarek489dc482012-05-30 15:39:22 +02002939 status, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002940 sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002941 goto unlock;
2942 }
2943
2944 if (conn->connect_cfm_cb) {
David Herrmann76a68ba2013-04-06 20:28:37 +02002945 hci_conn_drop(conn);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002946 err = cmd_complete(sk, hdev->id, MGMT_OP_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002947 MGMT_STATUS_BUSY, &rp, sizeof(rp));
Johan Hedberge9a416b2011-02-19 12:05:56 -03002948 goto unlock;
2949 }
2950
Johan Hedberg2e58ef32011-11-08 20:40:15 +02002951 cmd = mgmt_pending_add(sk, MGMT_OP_PAIR_DEVICE, hdev, data, len);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002952 if (!cmd) {
2953 err = -ENOMEM;
David Herrmann76a68ba2013-04-06 20:28:37 +02002954 hci_conn_drop(conn);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002955 goto unlock;
2956 }
2957
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002958 /* For LE, just connecting isn't a proof that the pairing finished */
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002959 if (cp->addr.type == BDADDR_BREDR) {
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002960 conn->connect_cfm_cb = pairing_complete_cb;
Johan Hedbergf4a407b2014-02-18 21:41:34 +02002961 conn->security_cfm_cb = pairing_complete_cb;
2962 conn->disconn_cfm_cb = pairing_complete_cb;
2963 } else {
2964 conn->connect_cfm_cb = le_pairing_complete_cb;
2965 conn->security_cfm_cb = le_pairing_complete_cb;
2966 conn->disconn_cfm_cb = le_pairing_complete_cb;
2967 }
Vinicius Costa Gomes7a512d02011-08-19 21:06:54 -03002968
Johan Hedberge9a416b2011-02-19 12:05:56 -03002969 conn->io_capability = cp->io_cap;
2970 cmd->user_data = conn;
2971
2972 if (conn->state == BT_CONNECTED &&
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03002973 hci_conn_security(conn, sec_level, auth_type))
Johan Hedberge9a416b2011-02-19 12:05:56 -03002974 pairing_complete(cmd, 0);
2975
2976 err = 0;
2977
2978unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03002979 hci_dev_unlock(hdev);
Johan Hedberge9a416b2011-02-19 12:05:56 -03002980 return err;
2981}
2982
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002983static int cancel_pair_device(struct sock *sk, struct hci_dev *hdev, void *data,
2984 u16 len)
Johan Hedberg28424702012-02-02 04:02:29 +02002985{
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02002986 struct mgmt_addr_info *addr = data;
Johan Hedberg28424702012-02-02 04:02:29 +02002987 struct pending_cmd *cmd;
2988 struct hci_conn *conn;
2989 int err;
2990
2991 BT_DBG("");
2992
Johan Hedberg28424702012-02-02 04:02:29 +02002993 hci_dev_lock(hdev);
2994
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002995 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02002996 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03002997 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5f97c1d2012-02-22 22:41:18 +02002998 goto unlock;
2999 }
3000
Johan Hedberg28424702012-02-02 04:02:29 +02003001 cmd = mgmt_pending_find(MGMT_OP_PAIR_DEVICE, hdev);
3002 if (!cmd) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003003 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003004 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003005 goto unlock;
3006 }
3007
3008 conn = cmd->user_data;
3009
3010 if (bacmp(&addr->bdaddr, &conn->dst) != 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003011 err = cmd_status(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003012 MGMT_STATUS_INVALID_PARAMS);
Johan Hedberg28424702012-02-02 04:02:29 +02003013 goto unlock;
3014 }
3015
3016 pairing_complete(cmd, MGMT_STATUS_CANCELLED);
3017
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003018 err = cmd_complete(sk, hdev->id, MGMT_OP_CANCEL_PAIR_DEVICE, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003019 addr, sizeof(*addr));
Johan Hedberg28424702012-02-02 04:02:29 +02003020unlock:
3021 hci_dev_unlock(hdev);
Johan Hedberg28424702012-02-02 04:02:29 +02003022 return err;
3023}
3024
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003025static int user_pairing_resp(struct sock *sk, struct hci_dev *hdev,
Johan Hedberg1707c602013-03-15 17:07:15 -05003026 struct mgmt_addr_info *addr, u16 mgmt_op,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003027 u16 hci_op, __le32 passkey)
Johan Hedberga5c29682011-02-19 12:05:57 -03003028{
Johan Hedberga5c29682011-02-19 12:05:57 -03003029 struct pending_cmd *cmd;
Brian Gix0df4c182011-11-16 13:53:13 -08003030 struct hci_conn *conn;
Johan Hedberga5c29682011-02-19 12:05:57 -03003031 int err;
3032
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003033 hci_dev_lock(hdev);
Johan Hedberg08ba5382011-03-16 14:29:34 +02003034
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003035 if (!hdev_is_powered(hdev)) {
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003036 err = cmd_complete(sk, hdev->id, mgmt_op,
3037 MGMT_STATUS_NOT_POWERED, addr,
3038 sizeof(*addr));
Brian Gix0df4c182011-11-16 13:53:13 -08003039 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003040 }
3041
Johan Hedberg1707c602013-03-15 17:07:15 -05003042 if (addr->type == BDADDR_BREDR)
3043 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK, &addr->bdaddr);
Johan Hedberg272d90d2012-02-09 15:26:12 +02003044 else
Johan Hedberg1707c602013-03-15 17:07:15 -05003045 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &addr->bdaddr);
Brian Gix47c15e22011-11-16 13:53:14 -08003046
Johan Hedberg272d90d2012-02-09 15:26:12 +02003047 if (!conn) {
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003048 err = cmd_complete(sk, hdev->id, mgmt_op,
3049 MGMT_STATUS_NOT_CONNECTED, addr,
3050 sizeof(*addr));
Johan Hedberg272d90d2012-02-09 15:26:12 +02003051 goto done;
3052 }
3053
Johan Hedberg1707c602013-03-15 17:07:15 -05003054 if (addr->type == BDADDR_LE_PUBLIC || addr->type == BDADDR_LE_RANDOM) {
Brian Gix5fe57d92011-12-21 16:12:13 -08003055 err = smp_user_confirm_reply(conn, mgmt_op, passkey);
Brian Gix5fe57d92011-12-21 16:12:13 -08003056 if (!err)
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003057 err = cmd_complete(sk, hdev->id, mgmt_op,
3058 MGMT_STATUS_SUCCESS, addr,
3059 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003060 else
Johan Hedbergfeb94d32013-03-15 17:07:16 -05003061 err = cmd_complete(sk, hdev->id, mgmt_op,
3062 MGMT_STATUS_FAILED, addr,
3063 sizeof(*addr));
Brian Gix5fe57d92011-12-21 16:12:13 -08003064
Brian Gix47c15e22011-11-16 13:53:14 -08003065 goto done;
3066 }
3067
Johan Hedberg1707c602013-03-15 17:07:15 -05003068 cmd = mgmt_pending_add(sk, mgmt_op, hdev, addr, sizeof(*addr));
Johan Hedberga5c29682011-02-19 12:05:57 -03003069 if (!cmd) {
3070 err = -ENOMEM;
Brian Gix0df4c182011-11-16 13:53:13 -08003071 goto done;
Johan Hedberga5c29682011-02-19 12:05:57 -03003072 }
3073
Brian Gix0df4c182011-11-16 13:53:13 -08003074 /* Continue with pairing via HCI */
Brian Gix604086b2011-11-23 08:28:33 -08003075 if (hci_op == HCI_OP_USER_PASSKEY_REPLY) {
3076 struct hci_cp_user_passkey_reply cp;
3077
Johan Hedberg1707c602013-03-15 17:07:15 -05003078 bacpy(&cp.bdaddr, &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003079 cp.passkey = passkey;
3080 err = hci_send_cmd(hdev, hci_op, sizeof(cp), &cp);
3081 } else
Johan Hedberg1707c602013-03-15 17:07:15 -05003082 err = hci_send_cmd(hdev, hci_op, sizeof(addr->bdaddr),
3083 &addr->bdaddr);
Brian Gix604086b2011-11-23 08:28:33 -08003084
Johan Hedberga664b5b2011-02-19 12:06:02 -03003085 if (err < 0)
3086 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03003087
Brian Gix0df4c182011-11-16 13:53:13 -08003088done:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003089 hci_dev_unlock(hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03003090 return err;
3091}
3092
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303093static int pin_code_neg_reply(struct sock *sk, struct hci_dev *hdev,
3094 void *data, u16 len)
3095{
3096 struct mgmt_cp_pin_code_neg_reply *cp = data;
3097
3098 BT_DBG("");
3099
Johan Hedberg1707c602013-03-15 17:07:15 -05003100 return user_pairing_resp(sk, hdev, &cp->addr,
Jaganath Kanakkasseryafeb0192012-07-09 16:11:51 +05303101 MGMT_OP_PIN_CODE_NEG_REPLY,
3102 HCI_OP_PIN_CODE_NEG_REPLY, 0);
3103}
3104
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003105static int user_confirm_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3106 u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003107{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003108 struct mgmt_cp_user_confirm_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003109
3110 BT_DBG("");
3111
3112 if (len != sizeof(*cp))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003113 return cmd_status(sk, hdev->id, MGMT_OP_USER_CONFIRM_REPLY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003114 MGMT_STATUS_INVALID_PARAMS);
Brian Gix0df4c182011-11-16 13:53:13 -08003115
Johan Hedberg1707c602013-03-15 17:07:15 -05003116 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003117 MGMT_OP_USER_CONFIRM_REPLY,
3118 HCI_OP_USER_CONFIRM_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003119}
3120
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003121static int user_confirm_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003122 void *data, u16 len)
Brian Gix0df4c182011-11-16 13:53:13 -08003123{
Johan Hedbergc9c26592011-12-15 00:47:41 +02003124 struct mgmt_cp_user_confirm_neg_reply *cp = data;
Brian Gix0df4c182011-11-16 13:53:13 -08003125
3126 BT_DBG("");
3127
Johan Hedberg1707c602013-03-15 17:07:15 -05003128 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003129 MGMT_OP_USER_CONFIRM_NEG_REPLY,
3130 HCI_OP_USER_CONFIRM_NEG_REPLY, 0);
Brian Gix0df4c182011-11-16 13:53:13 -08003131}
3132
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003133static int user_passkey_reply(struct sock *sk, struct hci_dev *hdev, void *data,
3134 u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003135{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003136 struct mgmt_cp_user_passkey_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003137
3138 BT_DBG("");
3139
Johan Hedberg1707c602013-03-15 17:07:15 -05003140 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003141 MGMT_OP_USER_PASSKEY_REPLY,
3142 HCI_OP_USER_PASSKEY_REPLY, cp->passkey);
Brian Gix604086b2011-11-23 08:28:33 -08003143}
3144
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003145static int user_passkey_neg_reply(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003146 void *data, u16 len)
Brian Gix604086b2011-11-23 08:28:33 -08003147{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003148 struct mgmt_cp_user_passkey_neg_reply *cp = data;
Brian Gix604086b2011-11-23 08:28:33 -08003149
3150 BT_DBG("");
3151
Johan Hedberg1707c602013-03-15 17:07:15 -05003152 return user_pairing_resp(sk, hdev, &cp->addr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003153 MGMT_OP_USER_PASSKEY_NEG_REPLY,
3154 HCI_OP_USER_PASSKEY_NEG_REPLY, 0);
Brian Gix604086b2011-11-23 08:28:33 -08003155}
3156
Johan Hedberg13928972013-03-15 17:07:00 -05003157static void update_name(struct hci_request *req)
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003158{
Johan Hedberg13928972013-03-15 17:07:00 -05003159 struct hci_dev *hdev = req->hdev;
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003160 struct hci_cp_write_local_name cp;
3161
Johan Hedberg13928972013-03-15 17:07:00 -05003162 memcpy(cp.name, hdev->dev_name, sizeof(cp.name));
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003163
Johan Hedberg890ea892013-03-15 17:06:52 -05003164 hci_req_add(req, HCI_OP_WRITE_LOCAL_NAME, sizeof(cp), &cp);
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003165}
3166
Johan Hedberg13928972013-03-15 17:07:00 -05003167static void set_name_complete(struct hci_dev *hdev, u8 status)
3168{
3169 struct mgmt_cp_set_local_name *cp;
3170 struct pending_cmd *cmd;
3171
3172 BT_DBG("status 0x%02x", status);
3173
3174 hci_dev_lock(hdev);
3175
3176 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
3177 if (!cmd)
3178 goto unlock;
3179
3180 cp = cmd->param;
3181
3182 if (status)
3183 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME,
3184 mgmt_status(status));
3185 else
3186 cmd_complete(cmd->sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3187 cp, sizeof(*cp));
3188
3189 mgmt_pending_remove(cmd);
3190
3191unlock:
3192 hci_dev_unlock(hdev);
3193}
3194
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003195static int set_local_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003196 u16 len)
Johan Hedbergb312b1612011-03-16 14:29:37 +02003197{
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003198 struct mgmt_cp_set_local_name *cp = data;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003199 struct pending_cmd *cmd;
Johan Hedberg890ea892013-03-15 17:06:52 -05003200 struct hci_request req;
Johan Hedbergb312b1612011-03-16 14:29:37 +02003201 int err;
3202
3203 BT_DBG("");
3204
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003205 hci_dev_lock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003206
Johan Hedbergb3f2ca92013-03-15 17:07:03 -05003207 /* If the old values are the same as the new ones just return a
3208 * direct command complete event.
3209 */
3210 if (!memcmp(hdev->dev_name, cp->name, sizeof(hdev->dev_name)) &&
3211 !memcmp(hdev->short_name, cp->short_name,
3212 sizeof(hdev->short_name))) {
3213 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
3214 data, len);
3215 goto failed;
3216 }
3217
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003218 memcpy(hdev->short_name, cp->short_name, sizeof(hdev->short_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003219
Johan Hedbergb5235a62012-02-21 14:32:24 +02003220 if (!hdev_is_powered(hdev)) {
Johan Hedberg2b4bf392012-03-03 00:19:06 +02003221 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003222
3223 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_LOCAL_NAME, 0,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003224 data, len);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003225 if (err < 0)
3226 goto failed;
3227
3228 err = mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, data, len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003229 sk);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003230
Johan Hedbergb5235a62012-02-21 14:32:24 +02003231 goto failed;
3232 }
3233
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02003234 cmd = mgmt_pending_add(sk, MGMT_OP_SET_LOCAL_NAME, hdev, data, len);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003235 if (!cmd) {
3236 err = -ENOMEM;
3237 goto failed;
3238 }
3239
Johan Hedberg13928972013-03-15 17:07:00 -05003240 memcpy(hdev->dev_name, cp->name, sizeof(hdev->dev_name));
3241
Johan Hedberg890ea892013-03-15 17:06:52 -05003242 hci_req_init(&req, hdev);
Johan Hedberg3f985052013-03-15 17:07:02 -05003243
3244 if (lmp_bredr_capable(hdev)) {
3245 update_name(&req);
3246 update_eir(&req);
3247 }
3248
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003249 /* The name is stored in the scan response data and so
3250 * no need to udpate the advertising data here.
3251 */
Johan Hedberg3f985052013-03-15 17:07:02 -05003252 if (lmp_le_capable(hdev))
Marcel Holtmann7a5f4992013-10-16 00:16:49 -07003253 update_scan_rsp_data(&req);
Johan Hedberg3f985052013-03-15 17:07:02 -05003254
Johan Hedberg13928972013-03-15 17:07:00 -05003255 err = hci_req_run(&req, set_name_complete);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003256 if (err < 0)
3257 mgmt_pending_remove(cmd);
3258
3259failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003260 hci_dev_unlock(hdev);
Johan Hedbergb312b1612011-03-16 14:29:37 +02003261 return err;
3262}
3263
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02003264static int read_local_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003265 void *data, u16 data_len)
Szymon Jancc35938b2011-03-22 13:12:21 +01003266{
Szymon Jancc35938b2011-03-22 13:12:21 +01003267 struct pending_cmd *cmd;
3268 int err;
3269
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003270 BT_DBG("%s", hdev->name);
Szymon Jancc35938b2011-03-22 13:12:21 +01003271
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003272 hci_dev_lock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003273
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003274 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003275 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003276 MGMT_STATUS_NOT_POWERED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003277 goto unlock;
3278 }
3279
Andre Guedes9a1a1992012-07-24 15:03:48 -03003280 if (!lmp_ssp_capable(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003281 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003282 MGMT_STATUS_NOT_SUPPORTED);
Szymon Jancc35938b2011-03-22 13:12:21 +01003283 goto unlock;
3284 }
3285
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003286 if (mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003287 err = cmd_status(sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003288 MGMT_STATUS_BUSY);
Szymon Jancc35938b2011-03-22 13:12:21 +01003289 goto unlock;
3290 }
3291
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003292 cmd = mgmt_pending_add(sk, MGMT_OP_READ_LOCAL_OOB_DATA, hdev, NULL, 0);
Szymon Jancc35938b2011-03-22 13:12:21 +01003293 if (!cmd) {
3294 err = -ENOMEM;
3295 goto unlock;
3296 }
3297
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08003298 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags))
3299 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_EXT_DATA,
3300 0, NULL);
3301 else
3302 err = hci_send_cmd(hdev, HCI_OP_READ_LOCAL_OOB_DATA, 0, NULL);
3303
Szymon Jancc35938b2011-03-22 13:12:21 +01003304 if (err < 0)
3305 mgmt_pending_remove(cmd);
3306
3307unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003308 hci_dev_unlock(hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01003309 return err;
3310}
3311
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003312static int add_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003313 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003314{
Szymon Janc2763eda2011-03-22 13:12:22 +01003315 int err;
3316
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003317 BT_DBG("%s ", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003318
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003319 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003320
Marcel Holtmannec109112014-01-10 02:07:30 -08003321 if (len == MGMT_ADD_REMOTE_OOB_DATA_SIZE) {
3322 struct mgmt_cp_add_remote_oob_data *cp = data;
3323 u8 status;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003324
Marcel Holtmannec109112014-01-10 02:07:30 -08003325 err = hci_add_remote_oob_data(hdev, &cp->addr.bdaddr,
3326 cp->hash, cp->randomizer);
3327 if (err < 0)
3328 status = MGMT_STATUS_FAILED;
3329 else
3330 status = MGMT_STATUS_SUCCESS;
3331
3332 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3333 status, &cp->addr, sizeof(cp->addr));
3334 } else if (len == MGMT_ADD_REMOTE_OOB_EXT_DATA_SIZE) {
3335 struct mgmt_cp_add_remote_oob_ext_data *cp = data;
3336 u8 status;
3337
3338 err = hci_add_remote_oob_ext_data(hdev, &cp->addr.bdaddr,
3339 cp->hash192,
3340 cp->randomizer192,
3341 cp->hash256,
3342 cp->randomizer256);
3343 if (err < 0)
3344 status = MGMT_STATUS_FAILED;
3345 else
3346 status = MGMT_STATUS_SUCCESS;
3347
3348 err = cmd_complete(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3349 status, &cp->addr, sizeof(cp->addr));
3350 } else {
3351 BT_ERR("add_remote_oob_data: invalid length of %u bytes", len);
3352 err = cmd_status(sk, hdev->id, MGMT_OP_ADD_REMOTE_OOB_DATA,
3353 MGMT_STATUS_INVALID_PARAMS);
3354 }
Szymon Janc2763eda2011-03-22 13:12:22 +01003355
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003356 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003357 return err;
3358}
3359
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003360static int remove_remote_oob_data(struct sock *sk, struct hci_dev *hdev,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03003361 void *data, u16 len)
Szymon Janc2763eda2011-03-22 13:12:22 +01003362{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003363 struct mgmt_cp_remove_remote_oob_data *cp = data;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003364 u8 status;
Szymon Janc2763eda2011-03-22 13:12:22 +01003365 int err;
3366
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003367 BT_DBG("%s", hdev->name);
Szymon Janc2763eda2011-03-22 13:12:22 +01003368
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003369 hci_dev_lock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003370
Johan Hedberg664ce4c2012-02-09 15:44:09 +02003371 err = hci_remove_remote_oob_data(hdev, &cp->addr.bdaddr);
Szymon Janc2763eda2011-03-22 13:12:22 +01003372 if (err < 0)
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003373 status = MGMT_STATUS_INVALID_PARAMS;
Szymon Janc2763eda2011-03-22 13:12:22 +01003374 else
Szymon Janca6785be2012-12-13 15:11:21 +01003375 status = MGMT_STATUS_SUCCESS;
Johan Hedbergbf1e3542012-02-19 13:16:14 +02003376
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003377 err = cmd_complete(sk, hdev->id, MGMT_OP_REMOVE_REMOTE_OOB_DATA,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003378 status, &cp->addr, sizeof(cp->addr));
Szymon Janc2763eda2011-03-22 13:12:22 +01003379
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003380 hci_dev_unlock(hdev);
Szymon Janc2763eda2011-03-22 13:12:22 +01003381 return err;
3382}
3383
Andre Guedes41dc2bd2013-04-30 15:29:30 -03003384static int mgmt_start_discovery_failed(struct hci_dev *hdev, u8 status)
3385{
3386 struct pending_cmd *cmd;
3387 u8 type;
3388 int err;
3389
3390 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3391
3392 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
3393 if (!cmd)
3394 return -ENOENT;
3395
3396 type = hdev->discovery.type;
3397
3398 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
3399 &type, sizeof(type));
3400 mgmt_pending_remove(cmd);
3401
3402 return err;
3403}
3404
Andre Guedes7c307722013-04-30 15:29:28 -03003405static void start_discovery_complete(struct hci_dev *hdev, u8 status)
3406{
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01003407 unsigned long timeout = 0;
3408
Andre Guedes7c307722013-04-30 15:29:28 -03003409 BT_DBG("status %d", status);
3410
3411 if (status) {
3412 hci_dev_lock(hdev);
3413 mgmt_start_discovery_failed(hdev, status);
3414 hci_dev_unlock(hdev);
3415 return;
3416 }
3417
3418 hci_dev_lock(hdev);
3419 hci_discovery_set_state(hdev, DISCOVERY_FINDING);
3420 hci_dev_unlock(hdev);
3421
3422 switch (hdev->discovery.type) {
3423 case DISCOV_TYPE_LE:
Lukasz Rymanowski3d5a76f2014-03-27 20:55:21 +01003424 timeout = msecs_to_jiffies(DISCOV_LE_TIMEOUT);
Andre Guedes7c307722013-04-30 15:29:28 -03003425 break;
3426
3427 case DISCOV_TYPE_INTERLEAVED:
Lukasz Rymanowskib9a7a612014-03-27 20:55:20 +01003428 timeout = msecs_to_jiffies(hdev->discov_interleaved_timeout);
Andre Guedes7c307722013-04-30 15:29:28 -03003429 break;
3430
3431 case DISCOV_TYPE_BREDR:
3432 break;
3433
3434 default:
3435 BT_ERR("Invalid discovery type %d", hdev->discovery.type);
3436 }
Lukasz Rymanowskiae55f592014-03-27 20:55:19 +01003437
3438 if (!timeout)
3439 return;
3440
3441 queue_delayed_work(hdev->workqueue, &hdev->le_scan_disable, timeout);
Andre Guedes7c307722013-04-30 15:29:28 -03003442}
3443
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003444static int start_discovery(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003445 void *data, u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04003446{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003447 struct mgmt_cp_start_discovery *cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04003448 struct pending_cmd *cmd;
Andre Guedes7c307722013-04-30 15:29:28 -03003449 struct hci_cp_le_set_scan_param param_cp;
3450 struct hci_cp_le_set_scan_enable enable_cp;
3451 struct hci_cp_inquiry inq_cp;
3452 struct hci_request req;
3453 /* General inquiry access code (GIAC) */
3454 u8 lap[3] = { 0x33, 0x8b, 0x9e };
Johan Hedbergd9483942014-02-23 19:42:24 +02003455 u8 status, own_addr_type;
Johan Hedberg14a53662011-04-27 10:29:56 -04003456 int err;
3457
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003458 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04003459
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003460 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003461
Johan Hedberg4b34ee782012-02-21 14:13:02 +02003462 if (!hdev_is_powered(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003463 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003464 MGMT_STATUS_NOT_POWERED);
Johan Hedbergbd2d1332011-11-07 23:13:37 +02003465 goto failed;
3466 }
3467
Andre Guedes642be6c2012-03-21 00:03:37 -03003468 if (test_bit(HCI_PERIODIC_INQ, &hdev->dev_flags)) {
3469 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3470 MGMT_STATUS_BUSY);
3471 goto failed;
3472 }
3473
Johan Hedbergff9ef572012-01-04 14:23:45 +02003474 if (hdev->discovery.state != DISCOVERY_STOPPED) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003475 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003476 MGMT_STATUS_BUSY);
Johan Hedbergff9ef572012-01-04 14:23:45 +02003477 goto failed;
3478 }
3479
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003480 cmd = mgmt_pending_add(sk, MGMT_OP_START_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04003481 if (!cmd) {
3482 err = -ENOMEM;
3483 goto failed;
3484 }
3485
Andre Guedes4aab14e2012-02-17 20:39:36 -03003486 hdev->discovery.type = cp->type;
3487
Andre Guedes7c307722013-04-30 15:29:28 -03003488 hci_req_init(&req, hdev);
3489
Andre Guedes4aab14e2012-02-17 20:39:36 -03003490 switch (hdev->discovery.type) {
Andre Guedesf39799f2012-02-17 20:39:35 -03003491 case DISCOV_TYPE_BREDR:
Johan Hedberge6fe7982013-10-02 15:45:22 +03003492 status = mgmt_bredr_support(hdev);
3493 if (status) {
Johan Hedberg04106752013-01-10 14:54:09 +02003494 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03003495 status);
Johan Hedberg04106752013-01-10 14:54:09 +02003496 mgmt_pending_remove(cmd);
3497 goto failed;
3498 }
3499
Andre Guedes7c307722013-04-30 15:29:28 -03003500 if (test_bit(HCI_INQUIRY, &hdev->flags)) {
3501 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3502 MGMT_STATUS_BUSY);
3503 mgmt_pending_remove(cmd);
3504 goto failed;
3505 }
3506
3507 hci_inquiry_cache_flush(hdev);
3508
3509 memset(&inq_cp, 0, sizeof(inq_cp));
3510 memcpy(&inq_cp.lap, lap, sizeof(inq_cp.lap));
Andre Guedes0d8cc932013-04-30 15:29:31 -03003511 inq_cp.length = DISCOV_BREDR_INQUIRY_LEN;
Andre Guedes7c307722013-04-30 15:29:28 -03003512 hci_req_add(&req, HCI_OP_INQUIRY, sizeof(inq_cp), &inq_cp);
Andre Guedesf39799f2012-02-17 20:39:35 -03003513 break;
3514
3515 case DISCOV_TYPE_LE:
Andre Guedes7c307722013-04-30 15:29:28 -03003516 case DISCOV_TYPE_INTERLEAVED:
Johan Hedberge6fe7982013-10-02 15:45:22 +03003517 status = mgmt_le_support(hdev);
3518 if (status) {
Johan Hedberg04106752013-01-10 14:54:09 +02003519 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
Johan Hedberge6fe7982013-10-02 15:45:22 +03003520 status);
Johan Hedberg04106752013-01-10 14:54:09 +02003521 mgmt_pending_remove(cmd);
3522 goto failed;
3523 }
3524
Andre Guedes7c307722013-04-30 15:29:28 -03003525 if (hdev->discovery.type == DISCOV_TYPE_INTERLEAVED &&
Johan Hedberg56f87902013-10-02 13:43:13 +03003526 !test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
Johan Hedberg04106752013-01-10 14:54:09 +02003527 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3528 MGMT_STATUS_NOT_SUPPORTED);
3529 mgmt_pending_remove(cmd);
3530 goto failed;
3531 }
3532
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003533 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
Andre Guedes7c307722013-04-30 15:29:28 -03003534 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3535 MGMT_STATUS_REJECTED);
3536 mgmt_pending_remove(cmd);
3537 goto failed;
3538 }
3539
Andre Guedesc54c3862014-02-26 20:21:50 -03003540 /* If controller is scanning, it means the background scanning
3541 * is running. Thus, we should temporarily stop it in order to
3542 * set the discovery scanning parameters.
3543 */
3544 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags))
3545 hci_req_add_le_scan_disable(&req);
Andre Guedes7c307722013-04-30 15:29:28 -03003546
3547 memset(&param_cp, 0, sizeof(param_cp));
Johan Hedbergd9483942014-02-23 19:42:24 +02003548
Marcel Holtmann94b1fc92014-02-23 20:25:54 -08003549 /* All active scans will be done with either a resolvable
3550 * private address (when privacy feature has been enabled)
3551 * or unresolvable private address.
3552 */
3553 err = hci_update_random_address(&req, true, &own_addr_type);
Johan Hedbergd9483942014-02-23 19:42:24 +02003554 if (err < 0) {
3555 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3556 MGMT_STATUS_FAILED);
3557 mgmt_pending_remove(cmd);
3558 goto failed;
3559 }
3560
Andre Guedes7c307722013-04-30 15:29:28 -03003561 param_cp.type = LE_SCAN_ACTIVE;
Andre Guedes0d8cc932013-04-30 15:29:31 -03003562 param_cp.interval = cpu_to_le16(DISCOV_LE_SCAN_INT);
3563 param_cp.window = cpu_to_le16(DISCOV_LE_SCAN_WIN);
Johan Hedbergd9483942014-02-23 19:42:24 +02003564 param_cp.own_address_type = own_addr_type;
Andre Guedes7c307722013-04-30 15:29:28 -03003565 hci_req_add(&req, HCI_OP_LE_SET_SCAN_PARAM, sizeof(param_cp),
3566 &param_cp);
3567
3568 memset(&enable_cp, 0, sizeof(enable_cp));
3569 enable_cp.enable = LE_SCAN_ENABLE;
3570 enable_cp.filter_dup = LE_SCAN_FILTER_DUP_ENABLE;
3571 hci_req_add(&req, HCI_OP_LE_SET_SCAN_ENABLE, sizeof(enable_cp),
3572 &enable_cp);
Andre Guedes5e0452c2012-02-17 20:39:38 -03003573 break;
3574
Andre Guedesf39799f2012-02-17 20:39:35 -03003575 default:
Johan Hedberg04106752013-01-10 14:54:09 +02003576 err = cmd_status(sk, hdev->id, MGMT_OP_START_DISCOVERY,
3577 MGMT_STATUS_INVALID_PARAMS);
3578 mgmt_pending_remove(cmd);
3579 goto failed;
Andre Guedesf39799f2012-02-17 20:39:35 -03003580 }
Andre Guedes3fd24152012-02-03 17:48:01 -03003581
Andre Guedes7c307722013-04-30 15:29:28 -03003582 err = hci_req_run(&req, start_discovery_complete);
Johan Hedberg14a53662011-04-27 10:29:56 -04003583 if (err < 0)
3584 mgmt_pending_remove(cmd);
Johan Hedbergff9ef572012-01-04 14:23:45 +02003585 else
3586 hci_discovery_set_state(hdev, DISCOVERY_STARTING);
Johan Hedberg14a53662011-04-27 10:29:56 -04003587
3588failed:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003589 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003590 return err;
3591}
3592
Andre Guedes1183fdc2013-04-30 15:29:35 -03003593static int mgmt_stop_discovery_failed(struct hci_dev *hdev, u8 status)
3594{
3595 struct pending_cmd *cmd;
3596 int err;
3597
3598 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
3599 if (!cmd)
3600 return -ENOENT;
3601
3602 err = cmd_complete(cmd->sk, hdev->id, cmd->opcode, mgmt_status(status),
3603 &hdev->discovery.type, sizeof(hdev->discovery.type));
3604 mgmt_pending_remove(cmd);
3605
3606 return err;
3607}
3608
Andre Guedes0e05bba2013-04-30 15:29:33 -03003609static void stop_discovery_complete(struct hci_dev *hdev, u8 status)
3610{
3611 BT_DBG("status %d", status);
3612
3613 hci_dev_lock(hdev);
3614
3615 if (status) {
3616 mgmt_stop_discovery_failed(hdev, status);
3617 goto unlock;
3618 }
3619
3620 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3621
3622unlock:
3623 hci_dev_unlock(hdev);
3624}
3625
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003626static int stop_discovery(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003627 u16 len)
Johan Hedberg14a53662011-04-27 10:29:56 -04003628{
Johan Hedbergd9306502012-02-20 23:25:18 +02003629 struct mgmt_cp_stop_discovery *mgmt_cp = data;
Johan Hedberg14a53662011-04-27 10:29:56 -04003630 struct pending_cmd *cmd;
Andre Guedes0e05bba2013-04-30 15:29:33 -03003631 struct hci_request req;
Johan Hedberg14a53662011-04-27 10:29:56 -04003632 int err;
3633
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003634 BT_DBG("%s", hdev->name);
Johan Hedberg14a53662011-04-27 10:29:56 -04003635
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003636 hci_dev_lock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003637
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003638 if (!hci_discovery_active(hdev)) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003639 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003640 MGMT_STATUS_REJECTED, &mgmt_cp->type,
3641 sizeof(mgmt_cp->type));
Johan Hedbergd9306502012-02-20 23:25:18 +02003642 goto unlock;
3643 }
3644
3645 if (hdev->discovery.type != mgmt_cp->type) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003646 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003647 MGMT_STATUS_INVALID_PARAMS, &mgmt_cp->type,
3648 sizeof(mgmt_cp->type));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003649 goto unlock;
Johan Hedbergff9ef572012-01-04 14:23:45 +02003650 }
3651
Johan Hedberg2e58ef32011-11-08 20:40:15 +02003652 cmd = mgmt_pending_add(sk, MGMT_OP_STOP_DISCOVERY, hdev, NULL, 0);
Johan Hedberg14a53662011-04-27 10:29:56 -04003653 if (!cmd) {
3654 err = -ENOMEM;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003655 goto unlock;
Johan Hedberg14a53662011-04-27 10:29:56 -04003656 }
3657
Andre Guedes0e05bba2013-04-30 15:29:33 -03003658 hci_req_init(&req, hdev);
3659
Johan Hedberg21a60d32014-06-10 14:05:58 +03003660 hci_stop_discovery(&req);
Andre Guedes0e05bba2013-04-30 15:29:33 -03003661
Johan Hedberg21a60d32014-06-10 14:05:58 +03003662 err = hci_req_run(&req, stop_discovery_complete);
3663 if (!err) {
3664 hci_discovery_set_state(hdev, DISCOVERY_STOPPING);
Andre Guedes0e05bba2013-04-30 15:29:33 -03003665 goto unlock;
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003666 }
3667
Johan Hedberg21a60d32014-06-10 14:05:58 +03003668 mgmt_pending_remove(cmd);
3669
3670 /* If no HCI commands were sent we're done */
3671 if (err == -ENODATA) {
3672 err = cmd_complete(sk, hdev->id, MGMT_OP_STOP_DISCOVERY, 0,
3673 &mgmt_cp->type, sizeof(mgmt_cp->type));
3674 hci_discovery_set_state(hdev, DISCOVERY_STOPPED);
3675 }
Johan Hedberg14a53662011-04-27 10:29:56 -04003676
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003677unlock:
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003678 hci_dev_unlock(hdev);
Johan Hedberg14a53662011-04-27 10:29:56 -04003679 return err;
3680}
3681
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003682static int confirm_name(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003683 u16 len)
Johan Hedberg561aafb2012-01-04 13:31:59 +02003684{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003685 struct mgmt_cp_confirm_name *cp = data;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003686 struct inquiry_entry *e;
Johan Hedberg561aafb2012-01-04 13:31:59 +02003687 int err;
3688
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003689 BT_DBG("%s", hdev->name);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003690
Johan Hedberg561aafb2012-01-04 13:31:59 +02003691 hci_dev_lock(hdev);
3692
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003693 if (!hci_discovery_active(hdev)) {
Lukasz Rymanowskid3a25412014-02-27 16:47:28 +01003694 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
3695 MGMT_STATUS_FAILED, &cp->addr,
3696 sizeof(cp->addr));
Johan Hedberg30dc78e2012-01-04 15:44:20 +02003697 goto failed;
3698 }
3699
Johan Hedberga198e7b2012-02-17 14:27:06 +02003700 e = hci_inquiry_cache_lookup_unknown(hdev, &cp->addr.bdaddr);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003701 if (!e) {
Lukasz Rymanowskid3a25412014-02-27 16:47:28 +01003702 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME,
3703 MGMT_STATUS_INVALID_PARAMS, &cp->addr,
3704 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02003705 goto failed;
3706 }
3707
3708 if (cp->name_known) {
3709 e->name_state = NAME_KNOWN;
3710 list_del(&e->list);
3711 } else {
3712 e->name_state = NAME_NEEDED;
Johan Hedberga3d4e202012-01-09 00:53:02 +02003713 hci_inquiry_cache_update_resolve(hdev, e);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003714 }
3715
Johan Hedberge3846622013-01-09 15:29:33 +02003716 err = cmd_complete(sk, hdev->id, MGMT_OP_CONFIRM_NAME, 0, &cp->addr,
3717 sizeof(cp->addr));
Johan Hedberg561aafb2012-01-04 13:31:59 +02003718
3719failed:
3720 hci_dev_unlock(hdev);
Johan Hedberg561aafb2012-01-04 13:31:59 +02003721 return err;
3722}
3723
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003724static int block_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003725 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03003726{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003727 struct mgmt_cp_block_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003728 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03003729 int err;
3730
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003731 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03003732
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003733 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02003734 return cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE,
3735 MGMT_STATUS_INVALID_PARAMS,
3736 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003737
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003738 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003739
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003740 err = hci_blacklist_add(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03003741 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003742 status = MGMT_STATUS_FAILED;
Antti Julku7fbec222011-06-15 12:01:15 +03003743 else
Szymon Janca6785be2012-12-13 15:11:21 +01003744 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003745
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003746 err = cmd_complete(sk, hdev->id, MGMT_OP_BLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003747 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03003748
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003749 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03003750
3751 return err;
3752}
3753
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003754static int unblock_device(struct sock *sk, struct hci_dev *hdev, void *data,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003755 u16 len)
Antti Julku7fbec222011-06-15 12:01:15 +03003756{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03003757 struct mgmt_cp_unblock_device *cp = data;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003758 u8 status;
Antti Julku7fbec222011-06-15 12:01:15 +03003759 int err;
3760
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003761 BT_DBG("%s", hdev->name);
Antti Julku7fbec222011-06-15 12:01:15 +03003762
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003763 if (!bdaddr_type_is_valid(cp->addr.type))
Johan Hedberg5d0846d2013-01-20 14:27:22 +02003764 return cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE,
3765 MGMT_STATUS_INVALID_PARAMS,
3766 &cp->addr, sizeof(cp->addr));
Johan Hedberg4ee71b22013-01-20 14:27:19 +02003767
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003768 hci_dev_lock(hdev);
Antti Julku5e762442011-08-25 16:48:02 +03003769
Johan Hedberg88c1fe42012-02-09 15:56:11 +02003770 err = hci_blacklist_del(hdev, &cp->addr.bdaddr, cp->addr.type);
Antti Julku7fbec222011-06-15 12:01:15 +03003771 if (err < 0)
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003772 status = MGMT_STATUS_INVALID_PARAMS;
Antti Julku7fbec222011-06-15 12:01:15 +03003773 else
Szymon Janca6785be2012-12-13 15:11:21 +01003774 status = MGMT_STATUS_SUCCESS;
Johan Hedbergf0eeea82012-02-19 12:58:54 +02003775
Johan Hedbergbdb6d972012-02-28 06:13:32 +02003776 err = cmd_complete(sk, hdev->id, MGMT_OP_UNBLOCK_DEVICE, status,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03003777 &cp->addr, sizeof(cp->addr));
Antti Julku5e762442011-08-25 16:48:02 +03003778
Gustavo F. Padovan09fd0de2011-06-17 13:03:21 -03003779 hci_dev_unlock(hdev);
Antti Julku7fbec222011-06-15 12:01:15 +03003780
3781 return err;
3782}
3783
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003784static int set_device_id(struct sock *sk, struct hci_dev *hdev, void *data,
3785 u16 len)
3786{
3787 struct mgmt_cp_set_device_id *cp = data;
Johan Hedberg890ea892013-03-15 17:06:52 -05003788 struct hci_request req;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003789 int err;
Szymon Jancc72d4b82012-03-16 16:02:57 +01003790 __u16 source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003791
3792 BT_DBG("%s", hdev->name);
3793
Szymon Jancc72d4b82012-03-16 16:02:57 +01003794 source = __le16_to_cpu(cp->source);
3795
3796 if (source > 0x0002)
3797 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEVICE_ID,
3798 MGMT_STATUS_INVALID_PARAMS);
3799
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003800 hci_dev_lock(hdev);
3801
Szymon Jancc72d4b82012-03-16 16:02:57 +01003802 hdev->devid_source = source;
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003803 hdev->devid_vendor = __le16_to_cpu(cp->vendor);
3804 hdev->devid_product = __le16_to_cpu(cp->product);
3805 hdev->devid_version = __le16_to_cpu(cp->version);
3806
3807 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_DEVICE_ID, 0, NULL, 0);
3808
Johan Hedberg890ea892013-03-15 17:06:52 -05003809 hci_req_init(&req, hdev);
3810 update_eir(&req);
3811 hci_req_run(&req, NULL);
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07003812
3813 hci_dev_unlock(hdev);
3814
3815 return err;
3816}
3817
Johan Hedberg4375f102013-09-25 13:26:10 +03003818static void set_advertising_complete(struct hci_dev *hdev, u8 status)
3819{
3820 struct cmd_lookup match = { NULL, hdev };
3821
3822 if (status) {
3823 u8 mgmt_err = mgmt_status(status);
3824
3825 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev,
3826 cmd_status_rsp, &mgmt_err);
3827 return;
3828 }
3829
3830 mgmt_pending_foreach(MGMT_OP_SET_ADVERTISING, hdev, settings_rsp,
3831 &match);
3832
3833 new_settings(hdev, match.sk);
3834
3835 if (match.sk)
3836 sock_put(match.sk);
3837}
3838
Marcel Holtmann21b51872013-10-10 09:47:53 -07003839static int set_advertising(struct sock *sk, struct hci_dev *hdev, void *data,
3840 u16 len)
Johan Hedberg4375f102013-09-25 13:26:10 +03003841{
3842 struct mgmt_mode *cp = data;
3843 struct pending_cmd *cmd;
3844 struct hci_request req;
Johan Hedberge6fe7982013-10-02 15:45:22 +03003845 u8 val, enabled, status;
Johan Hedberg4375f102013-09-25 13:26:10 +03003846 int err;
3847
3848 BT_DBG("request for %s", hdev->name);
3849
Johan Hedberge6fe7982013-10-02 15:45:22 +03003850 status = mgmt_le_support(hdev);
3851 if (status)
Johan Hedberg4375f102013-09-25 13:26:10 +03003852 return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
Johan Hedberge6fe7982013-10-02 15:45:22 +03003853 status);
Johan Hedberg4375f102013-09-25 13:26:10 +03003854
3855 if (cp->val != 0x00 && cp->val != 0x01)
3856 return cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
3857 MGMT_STATUS_INVALID_PARAMS);
3858
3859 hci_dev_lock(hdev);
3860
3861 val = !!cp->val;
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003862 enabled = test_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03003863
Johan Hedbergf74ca9b2013-10-08 15:52:18 +02003864 /* The following conditions are ones which mean that we should
3865 * not do any HCI communication but directly send a mgmt
3866 * response to user space (after toggling the flag if
3867 * necessary).
3868 */
3869 if (!hdev_is_powered(hdev) || val == enabled ||
Marcel Holtmannb145edc2013-10-10 09:47:54 -07003870 hci_conn_num(hdev, LE_LINK) > 0) {
Johan Hedberg4375f102013-09-25 13:26:10 +03003871 bool changed = false;
3872
Johan Hedbergf3d3444a2013-10-05 12:01:04 +02003873 if (val != test_bit(HCI_ADVERTISING, &hdev->dev_flags)) {
3874 change_bit(HCI_ADVERTISING, &hdev->dev_flags);
Johan Hedberg4375f102013-09-25 13:26:10 +03003875 changed = true;
3876 }
3877
3878 err = send_settings_rsp(sk, MGMT_OP_SET_ADVERTISING, hdev);
3879 if (err < 0)
3880 goto unlock;
3881
3882 if (changed)
3883 err = new_settings(hdev, sk);
3884
3885 goto unlock;
3886 }
3887
3888 if (mgmt_pending_find(MGMT_OP_SET_ADVERTISING, hdev) ||
3889 mgmt_pending_find(MGMT_OP_SET_LE, hdev)) {
3890 err = cmd_status(sk, hdev->id, MGMT_OP_SET_ADVERTISING,
3891 MGMT_STATUS_BUSY);
3892 goto unlock;
3893 }
3894
3895 cmd = mgmt_pending_add(sk, MGMT_OP_SET_ADVERTISING, hdev, data, len);
3896 if (!cmd) {
3897 err = -ENOMEM;
3898 goto unlock;
3899 }
3900
3901 hci_req_init(&req, hdev);
3902
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07003903 if (val)
3904 enable_advertising(&req);
3905 else
3906 disable_advertising(&req);
Johan Hedberg4375f102013-09-25 13:26:10 +03003907
3908 err = hci_req_run(&req, set_advertising_complete);
3909 if (err < 0)
3910 mgmt_pending_remove(cmd);
3911
3912unlock:
3913 hci_dev_unlock(hdev);
3914 return err;
3915}
3916
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003917static int set_static_address(struct sock *sk, struct hci_dev *hdev,
3918 void *data, u16 len)
3919{
3920 struct mgmt_cp_set_static_address *cp = data;
3921 int err;
3922
3923 BT_DBG("%s", hdev->name);
3924
Marcel Holtmann62af4442013-10-02 22:10:32 -07003925 if (!lmp_le_capable(hdev))
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003926 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
Marcel Holtmann62af4442013-10-02 22:10:32 -07003927 MGMT_STATUS_NOT_SUPPORTED);
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07003928
3929 if (hdev_is_powered(hdev))
3930 return cmd_status(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS,
3931 MGMT_STATUS_REJECTED);
3932
3933 if (bacmp(&cp->bdaddr, BDADDR_ANY)) {
3934 if (!bacmp(&cp->bdaddr, BDADDR_NONE))
3935 return cmd_status(sk, hdev->id,
3936 MGMT_OP_SET_STATIC_ADDRESS,
3937 MGMT_STATUS_INVALID_PARAMS);
3938
3939 /* Two most significant bits shall be set */
3940 if ((cp->bdaddr.b[5] & 0xc0) != 0xc0)
3941 return cmd_status(sk, hdev->id,
3942 MGMT_OP_SET_STATIC_ADDRESS,
3943 MGMT_STATUS_INVALID_PARAMS);
3944 }
3945
3946 hci_dev_lock(hdev);
3947
3948 bacpy(&hdev->static_addr, &cp->bdaddr);
3949
3950 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_STATIC_ADDRESS, 0, NULL, 0);
3951
3952 hci_dev_unlock(hdev);
3953
3954 return err;
3955}
3956
Marcel Holtmann14b49b92013-10-11 08:23:20 -07003957static int set_scan_params(struct sock *sk, struct hci_dev *hdev,
3958 void *data, u16 len)
3959{
3960 struct mgmt_cp_set_scan_params *cp = data;
3961 __u16 interval, window;
3962 int err;
3963
3964 BT_DBG("%s", hdev->name);
3965
3966 if (!lmp_le_capable(hdev))
3967 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3968 MGMT_STATUS_NOT_SUPPORTED);
3969
3970 interval = __le16_to_cpu(cp->interval);
3971
3972 if (interval < 0x0004 || interval > 0x4000)
3973 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3974 MGMT_STATUS_INVALID_PARAMS);
3975
3976 window = __le16_to_cpu(cp->window);
3977
3978 if (window < 0x0004 || window > 0x4000)
3979 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3980 MGMT_STATUS_INVALID_PARAMS);
3981
Marcel Holtmann899e1072013-10-14 09:55:32 -07003982 if (window > interval)
3983 return cmd_status(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS,
3984 MGMT_STATUS_INVALID_PARAMS);
3985
Marcel Holtmann14b49b92013-10-11 08:23:20 -07003986 hci_dev_lock(hdev);
3987
3988 hdev->le_scan_interval = interval;
3989 hdev->le_scan_window = window;
3990
3991 err = cmd_complete(sk, hdev->id, MGMT_OP_SET_SCAN_PARAMS, 0, NULL, 0);
3992
Andre Guedesdd2ef8e2014-02-26 20:21:56 -03003993 /* If background scan is running, restart it so new parameters are
3994 * loaded.
3995 */
3996 if (test_bit(HCI_LE_SCAN, &hdev->dev_flags) &&
3997 hdev->discovery.state == DISCOVERY_STOPPED) {
3998 struct hci_request req;
3999
4000 hci_req_init(&req, hdev);
4001
4002 hci_req_add_le_scan_disable(&req);
4003 hci_req_add_le_passive_scan(&req);
4004
4005 hci_req_run(&req, NULL);
4006 }
4007
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004008 hci_dev_unlock(hdev);
4009
4010 return err;
4011}
4012
Johan Hedberg33e38b32013-03-15 17:07:05 -05004013static void fast_connectable_complete(struct hci_dev *hdev, u8 status)
4014{
4015 struct pending_cmd *cmd;
4016
4017 BT_DBG("status 0x%02x", status);
4018
4019 hci_dev_lock(hdev);
4020
4021 cmd = mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4022 if (!cmd)
4023 goto unlock;
4024
4025 if (status) {
4026 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4027 mgmt_status(status));
4028 } else {
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004029 struct mgmt_mode *cp = cmd->param;
4030
4031 if (cp->val)
4032 set_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4033 else
4034 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4035
Johan Hedberg33e38b32013-03-15 17:07:05 -05004036 send_settings_rsp(cmd->sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev);
4037 new_settings(hdev, cmd->sk);
4038 }
4039
4040 mgmt_pending_remove(cmd);
4041
4042unlock:
4043 hci_dev_unlock(hdev);
4044}
4045
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004046static int set_fast_connectable(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004047 void *data, u16 len)
Antti Julkuf6422ec2011-06-22 13:11:56 +03004048{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004049 struct mgmt_mode *cp = data;
Johan Hedberg33e38b32013-03-15 17:07:05 -05004050 struct pending_cmd *cmd;
4051 struct hci_request req;
Antti Julkuf6422ec2011-06-22 13:11:56 +03004052 int err;
4053
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004054 BT_DBG("%s", hdev->name);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004055
Johan Hedberg56f87902013-10-02 13:43:13 +03004056 if (!test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags) ||
4057 hdev->hci_ver < BLUETOOTH_VER_1_2)
Johan Hedberg33c525c2012-10-24 21:11:58 +03004058 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4059 MGMT_STATUS_NOT_SUPPORTED);
4060
Johan Hedberga7e80f22013-01-09 16:05:19 +02004061 if (cp->val != 0x00 && cp->val != 0x01)
4062 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4063 MGMT_STATUS_INVALID_PARAMS);
4064
Johan Hedberg5400c042012-02-21 16:40:33 +02004065 if (!hdev_is_powered(hdev))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004066 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004067 MGMT_STATUS_NOT_POWERED);
Johan Hedberg5400c042012-02-21 16:40:33 +02004068
4069 if (!test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004070 return cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004071 MGMT_STATUS_REJECTED);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004072
4073 hci_dev_lock(hdev);
4074
Johan Hedberg05cbf292013-03-15 17:07:07 -05004075 if (mgmt_pending_find(MGMT_OP_SET_FAST_CONNECTABLE, hdev)) {
4076 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
4077 MGMT_STATUS_BUSY);
4078 goto unlock;
4079 }
4080
Johan Hedberg1a4d3c42013-03-15 17:07:08 -05004081 if (!!cp->val == test_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags)) {
4082 err = send_settings_rsp(sk, MGMT_OP_SET_FAST_CONNECTABLE,
4083 hdev);
4084 goto unlock;
4085 }
4086
Johan Hedberg33e38b32013-03-15 17:07:05 -05004087 cmd = mgmt_pending_add(sk, MGMT_OP_SET_FAST_CONNECTABLE, hdev,
4088 data, len);
4089 if (!cmd) {
4090 err = -ENOMEM;
4091 goto unlock;
4092 }
4093
4094 hci_req_init(&req, hdev);
4095
Johan Hedberg406d7802013-03-15 17:07:09 -05004096 write_fast_connectable(&req, cp->val);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004097
4098 err = hci_req_run(&req, fast_connectable_complete);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004099 if (err < 0) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004100 err = cmd_status(sk, hdev->id, MGMT_OP_SET_FAST_CONNECTABLE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004101 MGMT_STATUS_FAILED);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004102 mgmt_pending_remove(cmd);
Antti Julkuf6422ec2011-06-22 13:11:56 +03004103 }
4104
Johan Hedberg33e38b32013-03-15 17:07:05 -05004105unlock:
Antti Julkuf6422ec2011-06-22 13:11:56 +03004106 hci_dev_unlock(hdev);
Johan Hedberg33e38b32013-03-15 17:07:05 -05004107
Antti Julkuf6422ec2011-06-22 13:11:56 +03004108 return err;
4109}
4110
Johan Hedberg67e5a7a2013-10-14 21:15:25 +03004111static void set_bredr_scan(struct hci_request *req)
4112{
4113 struct hci_dev *hdev = req->hdev;
4114 u8 scan = 0;
4115
4116 /* Ensure that fast connectable is disabled. This function will
4117 * not do anything if the page scan parameters are already what
4118 * they should be.
4119 */
4120 write_fast_connectable(req, false);
4121
4122 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
4123 scan |= SCAN_PAGE;
4124 if (test_bit(HCI_DISCOVERABLE, &hdev->dev_flags))
4125 scan |= SCAN_INQUIRY;
4126
4127 if (scan)
4128 hci_req_add(req, HCI_OP_WRITE_SCAN_ENABLE, 1, &scan);
4129}
4130
Johan Hedberg0663ca22013-10-02 13:43:14 +03004131static void set_bredr_complete(struct hci_dev *hdev, u8 status)
4132{
4133 struct pending_cmd *cmd;
4134
4135 BT_DBG("status 0x%02x", status);
4136
4137 hci_dev_lock(hdev);
4138
4139 cmd = mgmt_pending_find(MGMT_OP_SET_BREDR, hdev);
4140 if (!cmd)
4141 goto unlock;
4142
4143 if (status) {
4144 u8 mgmt_err = mgmt_status(status);
4145
4146 /* We need to restore the flag if related HCI commands
4147 * failed.
4148 */
4149 clear_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4150
4151 cmd_status(cmd->sk, cmd->index, cmd->opcode, mgmt_err);
4152 } else {
4153 send_settings_rsp(cmd->sk, MGMT_OP_SET_BREDR, hdev);
4154 new_settings(hdev, cmd->sk);
4155 }
4156
4157 mgmt_pending_remove(cmd);
4158
4159unlock:
4160 hci_dev_unlock(hdev);
4161}
4162
4163static int set_bredr(struct sock *sk, struct hci_dev *hdev, void *data, u16 len)
4164{
4165 struct mgmt_mode *cp = data;
4166 struct pending_cmd *cmd;
4167 struct hci_request req;
4168 int err;
4169
4170 BT_DBG("request for %s", hdev->name);
4171
4172 if (!lmp_bredr_capable(hdev) || !lmp_le_capable(hdev))
4173 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4174 MGMT_STATUS_NOT_SUPPORTED);
4175
4176 if (!test_bit(HCI_LE_ENABLED, &hdev->dev_flags))
4177 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4178 MGMT_STATUS_REJECTED);
4179
4180 if (cp->val != 0x00 && cp->val != 0x01)
4181 return cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4182 MGMT_STATUS_INVALID_PARAMS);
4183
4184 hci_dev_lock(hdev);
4185
4186 if (cp->val == test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
4187 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
4188 goto unlock;
4189 }
4190
4191 if (!hdev_is_powered(hdev)) {
4192 if (!cp->val) {
Johan Hedberg0663ca22013-10-02 13:43:14 +03004193 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
4194 clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
4195 clear_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
4196 clear_bit(HCI_FAST_CONNECTABLE, &hdev->dev_flags);
4197 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
4198 }
4199
4200 change_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4201
4202 err = send_settings_rsp(sk, MGMT_OP_SET_BREDR, hdev);
4203 if (err < 0)
4204 goto unlock;
4205
4206 err = new_settings(hdev, sk);
4207 goto unlock;
4208 }
4209
4210 /* Reject disabling when powered on */
4211 if (!cp->val) {
4212 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4213 MGMT_STATUS_REJECTED);
4214 goto unlock;
4215 }
4216
4217 if (mgmt_pending_find(MGMT_OP_SET_BREDR, hdev)) {
4218 err = cmd_status(sk, hdev->id, MGMT_OP_SET_BREDR,
4219 MGMT_STATUS_BUSY);
4220 goto unlock;
4221 }
4222
4223 cmd = mgmt_pending_add(sk, MGMT_OP_SET_BREDR, hdev, data, len);
4224 if (!cmd) {
4225 err = -ENOMEM;
4226 goto unlock;
4227 }
4228
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07004229 /* We need to flip the bit already here so that update_adv_data
Johan Hedberg0663ca22013-10-02 13:43:14 +03004230 * generates the correct flags.
4231 */
4232 set_bit(HCI_BREDR_ENABLED, &hdev->dev_flags);
4233
4234 hci_req_init(&req, hdev);
Johan Hedbergaa8af462013-10-14 21:15:26 +03004235
4236 if (test_bit(HCI_CONNECTABLE, &hdev->dev_flags))
4237 set_bredr_scan(&req);
4238
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07004239 /* Since only the advertising data flags will change, there
4240 * is no need to update the scan response data.
4241 */
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07004242 update_adv_data(&req);
Johan Hedbergaa8af462013-10-14 21:15:26 +03004243
Johan Hedberg0663ca22013-10-02 13:43:14 +03004244 err = hci_req_run(&req, set_bredr_complete);
4245 if (err < 0)
4246 mgmt_pending_remove(cmd);
4247
4248unlock:
4249 hci_dev_unlock(hdev);
4250 return err;
4251}
4252
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004253static int set_secure_conn(struct sock *sk, struct hci_dev *hdev,
4254 void *data, u16 len)
4255{
4256 struct mgmt_mode *cp = data;
4257 struct pending_cmd *cmd;
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004258 u8 val, status;
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004259 int err;
4260
4261 BT_DBG("request for %s", hdev->name);
4262
4263 status = mgmt_bredr_support(hdev);
4264 if (status)
4265 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4266 status);
4267
Marcel Holtmann5afeac12014-01-10 02:07:27 -08004268 if (!lmp_sc_capable(hdev) &&
Marcel Holtmann111902f2014-06-21 04:53:17 +02004269 !test_bit(HCI_FORCE_SC, &hdev->dbg_flags))
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004270 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4271 MGMT_STATUS_NOT_SUPPORTED);
4272
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004273 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004274 return cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4275 MGMT_STATUS_INVALID_PARAMS);
4276
4277 hci_dev_lock(hdev);
4278
4279 if (!hdev_is_powered(hdev)) {
4280 bool changed;
4281
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004282 if (cp->val) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004283 changed = !test_and_set_bit(HCI_SC_ENABLED,
4284 &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004285 if (cp->val == 0x02)
4286 set_bit(HCI_SC_ONLY, &hdev->dev_flags);
4287 else
4288 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4289 } else {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004290 changed = test_and_clear_bit(HCI_SC_ENABLED,
4291 &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004292 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4293 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004294
4295 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
4296 if (err < 0)
4297 goto failed;
4298
4299 if (changed)
4300 err = new_settings(hdev, sk);
4301
4302 goto failed;
4303 }
4304
4305 if (mgmt_pending_find(MGMT_OP_SET_SECURE_CONN, hdev)) {
4306 err = cmd_status(sk, hdev->id, MGMT_OP_SET_SECURE_CONN,
4307 MGMT_STATUS_BUSY);
4308 goto failed;
4309 }
4310
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004311 val = !!cp->val;
4312
4313 if (val == test_bit(HCI_SC_ENABLED, &hdev->dev_flags) &&
4314 (cp->val == 0x02) == test_bit(HCI_SC_ONLY, &hdev->dev_flags)) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004315 err = send_settings_rsp(sk, MGMT_OP_SET_SECURE_CONN, hdev);
4316 goto failed;
4317 }
4318
4319 cmd = mgmt_pending_add(sk, MGMT_OP_SET_SECURE_CONN, hdev, data, len);
4320 if (!cmd) {
4321 err = -ENOMEM;
4322 goto failed;
4323 }
4324
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004325 err = hci_send_cmd(hdev, HCI_OP_WRITE_SC_SUPPORT, 1, &val);
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004326 if (err < 0) {
4327 mgmt_pending_remove(cmd);
4328 goto failed;
4329 }
4330
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08004331 if (cp->val == 0x02)
4332 set_bit(HCI_SC_ONLY, &hdev->dev_flags);
4333 else
4334 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
4335
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004336failed:
4337 hci_dev_unlock(hdev);
4338 return err;
4339}
4340
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004341static int set_debug_keys(struct sock *sk, struct hci_dev *hdev,
4342 void *data, u16 len)
4343{
4344 struct mgmt_mode *cp = data;
Johan Hedbergb97109792014-06-24 14:00:28 +03004345 bool changed, use_changed;
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004346 int err;
4347
4348 BT_DBG("request for %s", hdev->name);
4349
Johan Hedbergb97109792014-06-24 14:00:28 +03004350 if (cp->val != 0x00 && cp->val != 0x01 && cp->val != 0x02)
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004351 return cmd_status(sk, hdev->id, MGMT_OP_SET_DEBUG_KEYS,
4352 MGMT_STATUS_INVALID_PARAMS);
4353
4354 hci_dev_lock(hdev);
4355
4356 if (cp->val)
Johan Hedberg0663b292014-06-24 13:15:50 +03004357 changed = !test_and_set_bit(HCI_KEEP_DEBUG_KEYS,
4358 &hdev->dev_flags);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004359 else
Johan Hedberg0663b292014-06-24 13:15:50 +03004360 changed = test_and_clear_bit(HCI_KEEP_DEBUG_KEYS,
4361 &hdev->dev_flags);
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004362
Johan Hedbergb97109792014-06-24 14:00:28 +03004363 if (cp->val == 0x02)
4364 use_changed = !test_and_set_bit(HCI_USE_DEBUG_KEYS,
4365 &hdev->dev_flags);
4366 else
4367 use_changed = test_and_clear_bit(HCI_USE_DEBUG_KEYS,
4368 &hdev->dev_flags);
4369
4370 if (hdev_is_powered(hdev) && use_changed &&
4371 test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
4372 u8 mode = (cp->val == 0x02) ? 0x01 : 0x00;
4373 hci_send_cmd(hdev, HCI_OP_WRITE_SSP_DEBUG_MODE,
4374 sizeof(mode), &mode);
4375 }
4376
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004377 err = send_settings_rsp(sk, MGMT_OP_SET_DEBUG_KEYS, hdev);
4378 if (err < 0)
4379 goto unlock;
4380
4381 if (changed)
4382 err = new_settings(hdev, sk);
4383
4384unlock:
4385 hci_dev_unlock(hdev);
4386 return err;
4387}
4388
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004389static int set_privacy(struct sock *sk, struct hci_dev *hdev, void *cp_data,
4390 u16 len)
4391{
4392 struct mgmt_cp_set_privacy *cp = cp_data;
4393 bool changed;
4394 int err;
4395
4396 BT_DBG("request for %s", hdev->name);
4397
4398 if (!lmp_le_capable(hdev))
4399 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4400 MGMT_STATUS_NOT_SUPPORTED);
4401
4402 if (cp->privacy != 0x00 && cp->privacy != 0x01)
4403 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4404 MGMT_STATUS_INVALID_PARAMS);
4405
4406 if (hdev_is_powered(hdev))
4407 return cmd_status(sk, hdev->id, MGMT_OP_SET_PRIVACY,
4408 MGMT_STATUS_REJECTED);
4409
4410 hci_dev_lock(hdev);
4411
Johan Hedbergc21c0ea2014-02-24 11:10:30 +02004412 /* If user space supports this command it is also expected to
4413 * handle IRKs. Therefore, set the HCI_RPA_RESOLVING flag.
4414 */
4415 set_bit(HCI_RPA_RESOLVING, &hdev->dev_flags);
4416
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004417 if (cp->privacy) {
4418 changed = !test_and_set_bit(HCI_PRIVACY, &hdev->dev_flags);
4419 memcpy(hdev->irk, cp->irk, sizeof(hdev->irk));
4420 set_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
4421 } else {
4422 changed = test_and_clear_bit(HCI_PRIVACY, &hdev->dev_flags);
4423 memset(hdev->irk, 0, sizeof(hdev->irk));
4424 clear_bit(HCI_RPA_EXPIRED, &hdev->dev_flags);
4425 }
4426
4427 err = send_settings_rsp(sk, MGMT_OP_SET_PRIVACY, hdev);
4428 if (err < 0)
4429 goto unlock;
4430
4431 if (changed)
4432 err = new_settings(hdev, sk);
4433
4434unlock:
4435 hci_dev_unlock(hdev);
4436 return err;
4437}
4438
Johan Hedberg41edf162014-02-18 10:19:35 +02004439static bool irk_is_valid(struct mgmt_irk_info *irk)
4440{
4441 switch (irk->addr.type) {
4442 case BDADDR_LE_PUBLIC:
4443 return true;
4444
4445 case BDADDR_LE_RANDOM:
4446 /* Two most significant bits shall be set */
4447 if ((irk->addr.bdaddr.b[5] & 0xc0) != 0xc0)
4448 return false;
4449 return true;
4450 }
4451
4452 return false;
4453}
4454
4455static int load_irks(struct sock *sk, struct hci_dev *hdev, void *cp_data,
4456 u16 len)
4457{
4458 struct mgmt_cp_load_irks *cp = cp_data;
4459 u16 irk_count, expected_len;
4460 int i, err;
4461
4462 BT_DBG("request for %s", hdev->name);
4463
4464 if (!lmp_le_capable(hdev))
4465 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
4466 MGMT_STATUS_NOT_SUPPORTED);
4467
4468 irk_count = __le16_to_cpu(cp->irk_count);
4469
4470 expected_len = sizeof(*cp) + irk_count * sizeof(struct mgmt_irk_info);
4471 if (expected_len != len) {
4472 BT_ERR("load_irks: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02004473 expected_len, len);
Johan Hedberg41edf162014-02-18 10:19:35 +02004474 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_IRKS,
4475 MGMT_STATUS_INVALID_PARAMS);
4476 }
4477
4478 BT_DBG("%s irk_count %u", hdev->name, irk_count);
4479
4480 for (i = 0; i < irk_count; i++) {
4481 struct mgmt_irk_info *key = &cp->irks[i];
4482
4483 if (!irk_is_valid(key))
4484 return cmd_status(sk, hdev->id,
4485 MGMT_OP_LOAD_IRKS,
4486 MGMT_STATUS_INVALID_PARAMS);
4487 }
4488
4489 hci_dev_lock(hdev);
4490
4491 hci_smp_irks_clear(hdev);
4492
4493 for (i = 0; i < irk_count; i++) {
4494 struct mgmt_irk_info *irk = &cp->irks[i];
4495 u8 addr_type;
4496
4497 if (irk->addr.type == BDADDR_LE_PUBLIC)
4498 addr_type = ADDR_LE_DEV_PUBLIC;
4499 else
4500 addr_type = ADDR_LE_DEV_RANDOM;
4501
4502 hci_add_irk(hdev, &irk->addr.bdaddr, addr_type, irk->val,
4503 BDADDR_ANY);
4504 }
4505
4506 set_bit(HCI_RPA_RESOLVING, &hdev->dev_flags);
4507
4508 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_IRKS, 0, NULL, 0);
4509
4510 hci_dev_unlock(hdev);
4511
4512 return err;
4513}
4514
Johan Hedberg3f706b72013-01-20 14:27:16 +02004515static bool ltk_is_valid(struct mgmt_ltk_info *key)
4516{
4517 if (key->master != 0x00 && key->master != 0x01)
4518 return false;
Marcel Holtmann490cb0b2014-02-16 12:59:05 -08004519
4520 switch (key->addr.type) {
4521 case BDADDR_LE_PUBLIC:
4522 return true;
4523
4524 case BDADDR_LE_RANDOM:
4525 /* Two most significant bits shall be set */
4526 if ((key->addr.bdaddr.b[5] & 0xc0) != 0xc0)
4527 return false;
4528 return true;
4529 }
4530
4531 return false;
Johan Hedberg3f706b72013-01-20 14:27:16 +02004532}
4533
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004534static int load_long_term_keys(struct sock *sk, struct hci_dev *hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004535 void *cp_data, u16 len)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004536{
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004537 struct mgmt_cp_load_long_term_keys *cp = cp_data;
4538 u16 key_count, expected_len;
Johan Hedberg715a5bf2013-01-09 15:29:34 +02004539 int i, err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004540
Marcel Holtmanncf99ba12013-10-02 21:16:08 -07004541 BT_DBG("request for %s", hdev->name);
4542
4543 if (!lmp_le_capable(hdev))
4544 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
4545 MGMT_STATUS_NOT_SUPPORTED);
4546
Marcel Holtmann1f350c82012-03-12 20:31:08 -07004547 key_count = __le16_to_cpu(cp->key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004548
4549 expected_len = sizeof(*cp) + key_count *
4550 sizeof(struct mgmt_ltk_info);
4551 if (expected_len != len) {
4552 BT_ERR("load_keys: expected %u bytes, got %u bytes",
Johan Hedberg2606ecb2014-03-07 15:04:13 +02004553 expected_len, len);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004554 return cmd_status(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS,
Johan Hedberge57e6192013-01-20 14:27:14 +02004555 MGMT_STATUS_INVALID_PARAMS);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004556 }
4557
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004558 BT_DBG("%s key_count %u", hdev->name, key_count);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004559
Johan Hedberg54ad6d82013-01-20 14:27:15 +02004560 for (i = 0; i < key_count; i++) {
4561 struct mgmt_ltk_info *key = &cp->keys[i];
4562
Johan Hedberg3f706b72013-01-20 14:27:16 +02004563 if (!ltk_is_valid(key))
Johan Hedberg54ad6d82013-01-20 14:27:15 +02004564 return cmd_status(sk, hdev->id,
4565 MGMT_OP_LOAD_LONG_TERM_KEYS,
4566 MGMT_STATUS_INVALID_PARAMS);
4567 }
4568
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004569 hci_dev_lock(hdev);
4570
4571 hci_smp_ltks_clear(hdev);
4572
4573 for (i = 0; i < key_count; i++) {
4574 struct mgmt_ltk_info *key = &cp->keys[i];
Johan Hedbergd7b25452014-05-23 13:19:53 +03004575 u8 type, addr_type, authenticated;
Marcel Holtmann79d95a12013-10-13 03:57:38 -07004576
4577 if (key->addr.type == BDADDR_LE_PUBLIC)
4578 addr_type = ADDR_LE_DEV_PUBLIC;
4579 else
4580 addr_type = ADDR_LE_DEV_RANDOM;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004581
4582 if (key->master)
Johan Hedberg2ceba532014-06-16 19:25:16 +03004583 type = SMP_LTK;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004584 else
Johan Hedberg2ceba532014-06-16 19:25:16 +03004585 type = SMP_LTK_SLAVE;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004586
Johan Hedberg61b43352014-05-29 19:36:53 +03004587 switch (key->type) {
4588 case MGMT_LTK_UNAUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03004589 authenticated = 0x00;
Johan Hedberg61b43352014-05-29 19:36:53 +03004590 break;
4591 case MGMT_LTK_AUTHENTICATED:
Johan Hedbergd7b25452014-05-23 13:19:53 +03004592 authenticated = 0x01;
Johan Hedberg61b43352014-05-29 19:36:53 +03004593 break;
4594 default:
4595 continue;
4596 }
Johan Hedbergd7b25452014-05-23 13:19:53 +03004597
Johan Hedberg35d70272014-02-19 14:57:47 +02004598 hci_add_ltk(hdev, &key->addr.bdaddr, addr_type, type,
Johan Hedbergd7b25452014-05-23 13:19:53 +03004599 authenticated, key->val, key->enc_size, key->ediv,
Johan Hedberg35d70272014-02-19 14:57:47 +02004600 key->rand);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004601 }
4602
Johan Hedberg715a5bf2013-01-09 15:29:34 +02004603 err = cmd_complete(sk, hdev->id, MGMT_OP_LOAD_LONG_TERM_KEYS, 0,
4604 NULL, 0);
4605
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004606 hci_dev_unlock(hdev);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004607
Johan Hedberg715a5bf2013-01-09 15:29:34 +02004608 return err;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03004609}
4610
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02004611struct cmd_conn_lookup {
4612 struct hci_conn *conn;
4613 bool valid_tx_power;
4614 u8 mgmt_status;
4615};
4616
4617static void get_conn_info_complete(struct pending_cmd *cmd, void *data)
4618{
4619 struct cmd_conn_lookup *match = data;
4620 struct mgmt_cp_get_conn_info *cp;
4621 struct mgmt_rp_get_conn_info rp;
4622 struct hci_conn *conn = cmd->user_data;
4623
4624 if (conn != match->conn)
4625 return;
4626
4627 cp = (struct mgmt_cp_get_conn_info *) cmd->param;
4628
4629 memset(&rp, 0, sizeof(rp));
4630 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
4631 rp.addr.type = cp->addr.type;
4632
4633 if (!match->mgmt_status) {
4634 rp.rssi = conn->rssi;
4635
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02004636 if (match->valid_tx_power) {
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02004637 rp.tx_power = conn->tx_power;
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02004638 rp.max_tx_power = conn->max_tx_power;
4639 } else {
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02004640 rp.tx_power = HCI_TX_POWER_INVALID;
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02004641 rp.max_tx_power = HCI_TX_POWER_INVALID;
4642 }
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02004643 }
4644
4645 cmd_complete(cmd->sk, cmd->index, MGMT_OP_GET_CONN_INFO,
4646 match->mgmt_status, &rp, sizeof(rp));
4647
4648 hci_conn_drop(conn);
4649
4650 mgmt_pending_remove(cmd);
4651}
4652
4653static void conn_info_refresh_complete(struct hci_dev *hdev, u8 status)
4654{
4655 struct hci_cp_read_rssi *cp;
4656 struct hci_conn *conn;
4657 struct cmd_conn_lookup match;
4658 u16 handle;
4659
4660 BT_DBG("status 0x%02x", status);
4661
4662 hci_dev_lock(hdev);
4663
4664 /* TX power data is valid in case request completed successfully,
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02004665 * otherwise we assume it's not valid. At the moment we assume that
4666 * either both or none of current and max values are valid to keep code
4667 * simple.
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02004668 */
4669 match.valid_tx_power = !status;
4670
4671 /* Commands sent in request are either Read RSSI or Read Transmit Power
4672 * Level so we check which one was last sent to retrieve connection
4673 * handle. Both commands have handle as first parameter so it's safe to
4674 * cast data on the same command struct.
4675 *
4676 * First command sent is always Read RSSI and we fail only if it fails.
4677 * In other case we simply override error to indicate success as we
4678 * already remembered if TX power value is actually valid.
4679 */
4680 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_RSSI);
4681 if (!cp) {
4682 cp = hci_sent_cmd_data(hdev, HCI_OP_READ_TX_POWER);
4683 status = 0;
4684 }
4685
4686 if (!cp) {
4687 BT_ERR("invalid sent_cmd in response");
4688 goto unlock;
4689 }
4690
4691 handle = __le16_to_cpu(cp->handle);
4692 conn = hci_conn_hash_lookup_handle(hdev, handle);
4693 if (!conn) {
4694 BT_ERR("unknown handle (%d) in response", handle);
4695 goto unlock;
4696 }
4697
4698 match.conn = conn;
4699 match.mgmt_status = mgmt_status(status);
4700
4701 /* Cache refresh is complete, now reply for mgmt request for given
4702 * connection only.
4703 */
4704 mgmt_pending_foreach(MGMT_OP_GET_CONN_INFO, hdev,
4705 get_conn_info_complete, &match);
4706
4707unlock:
4708 hci_dev_unlock(hdev);
4709}
4710
4711static int get_conn_info(struct sock *sk, struct hci_dev *hdev, void *data,
4712 u16 len)
4713{
4714 struct mgmt_cp_get_conn_info *cp = data;
4715 struct mgmt_rp_get_conn_info rp;
4716 struct hci_conn *conn;
4717 unsigned long conn_info_age;
4718 int err = 0;
4719
4720 BT_DBG("%s", hdev->name);
4721
4722 memset(&rp, 0, sizeof(rp));
4723 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
4724 rp.addr.type = cp->addr.type;
4725
4726 if (!bdaddr_type_is_valid(cp->addr.type))
4727 return cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
4728 MGMT_STATUS_INVALID_PARAMS,
4729 &rp, sizeof(rp));
4730
4731 hci_dev_lock(hdev);
4732
4733 if (!hdev_is_powered(hdev)) {
4734 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
4735 MGMT_STATUS_NOT_POWERED, &rp, sizeof(rp));
4736 goto unlock;
4737 }
4738
4739 if (cp->addr.type == BDADDR_BREDR)
4740 conn = hci_conn_hash_lookup_ba(hdev, ACL_LINK,
4741 &cp->addr.bdaddr);
4742 else
4743 conn = hci_conn_hash_lookup_ba(hdev, LE_LINK, &cp->addr.bdaddr);
4744
4745 if (!conn || conn->state != BT_CONNECTED) {
4746 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
4747 MGMT_STATUS_NOT_CONNECTED, &rp, sizeof(rp));
4748 goto unlock;
4749 }
4750
4751 /* To avoid client trying to guess when to poll again for information we
4752 * calculate conn info age as random value between min/max set in hdev.
4753 */
4754 conn_info_age = hdev->conn_info_min_age +
4755 prandom_u32_max(hdev->conn_info_max_age -
4756 hdev->conn_info_min_age);
4757
4758 /* Query controller to refresh cached values if they are too old or were
4759 * never read.
4760 */
Andrzej Kaczmarekf4e2dd52014-05-16 16:48:57 +02004761 if (time_after(jiffies, conn->conn_info_timestamp +
4762 msecs_to_jiffies(conn_info_age)) ||
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02004763 !conn->conn_info_timestamp) {
4764 struct hci_request req;
4765 struct hci_cp_read_tx_power req_txp_cp;
4766 struct hci_cp_read_rssi req_rssi_cp;
4767 struct pending_cmd *cmd;
4768
4769 hci_req_init(&req, hdev);
4770 req_rssi_cp.handle = cpu_to_le16(conn->handle);
4771 hci_req_add(&req, HCI_OP_READ_RSSI, sizeof(req_rssi_cp),
4772 &req_rssi_cp);
4773
Andrzej Kaczmarekf7faab02014-05-14 13:43:04 +02004774 /* For LE links TX power does not change thus we don't need to
4775 * query for it once value is known.
4776 */
4777 if (!bdaddr_type_is_le(cp->addr.type) ||
4778 conn->tx_power == HCI_TX_POWER_INVALID) {
4779 req_txp_cp.handle = cpu_to_le16(conn->handle);
4780 req_txp_cp.type = 0x00;
4781 hci_req_add(&req, HCI_OP_READ_TX_POWER,
4782 sizeof(req_txp_cp), &req_txp_cp);
4783 }
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02004784
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02004785 /* Max TX power needs to be read only once per connection */
4786 if (conn->max_tx_power == HCI_TX_POWER_INVALID) {
4787 req_txp_cp.handle = cpu_to_le16(conn->handle);
4788 req_txp_cp.type = 0x01;
4789 hci_req_add(&req, HCI_OP_READ_TX_POWER,
4790 sizeof(req_txp_cp), &req_txp_cp);
4791 }
4792
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02004793 err = hci_req_run(&req, conn_info_refresh_complete);
4794 if (err < 0)
4795 goto unlock;
4796
4797 cmd = mgmt_pending_add(sk, MGMT_OP_GET_CONN_INFO, hdev,
4798 data, len);
4799 if (!cmd) {
4800 err = -ENOMEM;
4801 goto unlock;
4802 }
4803
4804 hci_conn_hold(conn);
4805 cmd->user_data = conn;
4806
4807 conn->conn_info_timestamp = jiffies;
4808 } else {
4809 /* Cache is valid, just reply with values cached in hci_conn */
4810 rp.rssi = conn->rssi;
4811 rp.tx_power = conn->tx_power;
Andrzej Kaczmarekeed5daf2014-05-14 13:43:06 +02004812 rp.max_tx_power = conn->max_tx_power;
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02004813
4814 err = cmd_complete(sk, hdev->id, MGMT_OP_GET_CONN_INFO,
4815 MGMT_STATUS_SUCCESS, &rp, sizeof(rp));
4816 }
4817
4818unlock:
4819 hci_dev_unlock(hdev);
4820 return err;
4821}
4822
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02004823static const struct mgmt_handler {
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004824 int (*func) (struct sock *sk, struct hci_dev *hdev, void *data,
4825 u16 data_len);
Johan Hedbergbe22b542012-03-01 22:24:41 +02004826 bool var_len;
4827 size_t data_len;
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004828} mgmt_handlers[] = {
4829 { NULL }, /* 0x0000 (no command) */
Johan Hedbergbe22b542012-03-01 22:24:41 +02004830 { read_version, false, MGMT_READ_VERSION_SIZE },
4831 { read_commands, false, MGMT_READ_COMMANDS_SIZE },
4832 { read_index_list, false, MGMT_READ_INDEX_LIST_SIZE },
4833 { read_controller_info, false, MGMT_READ_INFO_SIZE },
4834 { set_powered, false, MGMT_SETTING_SIZE },
4835 { set_discoverable, false, MGMT_SET_DISCOVERABLE_SIZE },
4836 { set_connectable, false, MGMT_SETTING_SIZE },
4837 { set_fast_connectable, false, MGMT_SETTING_SIZE },
4838 { set_pairable, false, MGMT_SETTING_SIZE },
4839 { set_link_security, false, MGMT_SETTING_SIZE },
4840 { set_ssp, false, MGMT_SETTING_SIZE },
4841 { set_hs, false, MGMT_SETTING_SIZE },
4842 { set_le, false, MGMT_SETTING_SIZE },
4843 { set_dev_class, false, MGMT_SET_DEV_CLASS_SIZE },
4844 { set_local_name, false, MGMT_SET_LOCAL_NAME_SIZE },
4845 { add_uuid, false, MGMT_ADD_UUID_SIZE },
4846 { remove_uuid, false, MGMT_REMOVE_UUID_SIZE },
4847 { load_link_keys, true, MGMT_LOAD_LINK_KEYS_SIZE },
4848 { load_long_term_keys, true, MGMT_LOAD_LONG_TERM_KEYS_SIZE },
4849 { disconnect, false, MGMT_DISCONNECT_SIZE },
4850 { get_connections, false, MGMT_GET_CONNECTIONS_SIZE },
4851 { pin_code_reply, false, MGMT_PIN_CODE_REPLY_SIZE },
4852 { pin_code_neg_reply, false, MGMT_PIN_CODE_NEG_REPLY_SIZE },
4853 { set_io_capability, false, MGMT_SET_IO_CAPABILITY_SIZE },
4854 { pair_device, false, MGMT_PAIR_DEVICE_SIZE },
4855 { cancel_pair_device, false, MGMT_CANCEL_PAIR_DEVICE_SIZE },
4856 { unpair_device, false, MGMT_UNPAIR_DEVICE_SIZE },
4857 { user_confirm_reply, false, MGMT_USER_CONFIRM_REPLY_SIZE },
4858 { user_confirm_neg_reply, false, MGMT_USER_CONFIRM_NEG_REPLY_SIZE },
4859 { user_passkey_reply, false, MGMT_USER_PASSKEY_REPLY_SIZE },
4860 { user_passkey_neg_reply, false, MGMT_USER_PASSKEY_NEG_REPLY_SIZE },
4861 { read_local_oob_data, false, MGMT_READ_LOCAL_OOB_DATA_SIZE },
Marcel Holtmannec109112014-01-10 02:07:30 -08004862 { add_remote_oob_data, true, MGMT_ADD_REMOTE_OOB_DATA_SIZE },
Johan Hedbergbe22b542012-03-01 22:24:41 +02004863 { remove_remote_oob_data, false, MGMT_REMOVE_REMOTE_OOB_DATA_SIZE },
4864 { start_discovery, false, MGMT_START_DISCOVERY_SIZE },
4865 { stop_discovery, false, MGMT_STOP_DISCOVERY_SIZE },
4866 { confirm_name, false, MGMT_CONFIRM_NAME_SIZE },
4867 { block_device, false, MGMT_BLOCK_DEVICE_SIZE },
4868 { unblock_device, false, MGMT_UNBLOCK_DEVICE_SIZE },
Marcel Holtmanncdbaccc2012-03-11 20:00:29 -07004869 { set_device_id, false, MGMT_SET_DEVICE_ID_SIZE },
Johan Hedberg4375f102013-09-25 13:26:10 +03004870 { set_advertising, false, MGMT_SETTING_SIZE },
Johan Hedberg0663ca22013-10-02 13:43:14 +03004871 { set_bredr, false, MGMT_SETTING_SIZE },
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07004872 { set_static_address, false, MGMT_SET_STATIC_ADDRESS_SIZE },
Marcel Holtmann14b49b92013-10-11 08:23:20 -07004873 { set_scan_params, false, MGMT_SET_SCAN_PARAMS_SIZE },
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08004874 { set_secure_conn, false, MGMT_SETTING_SIZE },
Marcel Holtmann4e39ac82014-01-31 11:55:22 -08004875 { set_debug_keys, false, MGMT_SETTING_SIZE },
Johan Hedberg62b04cd2014-02-23 19:42:27 +02004876 { set_privacy, false, MGMT_SET_PRIVACY_SIZE },
Johan Hedberg41edf162014-02-18 10:19:35 +02004877 { load_irks, true, MGMT_LOAD_IRKS_SIZE },
Andrzej Kaczmarekdd983802014-05-14 13:43:03 +02004878 { get_conn_info, false, MGMT_GET_CONN_INFO_SIZE },
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004879};
4880
4881
Johan Hedberg03811012010-12-08 00:21:06 +02004882int mgmt_control(struct sock *sk, struct msghdr *msg, size_t msglen)
4883{
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004884 void *buf;
4885 u8 *cp;
Johan Hedberg03811012010-12-08 00:21:06 +02004886 struct mgmt_hdr *hdr;
Szymon Janc4e51eae2011-02-25 19:05:48 +01004887 u16 opcode, index, len;
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004888 struct hci_dev *hdev = NULL;
Andrei Emeltchenko2e3c35e2012-03-14 18:54:15 +02004889 const struct mgmt_handler *handler;
Johan Hedberg03811012010-12-08 00:21:06 +02004890 int err;
4891
4892 BT_DBG("got %zu bytes", msglen);
4893
4894 if (msglen < sizeof(*hdr))
4895 return -EINVAL;
4896
Gustavo F. Padovane63a15e2011-04-04 18:56:53 -03004897 buf = kmalloc(msglen, GFP_KERNEL);
Johan Hedberg03811012010-12-08 00:21:06 +02004898 if (!buf)
4899 return -ENOMEM;
4900
4901 if (memcpy_fromiovec(buf, msg->msg_iov, msglen)) {
4902 err = -EFAULT;
4903 goto done;
4904 }
4905
Vinicius Costa Gomes650f7262012-02-02 21:07:59 -03004906 hdr = buf;
Marcel Holtmann1f350c82012-03-12 20:31:08 -07004907 opcode = __le16_to_cpu(hdr->opcode);
4908 index = __le16_to_cpu(hdr->index);
4909 len = __le16_to_cpu(hdr->len);
Johan Hedberg03811012010-12-08 00:21:06 +02004910
4911 if (len != msglen - sizeof(*hdr)) {
4912 err = -EINVAL;
4913 goto done;
4914 }
4915
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004916 if (index != MGMT_INDEX_NONE) {
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004917 hdev = hci_dev_get(index);
4918 if (!hdev) {
4919 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004920 MGMT_STATUS_INVALID_INDEX);
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004921 goto done;
4922 }
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07004923
Johan Hedbergcebf4cf2013-10-10 18:06:04 +02004924 if (test_bit(HCI_SETUP, &hdev->dev_flags) ||
4925 test_bit(HCI_USER_CHANNEL, &hdev->dev_flags)) {
Marcel Holtmann0736cfa2013-08-26 21:40:51 -07004926 err = cmd_status(sk, index, opcode,
4927 MGMT_STATUS_INVALID_INDEX);
4928 goto done;
4929 }
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004930 }
4931
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004932 if (opcode >= ARRAY_SIZE(mgmt_handlers) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004933 mgmt_handlers[opcode].func == NULL) {
Johan Hedberg03811012010-12-08 00:21:06 +02004934 BT_DBG("Unknown op %u", opcode);
Johan Hedbergca69b792011-11-11 18:10:00 +02004935 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004936 MGMT_STATUS_UNKNOWN_COMMAND);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004937 goto done;
Johan Hedberg03811012010-12-08 00:21:06 +02004938 }
4939
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004940 if ((hdev && opcode < MGMT_OP_READ_INFO) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004941 (!hdev && opcode >= MGMT_OP_READ_INFO)) {
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004942 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004943 MGMT_STATUS_INVALID_INDEX);
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004944 goto done;
4945 }
4946
Johan Hedbergbe22b542012-03-01 22:24:41 +02004947 handler = &mgmt_handlers[opcode];
4948
4949 if ((handler->var_len && len < handler->data_len) ||
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03004950 (!handler->var_len && len != handler->data_len)) {
Johan Hedbergbe22b542012-03-01 22:24:41 +02004951 err = cmd_status(sk, index, opcode,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03004952 MGMT_STATUS_INVALID_PARAMS);
Johan Hedbergbe22b542012-03-01 22:24:41 +02004953 goto done;
4954 }
4955
Johan Hedberg0f4e68c2012-02-28 17:18:30 +02004956 if (hdev)
4957 mgmt_init_hdev(sk, hdev);
4958
4959 cp = buf + sizeof(*hdr);
4960
Johan Hedbergbe22b542012-03-01 22:24:41 +02004961 err = handler->func(sk, hdev, cp, len);
Johan Hedberge41d8b42010-12-13 21:07:03 +02004962 if (err < 0)
4963 goto done;
4964
Johan Hedberg03811012010-12-08 00:21:06 +02004965 err = msglen;
4966
4967done:
Johan Hedbergbdb6d972012-02-28 06:13:32 +02004968 if (hdev)
4969 hci_dev_put(hdev);
4970
Johan Hedberg03811012010-12-08 00:21:06 +02004971 kfree(buf);
4972 return err;
4973}
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004974
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004975void mgmt_index_added(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004976{
Marcel Holtmann1514b892013-10-06 08:25:01 -07004977 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004978 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03004979
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004980 mgmt_event(MGMT_EV_INDEX_ADDED, hdev, NULL, 0, NULL);
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004981}
4982
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004983void mgmt_index_removed(struct hci_dev *hdev)
Johan Hedbergc71e97b2010-12-13 21:07:07 +02004984{
Johan Hedberg5f159032012-03-02 03:13:19 +02004985 u8 status = MGMT_STATUS_INVALID_INDEX;
Johan Hedbergb24752f2011-11-03 14:40:33 +02004986
Marcel Holtmann1514b892013-10-06 08:25:01 -07004987 if (hdev->dev_type != HCI_BREDR)
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004988 return;
Andrei Emeltchenkobb4b2a92012-07-19 17:03:40 +03004989
Johan Hedberg744cf192011-11-08 20:40:14 +02004990 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status);
Johan Hedbergb24752f2011-11-03 14:40:33 +02004991
Marcel Holtmannbf6b56d2013-10-06 23:55:45 -07004992 mgmt_event(MGMT_EV_INDEX_REMOVED, hdev, NULL, 0, NULL);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02004993}
4994
Andre Guedes6046dc32014-02-26 20:21:51 -03004995/* This function requires the caller holds hdev->lock */
4996static void restart_le_auto_conns(struct hci_dev *hdev)
4997{
4998 struct hci_conn_params *p;
4999
5000 list_for_each_entry(p, &hdev->le_conn_params, list) {
5001 if (p->auto_connect == HCI_AUTO_CONN_ALWAYS)
5002 hci_pend_le_conn_add(hdev, &p->addr, p->addr_type);
5003 }
5004}
5005
Johan Hedberg229ab392013-03-15 17:06:53 -05005006static void powered_complete(struct hci_dev *hdev, u8 status)
5007{
5008 struct cmd_lookup match = { NULL, hdev };
5009
5010 BT_DBG("status 0x%02x", status);
5011
5012 hci_dev_lock(hdev);
5013
Andre Guedes6046dc32014-02-26 20:21:51 -03005014 restart_le_auto_conns(hdev);
5015
Johan Hedberg229ab392013-03-15 17:06:53 -05005016 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
5017
5018 new_settings(hdev, match.sk);
5019
5020 hci_dev_unlock(hdev);
5021
5022 if (match.sk)
5023 sock_put(match.sk);
5024}
5025
Johan Hedberg70da6242013-03-15 17:06:51 -05005026static int powered_update_hci(struct hci_dev *hdev)
5027{
Johan Hedberg890ea892013-03-15 17:06:52 -05005028 struct hci_request req;
Johan Hedberg70da6242013-03-15 17:06:51 -05005029 u8 link_sec;
5030
Johan Hedberg890ea892013-03-15 17:06:52 -05005031 hci_req_init(&req, hdev);
5032
Johan Hedberg70da6242013-03-15 17:06:51 -05005033 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags) &&
5034 !lmp_host_ssp_capable(hdev)) {
5035 u8 ssp = 1;
5036
Johan Hedberg890ea892013-03-15 17:06:52 -05005037 hci_req_add(&req, HCI_OP_WRITE_SSP_MODE, 1, &ssp);
Johan Hedberg70da6242013-03-15 17:06:51 -05005038 }
5039
Johan Hedbergc73eee92013-04-19 18:35:21 +03005040 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags) &&
5041 lmp_bredr_capable(hdev)) {
Johan Hedberg70da6242013-03-15 17:06:51 -05005042 struct hci_cp_write_le_host_supported cp;
5043
5044 cp.le = 1;
5045 cp.simul = lmp_le_br_capable(hdev);
5046
5047 /* Check first if we already have the right
5048 * host state (host features set)
5049 */
5050 if (cp.le != lmp_host_le_capable(hdev) ||
5051 cp.simul != lmp_host_le_br_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05005052 hci_req_add(&req, HCI_OP_WRITE_LE_HOST_SUPPORTED,
5053 sizeof(cp), &cp);
Johan Hedberg70da6242013-03-15 17:06:51 -05005054 }
5055
Marcel Holtmannd13eafc2013-10-02 04:41:30 -07005056 if (lmp_le_capable(hdev)) {
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07005057 /* Make sure the controller has a good default for
5058 * advertising data. This also applies to the case
5059 * where BR/EDR was toggled during the AUTO_OFF phase.
5060 */
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07005061 if (test_bit(HCI_LE_ENABLED, &hdev->dev_flags)) {
Marcel Holtmann5947f4b2013-10-16 00:16:50 -07005062 update_adv_data(&req);
Marcel Holtmannf14d8f62013-10-16 00:16:48 -07005063 update_scan_rsp_data(&req);
5064 }
Marcel Holtmann441ad2d2013-10-15 06:33:52 -07005065
Marcel Holtmannbba3aa52013-10-06 02:55:21 -07005066 if (test_bit(HCI_ADVERTISING, &hdev->dev_flags))
5067 enable_advertising(&req);
Johan Hedbergeeca6f82013-09-25 13:26:09 +03005068 }
5069
Johan Hedberg70da6242013-03-15 17:06:51 -05005070 link_sec = test_bit(HCI_LINK_SECURITY, &hdev->dev_flags);
5071 if (link_sec != test_bit(HCI_AUTH, &hdev->flags))
Johan Hedberg890ea892013-03-15 17:06:52 -05005072 hci_req_add(&req, HCI_OP_WRITE_AUTH_ENABLE,
5073 sizeof(link_sec), &link_sec);
Johan Hedberg70da6242013-03-15 17:06:51 -05005074
5075 if (lmp_bredr_capable(hdev)) {
Johan Hedberg56f87902013-10-02 13:43:13 +03005076 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags))
5077 set_bredr_scan(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05005078 update_class(&req);
Johan Hedberg13928972013-03-15 17:07:00 -05005079 update_name(&req);
Johan Hedberg890ea892013-03-15 17:06:52 -05005080 update_eir(&req);
Johan Hedberg70da6242013-03-15 17:06:51 -05005081 }
5082
Johan Hedberg229ab392013-03-15 17:06:53 -05005083 return hci_req_run(&req, powered_complete);
Johan Hedberg70da6242013-03-15 17:06:51 -05005084}
5085
Johan Hedberg744cf192011-11-08 20:40:14 +02005086int mgmt_powered(struct hci_dev *hdev, u8 powered)
Johan Hedberg5add6af2010-12-16 10:00:37 +02005087{
Johan Hedberg76a7f3a2012-02-17 00:34:40 +02005088 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg229ab392013-03-15 17:06:53 -05005089 u8 status_not_powered = MGMT_STATUS_NOT_POWERED;
5090 u8 zero_cod[] = { 0, 0, 0 };
Johan Hedberg7bb895d2012-02-17 01:20:00 +02005091 int err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02005092
Johan Hedberg5e5282b2012-02-21 16:01:30 +02005093 if (!test_bit(HCI_MGMT, &hdev->dev_flags))
5094 return 0;
5095
Johan Hedberg5e5282b2012-02-21 16:01:30 +02005096 if (powered) {
Johan Hedberg229ab392013-03-15 17:06:53 -05005097 if (powered_update_hci(hdev) == 0)
5098 return 0;
Johan Hedbergfe038882013-01-16 16:15:34 +02005099
Johan Hedberg229ab392013-03-15 17:06:53 -05005100 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp,
5101 &match);
5102 goto new_settings;
Johan Hedbergb24752f2011-11-03 14:40:33 +02005103 }
5104
Johan Hedberg229ab392013-03-15 17:06:53 -05005105 mgmt_pending_foreach(MGMT_OP_SET_POWERED, hdev, settings_rsp, &match);
5106 mgmt_pending_foreach(0, hdev, cmd_status_rsp, &status_not_powered);
5107
5108 if (memcmp(hdev->dev_class, zero_cod, sizeof(zero_cod)) != 0)
5109 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev,
5110 zero_cod, sizeof(zero_cod), NULL);
5111
5112new_settings:
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02005113 err = new_settings(hdev, match.sk);
Johan Hedbergeec8d2b2010-12-16 10:17:38 +02005114
5115 if (match.sk)
5116 sock_put(match.sk);
5117
Johan Hedberg7bb895d2012-02-17 01:20:00 +02005118 return err;
Johan Hedberg5add6af2010-12-16 10:00:37 +02005119}
Johan Hedberg73f22f62010-12-29 16:00:25 +02005120
Marcel Holtmann3eec7052013-10-06 23:55:46 -07005121void mgmt_set_powered_failed(struct hci_dev *hdev, int err)
Johan Hedberg96570ff2013-05-29 09:51:29 +03005122{
5123 struct pending_cmd *cmd;
5124 u8 status;
5125
5126 cmd = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
5127 if (!cmd)
Marcel Holtmann3eec7052013-10-06 23:55:46 -07005128 return;
Johan Hedberg96570ff2013-05-29 09:51:29 +03005129
5130 if (err == -ERFKILL)
5131 status = MGMT_STATUS_RFKILLED;
5132 else
5133 status = MGMT_STATUS_FAILED;
5134
Marcel Holtmann3eec7052013-10-06 23:55:46 -07005135 cmd_status(cmd->sk, hdev->id, MGMT_OP_SET_POWERED, status);
Johan Hedberg96570ff2013-05-29 09:51:29 +03005136
5137 mgmt_pending_remove(cmd);
Johan Hedberg96570ff2013-05-29 09:51:29 +03005138}
5139
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07005140void mgmt_discoverable_timeout(struct hci_dev *hdev)
5141{
5142 struct hci_request req;
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07005143
5144 hci_dev_lock(hdev);
5145
5146 /* When discoverable timeout triggers, then just make sure
5147 * the limited discoverable flag is cleared. Even in the case
5148 * of a timeout triggered from general discoverable, it is
5149 * safe to unconditionally clear the flag.
5150 */
5151 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg9a43e252013-10-20 19:00:07 +03005152 clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07005153
5154 hci_req_init(&req, hdev);
Johan Hedberg4b580612013-10-19 23:38:21 +03005155 if (test_bit(HCI_BREDR_ENABLED, &hdev->dev_flags)) {
5156 u8 scan = SCAN_PAGE;
5157 hci_req_add(&req, HCI_OP_WRITE_SCAN_ENABLE,
5158 sizeof(scan), &scan);
5159 }
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07005160 update_class(&req);
Johan Hedberg9a43e252013-10-20 19:00:07 +03005161 update_adv_data(&req);
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07005162 hci_req_run(&req, NULL);
5163
5164 hdev->discov_timeout = 0;
5165
Johan Hedberg9a43e252013-10-20 19:00:07 +03005166 new_settings(hdev, NULL);
5167
Marcel Holtmannd1967ff2013-10-15 10:57:40 -07005168 hci_dev_unlock(hdev);
5169}
5170
Marcel Holtmann86a75642013-10-15 06:33:54 -07005171void mgmt_discoverable(struct hci_dev *hdev, u8 discoverable)
Johan Hedberg73f22f62010-12-29 16:00:25 +02005172{
Marcel Holtmann86a75642013-10-15 06:33:54 -07005173 bool changed;
Johan Hedberg73f22f62010-12-29 16:00:25 +02005174
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03005175 /* Nothing needed here if there's a pending command since that
5176 * commands request completion callback takes care of everything
5177 * necessary.
5178 */
5179 if (mgmt_pending_find(MGMT_OP_SET_DISCOVERABLE, hdev))
Marcel Holtmann86a75642013-10-15 06:33:54 -07005180 return;
Johan Hedbergbfaf8c92013-10-14 21:15:27 +03005181
Johan Hedbergbd107992014-02-24 14:52:19 +02005182 /* Powering off may clear the scan mode - don't let that interfere */
5183 if (!discoverable && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
5184 return;
5185
Johan Hedberg9a43e252013-10-20 19:00:07 +03005186 if (discoverable) {
Marcel Holtmann86a75642013-10-15 06:33:54 -07005187 changed = !test_and_set_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg9a43e252013-10-20 19:00:07 +03005188 } else {
5189 clear_bit(HCI_LIMITED_DISCOVERABLE, &hdev->dev_flags);
Marcel Holtmann86a75642013-10-15 06:33:54 -07005190 changed = test_and_clear_bit(HCI_DISCOVERABLE, &hdev->dev_flags);
Johan Hedberg9a43e252013-10-20 19:00:07 +03005191 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02005192
Johan Hedberg9a43e252013-10-20 19:00:07 +03005193 if (changed) {
5194 struct hci_request req;
5195
5196 /* In case this change in discoverable was triggered by
5197 * a disabling of connectable there could be a need to
5198 * update the advertising flags.
5199 */
5200 hci_req_init(&req, hdev);
5201 update_adv_data(&req);
5202 hci_req_run(&req, NULL);
5203
Marcel Holtmann86a75642013-10-15 06:33:54 -07005204 new_settings(hdev, NULL);
Johan Hedberg9a43e252013-10-20 19:00:07 +03005205 }
Johan Hedberg73f22f62010-12-29 16:00:25 +02005206}
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02005207
Marcel Holtmanna3309162013-10-15 06:33:55 -07005208void mgmt_connectable(struct hci_dev *hdev, u8 connectable)
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02005209{
Marcel Holtmanna3309162013-10-15 06:33:55 -07005210 bool changed;
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02005211
Johan Hedbergd7b856f2013-10-14 16:20:04 +03005212 /* Nothing needed here if there's a pending command since that
5213 * commands request completion callback takes care of everything
5214 * necessary.
5215 */
5216 if (mgmt_pending_find(MGMT_OP_SET_CONNECTABLE, hdev))
Marcel Holtmanna3309162013-10-15 06:33:55 -07005217 return;
Johan Hedbergd7b856f2013-10-14 16:20:04 +03005218
Johan Hedbergce3f24c2014-02-24 14:52:20 +02005219 /* Powering off may clear the scan mode - don't let that interfere */
5220 if (!connectable && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
5221 return;
5222
Marcel Holtmanna3309162013-10-15 06:33:55 -07005223 if (connectable)
5224 changed = !test_and_set_bit(HCI_CONNECTABLE, &hdev->dev_flags);
5225 else
5226 changed = test_and_clear_bit(HCI_CONNECTABLE, &hdev->dev_flags);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02005227
Johan Hedbergbeadb2b2012-02-21 16:55:31 +02005228 if (changed)
Marcel Holtmanna3309162013-10-15 06:33:55 -07005229 new_settings(hdev, NULL);
Johan Hedberg9fbcbb42010-12-30 00:18:33 +02005230}
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005231
Johan Hedberg778b2352014-02-24 14:52:17 +02005232void mgmt_advertising(struct hci_dev *hdev, u8 advertising)
5233{
Johan Hedberg7c4cfab2014-02-24 14:52:21 +02005234 /* Powering off may stop advertising - don't let that interfere */
5235 if (!advertising && mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
5236 return;
5237
Johan Hedberg778b2352014-02-24 14:52:17 +02005238 if (advertising)
5239 set_bit(HCI_ADVERTISING, &hdev->dev_flags);
5240 else
5241 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
5242}
5243
Marcel Holtmann4796e8a2013-10-15 06:33:56 -07005244void mgmt_write_scan_failed(struct hci_dev *hdev, u8 scan, u8 status)
Johan Hedberg2d7cee52011-11-07 22:16:03 +02005245{
Johan Hedbergca69b792011-11-11 18:10:00 +02005246 u8 mgmt_err = mgmt_status(status);
5247
Johan Hedberg2d7cee52011-11-07 22:16:03 +02005248 if (scan & SCAN_PAGE)
Johan Hedberg744cf192011-11-08 20:40:14 +02005249 mgmt_pending_foreach(MGMT_OP_SET_CONNECTABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005250 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02005251
5252 if (scan & SCAN_INQUIRY)
Johan Hedberg744cf192011-11-08 20:40:14 +02005253 mgmt_pending_foreach(MGMT_OP_SET_DISCOVERABLE, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005254 cmd_status_rsp, &mgmt_err);
Johan Hedberg2d7cee52011-11-07 22:16:03 +02005255}
5256
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07005257void mgmt_new_link_key(struct hci_dev *hdev, struct link_key *key,
5258 bool persistent)
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005259{
Johan Hedberg86742e12011-11-07 23:13:38 +02005260 struct mgmt_ev_new_link_key ev;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005261
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005262 memset(&ev, 0, sizeof(ev));
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005263
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005264 ev.store_hint = persistent;
Johan Hedbergd753fdc2012-02-17 14:06:34 +02005265 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005266 ev.key.addr.type = BDADDR_BREDR;
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005267 ev.key.type = key->type;
Andrei Emeltchenko9b3b4462012-05-23 11:31:20 +03005268 memcpy(ev.key.val, key->val, HCI_LINK_KEY_SIZE);
Vinicius Costa Gomesa492cd52011-08-25 20:02:29 -03005269 ev.key.pin_len = key->pin_len;
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005270
Marcel Holtmanndc4a5ee2013-10-15 10:15:57 -07005271 mgmt_event(MGMT_EV_NEW_LINK_KEY, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg55ed8ca12011-01-17 14:41:05 +02005272}
Johan Hedbergf7520542011-01-20 12:34:39 +02005273
Johan Hedbergd7b25452014-05-23 13:19:53 +03005274static u8 mgmt_ltk_type(struct smp_ltk *ltk)
5275{
5276 if (ltk->authenticated)
5277 return MGMT_LTK_AUTHENTICATED;
5278
5279 return MGMT_LTK_UNAUTHENTICATED;
5280}
5281
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005282void mgmt_new_ltk(struct hci_dev *hdev, struct smp_ltk *key, bool persistent)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005283{
5284 struct mgmt_ev_new_long_term_key ev;
5285
5286 memset(&ev, 0, sizeof(ev));
5287
Marcel Holtmann5192d302014-02-19 17:11:58 -08005288 /* Devices using resolvable or non-resolvable random addresses
5289 * without providing an indentity resolving key don't require
5290 * to store long term keys. Their addresses will change the
5291 * next time around.
5292 *
5293 * Only when a remote device provides an identity address
5294 * make sure the long term key is stored. If the remote
5295 * identity is known, the long term keys are internally
5296 * mapped to the identity address. So allow static random
5297 * and public addresses here.
5298 */
Johan Hedbergba74b662014-02-19 14:57:45 +02005299 if (key->bdaddr_type == ADDR_LE_DEV_RANDOM &&
5300 (key->bdaddr.b[5] & 0xc0) != 0xc0)
5301 ev.store_hint = 0x00;
5302 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005303 ev.store_hint = persistent;
Johan Hedbergba74b662014-02-19 14:57:45 +02005304
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005305 bacpy(&ev.key.addr.bdaddr, &key->bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005306 ev.key.addr.type = link_to_bdaddr(LE_LINK, key->bdaddr_type);
Johan Hedbergd7b25452014-05-23 13:19:53 +03005307 ev.key.type = mgmt_ltk_type(key);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005308 ev.key.enc_size = key->enc_size;
5309 ev.key.ediv = key->ediv;
Marcel Holtmannfe39c7b2014-02-27 16:00:28 -08005310 ev.key.rand = key->rand;
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005311
Johan Hedberg2ceba532014-06-16 19:25:16 +03005312 if (key->type == SMP_LTK)
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005313 ev.key.master = 1;
5314
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005315 memcpy(ev.key.val, key->val, sizeof(key->val));
5316
Marcel Holtmann083368f2013-10-15 14:26:29 -07005317 mgmt_event(MGMT_EV_NEW_LONG_TERM_KEY, hdev, &ev, sizeof(ev), NULL);
Vinicius Costa Gomes346af672012-02-02 21:08:02 -03005318}
5319
Johan Hedberg95fbac82014-02-19 15:18:31 +02005320void mgmt_new_irk(struct hci_dev *hdev, struct smp_irk *irk)
5321{
5322 struct mgmt_ev_new_irk ev;
5323
5324 memset(&ev, 0, sizeof(ev));
5325
Marcel Holtmannbab6d1e2014-02-19 11:51:54 -08005326 /* For identity resolving keys from devices that are already
5327 * using a public address or static random address, do not
5328 * ask for storing this key. The identity resolving key really
5329 * is only mandatory for devices using resovlable random
5330 * addresses.
5331 *
5332 * Storing all identity resolving keys has the downside that
5333 * they will be also loaded on next boot of they system. More
5334 * identity resolving keys, means more time during scanning is
5335 * needed to actually resolve these addresses.
5336 */
5337 if (bacmp(&irk->rpa, BDADDR_ANY))
5338 ev.store_hint = 0x01;
5339 else
5340 ev.store_hint = 0x00;
5341
Johan Hedberg95fbac82014-02-19 15:18:31 +02005342 bacpy(&ev.rpa, &irk->rpa);
5343 bacpy(&ev.irk.addr.bdaddr, &irk->bdaddr);
5344 ev.irk.addr.type = link_to_bdaddr(LE_LINK, irk->addr_type);
5345 memcpy(ev.irk.val, irk->val, sizeof(irk->val));
5346
5347 mgmt_event(MGMT_EV_NEW_IRK, hdev, &ev, sizeof(ev), NULL);
5348}
5349
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005350void mgmt_new_csrk(struct hci_dev *hdev, struct smp_csrk *csrk,
5351 bool persistent)
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07005352{
5353 struct mgmt_ev_new_csrk ev;
5354
5355 memset(&ev, 0, sizeof(ev));
5356
5357 /* Devices using resolvable or non-resolvable random addresses
5358 * without providing an indentity resolving key don't require
5359 * to store signature resolving keys. Their addresses will change
5360 * the next time around.
5361 *
5362 * Only when a remote device provides an identity address
5363 * make sure the signature resolving key is stored. So allow
5364 * static random and public addresses here.
5365 */
5366 if (csrk->bdaddr_type == ADDR_LE_DEV_RANDOM &&
5367 (csrk->bdaddr.b[5] & 0xc0) != 0xc0)
5368 ev.store_hint = 0x00;
5369 else
Marcel Holtmann53ac6ab2014-03-09 23:38:42 -07005370 ev.store_hint = persistent;
Marcel Holtmann7ee4ea32014-03-09 12:19:17 -07005371
5372 bacpy(&ev.key.addr.bdaddr, &csrk->bdaddr);
5373 ev.key.addr.type = link_to_bdaddr(LE_LINK, csrk->bdaddr_type);
5374 ev.key.master = csrk->master;
5375 memcpy(ev.key.val, csrk->val, sizeof(csrk->val));
5376
5377 mgmt_event(MGMT_EV_NEW_CSRK, hdev, &ev, sizeof(ev), NULL);
5378}
5379
Marcel Holtmann94933992013-10-15 10:26:39 -07005380static inline u16 eir_append_data(u8 *eir, u16 eir_len, u8 type, u8 *data,
5381 u8 data_len)
5382{
5383 eir[eir_len++] = sizeof(type) + data_len;
5384 eir[eir_len++] = type;
5385 memcpy(&eir[eir_len], data, data_len);
5386 eir_len += data_len;
5387
5388 return eir_len;
5389}
5390
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07005391void mgmt_device_connected(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5392 u8 addr_type, u32 flags, u8 *name, u8 name_len,
5393 u8 *dev_class)
Johan Hedbergf7520542011-01-20 12:34:39 +02005394{
Johan Hedbergb644ba32012-01-17 21:48:47 +02005395 char buf[512];
5396 struct mgmt_ev_device_connected *ev = (void *) buf;
5397 u16 eir_len = 0;
Johan Hedbergf7520542011-01-20 12:34:39 +02005398
Johan Hedbergb644ba32012-01-17 21:48:47 +02005399 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005400 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergf7520542011-01-20 12:34:39 +02005401
Johan Hedbergc95f0ba2012-02-23 22:54:38 +02005402 ev->flags = __cpu_to_le32(flags);
Johan Hedberg08c79b62012-02-23 22:31:51 +02005403
Johan Hedbergb644ba32012-01-17 21:48:47 +02005404 if (name_len > 0)
5405 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005406 name, name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005407
5408 if (dev_class && memcmp(dev_class, "\0\0\0", 3) != 0)
Brian Gix53156382012-03-09 14:07:03 -08005409 eir_len = eir_append_data(ev->eir, eir_len,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005410 EIR_CLASS_OF_DEV, dev_class, 3);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005411
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02005412 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02005413
Marcel Holtmannecd90ae2013-10-06 23:55:49 -07005414 mgmt_event(MGMT_EV_DEVICE_CONNECTED, hdev, buf,
5415 sizeof(*ev) + eir_len, NULL);
Johan Hedbergf7520542011-01-20 12:34:39 +02005416}
5417
Johan Hedberg8962ee72011-01-20 12:40:27 +02005418static void disconnect_rsp(struct pending_cmd *cmd, void *data)
5419{
Szymon Jancc68fb7f2011-03-22 13:12:19 +01005420 struct mgmt_cp_disconnect *cp = cmd->param;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005421 struct sock **sk = data;
Johan Hedberga38528f2011-01-22 06:46:43 +02005422 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005423
Johan Hedberg88c3df12012-02-09 14:27:38 +02005424 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5425 rp.addr.type = cp->addr.type;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005426
Johan Hedbergaee9b212012-02-18 15:07:59 +02005427 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT, 0, &rp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005428 sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02005429
5430 *sk = cmd->sk;
5431 sock_hold(*sk);
5432
Johan Hedberga664b5b2011-02-19 12:06:02 -03005433 mgmt_pending_remove(cmd);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005434}
5435
Johan Hedberg124f6e32012-02-09 13:50:12 +02005436static void unpair_device_rsp(struct pending_cmd *cmd, void *data)
Johan Hedberga8a1d192011-11-10 15:54:38 +02005437{
Johan Hedbergb1078ad2012-02-09 17:21:16 +02005438 struct hci_dev *hdev = data;
Johan Hedberg124f6e32012-02-09 13:50:12 +02005439 struct mgmt_cp_unpair_device *cp = cmd->param;
5440 struct mgmt_rp_unpair_device rp;
Johan Hedberga8a1d192011-11-10 15:54:38 +02005441
5442 memset(&rp, 0, sizeof(rp));
Johan Hedberg124f6e32012-02-09 13:50:12 +02005443 bacpy(&rp.addr.bdaddr, &cp->addr.bdaddr);
5444 rp.addr.type = cp->addr.type;
Johan Hedberga8a1d192011-11-10 15:54:38 +02005445
Johan Hedbergb1078ad2012-02-09 17:21:16 +02005446 device_unpaired(hdev, &cp->addr.bdaddr, cp->addr.type, cmd->sk);
5447
Johan Hedbergaee9b212012-02-18 15:07:59 +02005448 cmd_complete(cmd->sk, cmd->index, cmd->opcode, 0, &rp, sizeof(rp));
Johan Hedberga8a1d192011-11-10 15:54:38 +02005449
5450 mgmt_pending_remove(cmd);
5451}
5452
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07005453void mgmt_device_disconnected(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02005454 u8 link_type, u8 addr_type, u8 reason,
5455 bool mgmt_connected)
Johan Hedbergf7520542011-01-20 12:34:39 +02005456{
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02005457 struct mgmt_ev_device_disconnected ev;
Johan Hedberg8b064a32014-02-24 14:52:22 +02005458 struct pending_cmd *power_off;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005459 struct sock *sk = NULL;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005460
Johan Hedberg8b064a32014-02-24 14:52:22 +02005461 power_off = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
5462 if (power_off) {
5463 struct mgmt_mode *cp = power_off->param;
5464
5465 /* The connection is still in hci_conn_hash so test for 1
5466 * instead of 0 to know if this is the last one.
5467 */
Johan Hedberga3172b72014-02-28 09:33:44 +02005468 if (!cp->val && hci_conn_count(hdev) == 1) {
5469 cancel_delayed_work(&hdev->power_off);
Johan Hedberg8b064a32014-02-24 14:52:22 +02005470 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02005471 }
Johan Hedberg8b064a32014-02-24 14:52:22 +02005472 }
5473
Johan Hedberg12d4a3b2014-02-24 14:52:18 +02005474 if (!mgmt_connected)
5475 return;
5476
Andre Guedes57eb7762013-10-30 19:01:41 -03005477 if (link_type != ACL_LINK && link_type != LE_LINK)
5478 return;
5479
Johan Hedberg744cf192011-11-08 20:40:14 +02005480 mgmt_pending_foreach(MGMT_OP_DISCONNECT, hdev, disconnect_rsp, &sk);
Johan Hedbergf7520542011-01-20 12:34:39 +02005481
Mikel Astizf0d6a0e2012-08-09 09:52:30 +02005482 bacpy(&ev.addr.bdaddr, bdaddr);
5483 ev.addr.type = link_to_bdaddr(link_type, addr_type);
5484 ev.reason = reason;
Johan Hedbergf7520542011-01-20 12:34:39 +02005485
Marcel Holtmann9b80ec52013-10-06 23:55:50 -07005486 mgmt_event(MGMT_EV_DEVICE_DISCONNECTED, hdev, &ev, sizeof(ev), sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005487
5488 if (sk)
Szymon Jancd97dcb62012-03-16 16:02:56 +01005489 sock_put(sk);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005490
Johan Hedberg124f6e32012-02-09 13:50:12 +02005491 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005492 hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005493}
5494
Marcel Holtmann78929242013-10-06 23:55:47 -07005495void mgmt_disconnect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr,
5496 u8 link_type, u8 addr_type, u8 status)
Johan Hedberg8962ee72011-01-20 12:40:27 +02005497{
Andre Guedes3655bba2013-10-30 19:01:40 -03005498 u8 bdaddr_type = link_to_bdaddr(link_type, addr_type);
5499 struct mgmt_cp_disconnect *cp;
Johan Hedberg88c3df12012-02-09 14:27:38 +02005500 struct mgmt_rp_disconnect rp;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005501 struct pending_cmd *cmd;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005502
Jefferson Delfes36a75f12012-09-18 13:36:54 -04005503 mgmt_pending_foreach(MGMT_OP_UNPAIR_DEVICE, hdev, unpair_device_rsp,
5504 hdev);
5505
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005506 cmd = mgmt_pending_find(MGMT_OP_DISCONNECT, hdev);
Johan Hedberg8962ee72011-01-20 12:40:27 +02005507 if (!cmd)
Marcel Holtmann78929242013-10-06 23:55:47 -07005508 return;
Johan Hedberg8962ee72011-01-20 12:40:27 +02005509
Andre Guedes3655bba2013-10-30 19:01:40 -03005510 cp = cmd->param;
5511
5512 if (bacmp(bdaddr, &cp->addr.bdaddr))
5513 return;
5514
5515 if (cp->addr.type != bdaddr_type)
5516 return;
5517
Johan Hedberg88c3df12012-02-09 14:27:38 +02005518 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes3655bba2013-10-30 19:01:40 -03005519 rp.addr.type = bdaddr_type;
Johan Hedberg37d9ef72011-11-10 15:54:39 +02005520
Marcel Holtmann78929242013-10-06 23:55:47 -07005521 cmd_complete(cmd->sk, cmd->index, MGMT_OP_DISCONNECT,
5522 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg8962ee72011-01-20 12:40:27 +02005523
Johan Hedberga664b5b2011-02-19 12:06:02 -03005524 mgmt_pending_remove(cmd);
Johan Hedbergf7520542011-01-20 12:34:39 +02005525}
Johan Hedberg17d5c042011-01-22 06:09:08 +02005526
Marcel Holtmann445608d2013-10-06 23:55:48 -07005527void mgmt_connect_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5528 u8 addr_type, u8 status)
Johan Hedberg17d5c042011-01-22 06:09:08 +02005529{
5530 struct mgmt_ev_connect_failed ev;
Johan Hedbergc9910d02014-02-27 14:35:12 +02005531 struct pending_cmd *power_off;
5532
5533 power_off = mgmt_pending_find(MGMT_OP_SET_POWERED, hdev);
5534 if (power_off) {
5535 struct mgmt_mode *cp = power_off->param;
5536
5537 /* The connection is still in hci_conn_hash so test for 1
5538 * instead of 0 to know if this is the last one.
5539 */
Johan Hedberga3172b72014-02-28 09:33:44 +02005540 if (!cp->val && hci_conn_count(hdev) == 1) {
5541 cancel_delayed_work(&hdev->power_off);
Johan Hedbergc9910d02014-02-27 14:35:12 +02005542 queue_work(hdev->req_workqueue, &hdev->power_off.work);
Johan Hedberga3172b72014-02-28 09:33:44 +02005543 }
Johan Hedbergc9910d02014-02-27 14:35:12 +02005544 }
Johan Hedberg17d5c042011-01-22 06:09:08 +02005545
Johan Hedberg4c659c32011-11-07 23:13:39 +02005546 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005547 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02005548 ev.status = mgmt_status(status);
Johan Hedberg17d5c042011-01-22 06:09:08 +02005549
Marcel Holtmann445608d2013-10-06 23:55:48 -07005550 mgmt_event(MGMT_EV_CONNECT_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg17d5c042011-01-22 06:09:08 +02005551}
Johan Hedberg980e1a52011-01-22 06:10:07 +02005552
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07005553void mgmt_pin_code_request(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 secure)
Johan Hedberg980e1a52011-01-22 06:10:07 +02005554{
5555 struct mgmt_ev_pin_code_request ev;
5556
Johan Hedbergd8457692012-02-17 14:24:57 +02005557 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005558 ev.addr.type = BDADDR_BREDR;
Waldemar Rymarkiewicza770bb52011-04-28 12:07:59 +02005559 ev.secure = secure;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005560
Marcel Holtmannce0e4a02013-10-15 14:26:20 -07005561 mgmt_event(MGMT_EV_PIN_CODE_REQUEST, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005562}
5563
Marcel Holtmanne669cf82013-10-15 14:26:21 -07005564void mgmt_pin_code_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
5565 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02005566{
5567 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005568 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005569
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005570 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005571 if (!cmd)
Marcel Holtmanne669cf82013-10-15 14:26:21 -07005572 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005573
Johan Hedbergd8457692012-02-17 14:24:57 +02005574 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005575 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005576
Marcel Holtmanne669cf82013-10-15 14:26:21 -07005577 cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_REPLY,
5578 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02005579
Johan Hedberga664b5b2011-02-19 12:06:02 -03005580 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005581}
5582
Marcel Holtmann3eb38522013-10-15 14:26:22 -07005583void mgmt_pin_code_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
5584 u8 status)
Johan Hedberg980e1a52011-01-22 06:10:07 +02005585{
5586 struct pending_cmd *cmd;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005587 struct mgmt_rp_pin_code_reply rp;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005588
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005589 cmd = mgmt_pending_find(MGMT_OP_PIN_CODE_NEG_REPLY, hdev);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005590 if (!cmd)
Marcel Holtmann3eb38522013-10-15 14:26:22 -07005591 return;
Johan Hedberg980e1a52011-01-22 06:10:07 +02005592
Johan Hedbergd8457692012-02-17 14:24:57 +02005593 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes591f47f2012-04-24 21:02:49 -03005594 rp.addr.type = BDADDR_BREDR;
Johan Hedbergac56fb12011-02-19 12:05:59 -03005595
Marcel Holtmann3eb38522013-10-15 14:26:22 -07005596 cmd_complete(cmd->sk, hdev->id, MGMT_OP_PIN_CODE_NEG_REPLY,
5597 mgmt_status(status), &rp, sizeof(rp));
Johan Hedberg980e1a52011-01-22 06:10:07 +02005598
Johan Hedberga664b5b2011-02-19 12:06:02 -03005599 mgmt_pending_remove(cmd);
Johan Hedberg980e1a52011-01-22 06:10:07 +02005600}
Johan Hedberga5c29682011-02-19 12:05:57 -03005601
Johan Hedberg744cf192011-11-08 20:40:14 +02005602int mgmt_user_confirm_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Johan Hedberg39adbff2014-03-20 08:18:14 +02005603 u8 link_type, u8 addr_type, u32 value,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005604 u8 confirm_hint)
Johan Hedberga5c29682011-02-19 12:05:57 -03005605{
5606 struct mgmt_ev_user_confirm_request ev;
5607
Johan Hedberg744cf192011-11-08 20:40:14 +02005608 BT_DBG("%s", hdev->name);
Johan Hedberga5c29682011-02-19 12:05:57 -03005609
Johan Hedberg272d90d2012-02-09 15:26:12 +02005610 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005611 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedberg55bc1a32011-04-28 11:28:56 -07005612 ev.confirm_hint = confirm_hint;
Johan Hedberg39adbff2014-03-20 08:18:14 +02005613 ev.value = cpu_to_le32(value);
Johan Hedberga5c29682011-02-19 12:05:57 -03005614
Johan Hedberg744cf192011-11-08 20:40:14 +02005615 return mgmt_event(MGMT_EV_USER_CONFIRM_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005616 NULL);
Johan Hedberga5c29682011-02-19 12:05:57 -03005617}
5618
Johan Hedberg272d90d2012-02-09 15:26:12 +02005619int mgmt_user_passkey_request(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03005620 u8 link_type, u8 addr_type)
Brian Gix604086b2011-11-23 08:28:33 -08005621{
5622 struct mgmt_ev_user_passkey_request ev;
5623
5624 BT_DBG("%s", hdev->name);
5625
Johan Hedberg272d90d2012-02-09 15:26:12 +02005626 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005627 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Brian Gix604086b2011-11-23 08:28:33 -08005628
5629 return mgmt_event(MGMT_EV_USER_PASSKEY_REQUEST, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005630 NULL);
Brian Gix604086b2011-11-23 08:28:33 -08005631}
5632
Brian Gix0df4c182011-11-16 13:53:13 -08005633static int user_pairing_resp_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo Padovan8ce8e2b2012-05-17 00:36:20 -03005634 u8 link_type, u8 addr_type, u8 status,
5635 u8 opcode)
Johan Hedberga5c29682011-02-19 12:05:57 -03005636{
5637 struct pending_cmd *cmd;
5638 struct mgmt_rp_user_confirm_reply rp;
5639 int err;
5640
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005641 cmd = mgmt_pending_find(opcode, hdev);
Johan Hedberga5c29682011-02-19 12:05:57 -03005642 if (!cmd)
5643 return -ENOENT;
5644
Johan Hedberg272d90d2012-02-09 15:26:12 +02005645 bacpy(&rp.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005646 rp.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergaee9b212012-02-18 15:07:59 +02005647 err = cmd_complete(cmd->sk, hdev->id, opcode, mgmt_status(status),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005648 &rp, sizeof(rp));
Johan Hedberga5c29682011-02-19 12:05:57 -03005649
Johan Hedberga664b5b2011-02-19 12:06:02 -03005650 mgmt_pending_remove(cmd);
Johan Hedberga5c29682011-02-19 12:05:57 -03005651
5652 return err;
5653}
5654
Johan Hedberg744cf192011-11-08 20:40:14 +02005655int mgmt_user_confirm_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005656 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03005657{
Johan Hedberg272d90d2012-02-09 15:26:12 +02005658 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005659 status, MGMT_OP_USER_CONFIRM_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03005660}
5661
Johan Hedberg272d90d2012-02-09 15:26:12 +02005662int mgmt_user_confirm_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005663 u8 link_type, u8 addr_type, u8 status)
Johan Hedberga5c29682011-02-19 12:05:57 -03005664{
Johan Hedberg272d90d2012-02-09 15:26:12 +02005665 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03005666 status,
5667 MGMT_OP_USER_CONFIRM_NEG_REPLY);
Johan Hedberga5c29682011-02-19 12:05:57 -03005668}
Johan Hedberg2a611692011-02-19 12:06:00 -03005669
Brian Gix604086b2011-11-23 08:28:33 -08005670int mgmt_user_passkey_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005671 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08005672{
Johan Hedberg272d90d2012-02-09 15:26:12 +02005673 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005674 status, MGMT_OP_USER_PASSKEY_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08005675}
5676
Johan Hedberg272d90d2012-02-09 15:26:12 +02005677int mgmt_user_passkey_neg_reply_complete(struct hci_dev *hdev, bdaddr_t *bdaddr,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005678 u8 link_type, u8 addr_type, u8 status)
Brian Gix604086b2011-11-23 08:28:33 -08005679{
Johan Hedberg272d90d2012-02-09 15:26:12 +02005680 return user_pairing_resp_complete(hdev, bdaddr, link_type, addr_type,
Gustavo Padovan8fc9ced2012-05-23 04:04:21 -03005681 status,
5682 MGMT_OP_USER_PASSKEY_NEG_REPLY);
Brian Gix604086b2011-11-23 08:28:33 -08005683}
5684
Johan Hedberg92a25252012-09-06 18:39:26 +03005685int mgmt_user_passkey_notify(struct hci_dev *hdev, bdaddr_t *bdaddr,
5686 u8 link_type, u8 addr_type, u32 passkey,
5687 u8 entered)
5688{
5689 struct mgmt_ev_passkey_notify ev;
5690
5691 BT_DBG("%s", hdev->name);
5692
5693 bacpy(&ev.addr.bdaddr, bdaddr);
5694 ev.addr.type = link_to_bdaddr(link_type, addr_type);
5695 ev.passkey = __cpu_to_le32(passkey);
5696 ev.entered = entered;
5697
5698 return mgmt_event(MGMT_EV_PASSKEY_NOTIFY, hdev, &ev, sizeof(ev), NULL);
5699}
5700
Marcel Holtmanne5460992013-10-15 14:26:23 -07005701void mgmt_auth_failed(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
5702 u8 addr_type, u8 status)
Johan Hedberg2a611692011-02-19 12:06:00 -03005703{
5704 struct mgmt_ev_auth_failed ev;
5705
Johan Hedbergbab73cb2012-02-09 16:07:29 +02005706 bacpy(&ev.addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03005707 ev.addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergca69b792011-11-11 18:10:00 +02005708 ev.status = mgmt_status(status);
Johan Hedberg2a611692011-02-19 12:06:00 -03005709
Marcel Holtmanne5460992013-10-15 14:26:23 -07005710 mgmt_event(MGMT_EV_AUTH_FAILED, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg2a611692011-02-19 12:06:00 -03005711}
Johan Hedbergb312b1612011-03-16 14:29:37 +02005712
Marcel Holtmann464996a2013-10-15 14:26:24 -07005713void mgmt_auth_enable_complete(struct hci_dev *hdev, u8 status)
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005714{
5715 struct cmd_lookup match = { NULL, hdev };
Marcel Holtmann464996a2013-10-15 14:26:24 -07005716 bool changed;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005717
5718 if (status) {
5719 u8 mgmt_err = mgmt_status(status);
5720 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005721 cmd_status_rsp, &mgmt_err);
Marcel Holtmann464996a2013-10-15 14:26:24 -07005722 return;
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005723 }
5724
Marcel Holtmann464996a2013-10-15 14:26:24 -07005725 if (test_bit(HCI_AUTH, &hdev->flags))
5726 changed = !test_and_set_bit(HCI_LINK_SECURITY,
5727 &hdev->dev_flags);
5728 else
5729 changed = test_and_clear_bit(HCI_LINK_SECURITY,
5730 &hdev->dev_flags);
Johan Hedberg47990ea2012-02-22 11:58:37 +02005731
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005732 mgmt_pending_foreach(MGMT_OP_SET_LINK_SECURITY, hdev, settings_rsp,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005733 &match);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005734
Johan Hedberg47990ea2012-02-22 11:58:37 +02005735 if (changed)
Marcel Holtmann464996a2013-10-15 14:26:24 -07005736 new_settings(hdev, match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005737
5738 if (match.sk)
5739 sock_put(match.sk);
Johan Hedberg33ef95e2012-02-16 23:56:27 +02005740}
5741
Johan Hedberg890ea892013-03-15 17:06:52 -05005742static void clear_eir(struct hci_request *req)
Johan Hedbergcacaf522012-02-21 00:52:42 +02005743{
Johan Hedberg890ea892013-03-15 17:06:52 -05005744 struct hci_dev *hdev = req->hdev;
Johan Hedbergcacaf522012-02-21 00:52:42 +02005745 struct hci_cp_write_eir cp;
5746
Johan Hedberg976eb202012-10-24 21:12:01 +03005747 if (!lmp_ext_inq_capable(hdev))
Johan Hedberg890ea892013-03-15 17:06:52 -05005748 return;
Johan Hedbergcacaf522012-02-21 00:52:42 +02005749
Johan Hedbergc80da272012-02-22 15:38:48 +02005750 memset(hdev->eir, 0, sizeof(hdev->eir));
5751
Johan Hedbergcacaf522012-02-21 00:52:42 +02005752 memset(&cp, 0, sizeof(cp));
5753
Johan Hedberg890ea892013-03-15 17:06:52 -05005754 hci_req_add(req, HCI_OP_WRITE_EIR, sizeof(cp), &cp);
Johan Hedbergcacaf522012-02-21 00:52:42 +02005755}
5756
Marcel Holtmann3e248562013-10-15 14:26:25 -07005757void mgmt_ssp_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005758{
5759 struct cmd_lookup match = { NULL, hdev };
Johan Hedberg890ea892013-03-15 17:06:52 -05005760 struct hci_request req;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005761 bool changed = false;
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005762
5763 if (status) {
5764 u8 mgmt_err = mgmt_status(status);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005765
5766 if (enable && test_and_clear_bit(HCI_SSP_ENABLED,
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005767 &hdev->dev_flags)) {
5768 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Marcel Holtmann3e248562013-10-15 14:26:25 -07005769 new_settings(hdev, NULL);
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005770 }
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005771
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005772 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, cmd_status_rsp,
5773 &mgmt_err);
Marcel Holtmann3e248562013-10-15 14:26:25 -07005774 return;
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005775 }
5776
5777 if (enable) {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005778 changed = !test_and_set_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005779 } else {
Marcel Holtmann9ecb3e22013-10-10 03:08:11 -07005780 changed = test_and_clear_bit(HCI_SSP_ENABLED, &hdev->dev_flags);
5781 if (!changed)
5782 changed = test_and_clear_bit(HCI_HS_ENABLED,
5783 &hdev->dev_flags);
5784 else
5785 clear_bit(HCI_HS_ENABLED, &hdev->dev_flags);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005786 }
5787
5788 mgmt_pending_foreach(MGMT_OP_SET_SSP, hdev, settings_rsp, &match);
5789
Johan Hedbergc0ecddc2012-02-22 12:38:31 +02005790 if (changed)
Marcel Holtmann3e248562013-10-15 14:26:25 -07005791 new_settings(hdev, match.sk);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005792
Johan Hedberg5fc6ebb2012-02-22 15:10:59 +02005793 if (match.sk)
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005794 sock_put(match.sk);
5795
Johan Hedberg890ea892013-03-15 17:06:52 -05005796 hci_req_init(&req, hdev);
5797
Johan Hedberg37699722014-06-24 14:00:27 +03005798 if (test_bit(HCI_SSP_ENABLED, &hdev->dev_flags)) {
5799 if (test_bit(HCI_USE_DEBUG_KEYS, &hdev->dev_flags))
5800 hci_req_add(&req, HCI_OP_WRITE_SSP_DEBUG_MODE,
5801 sizeof(enable), &enable);
Johan Hedberg890ea892013-03-15 17:06:52 -05005802 update_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03005803 } else {
Johan Hedberg890ea892013-03-15 17:06:52 -05005804 clear_eir(&req);
Johan Hedberg37699722014-06-24 14:00:27 +03005805 }
Johan Hedberg890ea892013-03-15 17:06:52 -05005806
5807 hci_req_run(&req, NULL);
Johan Hedberged2c4ee2012-02-17 00:56:28 +02005808}
5809
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005810void mgmt_sc_enable_complete(struct hci_dev *hdev, u8 enable, u8 status)
5811{
5812 struct cmd_lookup match = { NULL, hdev };
5813 bool changed = false;
5814
5815 if (status) {
5816 u8 mgmt_err = mgmt_status(status);
5817
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005818 if (enable) {
5819 if (test_and_clear_bit(HCI_SC_ENABLED,
5820 &hdev->dev_flags))
5821 new_settings(hdev, NULL);
5822 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
5823 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005824
5825 mgmt_pending_foreach(MGMT_OP_SET_SECURE_CONN, hdev,
5826 cmd_status_rsp, &mgmt_err);
5827 return;
5828 }
5829
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005830 if (enable) {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005831 changed = !test_and_set_bit(HCI_SC_ENABLED, &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005832 } else {
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005833 changed = test_and_clear_bit(HCI_SC_ENABLED, &hdev->dev_flags);
Marcel Holtmann0ab04a92014-02-01 09:19:57 -08005834 clear_bit(HCI_SC_ONLY, &hdev->dev_flags);
5835 }
Marcel Holtmanneac83dc2014-01-10 02:07:23 -08005836
5837 mgmt_pending_foreach(MGMT_OP_SET_SECURE_CONN, hdev,
5838 settings_rsp, &match);
5839
5840 if (changed)
5841 new_settings(hdev, match.sk);
5842
5843 if (match.sk)
5844 sock_put(match.sk);
5845}
5846
Johan Hedberg92da6092013-03-15 17:06:55 -05005847static void sk_lookup(struct pending_cmd *cmd, void *data)
Johan Hedberg90e70452012-02-23 23:09:40 +02005848{
5849 struct cmd_lookup *match = data;
5850
Johan Hedberg90e70452012-02-23 23:09:40 +02005851 if (match->sk == NULL) {
5852 match->sk = cmd->sk;
5853 sock_hold(match->sk);
5854 }
Johan Hedberg90e70452012-02-23 23:09:40 +02005855}
5856
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07005857void mgmt_set_class_of_dev_complete(struct hci_dev *hdev, u8 *dev_class,
5858 u8 status)
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01005859{
Johan Hedberg90e70452012-02-23 23:09:40 +02005860 struct cmd_lookup match = { NULL, hdev, mgmt_status(status) };
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01005861
Johan Hedberg92da6092013-03-15 17:06:55 -05005862 mgmt_pending_foreach(MGMT_OP_SET_DEV_CLASS, hdev, sk_lookup, &match);
5863 mgmt_pending_foreach(MGMT_OP_ADD_UUID, hdev, sk_lookup, &match);
5864 mgmt_pending_foreach(MGMT_OP_REMOVE_UUID, hdev, sk_lookup, &match);
Johan Hedberg90e70452012-02-23 23:09:40 +02005865
5866 if (!status)
Marcel Holtmann4e1b0242013-10-15 14:26:26 -07005867 mgmt_event(MGMT_EV_CLASS_OF_DEV_CHANGED, hdev, dev_class, 3,
5868 NULL);
Johan Hedberg90e70452012-02-23 23:09:40 +02005869
5870 if (match.sk)
5871 sock_put(match.sk);
Marcel Holtmann7f9a9032012-02-22 18:38:01 +01005872}
5873
Marcel Holtmann7667da32013-10-15 14:26:27 -07005874void mgmt_set_local_name_complete(struct hci_dev *hdev, u8 *name, u8 status)
Johan Hedbergb312b1612011-03-16 14:29:37 +02005875{
Johan Hedbergb312b1612011-03-16 14:29:37 +02005876 struct mgmt_cp_set_local_name ev;
Johan Hedberg13928972013-03-15 17:07:00 -05005877 struct pending_cmd *cmd;
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02005878
Johan Hedberg13928972013-03-15 17:07:00 -05005879 if (status)
Marcel Holtmann7667da32013-10-15 14:26:27 -07005880 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02005881
5882 memset(&ev, 0, sizeof(ev));
5883 memcpy(ev.name, name, HCI_MAX_NAME_LENGTH);
Johan Hedberg28cc7bd2012-02-22 21:06:55 +02005884 memcpy(ev.short_name, hdev->short_name, HCI_MAX_SHORT_NAME_LENGTH);
Johan Hedbergb312b1612011-03-16 14:29:37 +02005885
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005886 cmd = mgmt_pending_find(MGMT_OP_SET_LOCAL_NAME, hdev);
Johan Hedberg13928972013-03-15 17:07:00 -05005887 if (!cmd) {
5888 memcpy(hdev->dev_name, name, sizeof(hdev->dev_name));
Johan Hedbergb312b1612011-03-16 14:29:37 +02005889
Johan Hedberg13928972013-03-15 17:07:00 -05005890 /* If this is a HCI command related to powering on the
5891 * HCI dev don't send any mgmt signals.
5892 */
5893 if (mgmt_pending_find(MGMT_OP_SET_POWERED, hdev))
Marcel Holtmann7667da32013-10-15 14:26:27 -07005894 return;
Johan Hedbergb312b1612011-03-16 14:29:37 +02005895 }
5896
Marcel Holtmann7667da32013-10-15 14:26:27 -07005897 mgmt_event(MGMT_EV_LOCAL_NAME_CHANGED, hdev, &ev, sizeof(ev),
5898 cmd ? cmd->sk : NULL);
Johan Hedbergb312b1612011-03-16 14:29:37 +02005899}
Szymon Jancc35938b2011-03-22 13:12:21 +01005900
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005901void mgmt_read_local_oob_data_complete(struct hci_dev *hdev, u8 *hash192,
5902 u8 *randomizer192, u8 *hash256,
5903 u8 *randomizer256, u8 status)
Szymon Jancc35938b2011-03-22 13:12:21 +01005904{
5905 struct pending_cmd *cmd;
Szymon Jancc35938b2011-03-22 13:12:21 +01005906
Johan Hedberg744cf192011-11-08 20:40:14 +02005907 BT_DBG("%s status %u", hdev->name, status);
Szymon Jancc35938b2011-03-22 13:12:21 +01005908
Johan Hedberg2e58ef32011-11-08 20:40:15 +02005909 cmd = mgmt_pending_find(MGMT_OP_READ_LOCAL_OOB_DATA, hdev);
Szymon Jancc35938b2011-03-22 13:12:21 +01005910 if (!cmd)
Marcel Holtmann3edaf092013-10-15 14:26:28 -07005911 return;
Szymon Jancc35938b2011-03-22 13:12:21 +01005912
5913 if (status) {
Marcel Holtmann3edaf092013-10-15 14:26:28 -07005914 cmd_status(cmd->sk, hdev->id, MGMT_OP_READ_LOCAL_OOB_DATA,
5915 mgmt_status(status));
Szymon Jancc35938b2011-03-22 13:12:21 +01005916 } else {
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005917 if (test_bit(HCI_SC_ENABLED, &hdev->dev_flags) &&
5918 hash256 && randomizer256) {
5919 struct mgmt_rp_read_local_oob_ext_data rp;
Szymon Jancc35938b2011-03-22 13:12:21 +01005920
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005921 memcpy(rp.hash192, hash192, sizeof(rp.hash192));
5922 memcpy(rp.randomizer192, randomizer192,
5923 sizeof(rp.randomizer192));
Szymon Jancc35938b2011-03-22 13:12:21 +01005924
Marcel Holtmann4d2d2792014-01-10 02:07:26 -08005925 memcpy(rp.hash256, hash256, sizeof(rp.hash256));
5926 memcpy(rp.randomizer256, randomizer256,
5927 sizeof(rp.randomizer256));
5928
5929 cmd_complete(cmd->sk, hdev->id,
5930 MGMT_OP_READ_LOCAL_OOB_DATA, 0,
5931 &rp, sizeof(rp));
5932 } else {
5933 struct mgmt_rp_read_local_oob_data rp;
5934
5935 memcpy(rp.hash, hash192, sizeof(rp.hash));
5936 memcpy(rp.randomizer, randomizer192,
5937 sizeof(rp.randomizer));
5938
5939 cmd_complete(cmd->sk, hdev->id,
5940 MGMT_OP_READ_LOCAL_OOB_DATA, 0,
5941 &rp, sizeof(rp));
5942 }
Szymon Jancc35938b2011-03-22 13:12:21 +01005943 }
5944
5945 mgmt_pending_remove(cmd);
Szymon Jancc35938b2011-03-22 13:12:21 +01005946}
Johan Hedberge17acd42011-03-30 23:57:16 +03005947
Marcel Holtmann901801b2013-10-06 23:55:51 -07005948void mgmt_device_found(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
Johan Hedberg73cf71d2014-03-25 12:06:19 +02005949 u8 addr_type, u8 *dev_class, s8 rssi, u8 cfm_name,
5950 u8 ssp, u8 *eir, u16 eir_len, u8 *scan_rsp,
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02005951 u8 scan_rsp_len)
Johan Hedberge17acd42011-03-30 23:57:16 +03005952{
Johan Hedberge319d2e2012-01-15 19:51:59 +02005953 char buf[512];
5954 struct mgmt_ev_device_found *ev = (void *) buf;
Johan Hedberg5cedbb82014-02-18 21:41:37 +02005955 struct smp_irk *irk;
Johan Hedberg1dc06092012-01-15 21:01:23 +02005956 size_t ev_size;
Johan Hedberge17acd42011-03-30 23:57:16 +03005957
Andre Guedes12602d02013-04-30 15:29:40 -03005958 if (!hci_discovery_active(hdev))
Marcel Holtmann901801b2013-10-06 23:55:51 -07005959 return;
Andre Guedes12602d02013-04-30 15:29:40 -03005960
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02005961 /* Make sure that the buffer is big enough. The 5 extra bytes
5962 * are for the potential CoD field.
5963 */
5964 if (sizeof(*ev) + eir_len + scan_rsp_len + 5 > sizeof(buf))
Marcel Holtmann901801b2013-10-06 23:55:51 -07005965 return;
Andre Guedes7d262f82012-01-10 18:20:49 -03005966
Johan Hedberg1dc06092012-01-15 21:01:23 +02005967 memset(buf, 0, sizeof(buf));
5968
Johan Hedberg5cedbb82014-02-18 21:41:37 +02005969 irk = hci_get_irk(hdev, bdaddr, addr_type);
5970 if (irk) {
5971 bacpy(&ev->addr.bdaddr, &irk->bdaddr);
5972 ev->addr.type = link_to_bdaddr(link_type, irk->addr_type);
5973 } else {
5974 bacpy(&ev->addr.bdaddr, bdaddr);
5975 ev->addr.type = link_to_bdaddr(link_type, addr_type);
5976 }
5977
Johan Hedberge319d2e2012-01-15 19:51:59 +02005978 ev->rssi = rssi;
Johan Hedberg9a395a82012-02-23 00:00:32 +02005979 if (cfm_name)
Joe Perchesdcf4adb2014-03-12 10:52:35 -07005980 ev->flags |= cpu_to_le32(MGMT_DEV_FOUND_CONFIRM_NAME);
Johan Hedberg388fc8f2012-02-23 00:38:59 +02005981 if (!ssp)
Joe Perchesdcf4adb2014-03-12 10:52:35 -07005982 ev->flags |= cpu_to_le32(MGMT_DEV_FOUND_LEGACY_PAIRING);
Johan Hedberge17acd42011-03-30 23:57:16 +03005983
Johan Hedberg1dc06092012-01-15 21:01:23 +02005984 if (eir_len > 0)
Johan Hedberge319d2e2012-01-15 19:51:59 +02005985 memcpy(ev->eir, eir, eir_len);
Johan Hedberge17acd42011-03-30 23:57:16 +03005986
Johan Hedberg1dc06092012-01-15 21:01:23 +02005987 if (dev_class && !eir_has_data_type(ev->eir, eir_len, EIR_CLASS_OF_DEV))
5988 eir_len = eir_append_data(ev->eir, eir_len, EIR_CLASS_OF_DEV,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03005989 dev_class, 3);
Johan Hedberg1dc06092012-01-15 21:01:23 +02005990
Johan Hedberg5d2e9fa2014-03-25 10:30:47 +02005991 if (scan_rsp_len > 0)
5992 memcpy(ev->eir + eir_len, scan_rsp, scan_rsp_len);
5993
5994 ev->eir_len = cpu_to_le16(eir_len + scan_rsp_len);
5995 ev_size = sizeof(*ev) + eir_len + scan_rsp_len;
Andre Guedesf8523592011-09-09 18:56:26 -03005996
Marcel Holtmann901801b2013-10-06 23:55:51 -07005997 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, ev_size, NULL);
Johan Hedberge17acd42011-03-30 23:57:16 +03005998}
Johan Hedberga88a9652011-03-30 13:18:12 +03005999
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07006000void mgmt_remote_name(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 link_type,
6001 u8 addr_type, s8 rssi, u8 *name, u8 name_len)
Johan Hedberga88a9652011-03-30 13:18:12 +03006002{
Johan Hedbergb644ba32012-01-17 21:48:47 +02006003 struct mgmt_ev_device_found *ev;
6004 char buf[sizeof(*ev) + HCI_MAX_NAME_LENGTH + 2];
6005 u16 eir_len;
Johan Hedberga88a9652011-03-30 13:18:12 +03006006
Johan Hedbergb644ba32012-01-17 21:48:47 +02006007 ev = (struct mgmt_ev_device_found *) buf;
Johan Hedberga88a9652011-03-30 13:18:12 +03006008
Johan Hedbergb644ba32012-01-17 21:48:47 +02006009 memset(buf, 0, sizeof(buf));
Johan Hedberga88a9652011-03-30 13:18:12 +03006010
Johan Hedbergb644ba32012-01-17 21:48:47 +02006011 bacpy(&ev->addr.bdaddr, bdaddr);
Andre Guedes57c14772012-04-24 21:02:50 -03006012 ev->addr.type = link_to_bdaddr(link_type, addr_type);
Johan Hedbergb644ba32012-01-17 21:48:47 +02006013 ev->rssi = rssi;
6014
6015 eir_len = eir_append_data(ev->eir, 0, EIR_NAME_COMPLETE, name,
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006016 name_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02006017
Marcel Holtmanneb55ef02012-03-14 18:08:46 +02006018 ev->eir_len = cpu_to_le16(eir_len);
Johan Hedbergb644ba32012-01-17 21:48:47 +02006019
Marcel Holtmann9cf12ae2013-10-06 23:55:52 -07006020 mgmt_event(MGMT_EV_DEVICE_FOUND, hdev, ev, sizeof(*ev) + eir_len, NULL);
Johan Hedberga88a9652011-03-30 13:18:12 +03006021}
Johan Hedberg314b2382011-04-27 10:29:57 -04006022
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07006023void mgmt_discovering(struct hci_dev *hdev, u8 discovering)
Johan Hedberg314b2382011-04-27 10:29:57 -04006024{
Johan Hedbergf963e8e2012-02-20 23:30:44 +02006025 struct mgmt_ev_discovering ev;
Johan Hedberg164a6e72011-11-01 17:06:44 +02006026 struct pending_cmd *cmd;
6027
Andre Guedes343fb142011-11-22 17:14:19 -03006028 BT_DBG("%s discovering %u", hdev->name, discovering);
6029
Johan Hedberg164a6e72011-11-01 17:06:44 +02006030 if (discovering)
Johan Hedberg2e58ef32011-11-08 20:40:15 +02006031 cmd = mgmt_pending_find(MGMT_OP_START_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02006032 else
Johan Hedberg2e58ef32011-11-08 20:40:15 +02006033 cmd = mgmt_pending_find(MGMT_OP_STOP_DISCOVERY, hdev);
Johan Hedberg164a6e72011-11-01 17:06:44 +02006034
6035 if (cmd != NULL) {
Johan Hedbergf808e162012-02-19 12:52:07 +02006036 u8 type = hdev->discovery.type;
6037
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006038 cmd_complete(cmd->sk, hdev->id, cmd->opcode, 0, &type,
6039 sizeof(type));
Johan Hedberg164a6e72011-11-01 17:06:44 +02006040 mgmt_pending_remove(cmd);
6041 }
6042
Johan Hedbergf963e8e2012-02-20 23:30:44 +02006043 memset(&ev, 0, sizeof(ev));
6044 ev.type = hdev->discovery.type;
6045 ev.discovering = discovering;
6046
Marcel Holtmann2f1e0632013-10-06 23:55:53 -07006047 mgmt_event(MGMT_EV_DISCOVERING, hdev, &ev, sizeof(ev), NULL);
Johan Hedberg314b2382011-04-27 10:29:57 -04006048}
Antti Julku5e762442011-08-25 16:48:02 +03006049
Johan Hedberg88c1fe42012-02-09 15:56:11 +02006050int mgmt_device_blocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03006051{
6052 struct pending_cmd *cmd;
6053 struct mgmt_ev_device_blocked ev;
6054
Johan Hedberg2e58ef32011-11-08 20:40:15 +02006055 cmd = mgmt_pending_find(MGMT_OP_BLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03006056
Johan Hedberg88c1fe42012-02-09 15:56:11 +02006057 bacpy(&ev.addr.bdaddr, bdaddr);
6058 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03006059
Johan Hedberg744cf192011-11-08 20:40:14 +02006060 return mgmt_event(MGMT_EV_DEVICE_BLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006061 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03006062}
6063
Johan Hedberg88c1fe42012-02-09 15:56:11 +02006064int mgmt_device_unblocked(struct hci_dev *hdev, bdaddr_t *bdaddr, u8 type)
Antti Julku5e762442011-08-25 16:48:02 +03006065{
6066 struct pending_cmd *cmd;
6067 struct mgmt_ev_device_unblocked ev;
6068
Johan Hedberg2e58ef32011-11-08 20:40:15 +02006069 cmd = mgmt_pending_find(MGMT_OP_UNBLOCK_DEVICE, hdev);
Antti Julku5e762442011-08-25 16:48:02 +03006070
Johan Hedberg88c1fe42012-02-09 15:56:11 +02006071 bacpy(&ev.addr.bdaddr, bdaddr);
6072 ev.addr.type = type;
Antti Julku5e762442011-08-25 16:48:02 +03006073
Johan Hedberg744cf192011-11-08 20:40:14 +02006074 return mgmt_event(MGMT_EV_DEVICE_UNBLOCKED, hdev, &ev, sizeof(ev),
Gustavo F. Padovan04124682012-03-08 01:25:00 -03006075 cmd ? cmd->sk : NULL);
Antti Julku5e762442011-08-25 16:48:02 +03006076}
Marcel Holtmann5976e602013-10-06 04:08:14 -07006077
6078static void adv_enable_complete(struct hci_dev *hdev, u8 status)
6079{
6080 BT_DBG("%s status %u", hdev->name, status);
6081
6082 /* Clear the advertising mgmt setting if we failed to re-enable it */
6083 if (status) {
6084 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Marcel Holtmanna6d811e2013-10-06 04:11:12 -07006085 new_settings(hdev, NULL);
Marcel Holtmann5976e602013-10-06 04:08:14 -07006086 }
6087}
6088
6089void mgmt_reenable_advertising(struct hci_dev *hdev)
6090{
6091 struct hci_request req;
6092
Marcel Holtmannb145edc2013-10-10 09:47:54 -07006093 if (hci_conn_num(hdev, LE_LINK) > 0)
Marcel Holtmann5976e602013-10-06 04:08:14 -07006094 return;
6095
6096 if (!test_bit(HCI_ADVERTISING, &hdev->dev_flags))
6097 return;
6098
6099 hci_req_init(&req, hdev);
6100 enable_advertising(&req);
6101
6102 /* If this fails we have no option but to let user space know
6103 * that we've disabled advertising.
6104 */
6105 if (hci_req_run(&req, adv_enable_complete) < 0) {
6106 clear_bit(HCI_ADVERTISING, &hdev->dev_flags);
Marcel Holtmanna6d811e2013-10-06 04:11:12 -07006107 new_settings(hdev, NULL);
Marcel Holtmann5976e602013-10-06 04:08:14 -07006108 }
6109}